@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto+Slab:wght@100..900&display=swap');
@media screen and (min-width: 1001px) {
  .is_pc {
   display: none;
  }
  }
  @media screen and (max-width: 1000px) {
  .is_sp {
   display: none;
  }
  }

  /* スムーススクロールを有効化 */
html {
  scroll-behavior: smooth;
}

/* 基本設定 */
:root {
  --primary-color: #007BFF;
  --secondary-color: #00A9E2;
  --accent-color: #FFC107;
  --text-color: #333;
  --bg-color: #FFFFFF;
  --light-gray: #f8f9fa;
  --dark-blue: #0D2D52;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  color: var(--text-color);
  line-height: 1.7;
  background-image:
  linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
background-size: 40px 40px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =================================
   ヘッダー
   ================================= */
.header {
    padding: 10px 0; /* パディングを削除 */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0; /* コンテナのパディングも調整 */
    max-width: 1300px;
}

.logo {
  margin: 10px 0 0;
}
.logo img {
  width: 160px;
  max-width: 100%;
}

.header nav ul {
    margin: 0;
    padding: 0 20px 0 0; /* 右側にパディングを追加 */
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.header nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}
.header nav a:hover {
  opacity: .7;
}

.header nav ul li:last-child a {
  color: #fff;
  background: linear-gradient(to right, #00557F, #0077B2 50%, #0088CC 75%, #0090D9 88%, #0095DF 94%, #0099E5);
  border-bottom: 1px solid #002E45;
  position: relative;
  width: 127px;
  text-indent: 15px;
}
.header nav ul li:last-child a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 23px;
  background-image: url("../img/form-icon.webp");
  background-repeat: no-repeat;
  background-size: contain;
  width: 19px;
  height: 19px;
  margin: auto;
}
.header nav ul li:last-child a:hover {
  background: linear-gradient(to left, #00557F, #0077B2 50%, #0088CC 75%, #0090D9 88%, #0095DF 94%, #0099E5);
  opacity: 1;

}
/* =================================
   ボタン
   ================================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #0082c8;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: #006da8;
    color: white;
}



/* テキストのハイライト */
.highlight-red {
    color: #DC0808;
    font-weight: 600;
}

/* 変数定義 (ルート) */
:root {
    --primary-color: #007BFF;
    --bg-color: #FFFFFF;
    --text-color: #333;
    --highlight-red-color: #E64A19;
}



/* セクション共通スタイル */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.4;
}
.section-title-white {
  font-size: 32px;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-subtitle-large {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}

.highlight {
  color: var(--primary-color);
}
.highlight-blue {
  color: var(--secondary-color);
  background: linear-gradient(transparent 60%, #a7eaff 60%);
}

/* =================================
   ヒーローセクション
   ================================= */
   /* ヒーローセクション */
.hero {
  background-color: var(--light-gray);
}
   .hero {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 30px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 100%;
}

.hero-content {
    flex: 1;
  padding-left: 10%;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.hero-title {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 35px;
    line-height: 1.5;
    color: #000;
}

.hero-title span {
  background: linear-gradient(90deg, #4675D4, #3559A1 30%, #2D4B87);
  background: -webkit-linear-gradient(0deg, #4675D4, #3559A1 30%, #2D4B87);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: -.5px;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-image {
  flex: 1;
}
.util-heading {
  background: linear-gradient(90deg, #00557F, #0077B2 50%, #0088CC 75%, #0090D9 88%, #0088CC 94%, #0095DF, #0099E5);
  background: -webkit-linear-gradient(0deg, #00557F, #0077B2 50%, #0088CC 75%, #0090D9 88%, #0088CC 94%, #0095DF);
  text-align: center;
  padding: 15px 0;
  color: #fff;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: .4px;
  position: relative;
}
.util-heading:after {
  content: "";
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  background-image: url(../img/heading-arrow-bottom.webp);
  width: 30px;
  height: 30px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.util-heading span {
  color: #F6FF00;
}
/* お悩みセクション */
.problems {
  padding-top: 40px;
}
.problems .section-title {
  margin-top: 0;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: .4px;
  margin-bottom: 30px;
}
.problems .section-title span {
  background-image: radial-gradient(circle at center, #000000 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.7em;
  padding-top: 0.67em;
}
.problems .container {
  background-color: #f0f8ff;
  width: 775px;
  max-width: 100%;
  padding: 60px 70px;
  margin-top: 35px;
  border-radius: 20px;
  position: relative;
}
.problems .container:before {
  content: "";
  position: absolute;
  background-image: url("../img/ploblems_arrow.webp");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  bottom: -25px;
  left: 0;
}
.problem-cards {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-top: 40px;
}
.problem-cards .card img {
  width: 104px;
  height: 85px;
  object-fit: contain;
}
.problem-cards p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
}
.card {
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  flex: 1;
  width: 25%;
}

/* サービスセクション */
.services {
  padding-top: 10px;
  padding-bottom: 30px;
}
.services .container {
  max-width: 1280px;
}
.services .section-subtitle-large {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 0;
}
.services .section-subtitle-large span {
  font-size: 58px;
  letter-spacing: -2px;
  background: linear-gradient(90deg, #00557F, #0077B2 30%, #0099E5);
  background: -webkit-linear-gradient(0deg, #00557F, #0077B2 30%, #0099E5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Roboto Slab", serif;
}
.services .section-subtitle-large .num {
}
.section-minititle {
  font-size: 18px;
  text-align: center;
}
.section-minititle span {
  color: #D44E4E;
}
.service-grid {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 35px;
}

.service-card {
  background-color: #fff;
  padding: 10px 10px 20px;
  filter: drop-shadow(0 1px 1px rgba(0,0,0, .25));
  width: 17%;
}
.service-card h4 span {
  color: #DC0808;
}
.service-card img {
  width: 100%;
}
.service-card h4 {
  font-size: 16px;
  margin: 8px 0px 10px;
  color: #333;
}
.service-card p {
  font-size: 15px;
  margin: 0;
  color: #5D5D5D;
  line-height: 1.6;
}

/* サポートセクション */
.support {
  color: #333;
  padding: 30px 0;
}
.support-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 100%;
  padding-right: 0;
}
.support-content {
  flex: 1;
}
.support-image {
  flex: 1;
}
.support-image img {
  max-width: 100%;
  border-radius: 15px;
}
.support-main-title {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 51px;
}
.support-main-title span {
  background: linear-gradient(90deg, #4675D4, #3559A1 30%, #2D4B87);
  background: -webkit-linear-gradient(0deg, #4675D4, #3559A1 30%, #2D4B87);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.support-content {
  padding-left: 10%;
}
.support .btn {
  color: #000;
  border: 1px solid #000;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 500;
  margin-top: 30px;
  width: 200px;
  position: relative;
}
.support .btn {
  background: #fff;
  color: #000;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.support .btn::after {
  background: linear-gradient(90deg, #00557F, #0077B2 30%, #0099E5);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.support .btn:hover {
  color: #fff;
  border: 1px solid #00557F;
}
.support .btn:hover::after {
  transform: scale(1, 1);
}
.support .btn::after {
  transform: skewY(-10deg) scale(1, 0);
  height: 140px; 
}
.support .btn:hover::after {
  transform: skewY(-10deg) scale(1, 1);
}
 
/* 料金セクション */
.pricing {
}
.pricing .pricing-header h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 0;
}

.pricing-table {
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 50px;
  background-color: white;
}
.pricing-header {
  text-align: center;
}
.pricing-header h3 {
  margin: 0 0 5px;
  font-size: 22px;
}
.pricing-header h3 span {
  background-image: radial-gradient(circle at center, #000000 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.7em;
  padding-top: 0.67em;
}
.pricing-header .section-minititle {
  font-size: 18px;
  text-align: center;
  margin-top: 3px;
}
.pricing-header p {
  margin: 0;
}
.comparison img {
  width: 100%;
  margin-top: 30px;
}

/* 投資セクション */
.investment {
}
.investment .section-title {
  font-size: 32px;
  font-weight: 600;
  margin-top: 5px;
}
.investment .section-title span {
  background: linear-gradient(90deg, #4675D4, #3559A1 30%, #2D4B87);
  background: -webkit-linear-gradient(0deg, #4675D4, #3559A1 30%, #2D4B87);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.investment .investment-minititle {
  text-align: center;
}
.investment-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.investment-content p {
  font-size: 18px;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

/* CTAセクション */

.cta {
  background: linear-gradient(90deg, #00557F, #0077B2 50%, #0088CC 75%, #0090D9 88%, #0088CC 94%, #0095DF, #0099E5);
  background: -webkit-linear-gradient(0deg, #00557F, #0077B2 50%, #0088CC 75%, #0090D9 88%, #0088CC 94%, #0095DF);  
  text-align: center;
  color: white;
}
.cta .section-title {
  color: white;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: .4px;
  margin-top: 0;
}
.cta .section-title span {
  color: #FFF200;
}
.cta .section-subtitle {
  color: white;
  font-size: 18px;
  margin-top: 0;
}
.cta .section-subtitle span {
  color: #F09090;
}
.cta .cta-minititle {
  margin-top: 50px;
}
.cta .btn {
  color: #3D6E9F;
  font-size: 18px;
  border-radius: 100px;
  background: #fff;
  width: 260px;
  max-width: 100%;
  margin-top: 17px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
}


.cta .btn::after {
  background: linear-gradient(90deg, #F5FF8C, #F0FF50 30%, #EEFF32);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.cta .btn:hover {
  color: #175899;
  border: 1px solid #000;
}
.cta .btn:hover::after {
  transform: scale(1, 1);
}
.cta .btn::after {
  transform: skewY(-10deg) scale(1, 0);
  height: 140px; 
}
.cta .btn:hover::after {
  transform: skewY(-10deg) scale(1, 1);
}
 
/* FAQセクション */
.faq .section-title {
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: .4px;
  margin-top: 0;
}
.faq .section-title span {
  background-image: radial-gradient(circle at center, #000000 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.7em;
  padding-top: 0.67em;
}
.faq-minititle {
  text-align: center;
  margin-top: 10px;
}
.faq-list {
  max-width: 800px;
  margin: 40px auto;
}
.faq-item {
  border-bottom: 1px solid #ddd;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  font-weight: 500;
}
.faq-question p {
  margin: 0;
}
.faq-question span {
  font-size: 24px;
  font-weight: 500;
  transition: transform 0.3s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
  padding: 0 20px;
}
.faq-answer p {
  margin: 0;
  padding-bottom: 20px;
}
.faq-item.active .faq-answer {
  max-height: 200px; /* 十分な高さを設定 */
  padding-top: 10px;
}
.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* フッター */
.footer {
  background-color: var(--dark-blue);
  color: white;
  text-align: center;
  padding: 30px 0;
  font-size: 14px;
}
.footer p {
  margin: 0;
}

.fixed {
  position: fixed;
  bottom: 30px;
  right: 0;
  width: 280px;
  max-width: 100%;
  z-index: 99;
}
.fix-txt {
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-indent: 0;
  position: relative;
  top: 4px;
}
.fix-txt span {
  color: #FFF200;
}
.cta-ttl {
  text-indent: 16px;
  display: inline-block;
  margin-top: 0px;
}
.fixed .btn {
  text-indent: 12px;
  width: 192px;
  max-width: 100%;
  background: linear-gradient(90deg, #00557F, #0077B2 50%, #0088CC 75%, #0090D9 88%, #0088CC 94%, #0095DF, #0099E5);
  color: #fff;
    font-size: 21px;
    padding: 0px 36px 10px;
  position: relative;
  font-weight: 500;
  border-bottom: 1px solid #043C70;
}
.fixed .btn:hover {
  background: linear-gradient(0deg, #00557F, #0077B2 50%, #0088CC 75%, #0090D9 88%, #0088CC 94%, #0095DF, #0099E5);
}
.fixed .btn:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -25px;
  left: 34px;
  background-image: url("../img/form-icon.webp");
  background-repeat: no-repeat;
  width: 26px;
  height: 26px;
  background-size: contain;
  margin: auto;
}
/* 1. 光るスジ用に overflow と position を指定 */
.fixed .btn {
  position: relative;
  overflow: hidden;
}

/* 2. 擬似要素で斜めの白いグラデを作成 */
.fixed .btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -95%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.6);
  transform: skewX(-25deg);
  transition: none;
  z-index: 2;
}

/* 3. ホバー時に右へスライド */
.fixed .btn::after {
  animation: shine 1s cubic-bezier(0.42, 0, 1, 1) infinite;
}

/* 4. キーフレーム定義 */
@keyframes shine {
  0% {
    left: -95%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}


/*--------------------------------------
  ヘッダー：ハンバーガー初期状態
---------------------------------------*/
.header {
  position: relative;
  z-index: 10;
}
.header .hamburger {
  display: none;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 30px;
  height: 22px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
.header .hamburger span {
  display: block;
  height: 2px;
  background: #000;
  border-radius: 1px;
}
.header .nav ul {
  display: flex;
  gap: 30px;
  padding-right: 0;
}
.header .nav li a {
  display: block;
}

/*--------------------------------------
  タブレット（1024px 以下）
---------------------------------------*/
@media (max-width: 1024px) {
  /* セクションごとのグリッド調整例 */
  .problem-cards,
  .service-grid {
    gap: 15px;
  }
}

/*--------------------------------------
  スマホ（768px 以下）
---------------------------------------*/
@media (max-width: 768px) {
  /* ヘッダー：ハンバーガー表示、ナビ非表示 */
  .header .hamburger {
    display: flex;
  }
  .header .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .header .nav.open {
    display: block;
    background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  }
  .header .nav ul {
    flex-direction: column;
    gap: 23px;
    text-align: center;
  }

  /* hero セクション縦積み */
  .hero-container {
    display: flex;
    flex-direction: column-reverse;
  }
  .hero-content,
  .hero-image {
    width: 100%;
    margin-bottom: 24px;
  }

  /* カード系 1列 */
  .problem-cards,
  .service-grid {
  }

  /* support セクション縦積み */
  .support-container {
    display: flex;
    flex-direction: column;
  }
  .support-content,
  .support-image {
    width: 100%;
    margin-bottom: 24px;
  }

  /* 比較表は画像幅を100%に */
  .comparison img {
    width: 100%;
    height: auto;
  }

  /* CTA ボタン幅調整 */
  .cta .btn {
    display: block;
    width: 70%;
    text-align: center;
    margin: auto;
  }

  /* FAQ 質問／回答開閉の余白など */
  .faq-question {
    padding: 16px;
  }
}

/*--------------------------------------
  ハンバーガー開閉アニメーション（任意）
---------------------------------------*/
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }


/* レスポンシブ対応 */
@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
  .util-heading {
    font-size: 18px;
    padding: 10px 0;
  }
  .header .container, .hero-container, .support-container {
      flex-direction: column-reverse;
      text-align: center;
      gap: 20px;
  }
  .header nav ul {
      margin-top: 15px;
      flex-wrap: wrap;
      justify-content: center;
  }
  .logo {
    margin-top: 0;
  }
  
  .hero {
    padding: 30px 0;
  }
  .hero-content {
    padding-left: 0;
  }
  .hero-title {
    font-size: 24px;
    text-align: left;
    margin-bottom: 25px;
  }
  .hero-text {
    text-align: left;
    font-size: 16px;
  }
  .problems {
    padding-top: 0;
  }
  .problem-cards {
      flex-wrap: wrap;
  }
  .card {
    width: 45%;
  }
  .problems .section-title {
    font-size: 24px;
  }
  .problems .container {
    padding: 45px 15px;
  }
  .problems .container {
    width: 80%;
  }
  .problem-cards p {
    font-size: 14px;
    line-height: 22px;
  }
  .services .container {
    padding: 0 10px;
  }
  .services .section-subtitle-large {
    font-size: 18px;
  }
  .services .section-subtitle-large span {
    font-size: 48px;
  }
  .service-grid {
    margin-top: 28px;
  }
  .service-card {
    width: 40%;
  }
  .section-minititle {
    font-size: 15px;
  }
  .service-card h4 {
    font-size: 15px;
  }
  .service-card p {
    font-size: 14px;
  }

  .support-container {
    padding: 0 20px;
  }
  .support-container img {
    width: 85%;
  }

  .pricing .pricing-header h3 {
    font-size: 25px;
  }
  .pricing-header .section-minititle {
    font-size: 15px;
  }
  .pricing-note {
    font-size: 14px;
  }
  .pricing-col {
      border-right: none;
      border-bottom: 1px solid #ccc;
  }
  .pricing-header {
    margin-bottom: 14px;
  }
  .section-title {
      font-size: 28px;
  }
  .support-main-title {
      font-size: 24px;
      text-align: left;
      line-height: 39px;
  }
  .support-content {
    padding-left: 0;
    padding: 0 0px;
    text-align: left;
  }
  .support-content p {
    font-size: 15px;
    text-align: left;
  }
  .support .btn {
    width: 160px;
    font-size: 15px;
    margin-top: 20px;
  }

  .cta {
    padding: 50px 0;
  }
  .cta .section-subtitle {
    font-size: 15px;
    font-weight: 500;
  }
  .cta .section-title {
    font-size: 26px;
    line-height: 43px;
  }
  .cta .cta-minititle {
    margin-top: 30px;
  }
  .cta .btn {
    margin-top: 20px;
  }
  .comparison img {
    margin-top: 15px;
  }
  .investment .investment-minititle {
    font-size: 15px;
  }
  .investment .section-title {
    font-size: 25px;
    line-height: 41px;
    margin-bottom: 25px;
  }
  .investment-content p {
    font-size: 15px;
  }
  .faq {
    padding: 60px 0;
  }
  .faq .section-title {
    font-size: 24px;
  }
  .faq-minititle {
    font-size: 15px;
  }
  .faq-question {
    padding: 10px;
    font-size: 15px;
    font-weight: 500;
  font-weight: 400;
  }
  .faq-answer p {
    font-size: 14px;
  }
  .faq-list {
    margin-top: 30px;
  }

  .footer {
    padding: 30px 0 100px;
  }
  
  .fixed {
    bottom: 10px;
    width: auto;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
  }
  .fixed .btn {
    width: 140px;
    font-size: 16px;
  }
  .fixed .btn:before {
    bottom: -19px;
    width: 18px;
    height: 18px;
  }
  .fix-txt {
    font-size: 12px;
  }
}


/*――――――――――――――――――*/
/* 特商法表示テーブル */
/*――――――――――――――――――*/

.footer-nav {
  margin-bottom: 15px;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
}
.tokusho-table {
  width: 1000px;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.95rem;
  margin: 100px auto;
}
.tokusho-table th,
.tokusho-table td {
  border: 1px solid #ddd;
  padding: 0.75em 1em;
  vertical-align: top;
  text-align: left;
}
.tokusho-table thead th {
  background-color: #f5f5f5;
  font-weight: bold;
}
.tokusho-table th[scope="row"] {
  width: 30%;
  background-color: #fafafa;
  font-weight: normal;
}

.footer_flex {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* レスポンシブ対応（画面幅600px以下で縦並び） */
@media (max-width: 767px) {
  .problems .container:before {
    width: 50px;
    height: 50px;
    bottom: -26px;
    left: 20px;
  }
  .tokusho-table {
    width: 90%;
    margin: 30px auto;
  }
  .tokusho-table,
  .tokusho-table thead,
  .tokusho-table tbody,
  .tokusho-table th,
  .tokusho-table td,
  .tokusho-table tr {
    display: block;
  }
  .tokusho-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .tokusho-table tr {
    margin-bottom: 10px;
  }
  .tokusho-table td {
    border: none;
    position: relative;
  }
  .tokusho-table td::before {
    content: attr(data-label);
    position: absolute;
    top: 0.75em;
    left: 1em;
    font-weight: bold;
    white-space: nowrap;
  }
  .tokusho-table th[scope="row"] {
    width: 90%;
  } 
}
