@charset "UTF-8";
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 横スクロール禁止 */
}
body {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    color: #111827;
    background: #111827;
    box-sizing: border-box;
      padding: 0;
  overflow-x: hidden; /* 横スクロール禁止 */
}
/* ヘッダー */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 15px 40px;
    background: #111827;
    border-bottom: 3px solid #f97316; 
    color: #fff;
    z-index: 1000;
}

header h1 {
    font-size: 18px;
    font-weight: 700;
}


/* nav a {
    color: #fed7aa;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s;
}
nav a:hover {
    color: #fb923c;
} */

/* Hero */
.hero {
    /* width: 100%; */
    padding: 160px 20px 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #111827;
    color: #fff;
}
.hero::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(251,146,60,0.15), transparent 70%),
                radial-gradient(circle at 70% 60%, rgba(251,113,24,0.15), transparent 70%);
    z-index: 0;
}
.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero h2 {
    font-size: 44px;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
}
.hero p {
    font-size: 20px;
    margin: 25px 0 40px;
    color: #fed7aa;
}

/* ボタン */
.btn {
    display: inline-block;
    margin: 0 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-primary {
    background: linear-gradient(90deg, #f97316, #fb923c);
    color: #fff;
    box-shadow: 0 4px 15px rgba(251,146,60,0.4);
}
.btn-primary:hover {
    background: linear-gradient(90deg, #fb923c, #f97316);
    transform: translateY(-2px);
}
.btn-secondary {
    background: rgba(251,146,60,0.1);
    color: #fb923c;
    border: 1px solid #fb923c;
}
.btn-secondary:hover {
    background: rgba(251,146,60,0.2);
    transform: translateY(-2px);
}

/* セクション共通 */
section {
    padding: 100px 20px;
}
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* 特長 */
#features {
    background: #f8fafc; /* 明るいグレー */
}
#features h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: #111827;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    color: #111827;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.feature-card:hover {
    background: #fb923c;
    color: #fff;
    transform: translateY(-5px);
}

/* 料金 */
#price {
    background: #ffffff; /* 白背景 */
}
#price h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: #111827;
}
.pricing {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.price-card {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    width: 300px;
    color: #111827;
}
.price-card h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #f97316;
}
.price {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fb923c;
    margin-top: 10px;
}

/* 料金 */
#pain {
    background: #ffffff; /* 白背景 */
}
#pain h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: #111827;
}
.pain-block {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.pain-card {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    width: 300px;
    color: #111827;
}
.pain-card h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #f97316;
}
.pain {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fb923c;
    margin-top: 10px;
}

/* CTA */
.cta {
    /* width: 100%; */
    background: #111827;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}
.cta-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.cta h3 {
    font-size: 32px;
    margin-bottom: 25px;
}

/* フッター */
footer {
    background: #111827;
    color: #fb923c;
    text-align: center;
    padding: 50px 20px;
    font-size: 14px;
}

#company {
  background: #fff;
  padding: 100px 20px;
}

.company-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.company-image {
  flex: 1;
  min-width: 300px;
}

.company-image img {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  width: 200px;
}

.company-info {
  flex: 1;
  min-width: 300px;
}

.company-info h3 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #111827;
}

.company-info p strong {
  color: #fb923c;
}

#risk {
    /* background-color: #f9fafb; */
    padding: 60px 20px;
    font-family: "Noto Sans JP", sans-serif;
    color: #ffffff;
}

#risk .section-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

#risk h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
}

#risk p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.risk-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.risk-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.risk-list li::before {
    content: "⚠"; /* 警告アイコン */
    position: absolute;
    left: 0;
    top: 0;
    color: #e74c3c;
    font-size: 18px;
}

#risk strong {
    color: #e7e43c;; /* サービス名を強調 */
}


/* Flowセクション全体 */
#flow {
  padding: 80px 20px;
  background: #fff;
}

#flow > div {
  max-width: 1000px;
  margin: 0 auto;
}

/* セクション見出し */
#flow h3 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
  color: #111827;
}

/* ステップ全体（縦並び） */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 各ステップ */
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* ステップ番号（丸アイコン） */
.flow-step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fb923c;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* ステップ内容 */
.flow-step h4 {
  font-size: 20px;
  margin: 0 0 8px;
  color: #111827;
}

.flow-step p {
  margin: 0;
  font-size: 16px;
  color: #555;
}

/* セクション全体 */
#strengths {
  padding: 80px 20px;
  background: #f9fafb;
}

/* コンテナ */
#strengths .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* 見出し */
#strengths .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 50px;
}

/* グリッド */
#strengths .strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* 各項目 */
#strengths .strength-item {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#strengths .strength-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* サブタイトル */
#strengths .strength-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
}

/* 説明文 */
#strengths .strength-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

#service-blocks {
  background-color: #f9fafb;
  padding: 60px 20px;
  font-family: "Noto Sans JP", sans-serif;
}

#service-blocks .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

#service-blocks h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.blocks-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service-block {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.service-block .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.service-block h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #007acc;
}

.service-block p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #333;
}


  .none2 {
    display: none;
  }

@media (max-width: 768px) {
  .blocks-container {
    flex-direction: column;
    align-items: center;
  }

  .service-block {
    width: 85%;
  }

  .none1 {
    display: none;
  }

    .none2 {
    display: block;
    /* margin-right: 0px; */
  }
}

.cta-button {
  position: fixed;
  bottom: 30px;       
  right: 30px;        
  background: linear-gradient(135deg, #ff4e50, #f9d423); /* 鮮やかオレンジ-イエロー */
  color: #fff;
  padding: 16px 28px;
  font-size: 17px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 1000;      
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .cta-button {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%); /* 画面中央に配置 */
    padding: 14px 22px;
    font-size: 12px;
  }
}

.marker-fluoro {
  background: linear-gradient(180deg, transparent 60%, #ebe8c7 60%);
  padding-bottom: 0.05em;
}

/* 個別ブロック */
.service-block {

    text-align: left; /* 左寄せ */
}

/* .service-block:hover {
    transform: translateY(-5px);
} */

.service-block h4 {

    text-align: left; /* 左寄せ */
}

/* リストの●を消す */
.service-block ul {
    list-style-type: none; /* ●なし */

}

/* .service-block li {
    margin-bottom: 8px;
    line-height: 1.5;
} */
