@charset "UTF-8";

/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* アンカーリンク（個別相談を予約 等）のスムーススクロール */
html {
  scroll-behavior: smooth;
}

/* 動きが苦手な人向け（OSの設定を尊重） */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #1a1a1a;
    /* 背景画像を適用する場合はここを変更してください */
/* Figmaの設定を再現した背景グラデーション */
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;
   /* ↓↓ これを追加 ↓↓ */
   background-attachment: fixed;
   scroll-behavior: smooth;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
/* 全体のレイアウト設定 (Flexboxで3分割) */
.container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0;
}
a:hover {
  opacity: .8;
}

section {
  position: relative;
}
#fv .btn {
  position: absolute;
  bottom: 4px;
  width: 100%;
  right: 0;
  left: 0;
  margin: auto;
}
#access .btn {
  position: absolute;
  bottom: 14px;
  width: 80%;
  margin: auto;
  text-align: center;
  right: 0;
  left: 0;
}
#contact .btn {
  position: absolute;
  bottom: 20px;
}
/* ------------------------------
   左側：サイドバー
------------------------------ */
.sidebar {
    width: 36%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 20px;
    /* Figmaの設定を再現した背景グラデーション */
    position: sticky;        /* スクロールに合わせて追従・固定する */
    top: 0;                  /* 画面の一番上で止まるようにする */
    height: 100vh;           /* 高さを画面いっぱいに指定 */
    overflow-y: auto;        /* 画面の高さが狭い場合は、このエリア内だけスクロールできるようにする */
    align-self: flex-start;  /* Flexboxの中でstickyを正しく効かせるための必須設定 */
    background-image: url(../img/right_bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 35px;
}

.global-nav ul {
    list-style: none;
    margin-top: 75px;
}

.global-nav ul li {
    margin-bottom: 0;
    text-align: center;
}

.global-nav ul li img {
  width: 70%;
}
.global-nav ul li a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.global-nav ul li a:hover {
    opacity: 0.7;
}

/* CTAボタンエリア */
.cta-area {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

/* 赤い吹き出し */
.cta-balloon {
    background-color: #f26d6d;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    position: relative;
    margin-bottom: -10px;
    z-index: 10;
}

.cta-balloon::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 6px solid #f26d6d;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

/* 緑のグラデーションボタン */
.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #8dec6e 0%, #56a735 100%);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    padding: 20px 20px;
    border-radius: 50px;
    box-shadow: 
        inset 0 4px 6px rgba(255, 255, 255, 0.6), /* 上部の白いハイライト */
        inset 0 -4px 6px rgba(0, 0, 0, 0.1),      /* 下部のシャドウ */
        0 6px 10px rgba(0, 0, 0, 0.2);            /* 外側のドロップシャドウ */
    position: relative;
    border: 1px solid #7bc755;
    transition: transform 0.2s;
}

.cta-btn:hover {
    transform: translateY(2px);
    box-shadow: 
        inset 0 4px 6px rgba(255, 255, 255, 0.6),
        inset 0 -4px 6px rgba(0, 0, 0, 0.1),
        0 4px 5px rgba(0, 0, 0, 0.2);
}

/* 黄色い矢印アイコン */
.icon-arrow {
    background-color: #fceb40;
    color: #333;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: absolute;
    right: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ------------------------------
   中央：メインビジュアル
------------------------------ */
.main-visual {
    width: 34%;
    padding: 0 0;
    max-width: 100%;
}
.main-visual img {
  width: 100%;
}

/* グレーのプレースホルダー */
.mv-placeholder {
    width: 100%;
    background-color: #dcdcdc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

/* ------------------------------
   右側：メッセージエリア
------------------------------ */
.message-area {
    width: 36%;
    padding-top: 40px;
    padding-left: 5px;
    /* ↓↓↓ ここから追加 ↓↓↓ */
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    align-self: flex-start;
    padding-right: 40px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
      background-repeat: no-repeat;
    margin-left: 35px;
}
.message-area img {
  width: 100%;
}
.message-area img {
  display: block;
  width: 100%; /* 必要に応じてサイズ調整してください */
  height: auto;
}

/* 「きらりん」と光る要素（擬似要素） */
.message-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%; /* 開始位置は左側の隠れた場所 */
  width: 50%;
  height: 100%;
  
  /* 斜めの光の帯を作成 */
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%, /* 光の強さ（0.3） */
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg); /* 光を斜めにする */
  
  /* アニメーションの設定 */
  animation: cta-shine 2s infinite; /* 3秒に1回ループ */
}

@keyframes cta-shine {
  0% {
    left: -80%;
  }
  45% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}

.message-area h1 {
    font-size: 38px;
    line-height: 1.4;
    margin-bottom: 50px;
    letter-spacing: 0.05em;
}

.message-area p {
    font-size: 14px;
    line-height: 2.2;
    margin-bottom: 25px;
    font-weight: bold;
}
.message-area a figure {
  text-align: center;
  margin-top: 5px;
}
.message-area a img {
  width: 100%;
}


/* ------------------------------
   お悩みセクション全体
------------------------------ */
.problems-section {
  max-width: 100%; /* 全体の幅 */
  margin: 0 auto;
  padding: 40px 15px;
  background: #F7FBFF;
}
.problems-section .txt img {
  margin-bottom: 35px;
  width: 80%;
}
/* ------------------------------
 見出し部分
------------------------------ */
.section-header {
  text-align: center;
  line-height: 34px;
}

/* 3つのドット */
.dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.dot {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #1a1a1a;
  border-radius: 50%;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.problems-section .section-title {
  margin-bottom: 0;
}
.section-title img {
  width: 340px;
  max-width: 100%;
  margin-bottom: 25px;
}

.section-title .large-text {
  font-size: 34px;
  margin: 0 4px;
  /* ドットのスタイル（塗りつぶしの丸）を指定 */
  -webkit-text-emphasis-style: filled dot;
  text-emphasis-style: filled dot;
  
  /* ドットの位置を「文字の上」に指定 */
  -webkit-text-emphasis-position: over;
  text-emphasis-position: over;
}

/* ------------------------------
 グリッドレイアウト (2列)
------------------------------ */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 20px;
}

/* ------------------------------
 各項目
------------------------------ */
.problem-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 円形の画像 */
.problem-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #e0e0e0; /* 画像がない場合のダミー背景色 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* 軽い影をつけています */
}

.problem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキスト */
.problem-text {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0;
}

/* 水色のハイライト */
.highlight {
  background-color: #6fb4f6; /* 画像に近い水色 */
  color: #ffffff;
  margin-right: 4px;
  font-size: 20px;
  display: inline; /* 途中で改行されても崩れないようにinline */
  box-decoration-break: clone; /* 改行時の装飾を保持（Webkit対応） */
  -webkit-box-decoration-break: clone;
  padding: 2px 4px;
  font-weight: 500;
  font-size: 18px;
}

/* 確認用の余白設定（実装時は不要であれば削除してください） */
.wrapper {
  padding-top: 0;
  padding-bottom: 0;
}

.banner {
  padding: 30px 0;
  margin: auto;
  text-align: center;
  padding: 27px 0;
  width: 90%;
}
/* ------------------------------
 解決バナー
------------------------------ */
.solution-banner {
  position: relative;
  background-color: #6fb4f6; /* 画像に近い水色（前のハイライト色と合わせています） */
  color: #ffffff;
  text-align: center;
  font-size: 23px;
  font-weight: bold;
  padding: 15px 4px;
  width: 100%; /* 横幅いっぱいにする場合 */
  letter-spacing: 0.05em;
}

/* 下部中央の三角形（吹き出しのしっぽ） */
.solution-banner::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 24px solid #6fb4f6;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}



/* ------------------------------
   共通点セクション全体
------------------------------ */
.common-points-section {
    padding: 60px 0 20px;
    text-align: center;
    background: #F7FBFF;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0;
    margin-bottom: 40px;
}

.points-container {
    max-width: 440px; /* モバイルや中央配置用の最大幅 */
    margin: 0 auto;
}

/* ------------------------------
   各ポイントの項目
------------------------------ */
.point-item {
    margin-bottom: 30px;
    text-align: left;
}

/* バッジがはみ出す分の余白を確保 */
.point-item.type-a {
    padding-left: 20px;
}
.point-item.type-b {
    padding-right: 20px;
}


.point-text {
  font-size: 22px;
  font-weight: 500;
  line-height: 38px;
}
.point-text .highlight {
  font-size: 22px;
  background: #058CF0;
}
.point-item.type-b .point-text {
  padding-left: 20px;
}
/* 画像ラッパー */
.image-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.image-wrapper img {
    width: 100%;
    display: block;
}
.answer {
  text-align: center;
  background: #fff;
}
.answer .answer_image {
  width: 380px!important;
  max-width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* ------------------------------
   セクション全体
------------------------------ */
.current-issues-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 20px;
  background: #F7FBFF;
}

/* ------------------------------
 比較グリッドレイアウト
------------------------------ */
.issues-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
}

.issue-column {
  width: 48%; /* 左右に均等配置 */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* SNSラベル（共通） */
.sns-label {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 15px;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.05em;
}

/* 各SNSのラベルカラー */
.label-insta {
  background-color: #bd3188; /* Instagram風のピンク */
}

.label-line {
  background-color: #51b13e; /* LINE風のグリーン */
}

/* 画像エリア */
.issue-image {
  width: 100%;
  aspect-ratio: 1 / 1; /* 正方形を維持 */
  background-color: #e0e6ed; /* 画像がない場合のダミー色 */
  margin-bottom: 20px;
}

.issue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像が歪まないようにトリミング */
}

/* 画像下のテキスト */
.issue-text {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ------------------------------
 下部の結論テキストエリア
------------------------------ */
.issue-conclusion {
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.issue-conclusion img {
  width: 280px;
  margin: auto;
}
.conclusion-small {
  font-size: 24px;
  line-height: 1.5;
}

.conclusion-large {
  font-size: 42px;
  margin: 15px 0;
}

/* 「選ばれる理由」の黄色いマーカー */
.yellow-marker {
  /* 背景色で太めのマーカーを表現しています */
  background: linear-gradient(transparent 30%, #fff799 30%, #fff799 100%);
  padding: 0 4px; /* マーカーを文字より少しだけ左右にはみ出させる */
}

/* ------------------------------
   セクション全体
------------------------------ */
.achievements-section {
  padding: 60px 0;
  text-align: center;
  overflow: hidden; 
  position: relative;
  background: #fff;
}

.achievements-title {
  font-size: 26px;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 50px;
  letter-spacing: 0.02em;
}

#price .main-title {
  margin-bottom: 30px;
  line-height: 43px;
}

/* ------------------------------
 Swiper 全体の調整
------------------------------ */
.achievementsSwiper {
  width: 100%;
  max-width: 600px; /* 左右の矢印や見切れるカードを含めた全体の表示領域 */
  padding-top: 20px;
  padding-bottom: 20px;
}


/* Swiperのラッパーを強制的に横並びにする */
.swiper-wrapper {
  display: flex;
  align-items: stretch; /* 高さを揃える場合 */
}

/* スライドの幅を固定し、縮まないようにする */
.swiper-slide {
  width: 100%; 
  flex-shrink: 0; /* これがないと縦並びやレイアウト崩れの原因になります */
  display: flex;
  justify-content: center; /* カードを中央に配置 */
}

/* 1枚のスライドの幅を固定 */
.swiper-slide {
  width: 340px; /* カードの横幅 */
  transition: transform 0.3s ease, opacity 0.3s ease; /* アニメーションを滑らかに */
}

/* 中央以外（左右）のカードを少し暗く・小さく見せる場合の設定（お好みで調整してください） */
.swiper-slide:not(.swiper-slide-active) {
  opacity: 0.7; /* 少し透明にする */
  transform: scale(0.95); /* 少しだけ縮小する */
}

/* ------------------------------
 カードのデザイン
------------------------------ */
.carousel-card {
  background-color: #f8f8f8;
  border-radius: 24px;
  padding: 30px 20px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* 軽い影 */
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.card-logo {
  width: 80px;
  height: 80px;
  background-color: #fff; 
  border-radius: 8px;
  overflow: hidden;
}

.card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-info {
  text-align: left;
}

.info-label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 4px;
}

.info-name {
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.card-banner {
  background-color: #6fb4f6;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 0;
  text-align: center;
  margin-bottom: 20px;
}

.card-list {
  list-style: none;
  text-align: left;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.8;
}

/* ------------------------------
 ナビゲーション矢印のカスタマイズ
------------------------------ */
.custom-arrow {
  width: 40px!important;
  height: 40px!important;
  background-color: #ffffff;
  border: 1px solid #6fb4f6;
  border-radius: 50%;
  color: #6fb4f6; /* Swiperデフォルトの矢印の色 */
  margin-top: -24px; /* 高さの半分をマイナスして中央揃え */
}


.swiper-button-prev {
  left: 10px;
  position: absolute;
  top: 60%;
  bottom: 50%;
}

.swiper-button-next {
  right: 10px;
  position: absolute;
  top: 60%;
  bottom: 50%;
}

/* ------------------------------
 ページネーション（ドット）のカスタマイズ
------------------------------ */
.custom-pagination.swiper-pagination-bullets {
  position: static; /* デフォルトの絶対配置を解除 */
  margin-top: 30px;
}

.custom-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #e0e0e0;
  opacity: 1; /* デフォルトの半透明を解除 */
  margin: 0 6px !important; /* ドットの間隔 */
  display: inline-block;
  border-radius: 100%;
}

.custom-pagination .swiper-pagination-bullet-active {
  background-color: #6fb4f6; /* アクティブ時の水色 */
}

.cta-area {
  width: 100%;
  max-width: 711px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  background: #005bac;
}

.cta-bg {
  width: 50%;
}

.cta-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-btns {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 24px 14px 12px;
  box-sizing: border-box;
}

.cta-img-btn {
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cta-img-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.cta-img-btn img {
  width: 100%;
  height: auto;
  display: block;
}

/* スマホ調整 */
@media (max-width: 600px) {
  .cta-area {
    max-width: 100%;
  }

  .cta-btns {
    gap: 6px;
    padding: 10px 12px 10px 6px;
  }
}


/* ------------------------------
   ページネーションを「絶対に」表示させる強制設定
------------------------------ */
/* 1. まず、セクション全体の下にがっつり余白を作ります */
.achievements-section {
  position: relative;
  padding-bottom: 100px !important; /* ドットを置くための隙間 */
}

/* 2. ドットをセクションの一番下・中央に強制配置します */
.swiper-pagination.custom-pagination {
  position: absolute !important;
  bottom: 45px !important; /* 下からの位置 */
  left: 0 !important;
  width: 100% !important;
  z-index: 99 !important; /* 何よりも一番手前に表示する魔法の数字 */
}

/* 3. ドットの大きさと色 */
.custom-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background-color: #e0e0e0 !important; /* グレー */
  opacity: 1 !important; 
  margin: 0 8px !important; /* ドット同士の隙間 */
}

/* 4. アクティブなドットの色 */
.custom-pagination .swiper-pagination-bullet-active {
  background-color: #6fb4f6 !important; /* 水色 */
}

.support-section {
  background: #F7FBFF;
}
.support-card {
  width: 90%;
  background: #fff;
  padding: 15px;
}
.support-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}
.support-title span {
  color: #0176CE;
}
.support-card .card-heading {
  font-size: 22px;
  margin-top: 15px;
  text-align: left;
}

.support-card .card-list {
  font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    margin-top: 17px;
}

.custom-pagination-support .swiper-pagination-bullet-active {
  background: #0176CE!important;
}

/* ------------------------------
   セクション・見出し
------------------------------ */
.comparison-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 0;
  background: #fff;
}

.main-title {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.sub-title {
  font-size: 28px;
  font-weight: bold;
  color: #387bd8; /* 青色 */
  letter-spacing: 1px;
  margin-bottom: 40px;
}

/* ------------------------------
 横スクロール用コンテナ
------------------------------ */
.table-scroll-container {
  width: 100%;
  overflow-x: auto; /* はみ出た場合に横スクロールを許可 */
  padding-bottom: 20px; /* スクロールバーと表の間の余白 */
  
  /* スクロールバーのカスタマイズ */
  scrollbar-width: thin;
  scrollbar-color: #78bcf6 #e0e0e0;
}

.table-scroll-container img {
  min-width: 600px;
  width: 100%;
  padding-left: 10px;
}
/* Webkit系ブラウザ（Chrome/Safari）用スクロールバーデザイン */
.table-scroll-container::-webkit-scrollbar {
  height: 8px; /* スクロールバーの太さ */
}

.table-scroll-container::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 4px;
}

.table-scroll-container::-webkit-scrollbar-thumb {
  background: #78bcf6; /* P2C枠線と同じ水色 */
  border-radius: 4px;
}

/* ------------------------------
 テーブル本体
------------------------------ */
.comparison-table {
  width: 100%;
  min-width: 600px; /* この幅より狭い画面（スマホ等）になるとスクロールが発生します */
  border-collapse: separate; /* 枠線を独立させる（ハイライト列の枠を描くため） */
  border-spacing: 0;
  margin: 0 auto;
}

/* セル共通設定 */
.comparison-table th,
.comparison-table td {
  padding: 20px 10px;
  vertical-align: middle;
  border-bottom: 1px solid #e0e0e0; /* 基本の下線 */
  border-right: 1px solid #e0e0e0;  /* 基本の右線 */
  font-size: 18px;
  font-weight: bold;
}

/* 一番右のセルの右線を消す */
.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: none;
}

/* 左側の「テキスト」列（青背景・白文字） */
.row-header {
  background-color: #387bd8;
  color: #ffffff;
  width: 25%;
  border-bottom: 1px solid #ffffff !important; /* 行の間に白い線を入れる */
  border-right: none !important;
}

/* ロゴ部分のダミー装飾 */
.company-logo {
  display: inline-block;
  line-height: 1.2;
}

.logo-mark {
  font-size: 32px;
  font-weight: 900;
}

.logo-text {
  font-size: 12px;
  font-weight: bold;
}

/* ------------------------------
 P2C Produce列のハイライト（水色の太枠）
------------------------------ */
/* ハイライト列の基本枠（左右） */
.highlight-col {
  border-left: 3px solid #78bcf6 !important;
  border-right: 3px solid #78bcf6 !important;
  background-color: #ffffff;
  width: 30%;
}

/* ハイライト列の一番上（角丸と上枠） */
.highlight-col.top-cell {
  border-top: 3px solid #78bcf6 !important;
  border-radius: 12px 12px 0 0; /* 左上と右上だけ角丸 */
  border-bottom: 1px solid #e0e0e0; /* 内部の下線は通常のグレー */
  padding-top: 30px;
  padding-bottom: 20px;
}

/* ハイライト列の一番下（下枠） */
.highlight-col.bottom-cell {
  border-bottom: 3px solid #78bcf6 !important;
}

/* ------------------------------
   セクション全体
------------------------------ */
.faq-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px;
  background: #F7FBFF;
}

/* 見出し部分 */
.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-title {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.faq-title .blue-text {
  color: #2b70c6; /* タイトルの濃い青色 */
}

.faq-subtitle {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

/* ------------------------------
 FAQカード
------------------------------ */
.faq-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); /* ほんの少しだけ影をつけて浮かせる */
}

.faq-row {
  display: flex;
  align-items: flex-start;
  gap: 15px; /* アイコンとテキストの隙間 */
}

/* 質問エリアの下余白 */
.faq-q {
  margin-bottom: 20px;
}

/* ------------------------------
 QとAのアイコン
------------------------------ */
.faq-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-family: Arial, sans-serif;
}

/* Qのアイコン（青背景・白文字） */
.icon-q {
  background-color: #5aa1e6; /* 水色寄りの青 */
  color: #ffffff;
  font-weight: bold;
}

/* Aのアイコン（白背景・青枠・青文字） */
.icon-a {
  background-color: #ffffff;
  border: 1.5px solid #5aa1e6;
  color: #5aa1e6;
}

/* ------------------------------
 テキスト
------------------------------ */
.faq-q-text {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 4px; /* アイコンと1行目の高さを合わせる微調整 */
}

.faq-a-text {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a4a; /* Aのテキストは少し柔らかいグレーに */
  margin-top: 4px; /* アイコンと1行目の高さを合わせる微調整 */
}

/* ------------------------------
 青い下線（2つ目の回答用）
------------------------------ */
.blue-underline {
  /* インライン要素に下線を引くことで、改行されても綺麗に線が続きます */
  text-decoration: underline;
  text-decoration-color: #5aa1e6; /* アイコンと同じ水色 */
  text-decoration-thickness: 2px; /* 線の太さ */
  text-underline-offset: 4px; /* 文字と線の隙間 */
}

.contact-form {
  padding: 0 20px 20px;
}

.contact-form .form-row {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1f2a44;
  margin-bottom: 5px;
}

.contact-form .required {
  color: #e53935;
  font-size: 12px;
  margin-left: 6px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: #1f2a44;
  background: #f7fbff;
  border: 1px solid #cfe2f7;
  border-radius: 8px;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1e88e5;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 24px;
  font-size: 14px;
}

.contact-form .form-check input {
  width: 18px;
  height: 18px;
  accent-color: #1e88e5;
}

.contact-form .form-check label {
  margin: 0;
  font-weight: normal;
  color: #5b6b85;
}

.contact-form .form-check a {
  color: #1e88e5;
  text-decoration: underline;
}

.contact-form .submit-btn {
  display: block; 
  /* width: 100%; */
  padding: 16px;
  background: #fff;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
  /* color: #fff; */
  /* background: #1e88e5; */
  border: none;
  /* border-radius: 999px; */
  cursor: pointer;
  /* box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);*/
  margin-top: 23px;
}


#form form {
  position: absolute;
  top: 32%;
  margin: auto;
  left: 0;
  right: 0;
  width: 95%;
}

#form .radio-group {
  display: flex;
  align-items: center;
  gap:  13px;
}

/* ------------------------------
   フッターリンクエリア
------------------------------ */
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* テキストと縦線の間隔（ここを変更すると広がります） */
}

/* リンクテキスト */
.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.1em; /* 少し文字間隔をあけて読みやすく */
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.6; /* マウスを乗せた時に少し薄くする */
}

/* 中央の縦線 */
.divider {
  display: inline-block;
  width: 2px; /* 線の太さ */
  height: 22px; /* 線の高さ */
  background-color: #555; /* 線の色 */
}

.fix {
  position: fixed;
  bottom: 14px;
  width: 500px;
  margin: auto;
  left: 0;
  right: 0;
  z-index: 999;
}
/* 「きらりん」と光る要素（擬似要素） */
.fix::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%; /* 開始位置は左側の隠れた場所 */
  width: 50%;
  height: 100%;
  
}
.fix a {
  display: inline-block;
  animation: pulsing 2s infinite;
}
.fix a:hover {
  opacity: 1;
}


.cta-area {
  width: 100%;
}

.cta-area a {
  width: 100%;
}

.cta-area a img {
  width: 100%;
}

.footer {
  background-color: #f8f9fa; /* 薄いグレー。背景に合わせて変更してください */
  padding: 40px 20px 130px;
  text-align: center;
  border-top: 1px solid #eee;
}

.footer-links {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 30px; /* リンク同士の間隔 */
}

.footer-links a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.copyright {
  color: #888;
  font-size: 12px;
  margin: 0;
}

/* スマホ対応：リンクを縦並びにする場合 */
@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}
@media screen and (max-width: 1280px) {
  .sidebar {
    display: none;
  }
  .container {
    padding: 0;
  }
  .fix {
    width: 500px;
    max-width: 100%;
    left: 0;
    right: 0;
    bottom: 25px;
    margin: auto;
    max-width: 100%;
  }
  .main-visual {
    width: 100%;
  }
}

@media screen and (max-width: 1280px) {
  .message-area {
    display: none;
  }
  #form .radio-group {
    gap: 3px;
    flex-wrap: wrap;
}
}

.present {
  padding: 30px 0;
  background: #fff;
}

.present figure {
  margin: 30px auto 0;
  width: 380px;
  text-align: center;
  max-width: 100%;
}

@media screen and (min-width: 1001px) {
	.is_pc {
		display: none;
	}
}

@media screen and (max-width: 1000px) {
	.is_sp {
		display: none;
	}
  .contact-form label {
    width: 100%;
  }
  #form form {
    top: 32%;
  }
  .contact-form .form-row {
    margin-bottom: 10px;
  }
}

.map iframe {
  width: 80%;
  margin: auto;
  position: absolute;
  bottom: 109px;
  right: -16px;
  height: 221px;
  left: 0;
}

/* ------------------------------
   CTAボタン きらきら（光沢スイープ）
------------------------------- */
.fix a,
#fv .btn a,
#contact .btn a,
#access .btn a {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/* ボタン上を斜めの光が定期的に走る */
.fix a::after,
#fv .btn a::after,
#contact .btn a::after,
#access .btn a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: cta-shine 2.2s infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes cta-shine {
  0%   { left: -75%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}

/* ------------------------------
   申し込みボタン 押している感じ（タップ風）
------------------------------- */
.contact-form .submit-btn {
  transform-origin: center;
  transition: transform 0.15s ease, filter 0.15s ease;
}

/* ホバー時にキュッと押し込まれる感じ */
.contact-form .submit-btn:hover {
  transform: scale(0.95);
  filter: brightness(0.97);
}

/* クリック（タップ）した瞬間はさらに押し込む */
.contact-form .submit-btn:active {
  transform: scale(0.9);
  filter: brightness(0.95);
  transition: transform 0.05s ease;
}

/* 動きが苦手な人向け（OSの設定を尊重） */
@media (prefers-reduced-motion: reduce) {
  .fix a::after,
  #fv .btn a::after,
  #contact .btn a::after,
  #access .btn a::after {
    animation: none;
  }
}
