/* ========================================
   LP Wireframe CSS
   ======================================== */

/* Google Fonts インポート */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* ----------------------------------------
   カラー設定（一括管理）
   ---------------------------------------- */
:root {
  --color-black: #121212;
  --color-white: #fff;
  --color-gray-light: #f5f5f5;
  --color-gray-bg: #dcdcdc;
  --color-cta-bg: #626262;
  --color-blue: #2963a3;        /* メイン青（背景・ボタン用） */
  --color-blue-light: #3b82f6;
  --color-blue-text: #2963a3;   /* テキスト用青 */
  --color-green: #22c55e;
  --color-highlight: #fef3c7;
}

/* ----------------------------------------
   リセット・ベース設定
   ---------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Arial, 'Noto Sans JP', sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05rem;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* ----------------------------------------
   PC/SP 表示切り替え
   ---------------------------------------- */
.pc { display: block; }
.sp { display: none; }

@media (max-width: 768px) {
  .pc { display: none; }
  .sp { display: block; }
}

/* ----------------------------------------
   コンテナ設定
   ---------------------------------------- */
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.inner-950 {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.inner-1080 {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ----------------------------------------
   セクション設定
   ---------------------------------------- */
.section {
  padding: 4rem 0;
}

.section--full {
  width: 100%;
}

.section--no-top-padding {
  padding-top: 0;
  margin-top: 0;
}

/* レスポンシブ: 理由セクション間の余白調整（一塊のセクションのため） */
@media (max-width: 768px) {
  /* 理由02・理由03セクション */
  section.section.service-detail-cont {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  /* 自治体連携セクション（理由02の後） */
  section.section.section--no-top-padding.municipality {
    padding-top: 0;
    margin-top: -1.5rem;
  }

  /* 支援内容一覧セクション（理由03の後） */
  section.section.section--no-top-padding.support-list {
    padding-top: 0;
    margin-top: -1.5rem;
  }
}

.section--cta {
  background-color: var(--color-cta-bg);
  color: var(--color-white);
}

/* ----------------------------------------
   見出し設定（中央配置・太字）
   ---------------------------------------- */
.section__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.section__heading img {
  max-width: 100%;
  height: auto;
  margin: 3rem auto;
  display: block;
}

@media (max-width: 768px) {
  .section__heading img {
    max-width: 94%;
    margin: 2rem auto 4rem;
  }
}

/* 青文字の見出し */
.section__heading--blue,
.roadmap-box__heading--blue,
.roadmap-box__output-heading--blue {
  color: var(--color-blue-text);
}

.section__heading--white {
  color: var(--color-white);
}

.section__subheading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  margin: 2rem 0 1.5rem;
}

.section__subheading--bg {
  display: inline-block;
  background-color: #dc3545;
  color: var(--color-white);
  padding: 0.5rem 2rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.section__subheading--white {
  color: var(--color-white);
}

/* 教育研修ボックス */
/* 教育研修事業セクション */
.edu-lead {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.edu-flow {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.edu-flow img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.edu-bmp-box {
  background-color: #dae7ee;
  border-radius: 16px;
  padding: 2rem 3rem 3rem;
  margin-bottom: 3rem;
}

.edu-bmp-box__heading {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  padding: 0 0.75rem;
  color: #fff;
  background-color: #09609c;
  display: inline-block;
  margin: 0 auto;
  width: auto;
  position: relative;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}


.edu-box {
  background-color: var(--color-white);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin-bottom: 0.5rem;
}

.edu-box__logo {
  text-align: center;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.edu-box__logo img {
  /* max-width: 300px; */
  height: auto;
  margin: 0 auto;
  margin-top: 15px;
  display: block;
}

.edu-box__content.two-col {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.edu-box__content .two-col__text {
  flex: 1;
}

.edu-box__content .two-col__text p {
  font-size: 0.875rem;
  line-height: 1.8;
}

.edu-box__content .two-col__image {
  flex-shrink: 0;
}

.edu-box__content .two-col__image img {
  width: auto;
  height: auto;
}

.edu-box__text {
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 0.875rem;
}

.edu-box__partners {
  text-align: center;
  display: flex;
  justify-content: center;
}

.edu-box__partners img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .edu-bmp-box {
    padding: 1.5rem 1rem 2rem;
  }
  
  .edu-box__content.two-col {
    flex-direction: column;
    text-align: left;
  }

  .education .section__heading,
  .edu-lead,
  .edu-box__text,
  .edu-bmp-box__heading {
    text-align: left;
  }
}

.section__sub {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ----------------------------------------
   ダミー画像
   ---------------------------------------- */
.dummy-img {
  background-color: var(--color-gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: #888;
  font-size: 0.875rem;
  border: 1px dashed #aaa;
}

.dummy-img::before {
  content: "[" attr(data-img) "] ";
}

.dummy-img--logo {
  min-height: 80px;
  width: 150px;
}

.dummy-img--icon {
  min-height: 40px;
  width: 40px;
  font-size: 0.75rem;
}

/* ----------------------------------------
   ボタン
   ---------------------------------------- */
.btn {
  display: inline-block;
  padding: 1rem 0;
  border-radius: 4px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn--cv {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.btn--cv:hover {
  transform: translateY(-4px);
  opacity: 0.7;
}

/* ----------------------------------------
   グリッドレイアウト
   ---------------------------------------- */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

.grid--6col {
  grid-template-columns: repeat(6, 1fr);
}

.grid--9items {
  grid-template-columns: repeat(3, 1fr);
}

.grid__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid__title {
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.grid__text {
  font-size: 0.875rem;
}

@media (max-width: 1200px) {
  .grid--6col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .grid--3col,
  .grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--6col {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--9items {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----------------------------------------
   3つの支援
   ---------------------------------------- */
.support-3 {
  background-color: #e8e8e8;
  padding: 4rem 0;
}

.support-3__lead {
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.support-3__grid {
  gap: 2rem;
}

.support-3__item {
  text-align: center;
}

.support-3__image {
  margin-bottom: 1.5rem;
}

.support-3__image img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
}

.support-3__title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-blue-text);
  margin-bottom: 0.75rem;
}

.support-3__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-black);
}

@media (max-width: 768px) {
  .support-3__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .support-3__image img {
    max-height: 160px;
  }
}

/* ----------------------------------------
   支援内容一覧グリッド
   ---------------------------------------- */

.support-list__bg {
  background-color: var(--color-blue);
  background-image: url('../img/supportlist-bg.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  border-radius: 16px;
  padding: 3rem 2rem;
}

.support-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 1rem;
  max-width: 1160px;
  margin: 0 auto;
}

.support-grid__item {
  position: relative;
  flex: 0 0 calc(20% - 0.8rem);
  max-width: calc(20% - 0.8rem);
}

.support-grid__item::before {
  content: attr(data-num);
  position: absolute;
  top: -29px;
  left: 0px;
  font-family: 'Bebas Neue', 'DIN Alternate', 'DIN Condensed', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.2rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.support-grid__box {
  position: relative;
  z-index: 1;
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
}

.support-grid__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
}

.support-grid__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-blue-text);
  margin-bottom: 0.75rem;
}

.support-grid__text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 1024px) {
  .support-grid__item {
    flex: 0 0 calc(33.333% - 0.67rem);
    max-width: calc(33.333% - 0.67rem);
  }
}

@media (max-width: 768px) {
  .support-list__bg {
    padding: 2rem 1.5rem;
    max-width: 95%;
    margin: 0 auto;
  }

  .support-grid {
    gap: 1.25rem 0.75rem;
  }
  
  .support-grid__item {
    flex: 0 0 calc(50% - 0.375rem);
    max-width: calc(50% - 0.375rem);
  }

  .support-grid__item::before {
    font-size: 3rem;
    top: -20px;
    left: -3px;
    color: rgba(255, 255, 255, 0.05);
  }

  .support-grid__box {
    padding: 1rem 0.75rem;
  }

  .support-grid__icon {
    width: 50px;
    height: 50px;
  }

  .support-grid__title {
    font-size: 0.875rem;
  }

  .support-grid__text {
    font-size: 0.75rem;
  }
}

/* ----------------------------------------
   実績数値グリッド
   ---------------------------------------- */
.results-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.results-grid__item {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.results-grid__item img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .results-grid {
    flex-wrap: wrap;
    gap: 0;
  }

  .results-grid__item {
    flex: 0 0 calc(33.333% - 0.75rem);
  }

  .results-grid__item img {
    height: 60px;
  }
}

/* ----------------------------------------
   2カラムレイアウト
   ---------------------------------------- */
.two-col {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

.two-col--reverse {
  flex-direction: row-reverse;
}

.two-col__text {
  flex: 1;
}

.two-col__text p {
  line-height: 2;
}

.two-col__image {
  flex: 1;
}

.two-col__image img {
  max-width: 100%;
  height: auto;
}

.two-col__image--adjustable {
  position: relative;
}

.two-col__label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-blue-text);
  margin: 1rem 0 3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.two-col__label-img {
  /* height: 2.5rem; */
  width: auto;
}

.two-col__label span {
  font-size: 0.875rem;
  font-weight: 400;
}

.two-col__title {
  font-weight: 900;
  font-size: 2.1875rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--color-blue-text);
}

@media (max-width: 768px) {
  .two-col,
  .two-col--reverse {
    flex-direction: column;
  }

  .two-col__label {
    margin: 1rem 0 2rem;
    max-width: 40%;
  }

  .two-col__title {
    font-size: 2rem;
    line-height: 1.4;
  }

  .two-col__image img {
    margin: 0 auto;
    display: block;
  }
}

/* 成果ロードマップボックス */
.roadmap-box-wrapper {
  padding: 2rem 0;
  margin-top: 2rem;
}

.roadmap-box {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 3rem 2rem;
}

.roadmap-box__heading {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.roadmap-box__steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
  margin-bottom: 3rem;
  position: relative;
  padding: 0 2rem;
  max-width: 900px;
}

.roadmap-box__steps::before {
  content: '';
  position: absolute;
  top: 75px;
  left: 80px;
  right: 80px;
  height: 3px;
  background: linear-gradient(to right, #2b63a3, #008d9e);
  z-index: 0;
}

.roadmap-step {
  text-align: center;
  flex: 0 0 auto;
  max-width: 160px;
  position: relative;
  z-index: 1;
}

.roadmap-step__icon {
  margin-bottom: 1rem;
}

.roadmap-step__icon img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.roadmap-step__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-blue-text);
  margin-bottom: 0.25rem;
}

.roadmap-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-blue-text);
  margin-bottom: 0.5rem;
}

.roadmap-step__text {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.6;
}

.roadmap-box__output-heading {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.roadmap-box__output {
  text-align: center;
}

.roadmap-box__output img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .roadmap-box {
    padding: 0 1rem;
  }

  .roadmap-box__steps {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .roadmap-step {
    flex: 0 0 calc(50% - 0.5rem);
    max-width: none;
  }

  .roadmap-box__steps::before {
    display: none;
  }

  .roadmap-step__icon img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: block;
  }
}

/* 選ばれる理由02 */
.reason2-tags {
  margin-top: 1.5rem;
}

.reason2-tags img {
  max-width: 100%;
  height: auto;
}

.reason2-seamless {
  margin-top: 5rem;
  text-align: center;
  display: flex;
  justify-content: center;
}

.reason2-seamless img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.reason2-description {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.reason2-description p {
  margin-bottom: 1rem;
}

.reason2-description p:last-child {
  margin-bottom: 0;
}

/* 縦並びコンテンツ */
.vertical-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.vertical-content__text {
  max-width: 800px;
  line-height: 1.8;
}

/* ----------------------------------------
   1. ファーストビュー
   ---------------------------------------- */
.fv-top {
  background-image: url('../img/fv-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 1rem 0 2.5rem;
  min-height: 50vh;
  position: relative;
}

.fv-top__logo {
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
}

.fv-top__logo img {
  max-width: 120px;
  height: auto;
}

.fv-top__content {
  text-align: center;
}

.fv-top__front {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-top: -0.75rem;
}

.fv-front-sub {
  max-width: 720px !important;
}

.fv-front-sub2 {
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.fv-top::before {
  content: '';
  position: absolute;
  bottom: -8%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 105px;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
  padding: 0.75rem 0;
  box-sizing: content-box;
}
.fv-top__front img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.fv-front-accent {
  position: absolute !important;
  top: -7%;
  left: 58%;
  max-width: 480px !important;
  z-index: 1 !important;
  opacity: 0.8;
}

.fv-front-main {
  z-index: 3 !important;
  margin: 1.75rem 0 1.5rem;
}

.fv-band {
  background-image: url(img/fv-band-bg.png);
  background-size: cover;
  background-position: center;
  background-color: #fff;
  padding: 1rem 1rem 1.75rem;
  margin-top: -30px;
  border-top: solid 3px #313131;
  position: relative;
  z-index: 0;
}

.fv-band__box {
  background-color: var(--color-white);
  max-width: 950px;
  margin: 0 auto;
  padding: 2.25rem 2rem 1.25rem;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.fv-band__img {
  position: absolute;
  right: -1%;
  top: 30%;
  transform: translateY(-50%);
  height: 100%;
  width: auto;
  max-height: 120px;
  object-fit: contain;
}

.fv-band__box .fv-cta-catch {
  margin: 0 auto 0.25rem;
  max-width: 100%;
  height: auto;
  padding-right: 3rem;
}

.fv-band__buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
}

.btn--img {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.btn--img:hover {
  opacity: 0.8;
}

/* 中間サイズ（1200px〜769px）で両画像を均等に縮小 */
@media (max-width: 1200px) and (min-width: 769px) {
  .fv-band__box .fv-cta-catch {
    max-width: calc(50% + 15vw);
  }
  
  .fv-band__img {
    max-height: calc(50px + 6vw);
  }
}

@media (max-width: 768px) {
  .fv-top__logo img {
    max-width: 65px;
  }
  
  .fv-top__front {
    gap: 0.25rem;
  }
  
  .fv-front-accent {
    max-width: 260px !important;
    top: -9% !important;
    left: 39% !important;
    opacity: 0.6;
  }
  .fv-top {
    min-height: auto;
}
  .fv-top::before {
    height: 18%;
  }

  .fv-front-main,
  .fv-front-sub,
  .fv-front-sub2 {
    max-width: 100% !important;
  }
  .fv-front-main {
    margin: 2.5rem 0 0.25rem;
  }

  .fv-front-sub2 {
    margin-top: 0;
  }

  .fv-band {
    background-image: url(../img/cta-catch-fv-bg-sp.jpg);
    background-position: top;
  }

  .fv-band .container {
    padding: 0;
  }

  .fv-band__box {
    padding: 0;
    border-radius: 8px;
    background: none;
  }

  .fv-band__img {
    display: none;
  }

  .fv-band__box .fv-cta-catch {
    padding: 0;
    max-width: 250px;
  }

  .fv-band__buttons-wrap {
    background-color: #fff;
    padding: 1.25rem 2.5rem;
    border-radius: 4px;
    margin-top: 0.75rem;
  }

  .fv-band__buttons {
    margin-top: 0;
    gap: 0.25rem;
  }
}

/* ----------------------------------------
   サービス概要 背景（PC版のみ）
   ---------------------------------------- */
.service-overview--bg-pc {
  background-image: url('../img/pro-bg.png');
  background-repeat: no-repeat;
  background-position: 50% 59%;
  position: relative;
}

.service-overview--bg-pc::before {
  content: '';
  position: absolute;
  top: -63px;
  left: 0;
  right: 0;
  height: 250px;
  background-image: url('../img/pro-bg-top.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  z-index: 0;
  pointer-events: none;
}

.service-overview--bg-pc > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .service-overview--bg-pc {
    background-image: none;
  }
  
  .service-overview--bg-pc::before {
    display: none;
  }
}

/* ----------------------------------------
   サービス提案
   ---------------------------------------- */
.service-overview__proposal {
  text-align: center;
  padding: 0 0 3rem;
  position: relative;
}

.proposal__lead {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.proposal__heading {
  font-size: 1.75rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.proposal__highlight {
  background: linear-gradient(transparent 60%, #ffe066 60%);
  padding: 0 0.25rem;
  font-weight: 900;
}

.proposal__sub {
  font-size: 1.25rem;
  font-weight: 700;
}

.proposal__image {
  margin: 0 auto 1rem;
  max-width: 100px;
}

.proposal__image img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .proposal__heading {
    font-size: 1.25rem;
  }
  
  .proposal__image {
    max-width: 80px;
  }
}

/* サービス説明 */
.service-overview__description {
  text-align: center;
  padding: 3rem 0;
}

.description__heading {
  margin-bottom: 2rem;
}

.description__lead {
  font-size: 1.125rem;
  font-weight: 700;
  /* color: var(--color-blue-text); */
  margin-bottom: 0.5rem;
}

.description__sub {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.description__main {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--color-blue-text);
}

.description__image {
  margin: 0 auto 2rem;
  max-width: 800px;
}

.description__image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.description__badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.description__badges img {
  height: 70px;
  width: auto;
  border: 1px solid #ddd;
}

.description__caption {
  font-size: 0.875rem;
  color: #666;
  text-align: center;
}

@media (max-width: 768px) {
  .description__main {
    font-size: 1.125rem;
  }

  .description__badges img {
    height: 50px;
  }
}

/* ----------------------------------------
   2. 導入企業ロゴ（無限スクロール）
   ---------------------------------------- */
.company-logos {
  /* padding: 3rem 0; */
  overflow: hidden;
}

.logo-scroll {
  overflow: hidden;
  width: 100%;
}

.logo-scroll__track {
  display: flex;
  gap: 2rem;
  animation: scroll-infinite 40s linear infinite;
  animation-play-state: running;
  width: fit-content;
  will-change: transform;
}

.logo-scroll__item {
  flex-shrink: 0;
}

.logo-scroll__item img {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .company-logos {
    padding: 1.75rem 0 3rem !important;
  }

  .logo-scroll__item img {
    height: 38px;
  }

  /* スマホ時：画像読み込み完了までアニメーション無効化 */
  .logo-scroll__track {
    animation: none;
    transform: translateX(0);
  }

  .logo-scroll__track.is-loaded {
    animation: scroll-infinite 40s linear infinite;
  }
}

@keyframes scroll-infinite {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* BMP卒業生実績スライダー */
.graduate-scroll {
  overflow: hidden;
  width: 100%;
}

.graduate-scroll__track {
  display: flex;
  gap: 1.5rem;
  animation: graduate-scroll-infinite 30s linear infinite;
  width: fit-content;
}

.graduate-scroll__item {
  flex-shrink: 0;
}

.graduate-scroll__item img {
  height: 200px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

@keyframes graduate-scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .graduate-scroll__track {
    animation-duration: 10s;
    gap: 1rem;
  }
  
  .graduate-scroll__item img {
    height: 120px;
  }
}

/* ----------------------------------------
   3. カルーセルスライダー
   ---------------------------------------- */
.carousel {
  position: relative;
  overflow: visible;
  padding: 0 25px;
}

.carousel__viewport {
  overflow: hidden;
  width: 100%;
}

.carousel__track {
  display: flex;
  transition: transform 0.3s ease;
  cursor: grab;
  user-select: none;
  touch-action: pan-y pinch-zoom;
}

.carousel__track:active {
  cursor: grabbing;
}

.carousel__slide {
  flex: 0 0 33.333%;
  padding: 0 0.375rem;
  box-sizing: border-box;
}

.carousel__slide > .card {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  background-color: #fff;
  height: 100%;
}

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

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #b2b2b2b5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* border: 2px solid var(--color-blue-text); */
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 0;
  color: transparent;
}

.carousel__btn::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  position: absolute;
  top: 50%;
  transition: border-color 0.3s ease;
}

.carousel__btn--prev::before {
  transform: translateY(-50%) rotate(-135deg);
  left: 16px;
}

.carousel__btn--next::before {
  transform: translateY(-50%) rotate(45deg);
  right: 16px;
}

.carousel__btn:hover {
  background-color: var(--color-blue-text);
}

.carousel__btn:hover::before {
  border-color: var(--color-white);
}

.carousel__btn--prev {
  left: 0;
}

.carousel__btn--next {
  right: 0;
}

/* ドットインジケーター */
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel__dot.active {
  background-color: var(--color-blue-text);
}

@media (max-width: 768px) {
  .carousel__slide {
    flex: 0 0 100%;
    padding: 0 0.25rem;
  }
  
  .carousel__dot {
    width: 8px;
    height: 8px;
  }
  
  .carousel__btn {
    width: 32px;
    height: 32px;
  }
  
  .carousel__btn::before {
    width: 8px;
    height: 8px;
  }
  
  .carousel__btn--prev {
    left: -3%;
  }
  
  .carousel__btn--prev::before {
    left: 13px;
  }
  
  .carousel__btn--next {
    left: 93%;
  }
  
  .carousel__btn--next::before {
    right: 13px;
  }
  
  .carousel {
    padding: 0 5px;
  }
}

/* 自治体連携 */
.municipality .section__heading {
  font-size: 1.25rem;
}

.municipality-scroll {
  overflow: hidden;
  width: 100%;
}

.municipality-scroll__track {
  display: flex;
  gap: 1rem;
  animation: municipality-scroll 40s linear infinite;
  width: fit-content;
}

.municipality-scroll__item {
  flex-shrink: 0;
  text-align: center;
}

.municipality-scroll__item img {
  height: 160px;
  width: auto;
  object-fit: cover;
  border-radius: 8px;
}

.municipality-scroll__item figcaption {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #666;
}

@keyframes municipality-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .municipality-scroll__track {
    animation-duration: 10s;
    gap: 0.75rem;
  }
  
  .municipality-scroll__item img {
    height: 96px;
  }
  
  .municipality-scroll__item figcaption {
    font-size: 0.7rem;
  }
}

/* ----------------------------------------
   カード
   ---------------------------------------- */
.card {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
}

.card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card__title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card__text {
  font-size: 0.875rem;
}

/* 運用実績カード */
.card--track-record {
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card--track-record .card__image {
  width: 100%;
  height: auto;
  display: block;
  padding: 2rem;
}

.card--track-record .card__title {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.card__client {
  font-size: 0.875rem;
  font-weight: 600;
}

.card__tag {
  display: inline-block;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

.card--track-record .card__text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.highlight-red {
  color: #e53935;
  font-weight: 700;
}

.card__note {
  font-size: 0.625rem;
  color: #999;
  line-height: 1.4;
  margin-top: auto;
}

/* ----------------------------------------
   4. こんな悩みありませんか
   ---------------------------------------- */
.problems {
  margin-top: -8rem;
}

.problems__bg {
  background-image: url('../img/nayami_bg.jpg');
  background-position: center top;
  background-repeat: no-repeat;
  padding: 4rem 0 0;
  position: relative;
  min-height: 620px;
}

/* 1080px〜769pxの間の高さ調整 */
@media (max-width: 1080px) and (min-width: 769px) {
  .problems__bg {
    min-height: 530px;
  }
}

.problems__heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 2rem;
  padding-top: 5.5rem;
  position: relative;
  z-index: 2;
}

.problems__heading::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 180px;
  height: 150px;
  background-image: url(img/nayami-text-bg.png);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: -1;
}

.highlight-yellow {
  color: #ffd700;
}

.text-blue {
  color: var(--color-blue-text);
}

.problems__boxes {
  margin: 0 auto 2rem;
  width: 100%;
  max-width: 960px;
}

.problems__row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.problems__row--top {
  flex-wrap: nowrap;
}

.problems__row--bottom {
  flex-wrap: nowrap;
}

.problems__box {
  background-color: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 0 0 auto;
  min-width: 280px;
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problems__box p {
  font-size: 1.4375rem;
  font-weight: 900;
  line-height: 1.6;
  margin: 0;
  color: var(--color-black);
}

/* 768px〜1080pxの間でレイアウトを維持しながら縮小 */
@media (max-width: 1080px) and (min-width: 769px) {
  .problems__boxes {
    max-width: calc(100vw - 40px);
  }
  
  .problems__row {
    gap: calc(0.5rem + 0.5vw);
    margin-bottom: calc(0.5rem + 0.5vw);
  }
  
  .problems__box {
    min-width: calc(180px + 8vw);
    min-height: calc(3.5rem + 1.5vw);
    padding: calc(0.5rem + 0.4vw) calc(0.75rem + 0.6vw);
    border-radius: calc(2px + 0.2vw);
  }
  
  .problems__box p {
    font-size: calc(0.85rem + 0.5vw);
    line-height: 1.5;
  }
}

.problems__box .highlight-yellow {
  color: var(--color-blue-text);
}

.problems__front {
  position: absolute;
  bottom: -51px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 300px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.problems__front img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .problems {
    margin-top: -6rem;
  }
  
  .problems__bg {
    min-height: auto;
    padding-bottom: 80px;
  }
  
  .problems__heading {
    font-size: 1.5rem;
    padding-top: 6rem;
  }
  
  .problems__heading::before {
    bottom: -25%;
    height: 85px;
  }

  .problems__row {
    flex-direction: column;
    align-items: center;
  }

  .problems__box {
    width: 100%;
    max-width: 85%;
    min-width: auto;
    min-height: 4rem;
    padding: 0.75rem 1rem;
  }
  
  .problems__box p {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  
  .problems__front {
    bottom: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}

/* ----------------------------------------
   8, 17-3, 23. CTA エリア
   ---------------------------------------- */
.cta-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.cta-content__text {
  flex: 1;
}

.cta-content__image {
  flex: 0 0 200px;
}

.cta-content__image--adjustable {
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
  }
  .cta-content__image {
    flex: 0 0 auto;
  }
}

/* CTA セクション（青背景） */
.cta-section {
  background-image: url('../img/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(30, 60, 114, 0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.cta-section__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.cta-section__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.cta-section__text {
  flex: 1;
  text-align: center;
}

.cta-section__lead {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03rem;
  line-height: 1.3;
  text-align: left;
}

.cta-section__dotted {
  display: inline-block;
  background-position: top left 0;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  background-image: radial-gradient(0.08em 0.08em at center center, #ffd700, #ffd700 100%, transparent, transparent);
  padding-top: 0.4em;
}

.cta-section__headline {
  font-size: 1.38rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.6;
  text-align: left;
}

.cta-section__headline .underline {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cta-section__image {
  flex: 0 0 180px;
}

.cta-section__image img {
  max-width: 320px;
  position: relative;
    top: 5px;
}

.cta-section__buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  background-color: var(--color-white);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  margin: 0 auto;
  align-items: center;
}

.btn--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  width: 100%;
  max-width: 350px;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s;
}

.btn--cta:hover {
  opacity: 0.85;
}

.btn--orange {
  background-color: #fa6401;
  color: var(--color-white);
}

.btn--blue {
  background-color: #0ea8e9;
  color: var(--color-white);
}

.btn__icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .cta-section__content {
    flex-direction: column;
    text-align: center;
  }

  .cta-section__lead {
    font-size: 1rem;
    letter-spacing: 0.2em;
  }

  .cta-section__headline {
    font-size: 1.125rem;
  }

  .cta-section__image {
    flex: 0 0 auto;
    overflow: hidden; /* 横ブレ防止 */
  }

  .cta-section__image img {
    max-width: 85%;
    margin: 0 auto;
    display: block;
    position: relative;
    left: 5px;
  }

  .cta-section__buttons {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .btn--cta {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* ----------------------------------------
   13. フルサポートプラン料金
   ---------------------------------------- */
.pricing-plans {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.pricing-plan {
  flex: 1;
  max-width: 450px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-white);
}

.pricing-plan__header {
  padding: 1rem;
  text-align: center;
}

.pricing-plan__header--blue {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.pricing-plan__header h3 {
  font-weight: 700;
  font-size: 1.25rem;
}

.pricing-plan__price {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.pricing-plan__amount {
  font-size: 2rem;
  font-weight: 700;
}

.pricing-plan__content {
  padding: 1rem;
}

.pricing-plan__section {
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.pricing-plan__section--blue {
  background-color: var(--color-blue);
  color: var(--color-white);
  text-align: center;
}

.pricing-plan__section h4 {
  font-size: 1rem;
  font-weight: 700;
}

/* ドット罫線リスト */
.dotted-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dotted #ccc;
}

.dotted-list__label {
  font-weight: 500;
}

.dotted-list__value {
  text-align: right;
}

/* タグ */
.pricing-plan__tags {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  background-color: var(--color-gray-light);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

/* 新料金カードデザイン */
.pricing-card {
  width: 100%;
  max-width: 400px;
  background-color: var(--color-white);
  /* border-radius: 8px; */
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card__header {
  background-color: var(--color-blue);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  text-align: center;
}

.pricing-card__header h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

.pricing-card__price {
  padding: 2rem 1.5rem;
  text-align: center;
}

.pricing-card__amount {
  font-size: 4rem;
  font-weight: 700;
  color:  var(--color-blue);
  line-height: 1;
}

.pricing-card__unit {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-blue-text);
}

.pricing-card__feature {
  background-color: var(--color-blue);
  color: var(--color-white);
  padding: 0.5rem 1.5rem;
  text-align: center;
}

.pricing-card__feature h4 {
  font-size: 1rem;
  font-weight: 700;
}

.pricing-card__plus-wrap {
  position: relative;
  height: 1rem;
  background-color: var(--color-white);
}

.pricing-card__plus {
  position: absolute;
  top: 125%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #2963a3;
  /* border: 2px solid #2563eb; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  z-index: 1;
}

.pricing-card__details {
  padding: 1.5rem;
  padding-top: 2.25rem;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
}

.pricing-card__details .pricing-card__list {
  flex: 1;
}

.pricing-card__list {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.pricing-card__list-col {
  flex: 1;
}

.pricing-card__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

.pricing-card__list p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #2963a3;
  margin: 0;
  padding: 0.25rem 0;
  border-bottom: 1px solid #ddd;
}

.pricing-card__select {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #e0e0e0;
}

.pricing-card__select-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2963a3;
  margin-bottom: 0.5rem;
}

.pricing-card__select-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card__select-list li {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 0.7rem;
  color: #888;
  background: #f5f5f5;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
}

.pricing-card__select-list li::before {
  content: 'check_small';
  font-family: 'Material Symbols Outlined';
  font-size: 14px;
  color: #2963a3;
}

.pricing-card__tag {
  text-align: center;
}

.pricing-card__tag span {
  display: inline-block;
  background: #d0d9ec;
  color: #ffffff;
  padding: 0.2rem 1.5rem;
  border-radius: 50rem;
  font-size: 0.875rem;
  font-weight: 500;
  width: 100%;
  max-width: 200px;
}

@media (max-width: 768px) {
  .pricing-card {
    max-width: 100%;
  }
  
  .pricing-card__amount {
    font-size: 3rem;
  }
  
  .pricing-card__unit {
    font-size: 1.25rem;
  }
  
  .pricing-card__list {
    flex-direction: column;
    gap: 0;
  }
  
  .pricing-card__select-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* タブ（スマホ用） */
.tabs {
  display: flex;
  border-bottom: 2px solid var(--color-blue);
  margin-bottom: 1.5rem;
}

.tabs__btn {
  flex: 1;
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  background-color: var(--color-gray-light);
  border: none;
}

.tabs__btn--active {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.tabs__content {
  display: none;
}

.tabs__content--active {
  display: block;
}

/* ----------------------------------------
   14. スライスプラン説明
   ---------------------------------------- */
.slice-plan-desc {
  background-color: #0a3d7a;
  background-image: url('../img/slice-plan-info-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 0;
}

.slice-plan-desc__inner {
  padding: 3rem 0 4rem;  /* 上にパディング追加して余白確保 */
}

/* 吹き出し + イラスト（画像） */
.slice-plan-desc__top {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: -105px;  /* 上に引き上げて境界線上に配置 */
}

.slice-plan-desc__top img {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 黄色キャッチ（画像） */
.slice-plan-desc__middle {
  text-align: center;
  margin: 0 0 2rem;
  display: flex;
  justify-content: center;
}

.slice-plan-desc__middle img {
  max-width: 700px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 白ボックス */
.slice-plan-desc__box {
  background-color: var(--color-white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.slice-plan-desc__heading {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--color-blue-text);
}

.slice-plan-desc__logo {
  margin: 1rem auto;
}

.slice-plan-desc__logo img {
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}

.slice-plan-desc__line {
  width: 200px;
  height: 3px;
  background-color: var(--color-blue);
  margin: 1.5rem auto;
}

.slice-plan-desc__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #666;
}

@media (max-width: 768px) {
  .slice-plan-desc__top {
    margin-top: -90px;
  }
  
  .slice-plan-desc__top img {
    max-width: 90%;
  }
  
  .slice-plan-desc__middle img {
    max-width: 90%;
  }
  
  .slice-plan-desc__heading {
    font-size: 1rem;
  }

.slice-plan-desc__inner {
  padding: 0;
}

}

/* ----------------------------------------
   16. 比較表
   ---------------------------------------- */
.comparison-table-wrapper {
  overflow-x: auto;
  position: relative;
}

/* Scroll Hint スタイル（レスポンシブのみ表示） */
.scroll-hint-icon {
  display: none;
}

@media (max-width: 768px) {
  .scroll-hint-icon {
    display: block;
  }
}

.comparison-table {
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #ddd;
  padding: 1rem;
  text-align: center;
  vertical-align: middle;
}

.comparison-table thead th {
  background-color: var(--color-gray-light);
  font-weight: 700;
}

.comparison-table__highlight {
  background-color: var(--color-highlight) !important;
  font-weight: 700;
}

.comparison-table .mark {
  font-family: 'Noto Sans Symbols 2', sans-serif;
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}

/* 各記号の個別スタイル */
.comparison-table .mark--double-circle {
  font-size: 2.5rem;
  color: #2963a3;
}

.comparison-table .mark--circle {
  font-size: 2.5rem;
  color: #2963a3;
}

.comparison-table .mark--triangle {
  font-size: 2.5rem;
  color: #888;
}

.comparison-table .mark--cross {
  font-size: 3.2rem;
  color: #999;
}

.comparison-table .mark-text {
  font-size: 12px;
  display: block;
  line-height: 1.4;
  margin-top: 0.25rem;
  font-weight: normal;
}

/* ----------------------------------------
   17. スライスプラン料金
   ---------------------------------------- */
.pricing-slice .section__sub {
  font-size: 1.25rem;
  color: var(--color-blue-text);
}

.pricing-slice > .container > p {
  text-align: center;
}

.pricing-slice__layout {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  align-items: stretch;
}

.pricing-slice__summary {
  flex: 1;
  min-width: 280px;
  display: flex;
}

.pricing-slice__summary .pricing-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-slice__summary .pricing-card__details {
  flex: 1;
}

.pricing-slice__detail {
  display: flex;
}

.pricing-slice__detail .pricing-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-slice__detail .pricing-card__details {
  flex: 1;
}

@media (max-width: 768px) {
  .pricing-slice__summary {
    display: none;
  }
  
  .pricing-slice__detail {
    width: 100%;
    flex: none;
  }
  
  .pricing-slice__detail .pricing-card,
  .pricing-slice__detail .pricing-card__details {
    height: auto;
    flex: none;
  }
}

.pricing-slice__detail {
  flex: 2;
}

.pricing-slice__detail .pricing-card {
  max-width: none;
}

/* グレー版プライシングカード */
.pricing-card--gray {
  background-color: #fafafa;
}

.pricing-card__header--gray {
  background-color: #888;
}

.pricing-card__feature--gray {
  background-color: #888;
}

.pricing-card--gray .pricing-card__amount {
  color: #666;
}

.pricing-card--gray .pricing-card__unit {
  color: #666;
}

.pricing-card--gray .pricing-card__list p {
  color: #666;
}

.pricing-card--gray .pricing-card__plus {
  background-color: #888;
}

.pricing-slice__flexibility {
  margin-top: 3rem;
  background-color: var(--color-white);
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 2rem;
}

/* 柔軟さヘッダー */
.flexibility-header {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.flexibility-header__icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flexibility-header__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.flexibility-header__text h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.flexibility-header__text p {
  font-size: 0.875rem;
  color: #666;
}

/* 3つのプラン */
.flexibility-plans {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-top: 15px;
  overflow: visible;
}

.flexibility-plan {
  flex: 1;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  position: relative;
  overflow: visible;
}

.flexibility-plan--recommended {
  border-color: var(--color-blue);
  border-width: 2px;
}

.flexibility-plan__tag {
  position: absolute;
  top: -10px;
  right: 10px;
  background-color: #3b9dff;
  color: var(--color-white);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

.flexibility-plan__name {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.flexibility-plan__price {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.flexibility-plan__price span {
  font-size: 1rem;
  font-weight: 400;
}

.flexibility-plan__price--highlight {
  color: var(--color-blue-text);
}

.flexibility-plan__desc {
  font-size: 0.875rem;
  color: #666;
}

/* 対応可能な施策 */
.flexibility-options {
  border-top: 1px solid #e0e0e0;
  padding-top: 1.5rem;
}

.flexibility-options__title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-blue-text);
}

.option-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.option-list__item {
  background-color: var(--color-white);
  border: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  text-align: center;
}

/* PC/SPの表示切り替え */
.flexibility-plans.pc {
  display: flex;
}

.pricing-slice__flexibility .carousel.sp {
  display: none;
}

@media (max-width: 768px) {
  .pricing-slice .section__sub,
  .pricing-slice > .container > p {
    text-align: left;
  }

  .pricing-slice__layout {
    flex-direction: column;
  }
  
  .flexibility-plans.pc {
    display: none;
  }
  
  .pricing-slice__flexibility .carousel.sp {
    display: block;
    padding: 0;
    margin-bottom: 1.25rem;
  }
  
  .pricing-slice__flexibility .carousel.sp .carousel__viewport {
    overflow-x: hidden;
    overflow-y: visible;
    padding-top: 15px;
  }
  
  .pricing-slice__flexibility .carousel.sp .carousel__track {
    overflow-y: visible;
  }
  
  .pricing-slice__flexibility .carousel.sp .carousel__slide {
    flex: 0 0 85%;
    padding: 0 5px;
  }
  
  .pricing-slice__flexibility .carousel.sp .flexibility-plan {
    width: 100%;
    margin: 0;
  }
  
  .option-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----------------------------------------
   18. 導入までの流れ
   ---------------------------------------- */
.flow__image {
  text-align: center;
}

.flow__image img {
  max-width: 100%;
  height: auto;
}

/* ----------------------------------------
   19. メンバー紹介
   ---------------------------------------- */
.members__list {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.member-card {
  flex: 1;
  max-width: 350px;
}

.member-card__header {
  margin-bottom: 1rem;
}

.member-card__position {
  font-size: 0.875rem;
  color: var(--color-blue-text);
  margin-bottom: 0.25rem;
}

.member-card__name {
  font-size: 1.5rem;
  font-weight: 700;
}

.member-card__image {
  margin-bottom: 1rem;
}

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

.member-card__text {
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #333;
}

/* ----------------------------------------
   20. 拠点
   ---------------------------------------- */
.location__image {
  text-align: center;
}

.location__image img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* ----------------------------------------
   21. 会社概要
   ---------------------------------------- */
.company-info {
  background-color: #f0f5fa;
}

.company-info__box {
  background-color: var(--color-white);
  padding: 3rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.company-info__list {
  margin: 0;
}

.company-info__row {
  display: flex;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.company-info__row:last-child {
  border-bottom: none;
}

.company-info__row dt {
  width: 120px;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--color-blue-text);
  /* border-bottom: 2px solid var(--color-blue-text); */
  padding-bottom: 0.25rem;
  margin-right: 3rem;
  align-self: flex-start;
}

.company-info__row dd {
  flex: 1;
  margin: 0;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .company-info__box {
    padding: 2rem 1.5rem;
  }
  
  .company-info__row {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .company-info__row dt {
    width: auto;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

/* ----------------------------------------
   22. Q&A アコーディオン
   ---------------------------------------- */
.accordion__item {
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 0;
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  background-color: transparent;
  text-align: left;
  cursor: pointer;
  border: none;
}

.accordion__q,
.accordion__a {
  margin-right: 1rem;
  flex-shrink: 0;
}

.accordion__q img,
.accordion__a img {
  width: 1.5rem;
  height: auto;
}

.accordion__question {
  flex: 1;
  font-weight: 700;
  font-size: 1rem;
  color: #121212;
}

.accordion__arrow {
  transition: transform 0.3s ease;
  width: 10px;
  height: 10px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(45deg);
  margin-left: auto;
}

.accordion__item.is-open .accordion__arrow {
  transform: rotate(-135deg);
}

.accordion__body {
  display: none;
  padding: 1rem 0 0 0;
  background-color: transparent;
}

.accordion__body p {
  line-height: 1.8;
}

.accordion__body.is-open {
  display: flex;
  align-items: flex-start;
}

/* ----------------------------------------
   23. CTA フォーム
   ---------------------------------------- */
.contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
}

.contact-form__group {
  margin-bottom: 1.5rem;
}

.contact-form__group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-form__group input,
.contact-form__group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.contact-form button[type="submit"] {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

/* ----------------------------------------
   24. フッター
   ---------------------------------------- */
.footer {
  background-color: #272727;
  color: var(--color-white);
  padding: 3rem 0;
  text-align: center;
}

.footer__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer__logo .dummy-img {
  background-color: #444;
}

.footer__copyright {
  font-size: 0.875rem;
  color: #aaa;
}

/* ----------------------------------------
   レスポンシブ調整
   ---------------------------------------- */
@media (max-width: 1200px) {
  .section__heading {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section__heading {
    font-size: 1.5rem;
  }
  
  .section__subheading {
    font-size: 1.25rem;
  }
  
  .dummy-img {
    min-height: 150px;
  }

  .btn {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .fv-band .btn {
    padding: 0;
    font-size: 0.875rem;
  }
}

/* ============================================
   フォームセクション
   ============================================ */
.form-section {
  background: linear-gradient(rgb(41 99 163 / 100%), rgb(33 67 105 / 100%));
  padding: 4rem 0;
}

.form-section__cta {
  text-align: center;
}

.form-section__wrapper {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1rem;
}

.form-box {
  background: #fff;
  padding: 2em;
  margin: 0 auto;
  border-radius: 8px;
}

.form-divider {
  margin: 2em 0;
}

/* フォームテーブル */
.form-table {
  max-width: 650px;
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin: 0 auto;
}

.form-table__row {
  display: block;
}

.form-table__label,
.form-table__input {
  display: block;
}

.form-table__label {
  text-align: left;
  padding: 0.5em;
  font-size: 0.9em;
  color: #53565c;
}

.form-table__required {
  color: #ff4500;
  font-weight: normal;
  font-size: 0.8em;
}

.form-table__text,
.form-table__textarea {
  width: 100%;
  padding: 8px;
  background: #e1f0f4;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
}

.form-table__textarea {
  height: 150px;
  resize: vertical;
  font-weight: normal;
  line-height: 1.4;
}

.form-table__textarea::placeholder {
  color: #888;
  font-size: 14px;
}

.form-table__confirm-mail {
  font-size: 0.9em;
  color: #53565c;
  margin-top: 0.5em;
}

.form-table__confirm-mail input {
  margin-top: 0.5em;
}

.form-table__privacy-text {
  display: flex;
  justify-content: center;
  font-size: 0.9em;
  flex-wrap: wrap;
  gap: 0.25em;
}

.form-table__privacy-text a {
  color: var(--color-blue-text);
  text-decoration: underline;
}

.form-table__checkbox-wrap {
  margin-top: 0.5em;
}

.form-table__checkbox-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

.form-table__checkbox-item label {
  font-size: 0.9em;
  cursor: pointer;
}

.form-table__submit-cell {
  text-align: center;
  padding-top: 1.5em;
}

.form-table__submit {
  background: #ff4500;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 80%;
  max-width: 400px;
  padding: 20px 40px;
}

.form-table__submit:hover {
  background: #ff723e;
}

/* TimeRex見出し */
.timerex-heading {
  text-align: center;
  margin-bottom: 1.5em;
}

.timerex-heading__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 2rem 0;
}

/* TimeRex予約フロー */
.timerex-flow {
  max-width: 980px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  margin: 0 auto 1.5em;
  padding: 2em 1em;
}

.timerex-flow__header {
  text-align: center;
  margin-bottom: 2em;
}

.timerex-flow__sub {
  font-size: 0.9rem;
  color: #888;
  margin: 0 0 0.25em;
  font-weight: normal;
}

.timerex-flow__title {
  font-size: 1.5rem;
  margin: 0;
}

.timerex-flow__image {
  max-width: 650px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* フッター更新 */
.footer__logo-img {
  max-width: 150px;
  height: auto;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.footer__links a {
  color: #696a6f;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--color-blue-text);
}

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

  .form-box {
    max-width: 100%;
    padding: 1em;
  }

  .form-table__submit {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
  }

  .form-table__privacy-text {
    display: block;
    text-align: center;
  }

  .form-table__checkbox-item {
    flex-direction: row;
    justify-content: center;
  }

  .timerex-heading__title {
    font-size: 1.25rem;
  }

  .timerex-flow {
    padding: 1em;
  }

  .timerex-flow__title {
    font-size: 1.25rem;
  }

  .footer__links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .form-table__textarea {
    height: 40vw;
  }
}
