body {
  margin: 0;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

/* 表示状態 */
#pagetop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ホバー時の反応 */
#pagetop:hover {
  background: #0895aa;
  transform: translateY(-3px);
}

/* ページトップボタン */
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0baec4;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
  text-align: center;
}

/* スマホ用サイズ調整 */
@media (max-width: 768px) {
  #pagetop {
    width: 40px;
    height: 40px;
    font-size: 20px;
    bottom: 70px;
    right: 20px;
    padding: 1px 6px;
  }
}

/* 固定ヘッダー */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.logo {
  position: absolute;
  top: 32px;
  left: 40px;
}

.logo img {
  height: 32px;
}

.buttons {
  position: absolute;
  top: 22px;
  right: 40px;
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 450px;
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  box-sizing: border-box;
}

.btn-request {
  background-color: #f2c243;
  /* 黄橙 */
}

.btn-contact {
  background-color: #f28c43;
  /* オレンジ */
}

.btn:hover {
  opacity: 0.85;
  color: #ffffff;
}

.border-r50,
.border-r0 {
  border-radius: 48px;
}

/* スマホ時：ボタンを画面下固定・角丸なし */
@media (max-width: 768px) {
  .menu {
    height: 80px;
  }

  .logo {
    top: 20px;
    left: 20px;
  }

  .buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    background: #fff;
    display: flex;
    justify-content: space-between;
    gap: 0;
    z-index: 1001;
  }

  .btn {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    font-size: 16px;
  }

  .btn-request {
    background-color: #f2c243;
    width: 240px;
  }

  .btn-contact {
    background-color: #f28c43;
    width: 240px;
  }

  .border-r0 {
    border-radius: 0px;
  }
}

@media screen and (max-width: 768px) {
  .spbr {
    display: block;
  }
}

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



/* ===============================
   ファーストビュー全体
================================ */
.firstview {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  /* 高さを画面いっぱいに */
  background: linear-gradient(to right, #d8f4f8 0%, #ffffff 100%);
  overflow: hidden;
  padding-top: 80px;
}

.fv-container {
  width: 1600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 98px;
  padding: 0 40px;
  box-sizing: border-box;
}

/* ===============================
     左ボックス
  ================================ */
.fv-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.fv-lead {
  color: #0baec4;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  padding-bottom: 12px;
}

.fv-catch {
  font-weight: 700;
  line-height: 1.3;
  font-size: clamp(42px, 6.9333333333vw, 72px);
  margin: 0;
}

.fv-catch .blue {
  color: #0baec4;
}

.fv-sub {
  font-size: 28px;
  margin-top: 12px;
  font-weight: 500;
}

/* ===============================
     ３つの強みボックス
  ================================ */
.fv-strengths {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.strength-box {
  flex: 1;
  min-width: 130px;
  text-align: center;
  border: 2px solid #f28c43;
  color: #f28c43;
  font-weight: 600;
  background-color: #fff;
  border-radius: 8px;
  font-size: 16px;
  padding: 10px 0;
  line-height: 1.4;
}

/* ===============================
     ボタンエリア
  ================================ */
.fv-buttons {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.btn-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 64px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* 矢印を before 擬似要素で表示 */
.btn::before {
  content: "→";
  position: absolute;
  right: 24px;
  font-size: 18px;
  color: #fff;
  transition: transform 0.3s ease-outQuart;
}

.btn:hover::before {
  transform: translateX(4px);
}

.btn-request {
  background-color: #f2c243;
}

.btn-contact {
  background-color: #f28c43;
}

.btn-request:hover {
  background-color: #f28c43;
}

.btn-contact:hover {
  background-color: #f4d16c;
}

.btn-w {}

/* ===============================
     右ボックス
  ================================ */
.fv-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fv-image-wrap img {
  width: 100%;
  height: auto;
}

/* ===============================
     モバイル対応
  ================================ */
@media (max-width: 1024px) {
  .fv-container {
    gap: 0;
  }
}

@media (max-width: 768px) {
  .firstview {
    height: auto;
    padding: 120px 20px 40px;

  }

  .fv-container {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
    gap: 0;
  }

  .fv-left {
    align-items: center;
    text-align: center;
  }

  .fv-lead,
  .fv-sub {
    font-size: 14px;
    padding-bottom: 16px;
  }

  .fv-strengths {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .strength-box {
    font-size: 10px;
    padding: 8px 0;
    min-width: 75px;
  }

  .fv-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .btn {
    width: 260px;
    font-size: 16px;
    padding: 14px 40px;
  }

  .btn-label {
    font-size: 14px;
    color: #333;
  }

  .btn::before {
    right: 16px;
  }

  .fv-right {
    max-width: 100%;
    margin-top: 40px;
  }
}

/* ===============================
   ファーストビュー背景アニメーション
================================ */
.firstview {
  position: relative;
  overflow: hidden;
  color: #333;
  background: linear-gradient(120deg, #e4fdff, #ffffff, #fff3ce);
  background-size: 400% 400%;
  animation: fvGradientMove 15s ease-in-out infinite;
}

/* グラデーションがゆるやかに流れる */
@keyframes fvGradientMove {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 50% 0%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 50% 100%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* 内容が上に浮きすぎないよう調整 */
.fv-container {
  position: relative;
  z-index: 2;
}

/* 背景のグラデーションの上に薄い層を重ねる*/
.firstview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  mix-blend-mode: overlay;
  z-index: 1;
  animation: fvLightMove 8s ease-in-out infinite alternate;
}

/* 光のような揺らぎ */
@keyframes fvLightMove {
  0% {
    opacity: 0.15;
    transform: translate(0, 0);
  }

  50% {
    opacity: 0.25;
    transform: translate(-50px, 50px);
  }

  100% {
    opacity: 0.15;
    transform: translate(50px, -50px);
  }
}

/* キャッチコピーアニメーション設定 */
.fv-catch {
  display: inline-block;
  overflow: hidden;
  position: relative;
  font-weight: 700;
  line-height: 1.3;
}

/* アニメーション対象を明確にする */
.fv-catch span,
.fv-catch br {
  display: inline-block;
  opacity: 0;
  transform: translateX(1em);
  animation: fvTextReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* 各要素を順番に見せる */
.fv-catch span:nth-of-type(1) {
  animation-delay: 0.1s;
}

.fv-catch span:nth-of-type(2) {
  animation-delay: 0.25s;
}

.fv-catch br {
  animation-delay: 0.35s;
}

/* アニメーション本体 */
@keyframes fvTextReveal {
  0% {
    opacity: 0;
    transform: translateX(1em);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* カラーリング */
.fv-catch .blue {
  color: #0baec4;
}

.fv-catch {
  display: inline-block;
  text-align: center;
  width: 100%;
}

/* ボタン上のラベルアニメーション */
.btn-label {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #0baec4;
  opacity: 0;
  transform: translateY(10px);
  animation: labelFadeUp 0.8s ease-out forwards;
}

/* 1つ目 → 少し早く表示 */
.label-1 {
  animation-delay: 1s;
}

/* 2つ目 → 少し遅れて表示 */
.label-2 {
  animation-delay: 1.6s;
}

/* 上にフェードインするアニメーション */
@keyframes labelFadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 強みボックスの初期状態 */
.fv-strengths {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.strength-box {
  background: #fff;
  font-weight: 700;
  text-align: center;
  border-radius: 12px;
  padding: 16px 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transform: scale(0.7) rotateX(20deg);
  opacity: 0;
  animation: boxPopUp 0.6s cubic-bezier(0.22, 1.4, 0.36, 1) forwards;
}

/* 1つずつ時差で出す */
.strength-box:nth-child(1) {
  animation-delay: 1.2s;
}

.strength-box:nth-child(2) {
  animation-delay: 1.4s;
}

.strength-box:nth-child(3) {
  animation-delay: 1.6s;
}

/* “その場で起き上がる”ような動き */
@keyframes boxPopUp {
  0% {
    transform: scale(0.7) rotateX(20deg);
    opacity: 0;
  }

  60% {
    transform: scale(1.05) rotateX(0deg);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotateX(0);
    opacity: 1;
  }
}

/* スマホ時の調整 */
@media (max-width: 768px) {
  .fv-strengths {
    gap: 12px;
    margin-top: 0;
  }

  .strength-box {
    padding: 12px;
  }
}

/* 右側の画像エリア初期状態 */
.fv-image-wrap {
  opacity: 0;
  transform: translateY(20px);
  animation: imageFadeIn 1s ease-out forwards;
  animation-delay: 1s;
}

/* フェード＋軽いスライド */
@keyframes imageFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .fv-image-wrap {
    animation-delay: 0.8s;
    transform: translateY(10px);
  }
}


/* 共通セクションの基本レイアウト */
.section {
  padding: 80px 0;
}

/* モバイル時に統一して48pxに */
@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
}

/* ===============================
   第2セクション（課題）
================================ */
.section-problem {
  background-color: #e9f6fb;
  /* 背景は淡い水色系 */
  display: flex;
  justify-content: center;
}

.section-problem .inner {
  width: 1200px;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

/* ===============================
   グリッドレイアウト
================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* PC：2列 */
  gap: 24px;
  margin-top: 50px;
}

.problem-item {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

/* 画像 */
.problem-item img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform 0.3s ease;
}

/* ===============================
   ポップアップアニメーション
================================ */
.fade-img {
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.5s cubic-bezier(0.22, 1.4, 0.36, 1);
}

.fade-img.active {
  opacity: 1;
  transform: scale(1);
}

/* ===============================
   スマホ対応
================================ */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    /* 1列6行 */
    gap: 16px;
  }
}

/* -------------------------------
   タイトル
-------------------------------- */
.section-problem h2 {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 50px 0;
  color: #333;
}

.section-problem h2 .blue {
  color: #0baec4;
  font-weight: 700;
}

/* -------------------------------
   画像
-------------------------------- */
/* PCデフォルト */
.problem-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* -------------------------------
   レスポンシブ対応
-------------------------------- */
@media (max-width: 768px) {
  .section-problem .inner {
    padding: 0px 20px;
  }

  .section-problem h2 {
    font-size: 20px;
  }
}

/* ===============================
   セクション見出しアニメーション
================================ */
/* ===============================
   見出しの基本スタイル
================================ */
.section h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.section h2 .blue {
  color: #0baec4;
}

/* 表示されたときのアクティブ状態 */
.section h2.active {
  opacity: 1;
  transform: translateY(0);
}

/* 下線アニメーション */
.section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 3px;
  background: #0baec4;
  border-radius: 2px;
  transition: width 1s ease-out 0.3s;
}

/* 表示時に下線がスライド */
.section h2.active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .section h2 {
    font-size: 20px;
  }

  .section h2::after {
    bottom: -6px;
    height: 2px;
  }
}

.section-recommend h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.section-recommend h2 .blue {
  color: #0baec4;
}

/* 表示されたときのアクティブ状態 */
.section-recommend h2.active {
  opacity: 1;
  transform: translateY(0);
}

/* 下線アニメーション */
.section-limit h2::after,
.section-recommend h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: width 1s ease-out 0.3s;
}

/* 表示時に下線がスライド */
.section-limit h2.active::after,
.section-recommend h2.active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .section-recommend h2 {
    font-size: 20px;
  }

  .section-recommend h2::after {
    bottom: -6px;
    height: 2px;
  }
}

/* ===============================
   公式サイトが無い問題点
================================ */
.section-problem-points {
  background-color: #f0f9fc;
  /* 背景：淡い水色 */
  text-align: center;
}

.section-problem-points .inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* タイトル */
.section-problem-points h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 50px 0;
  color: #333;
}

.section-problem-points h2 .blue {
  color: #0baec4;
}

/* ===============================
   4つのボックスレイアウト
================================ */
.points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.point-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 50px 40px;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.point-image img {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
}

.point-lead {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.point-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* ===============================
   モバイル対応
================================ */
@media (max-width: 768px) {
  .section-problem-points .inner {
    padding: 0 20px;
  }

  .points-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .point-box {
    padding: 24px 20px;
  }

  .point-lead {
    font-size: 16px;
  }

  .point-text {
    font-size: 14px;
  }

  .point-image img {
    width: 64px;
    margin-bottom: 16px;
  }
}

/* ===============================
   第4セクション：公式サイト無しでは限界があります
================================ */
.section-limit {
  background: url("../../img/sec3-bg.jpg") center center / cover no-repeat;
  /* 背景画像を全面配置 */
  color: #fff;
}

.section-limit .inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.limit-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* 左テキスト */
.limit-text {
  flex: 1;
}

.limit-text h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 50px 0;
  color: #fff;
}

.limit-text h2 .yellow {
  color: #f4d16c;
}

.limit-text p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  color: #fff;
}

/* 右画像 */
.limit-image {
  flex: 0 0 50%;
  max-width: 600px;
}

.limit-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* 初期状態 */
.fade-img {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

/* 表示されたとき */
.fade-img.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-img {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-img.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}


/* ===============================
   モバイル対応
================================ */
@media (max-width: 768px) {
  .limit-content {
    flex-direction: column;
    gap: 40px;
  }

  .limit-text {
    text-align: center;
  }

  .limit-text h2 {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .limit-text p {
    font-size: 14px;
  }

  .limit-image {
    max-width: 100%;
  }
}

/* ===============================
   第5セクション：GREADが解決します
================================ */
.section-solution {
  background: url("../../img/sec4-bg.jpg") center center / cover no-repeat;
  text-align: center;
}

.section-solution .inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.section-solution h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #333;
  margin: 0 0 50px 0;
}

.section-solution h2 .yellow {
  color: #0baec4;
}

/* ===============================
   グリッド配置
================================ */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* 各ボックス */
.solution-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px;
  box-sizing: border-box;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.solution-box img {
  display: block;
  margin: 0 auto 20px auto;
}

.solution-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0baec4;
  margin: 0 0 12px 0;
  text-align: center;
}

.solution-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* ===============================
   モバイル対応
================================ */
@media (max-width: 768px) {
  .section-solution .inner {
    padding: 0 20px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .solution-box {
    padding: 24px 20px;
  }

  .solution-box h3 {
    font-size: 16px;
  }

  .solution-box p {
    font-size: 14px;
  }

  .solution-box img {
    width: 64px;
    margin-bottom: 16px;
  }
}

/* ===============================
   CTAセクション
================================ */
.section-cta {
  background: url("../../img/sec-ct.jpg") center center / cover no-repeat;
  display: flex;
  justify-content: center;
}

.section-cta .inner {
  width: 1200px;
  max-width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
}

/* CTAボックス */
.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0baec4;
  border-radius: 16px;
  padding: 60px 80px;
  box-sizing: border-box;
  color: #fff;
  flex-wrap: wrap;
  gap: 40px;
}

/* 左テキスト */
.cta-text {
  flex: 1;
  position: relative;
}

/* 吹き出し */
.cta-label {
  display: inline-block;
  background: #fff;
  color: #0baec4;
  font-weight: 700;
  border-radius: 9999px;
  padding: 6px 20px;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}

.cta-label::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 64px;
  /* 吹き出しの位置を調整 */
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #fff;
}

.cta-text h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  margin: 0 0 50px 0;
  color: #fff;
  line-height: 1.4;
}

.cta-text h2 .yellow {
  color: #f4d16c;
}

.cta-text p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

/* 右ボタンエリア */
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* 各ボタンを揃える */
.btn-box {
  display: flex;
  flex-direction: column;
  align-items: flex-center;
}

.btn-label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

.btn-label2 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #fff;
}


.btn {
  display: inline-block;
  width: 100%;
  padding: 14px 60px 14px 26px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  text-align: center;
}

/* 矢印 */
.btn::before {
  content: "→";
  position: absolute;
  right: 24px;
  font-size: 18px;
  color: #fff;
  transition: transform 0.3s ease;
}

.btn:hover::before {
  transform: translateX(4px);
}

.btn-request {
  background-color: #f2c243;
}

.btn-contact {
  background-color: #f28c43;
}

.btn:hover {
  opacity: 0.9;
}

.section-cta h2 {
  display: block;
  margin: 0 auto 20px;
}

.btn-box {
  width: 250px;
}

/* ===============================
   モバイル対応
================================ */
@media (max-width: 768px) {
  .cta-box {
    flex-direction: column;
    padding: 40px 16px;
    text-align: center;
  }

  .cta-text h2 {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .cta-text p {
    font-size: 14px;
  }

  .cta-buttons {
    align-items: center;
    width: 100%;
    gap: 16px;
  }

  .btn-box {
    width: 250px;
  }

  .btn {
    width: 100%;
    padding: 14px 0;
  }

  .btn::before {
    right: 16px;
  }

  .btn-label {
    font-size: 14px;
  }

  .cta-label::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ===============================
   GREADで変わる
================================ */
.section-change {
  position: relative;
  background: url("../../img/change-bg.jpg") center/cover no-repeat;
  padding: 80px 20px;
  color: #333;
}

/* ===============================
   コンテンツボックス
================================ */
.change-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.change-inner h2 {
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 40px;
}

/* ===============================
   リスト（チェック付き）
================================ */

.change-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.change-list li {
  position: relative;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 18px;
  padding-left: 36px;
  /* チェック分のスペース */
  word-break: break-word;
  /* 長文対策 */
}

.change-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background: url("../../img/icon-check.svg") no-repeat center/contain;
}

/* ===============================
   黄色マーカー
================================ */
.marker {
  position: relative;
  white-space: nowrap;
  /* ←これで改行しない！ */
  background: linear-gradient(transparent 60%, #ffecb6 60%);
}

/* ===============================
   スマホ対応
================================ */
@media (max-width: 768px) {
  .section-change {
    padding: 80px 16px;
  }

  .change-inner {
    padding: 40px 24px;
  }

  .change-list li {
    font-size: 16px;
    padding-left: 32px;
  }

  .change-list li::before {
    top: 4px;
    width: 18px;
    height: 18px;
  }
}


/* ===============================
   お客様の声セクション
================================ */
.section-voice .inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  text-align: center;
}

.section-voice h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #0baec4;
  margin-bottom: 60px;
}

/* レイアウト */
.voice-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  text-align: left;
}

/* 左画像 */
.voice-image {
  width: calc(50% - 20px);
}

.voice-image figure {
  margin: 0;
}

.voice-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  margin-bottom: 16px;
}

.voice-image figcaption {
  font-size: 15px;
  line-height: 1.6;
  background: #d9edf7;
  padding: 16px 20px;
  border-radius: 4px;
  color: #333;
}

.voice-link {
  display: inline-block;
  margin-top: 8px;
  color: #0baec4;
  font-size: 14px;
  text-decoration: none;
}

.voice-link:hover {
  text-decoration: underline;
}

/* 右テキスト */
.voice-text {
  width: calc(50% - 20px);
}

.voice-item {
  margin-bottom: 32px;
}

.voice-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0baec4;
  margin-bottom: 12px;
  border-bottom: 1px solid #0baec4;
  padding-bottom: 4px;
}

.voice-item p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.t-bold {
  font-size: 20px;
  font-weight: bold;
}

/* ===== タブUI ===== */
.voice-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.tab-btn {
  appearance: none;
  border: 1px solid #0baec4;
  background: #fff;
  color: #0baec4;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
}

.tab-btn:hover {
  background: #e7f7fa;
}

.tab-btn.is-active {
  background: #0baec4;
  color: #fff;
}

/* ===== パネル表示制御 ===== */
.voice-panel {
  display: none;
}

.voice-panel.is-active {
  display: block;
}

.voice-panel[hidden] {
  display: none !important;
}

@media (max-width: 768px) {
  .tab-btn {
    padding: 6px 14px;
  }
}

/* ===============================
   モバイル対応
================================ */
@media (max-width: 768px) {
  .section-voice .inner {
    padding: 0 20px;
  }

  .voice-content {
    flex-direction: column;
    gap: 32px;
  }

  .voice-image,
  .voice-text {
    width: 100%;
  }

  .voice-item h3 {
    font-size: 16px;
  }

  .voice-item p {
    font-size: 14px;
  }

  .voice-image figcaption {
    font-size: 14px;
  }
}


/* ===============================
   料金プランセクション
================================ */
.section-plan {
  background: #e8f6fb;
  text-align: center;
}

.section-plan .inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.section-plan h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #0baec4;
  margin-bottom: 60px;
}

/* ラップ */
.plan-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  /* ← ボックス間を広げる */
}

/* ボックス全体 */
.plan-box {
  position: relative;
  flex: 1;
  min-width: 300px;
  background: #fff;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-top: 20px;
  /* 吹き出しスペース確保 */
}

/* 吹き出し */
.plan-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #0baec4;
  padding: 6px 18px;
  border: solid 2px #0baec4;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 2;
}

.plan-label::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #0baec4;
}

/* ヘッダー */
.plan-header {
  background: #0baec4;
  color: #fff;
  padding: 32px 16px 28px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.plan-name {
  font-size: 22px;
  font-weight: 700;
  margin: 16px 0;
  color: #fff;
  background: #0baec4;
  padding: 40px 0 24px;
  margin-top: -24px;
  border-radius: 12px 12px 0 0;
}

/* ボディ */
.plan-body {
  padding: 36px 28px 48px;
}

.plan-point {
  font-size: 14px;
  color: #333;
  margin-bottom: 18px;
}

/* 料金 */
.plan-price {
  background: #f9fbfc;
  padding: 16px;
  font-weight: 700;
  color: #333;
  font-size: 18px;
  margin-bottom: 0px;
}

.plan-price2 {
  font-size: 12px;
}

.plan-price span {
  font-size: 36px;
  color: #0baec4;
}

/* 初期費用・ページ数 */
.plan-detail {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
  margin-bottom: 28px;
  font-weight: bold;
}

.plan-detail p {
  margin: 6px 0;
  font-size: 15px;
  color: #333;
}

/* 標準機能 */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  padding: 0 24px 24px;
}

.plan-features li {
  font-size: 14px;
  line-height: 1.8;
  padding-left: 1em;
  position: relative;
}

.plan-features li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #0baec4;
}

/* 注釈 */
.plan-note {
  font-size: 13px;
  color: #555;
  margin-top: 50px;
  text-align: center;
}

/* ===============================
   モバイル対応
================================ */
@media (max-width: 768px) {
  .section-plan .inner {
    padding: 0 20px;
  }

  .plan-wrap {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .plan-box {
    width: 100%;
    max-width: 360px;
    margin-bottom: 24px;
  }

  .plan-label {
    font-size: 12px;
  }

  .plan-header {
    padding: 28px 12px;
  }

  .plan-name {
    font-size: 20px;
  }

  .plan-body {
    padding: 28px 20px;
  }

  .plan-price span {
    font-size: 28px;
  }

  .plan-note {
    margin-top: 16px;
  }
}

/* ===============================
   標準サービスセクション
================================ */
.section-service {
  background: #fff;
  text-align: center;
}

.section-service .inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.section-service h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #333;
  margin-bottom: 60px;
}

/* サービス一覧 */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
  margin-bottom: 40px;
}

.service-item {
  background: #e8f6fb;
  border-radius: 12px;
  padding: 28px 16px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  width: 100%;
  box-sizing: border-box;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* 注釈 */
.service-note {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

/* ===============================
   モバイル対応
================================ */
@media (max-width: 768px) {
  .section-service .inner {
    padding: 0 20px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-item {
    font-size: 16px;
    padding: 20px 12px;
  }

  .service-note {
    font-size: 13px;
    text-align: left;
  }
}

/* ===============================
   よくある質問
================================ */
.section-faq {
  background: #e8f6fb;
  text-align: center;
}

.section-faq .inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.section-faq h2 {
  text-align: center;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
}

/* コンテナ構成 */
.faq-container {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

/* 左メニュー */
.faq-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-nav li {
  font-size: 18px;
  color: #333;
  margin-bottom: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.faq-nav li.active,
.faq-nav li:hover {
  color: #0baec4;
  font-weight: 600;
}

/* 右側のQ&A */
.faq-content {
  flex: 1;
}

.faq-panel {
  display: none;
}

.faq-panel.active {
  display: block;
}

/* Q&Aボックス */
.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: left;
}

.faq-item:hover {
  transform: translateY(-2px);
}

/* 質問部分 */
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-q-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-q-mark {
  color: #0baec4;
  font-weight: 700;
  font-size: 18px;
}

.faq-q-text {
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

/* ＋ボタン */
.toggle {
  font-size: 24px;
  color: #999;
  transition: transform 0.3s, color 0.3s;
}

.faq-item.open .toggle {
  transform: rotate(45deg);
  color: #0baec4;
}

/* アンサー */
.faq-a {
  display: none;
  margin-top: 12px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .section-faq .inner {
    padding: 0 20px;
  }

  .faq-container {
    flex-direction: column;
    gap: 24px;
  }

  .faq-nav {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }

  .faq-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0;
    margin: 0 auto;
  }

  .faq-nav li {
    font-size: 15px;
    background: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    transition: 0.3s;
  }

  .faq-nav li.active {
    background: #0baec4;
    color: #fff;
  }

  .faq-content {
    width: 100%;
  }

  .faq-item {
    padding: 16px;
    margin: 0 auto 12px;
  }

  .faq-q-text {
    font-size: 16px;
  }
}

/* ===============================
   おすすめセクション（3列固定版）
================================ */
.section-recommend {
  background: #0baec4;
  color: #fff;
}

.section-recommend .inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  text-align: center;
}

.section-recommend h2 {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 50px;
  color: #fff;
}

/* 3つのボックスを完全横並びに */
.recommend-boxes {
  display: flex;
  justify-content: space-between;
  /* 均等配置 */
  align-items: stretch;
  gap: 32px;
  margin-bottom: 60px;
  flex-wrap: nowrap;
  /* 折り返し禁止 */
}

.recommend-item {
  background: #fff;
  color: #333;
  border-radius: 16px;
  flex: 1;
  /* 均等幅 */
  padding: 24px;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
  min-width: 0;
  max-width: 352px;
}

/* キャッチコピー */
.recommend-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* 画像 */
.recommend-item .img-wrap {
  text-align: center;
  margin-bottom: 20px;
}

.recommend-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* テキスト */
.recommend-item p {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  padding: 0 4px;
}

/* 下部テキスト */
.recommend-bottom {
  border: 1px solid #fff;
  border-radius: 12px;
  padding: 24px;
  max-width: 600px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.8;
}

.recommend-bottom span {
  color: #f4d16c;
  font-weight: 600;
}

.t-blue {
  color: #0baec4;
}

/* ===============================
   スマホ対応
================================ */
@media (max-width: 768px) {
  .section-recommend .inner {
    padding: 0 20px;
  }

  .recommend-boxes {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .recommend-item {
    width: 100%;
    max-width: 420px;
    padding: 20px;
  }

  .recommend-item h3 {
    font-size: 18px;
  }

  .recommend-item p {
    font-size: 14px;
  }

  .recommend-bottom {
    font-size: 16px;
    padding: 20px;
  }
}

/* ===============================
   ギャラリーセクション
================================ */
.section-gallery {
  width: 100vw;
  overflow: hidden;
  position: relative;
  background: #fff;
  padding: 60px 0;
}

/* 横スクロールトラック */
.gallery-track {
  display: flex;
  width: max-content;
  animation: scrollGallery 60s linear infinite;
}

.gallery-slide {
  display: flex;
  gap: 20px;
}

.gallery-slide img {
  width: 380px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* アニメーション */
@keyframes scrollGallery {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* スマホ対応 */
@media (max-width: 768px) {
  .gallery-slide img {
    width: 240px;
  }

  .section-gallery {
    padding: 40px 0;
  }

  .gallery-track {
    animation-duration: 40s;
    /* スマホは少し早く */
  }
}

/* ===============================
   フッター
================================ */
.footer {
  background: #e5f5fc;
  /* 淡い水色 */
  padding: 40px 0 20px;
  color: #111;
  font-size: 14px;
  line-height: 1.8;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 0 40px;
  box-sizing: border-box;
}

/* ロゴ */
.footer-logo img {
  height: 35px;
  width: auto;
  margin-bottom: 12px;
}

/* 会社情報 */
.footer-info {
  flex: 1;
}

.c-name {
  font-size: 1.2em;
  font-weight: bold;
}

.footer-info p {
  margin: 0 0 6px 0;
}

/* コピーライト */
.footer-copy {
  text-align: right;
  white-space: nowrap;
}

/* ===============================
   スマホ対応
================================ */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 0 20px;
  }

  .footer-logo h2 {
    font-size: 36px;
  }

  .footer-info p {
    margin: 4px 0;
    line-height: 1.6;
  }

  .footer-copy {
    text-align: center;
    margin-top: 16px;
  }
}

/* ===============================
   お問い合わせフォーム
================================ */

.section-contact {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 144px 0 80px;
}

.section-contact .inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.7;
}

.page-content {
  text-align: left;
}

.requied {
  background-color: #ed1010;
  padding: 0 4px;
  color: #fff;
  margin-left: 10px;
  font-size: .9em;
}

.wpcf7-form-control {
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
}

.table-res-form {
  width: 100%;
}

.table-res-form td {
  padding: 0 8px;
}

.table-res-form th {
  padding: 0 8px;
  background-color: #eee;
}

.wpcf7-submit {
  margin-top: 24px;
}

@media (max-width: 768px) {

  .table-res-form,
  .table-res-form tr,
  .table-res-form th,
  .table-res-form td {
    display: block;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .table-res-form tr {
    margin-bottom: 16px;
    border-bottom: 2px solid #eee;
  }

  .table-res-form th {
    background: #f8f8f8;
    font-weight: bold;
    padding: 10px 12px;
    border: none;
  }

  .table-res-form td {
    padding: 10px 12px;
    border: none;
    position: relative;
  }
}

/* =====================================================
   主なサービス
===================================================== */
.section-basic {
  background: #0baec4;
  padding: 80px 20px;
  color: #111;
}

.section-basic .inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-basic h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-basic h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #fff;
  margin: 10px auto 0;
}

.service-grid2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.service-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
}

.service-box img {
  margin-bottom: 0;
}

.service-icon {
  width: 60px;
  height: auto;
  margin-bottom: 20px;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  margin: 12px 0 0;
}

.service-sub {
  font-size: 12px;
  color: #555;
  margin: 0 0 4px;
}

/* ======== スマホ ======== */
@media (max-width: 768px) {
  .section-basic {
    padding: 48px 20px;
  }

  .service-grid2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-box {
    padding: 24px 10px;
  }

  .service-icon {
    width: 48px;
    margin-bottom: 14px;
  }

  .service-title {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .service-sub {
    font-size: 11px;
  }
}



/* =====================================================
   サンクスページ
===================================================== */
.thanks-sec {
  margin-top: 100px;
}

.thanks-sec .inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.thanks-sec .txt01 {
  font-size: 20px;
  font-weight: 700;
}

.thanks-sec .btn-wrap {
  margin-top: 60px;
  max-width: 400px;
}
/* ===============================
   キャンペーンバナー
================================ */
.section-banner {
  display: flex;
  justify-content: center;
}

.section-banner .inner {
  width: 960px;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 0 20px;
}

.banner-grid {
  display: grid;
}

.banner-item {
  width: 100%;
  overflow: hidden;
}

/* 画像 */
.banner-item img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.banner-item:hover {
  opacity: 0.7;
}