/* =======================================================================
   REM CONVERSION CHEATSHEET (1rem = 16px)
   - 基本式: rem = px / 16
   - ユーティリティ命名例（あなたの方式）:
       0.25rem -> 025 / 1rem -> 100 / 1.25rem -> 125 / 1.5rem -> 150 …等
   -----------------------------------------------------------------------
   |  px  |   rem   | code |  px  |   rem   | code |  px  |   rem   | code |
   |------|---------|------|------|---------|------|------|---------|------|
   |   4  | 0.25rem | 025  |  36  | 2.25rem | 225  |  80  | 5.00rem | 500  |
   |   8  | 0.50rem | 050  |  40  | 2.50rem | 250  |  96  | 6.00rem | 600  |
   |  12  | 0.75rem | 075  |  48  | 3.00rem | 300  | 112  | 7.00rem | 700  |
   |  16  | 1.00rem | 100  |  56  | 3.50rem | 350  | 128  | 8.00rem | 800  |
   |  20  | 1.25rem | 125  |  64  | 4.00rem | 400  |      |         |      |
   |  24  | 1.50rem | 150  |  72  | 4.50rem | 450  |      |         |      |
   |  28  | 1.75rem | 175  |      |         |      |      |         |      |
   |  32  | 2.00rem | 200  |      |         |      |      |         |      |
   -----------------------------------------------------------------------
   よく使う値:
     20px=1.25rem(125), 28px=1.75rem(175), 36px=2.25rem(225), 40px=2.5rem(250),
     48px=3rem(300), 64px=4rem(400)
   補足:
     ・ユーティリティ例: .u-mb-125 { margin-bottom: 1.25rem !important; }
     ・細かい値が必要なときは 062=0.625rem(10px) などを個別に追加
   ======================================================================= */

@charset "UTF-8";
:root {
  --color-base: #fff;
  --color-main: #2c3e50;
  --color-accent: #e74c3c;
  --color-main-char: #333333;
  --color-light-gray: #f2f2f2;
  --max-width-pc: 1200px;
}
/*------------------------------------------------------------------------------
共通設定
------------------------------------------------------------------------------*/
html,
body {
  font-family: -apple-system, BlinkMacSystemFont, system-ui, /* iOS/macOS UI */ "Hiragino Sans", "Hiragino Kaku Gothic ProN", /* mac系 */ "Yu Gothic UI", "Yu Gothic", "Meiryo", /* Windows */ Arial,
    sans-serif;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: -0.04em;
  background-color: var(--color-base);
  scroll-behavior: smooth;
  color: var(--color-main-char);
  width: 100%;
}
/* PC専用設定（769px以上） */
@media screen and (min-width: 769px) {
  html,
  body {
    /* 横スクロールバーは出さないが、Stickyのために領域は確保 */
    overflow-x: clip;

    /* 縦はヒートマップ計測のために常に出す */
    overflow-y: visible !important;

    /* 高さ制限解除 */
    height: auto !important;

    /* 幅の確保 */
    max-width: 100vw;
  }
}
/* スマホ専用設定（768px以下） */
@media screen and (max-width: 768px) {
  html,
  body {
    /* 横スクロールを物理的に禁止 */
    overflow-x: hidden !important;

    /* 縦は通常通りスクロール */
    overflow-y: auto;

    /* スマホ特有の調整 */
    position: relative;
    width: 100vw;
    height: auto;
    font-size: 52%; /* 750pxデザイン → 375px実機の縮尺 */

    /* iPhoneでの慣性スクロールを有効化 */
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
  }
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  /* overflow-x: hidden; */
  position: relative;
  background-color: var(--color-base);
}
@media screen and (max-width: 768px) {
  .container {
    box-shadow: none;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
/* h1に対してサイズを明示的に指定する */
h1 {
  font-size: 2rem;
}
/*------------------------------------------------------------------------------
Negative margin（utilには用意していないため、使用するもののみ個別に定義）
------------------------------------------------------------------------------*/
.lu-mt--200 {
  margin-top: -2rem !important;
}
.lu-mt--400 {
  margin-top: -4rem !important;
}
.lu-mt--600 {
  margin-top: -6rem !important;
}
.lu-mt--800 {
  margin-top: -8rem !important;
}
/*------------------------------------------------------------------------------
ボタン効果
------------------------------------------------------------------------------*/
.btn:hover {
  opacity: 0.7;
}
/* ボタンのサイズを変化させるアニメーション */
.btn-poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
  position: relative;
  overflow: hidden;
}
@keyframes poyopoyo {
  0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }
  50%,
  70% {
    transform: scale(0.95);
  }
}
/* ボタンの周りに白い光のエフェクト */
.btn-shine img {
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
  animation: glow-loop 2s infinite linear;
}
@keyframes glow-loop {
  0% {
    filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
  }
  100% {
    filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0));
  }
}

/*------------------------------------------------------------------------------
ヘッダーエリア
------------------------------------------------------------------------------*/
/* ヘッダーをファーストビューエリアの背景上に重ねるための基準 */
.header-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: transparent;
  height: 6rem;
  padding: 1rem 0;
}
.header-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  flex-basis: 15%;
  height: auto;
  margin-left: 1rem;
}
.header-menu {
  flex-basis: 80%;
  background-color: rgb(from var(--color-main) r g b / 0.65);
  padding: 1rem 1.5rem;
  border-radius: 1rem 0 0 1rem;
}
.header-menu-container {
  margin-right: 1rem;
}
.header-menu-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.header-menu-link {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-base);
  transition: color 0.2s ease;
}
.header-menu-link:hover {
  color: var(--color-main);
}
/*------------------------------------------------------------------------------
スマホ版スクロール時ヘッダー
------------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .sp-scroll-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: transform 0.3s ease-out;
    pointer-events: none;
  }
  .sp-scroll-header.visible {
    transform: translateY(0);
    pointer-events: auto;
  }
  .sp-scroll-header-container {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 100%;
  }
  .sp-scroll-header-logo {
    flex: 1;
  }
  .sp-scroll-header-logo img {
    max-height: 3rem;
    width: auto;
    height: auto;
  }
  .sp-hamburger-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    position: relative;
    z-index: 10003;
  }
  .sp-hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.6rem;
  }
  .sp-hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-base);
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  .sp-hamburger-btn.active .sp-hamburger-icon span:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }
  .sp-hamburger-btn.active .sp-hamburger-icon span:nth-child(2) {
    opacity: 0;
  }
  .sp-hamburger-btn.active .sp-hamburger-icon span:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }
  /* ハンバーガーメニュー */
  .sp-hamburger-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10002;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    overflow-y: auto;
    pointer-events: none;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
  }
  .sp-hamburger-menu.active {
    transform: translateX(0);
    pointer-events: auto;
  }
  .sp-hamburger-menu-container {
    padding: 5rem 2rem 2rem;
    max-width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }
  .sp-hamburger-menu-title {
    font-size: 2rem;
    font-weight: 600;
    /* letter-spacing: 0.08em; */
    text-align: center;
    margin: 0 0 1.5rem;
    color: var(--color-base);
  }
  .sp-hamburger-menu-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 0 2rem;
  }
  .sp-hamburger-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .sp-hamburger-menu-link {
    display: block;
    padding: 1.25rem 1.5rem;
    color: var(--color-base);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-align: center;
  }
  .sp-hamburger-menu-link:hover,
  .sp-hamburger-menu-link:active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-red);
  }
}
/*------------------------------------------------------------------------------
ファーストビューエリア
------------------------------------------------------------------------------*/
.fv-area {
  position: relative;
  background-image: url(../images/bg_fv.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 7rem;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  .fv-area {
    padding-top: 0;
    padding-bottom: 1rem;
  }
}
.fv-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  /* gap: 2.5rem; */
}
.fv-mv {
  flex-basis: 70%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .fv-mv {
    transform: scale(1.15);
    transform-origin: center left;
  }
}
@media screen and (max-width: 768px) {
  .fv-mv {
    flex-basis: 100%;
  }
}
/*------------------------------------------------------------------------------
実績スライダーエリア
------------------------------------------------------------------------------*/
.img-slider-area {
  margin-bottom: 1.5rem;
}
.img-slider-frame {
  padding: 0 2rem;
}
.img-slider-container {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  height: 20rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
/* トラック：JSで transform を連続更新（アニメ指定なし） */
.img-slider-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  gap: 0; /* セット間の余白はスペーサーで制御 */
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
}
/* 1セット分（ここでアイコン間の間隔を定義） */
.img-slider-set {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}
.img-slider-set img {
  display: block;
  width: auto;
  height: 20rem;
  object-fit: contain;
  flex-shrink: 0;
  flex-grow: 0;
  margin: 0;
  padding: 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
/* 1周目と2週目のスペース用（セット間の間隔を確保） */
.img-slider-spacer {
  flex: 0 0 2rem;
  width: 2rem;
}
/*------------------------------------------------------------------------------
CTAエリア
------------------------------------------------------------------------------*/
.cta-area-container {
  position: relative;
}
.cta-btn-contact {
  position: absolute;
  top: 45%;
  left: 8%;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .cta-btn-contact {
    top: 60%;
    left: 5%;
    width: 90%;
  }
}
.cta-btn-download {
  position: absolute;
  top: 45%;
  left: 40%;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .cta-btn-download {
    top: 78%;
    left: 5%;
    width: 90%;
  }
}
/*------------------------------------------------------------------------------
保証エリア
------------------------------------------------------------------------------*/
.guarantee-area {
  margin: 4rem 0;
}
/*------------------------------------------------------------------------------
失敗の原因エリア
------------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .cause-area {
    margin-top: -6rem !important;
    margin-bottom: 2rem;
  }
  .cause-ttl {
    margin-bottom: 4rem;
  }
  .cause-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6rem;
  }
}
/*------------------------------------------------------------------------------
コンセプトエリア
------------------------------------------------------------------------------*/
.concept-lead {
  margin-bottom: 5rem;
}
/*------------------------------------------------------------------------------
制作実績エリア
------------------------------------------------------------------------------*/
.works-area {
  margin-bottom: 6rem;
}
.works-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
/*------------------------------------------------------------------------------
お客様の声エリア
------------------------------------------------------------------------------*/
.voice-area {
  background-image: repeating-linear-gradient(
      to right,
      rgb(from var(--color-main-char) r g b / 0.06) 0,
      rgb(from var(--color-main-char) r g b / 0.06) 1px /* 線の太さ */,
      transparent 1px,
      transparent 2.5rem /* マス目 */
    ),
    repeating-linear-gradient(
      to bottom,
      rgb(from var(--color-main-char) r g b / 0.06) 0,
      rgb(from var(--color-main-char) r g b / 0.06) 1px /* 線の太さ */,
      transparent 1px,
      transparent 2.5rem /* マス目 */
    );
  margin-bottom: 4rem;
  padding: 2rem 0 4rem;
}
.voice-container {
  margin: 0 auto;
}
.voice-ttl {
  padding-bottom: 4rem;
}
.voice-content-02 {
  margin-top: -8rem;
}
.voice-content-03 {
  margin-top: -16rem;
}
@media screen and (max-width: 768px) {
  .voice-area {
    padding-bottom: 6rem;
  }
  .voice-ttl {
    padding-bottom: 2rem;
  }
  .voice-content-01 {
    margin-bottom: 6rem;
  }
  .voice-content-02 {
    margin-top: 0rem;
    margin-bottom: 6rem;
  }
  .voice-content-03 {
    margin-top: 0rem;
  }
}
/*------------------------------------------------------------------------------
サービス比較エリア
------------------------------------------------------------------------------*/
.comparison-area {
  margin-bottom: 4rem;
  padding: 2rem 0;
}
.comparison-ttl {
  margin-bottom: 4rem;
}
.comparison-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
/*------------------------------------------------------------------------------
料金表エリア
------------------------------------------------------------------------------*/
.price-area {
  margin-bottom: 4rem;
  padding: 2rem 0;
}
.price-ttl {
  margin-bottom: 4rem;
}
.price-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
/*------------------------------------------------------------------------------
支払い方法エリア
------------------------------------------------------------------------------*/
.payment-area {
  margin-bottom: 4rem;
  padding: 6rem 0;
  background-color: var(--color-light-gray);
}
.payment-ttl {
  margin-bottom: 4rem;
}
/*------------------------------------------------------------------------------
ご利用の流れエリア
------------------------------------------------------------------------------*/
.flow-area {
  margin-bottom: 6rem;
  padding: 2rem 0;
}
.flow-ttl {
  margin-bottom: 3rem;
}
.flow-content {
  margin-bottom: 4rem;
}
.arrow {
  width: 10%;
  margin: 2rem auto 0;
}
/*------------------------------------------------------------------------------
準備物エリア
------------------------------------------------------------------------------*/
.requirement-area {
  margin-bottom: 6rem;
  padding: 2rem 0;
}
.requirement-ttl {
  margin-bottom: 4rem;
}
/*------------------------------------------------------------------------------
納品物エリア
------------------------------------------------------------------------------*/
.deliverable-area {
  margin-bottom: 6rem;
  padding: 2rem 0;
}
.deliverable-ttl {
  margin-bottom: 4rem;
}
/*------------------------------------------------------------------------------
よくある質問エリア
------------------------------------------------------------------------------*/
.faq-area {
  margin-bottom: 4rem;
  padding: 6rem 0;
  background-color: var(--color-light-gray);
}
.faq-ttl {
  margin-bottom: 4rem;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.faq-list {
  overflow-anchor: none;
}
.qa-box {
  border-top: 1px solid rgba(51, 51, 51, 0.3);
  padding: 1rem 0;
}
.qa-box:first-child {
  margin-top: 0;
}
.qa-box:last-child {
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}
.acd-check {
  display: none;
}
.acd-label {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: flex-start;
  padding: 0.5em 2em 0.5em 1em;
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  text-align: justify;
  color: var(--color-main-char);
}
@media screen and (max-width: 768px) {
  .acd-label {
    font-size: 2rem;
  }
}
.acd-label:before {
  content: "Q";
  color: var(--color-main);
  font-weight: 600;
  display: inline-block;
  width: 2em;
  flex-shrink: 0;
}
.acd-label:after {
  content: "＋";
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  display: block;
  box-sizing: border-box;
  transition: transform 0.3s ease-out;
}
.acd-content {
  display: grid;
  /* ← 横並び：1列目=「A」用 2列目=本文 */
  grid-template-columns: 2em 1fr;
  /* ← 閉じてる間は中身の行を0frで潰す（高さ可変でもアニメ可） */
  grid-template-rows: 0fr;
  align-items: start;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: grid-template-rows 0.3s ease-out, padding-block 0.3s ease-out, opacity 0.3s ease-out, font-size 0.3s ease-out, line-height 0.3s ease-out, margin-bottom 0.3s ease-out;
  font-size: 0;
  line-height: 0;
  font-weight: 600;
  /* 閉じている間は縦パディング0で"上ずれ感"を抑える */
  padding: 0 2em 0 1em;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .acd-content {
    padding: 0 2em 0 1em;
  }
}
/* デフォルト（閉じているとき）は table を非表示にしてしまう */
.acd-content table {
  display: none;
  width: 100%;
  border-collapse: collapse; /* 線をキレイに */
  font-size: 1.5rem;
  margin: 2rem auto;
}
@media screen and (max-width: 768px) {
  .acd-content table {
    font-size: 2rem;
  }
}
.acd-content table th,
.acd-content table td {
  border: 1px solid var(--color-main-char);
  padding: 1rem 1.5rem;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
}
/* 開いたときだけ table を表示する */
.acd-check:checked ~ .acd-content table {
  display: table;
}
/* gridの0frを機能させるため、中身はoverflow:hiddenに */
.acd-content > * {
  grid-column: 2;
  min-height: 0; /* 0fr時のつぶれ対策 */
  overflow: hidden;
}
/* 開いた状態 */
.acd-check:checked ~ .acd-content {
  grid-template-rows: 1fr; /* 実高までなめらかに展開 */
  opacity: 1;
  visibility: visible;
  padding-top: 1em;
  font-size: 1.25rem;
  line-height: 1.5;
  transition: grid-template-rows 0.3s ease-out, padding-block 0.3s ease-out, opacity 0.3s ease-out, font-size 0.3s ease-out, line-height 0.3s ease-out, margin-bottom 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .acd-check:checked ~ .acd-content {
    font-size: 2rem;
  }
}
.acd-content:before {
  content: "A";
  grid-column: 1;
  color: var(--color-accent);
  font-weight: 600;
  display: none;
}
/* 開いたときだけ A を表示する */
.acd-check:checked ~ .acd-content::before {
  display: block;
}
.acd-check:checked + .acd-label:after {
  content: "ー";
}
.acd-content p {
  margin-bottom: 0.75em;
}
.acd-content ul {
  list-style: disc;
  padding-left: 2em;
  margin-bottom: 0.75em;
}
/*------------------------------------------------------------------------------
会社概要エリア
------------------------------------------------------------------------------*/
.company-area {
  margin-bottom: 6rem;
  padding: 2rem 0;
}
.company-ttl {
  margin-bottom: 4rem;
}
.company-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.company-table {
  border-collapse: collapse;
  border: 1px solid rgba(51, 51, 51, 0.3);
  border-left: none;
  border-right: none;
  margin: 0.75rem auto;
}
/* @media screen and (max-width: 768px) {
  .company-table {
    width: 90%;
  }
} */
.company-table th {
  font-size: 1.25rem;
  font-weight: 600;
  width: 30%;
  padding: 1rem 0 1rem 2.5rem;
  border-top: 1px solid rgba(51, 51, 51, 0.3);
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .company-table th {
    font-size: 2rem;
    width: 30%;
  }
}
.company-table td {
  font-size: 1.25rem;
  font-weight: 600;
  width: 70%;
  padding: 1rem 0 1rem 0.75rem;
  border-top: 1px solid rgba(51, 51, 51, 0.3);
  text-align: justify;
  line-height: 180%;
}
@media screen and (max-width: 768px) {
  .company-table td {
    font-size: 2rem;
    width: 70%;
    padding: 1rem;
  }
}
/*------------------------------------------------------------------------------
お問い合わせフォーム1エリア
------------------------------------------------------------------------------*/
.form1-area {
  flex-basis: 47%;
  margin-right: 2.5rem;
  position: relative;
  z-index: 2;
}
.form1-inner {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
  background-color: var(--color-base);
  padding: 2rem 1rem;
}
.form1-ttl {
  margin: 0 auto 1rem;
  width: 70%;
}
.form1-img {
  margin: 0 auto 1rem;
  width: 58%;
}
/*------------------------------------------------------------------------------
お問い合わせフォーム2エリア
------------------------------------------------------------------------------*/
.form2-area {
  background-color: var(--color-main);
  padding: 4rem 0;
}
.form2-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .form2-container {
    flex-direction: column;
    padding: 0 2rem;
  }
}
.form2-visual-block {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.form2-ttl {
  width: 45%;
}
.form2-form-block {
  background-color: var(--color-light-gray);
  border-radius: 2rem;
  padding: 4rem 2rem;
}
/*------------------------------------------------------------------------------
フッターエリア
------------------------------------------------------------------------------*/
.footer-area {
  padding: 3rem 0 2rem;
}
.footer-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .footer-menu {
    flex-direction: column;
    gap: 2rem;
  }
}
.footer-menu a {
  text-decoration: none;
}
.footer-menu a:hover {
  text-decoration: underline;
}
.footer-menu li {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-main-char);
}
@media screen and (max-width: 768px) {
  .footer-menu li {
    font-size: 1.5rem;
  }
}
.copyright {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-main-char);
}
@media screen and (max-width: 768px) {
  .copyright {
    font-size: 1.5rem;
  }
}
/*------------------------------------------------------------------------------
追従ボタン（スマホのみ）
------------------------------------------------------------------------------*/
.fixed-buttons {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  bottom: 0;

  /* 常時レイアウトに存在させる */
  /* display: flex;
  justify-content: center;
  align-items: center; */

  /* 初期は画面下に退避＆非表示 */
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  /* ニョキっと出るトランジション */
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0s linear 0.55s; /* 非表示へ戻るときに visibility を遅延で切る */

  will-change: transform, opacity;
}
.fixed-buttons.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0s linear 0s;
}
.fixed-buttons-layout {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: bottom;
}
/*------------------------------------------------------------------------------
   3カラム固定フレーム（PCのみ）
------------------------------------------------------------------------------*/
.layout-frame {
  /* 背景（任意）：全体に敷く */
  /* 画像を使う場合 */
  background: url("../images/bg_main.webp") center/cover fixed no-repeat;
  /* 単色＋グラデ（例） */
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.06)), var(--color-ultralight-orange); */
  /* background: var(--color-white); */
  height: auto !important;
  overflow: visible !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start; /* 縦方向の位置揃えを上端に */
  gap: 2rem;
}
/* 中央カラム（3カラムレイアウトの中央部分） */
.main-column {
  overscroll-behavior: contain;

  /* 左右だけ */
  box-shadow: 8px 0 16px rgba(0, 0, 0, 0.1), -8px 0 16px rgba(0, 0, 0, 0.1);
  scrollbar-width: auto;

  /* レイアウト調整（左右のレールに押しつぶされないように） */
  flex: 1 1 var(--max-width-pc);
  width: 100%;
  min-width: 0;
  max-width: var(--max-width-pc);
}
/* 左右レール（追従   ） */
.rail {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  align-self: start;

  /* 画面の高さ分だけ確保し、その中でレール自体が長ければスクロールさせる */
  height: 100vh;
  overflow-y: auto;

  /* レイアウト調整 */
  width: 14rem;
  flex: 0 2 14rem;
  min-width: 0;
  overflow: hidden;

  /* レールの中身を中央寄せにする場合 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  pointer-events: auto;

  /* レール自体のスクロールバーを消す */
  scrollbar-width: none;
}
/* Chrome/Safari用 スクロールバー非表示 */
.rail::-webkit-scrollbar {
  display: none;
}
/* スマホは従来どおり1カラム（レール非表示・全体スクロール） */
@media screen and (max-width: 768px) {
  .layout-frame {
    display: block;
    height: auto;
    background: var(--color-white); /* モバイルはシンプル背景に戻す */
    padding: 0;
  }
  .main-column {
    height: auto;
    overflow: visible;
  }
  .rail {
    display: none;
  }
}
/* 3カラム合計幅(1200 + 14rem*2 + gap2rem*2 = 1712px)を下回ると左右レールを隠す */
@media screen and (max-width: 1712px) {
  .layout-frame {
    gap: 0;
  }
  .rail {
    display: none;
  }
}
/*------------------------------------------------------------------------------
   左レールナビゲーション
------------------------------------------------------------------------------*/
.rail-nav {
  width: 100%;
  padding: 2rem 1rem;
}
.rail-nav-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin: 0 0 0.75rem;
  color: var(--color-main-char);
}
.rail-nav-divider {
  width: 100%;
  height: 1px;
  background-color: rgb(from var(--color-main-char) r g b / 0.2);
  margin: 0 0 1rem;
}
.rail-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rail-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-main-char);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-align: center;
}
.rail-nav-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--color-red);
}
.rail-nav-link:active {
  background-color: rgba(0, 0, 0, 0.1);
}
/*------------------------------------------------------------------------------
   右レールCTAエリア
------------------------------------------------------------------------------*/
.rail-cta-area {
  position: relative;
}
.rail-cta-download {
  position: absolute;
  top: 90%;
  left: 5%;
  width: 90%;
}
.rail-cta-download img {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.rail-cta-contact {
  position: absolute;
  top: 80%;
  left: 5%;
  width: 90%;
}
.rail-cta-contact img {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
