/* --- 基本設定 --- */
:root {
  --primary-blue: #003366;
  --accent-gold: #E2D1B1;
  --bg-white: #ffffff;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", sans-serif;
  background-color: var(--bg-white);
  color: #333;
  overflow-x: hidden;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.pc-br {
  display: block;
}

.screenVideo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1)
}

.screenVideo.is-hide {
  opacity: 0
}

.screenVideo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.screenVideo .inner {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden
}

.screenVideo .inner video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%
}

.site-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #f1f1f1;
  position: fixed;
  z-index: 100;
  box-shadow: 0 4px 18px rgba(47, 86, 134, 0.08);
}

.site-header-inner {

  margin: 0 auto;
  height: 84px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-logo {
  margin: 0;
  flex: 0 0 auto;
}

.site-logo a {
  display: block;
}

.site-logo img {
  display: block;
  width: 225px;
  height: auto;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: #2f5686;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.site-nav a:hover {
  opacity: 0.7;
}

.site-header-cta {
  flex: 0 0 auto;
}

.site-header-cta a {
  width: 145px;
  min-height: 62px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #4a76b5;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
}

.site-header-cta a:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 1000px;
  margin: 0 auto;
  background: var(--bg-white);
  overflow: hidden;
}

.side-text-container {
  position: absolute;
  left: 0;
  top: 280px;
  width: 110px;
  height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.side-text {
  transform: rotate(90deg);
  color: var(--primary-blue);
  font-size: 14px;
  /* font-weight: bold; */
  letter-spacing: 0.25em;
  white-space: nowrap;
  opacity: 0.8;
}

.hero-title {
  position: absolute;
  left: 180px;
  top: 150px;
  z-index: 30;
  pointer-events: none;
}

.hero-title h1 img {
  width: clamp(520px, 50vw, 1200px);
  max-width: 100%;
  height: auto;
}

.hero-sub {
  font-family: "Yu Mincho", "YuMincho", "游明朝体", "游明朝", serif;
  position: absolute;
  right: 140px;
  top: 180px;
  z-index: 30;
  text-align: right;
}

.hero-sub p {
  color: var(--primary-blue);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.3em;
  border-bottom: 1px solid var(--primary-blue);
  padding-bottom: 8px;
  display: inline-block;
}

/* =========================
   MV VISUAL SLIDER
========================= */

.visual-container {
  position: absolute;
  left: 110px;
  top: 280px;
  width: calc(100% - 150px);
  /* 右余白を少し埋める */
  height: 660px;
  z-index: 20;
  border-radius: 60px 60px 0 60px;
  overflow: hidden;
}

.slideshow {
  position: absolute;
  inset: 0;
}

.mv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
}

.mv-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.mv-slide.is-leaving {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.mv-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-before {
  opacity: 1;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.mv-after {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 2;
}

.mv-slide.is-after .mv-before {
  opacity: 0;
}

.mv-slide.is-after .mv-after {
  opacity: 1;
}

/* =========================
   左の番号タイマー
========================= */

.mv-count {
  position: absolute;
  left: 58px;
  bottom: 105px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mv-count-btn {
  position: relative;
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #496b93;
  font-size: 12px;
  font-family: "Times New Roman", serif;
  cursor: pointer;
  overflow: visible;
}
.mv-count-svg {
  position: absolute;
  inset: -3px;
  width: 40px;
  height: 40px;
  overflow: visible;
}

.mv-count-bg,
.mv-count-progress {
  fill: none;
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.mv-count-bg {
  stroke: rgba(111, 137, 170, 0.15);
}

.mv-count-btn.is-active .mv-count-bg {
  stroke: rgba(111, 137, 170, 0.35);
}

.mv-count-progress {
  stroke: #6f89aa;
  stroke-linecap: round;
  stroke-dasharray: 106.8;
  stroke-dashoffset: 106.8;
  transition: none;
  opacity: 0;
}

.mv-count-btn.is-active .mv-count-progress {
  opacity: 1;
}


.mv-count-num {
  position: relative;
  z-index: 3;
}

.mv-count-btn::after {
  content: "";
  position: absolute;
  left: 80%;
  top: 50%;
  width: 46px;
  height: 1px;
  background: #6f89aa;
  transform: translateY(-50%);
  opacity: 0;
  z-index: 2;
}

.mv-count-btn.is-active::after {
  opacity: 1;
}

.mv-count-hand {
  display: none;
}

/* SNSエリア */
.sns-box-container {
  position: absolute;
  right: 30px;
  bottom: 60px;
  z-index: 40;
}

.sns-box {
  position: relative;
  width: 330px;
  height: 70px;
  background: #fff;
  border-radius: 52px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding-left: 18px;
}

.curve-left {
  position: absolute;
  bottom: 0;
  left: -46px;
  width: 51px;
  height: 52px;
  background: radial-gradient(circle at 0 0, transparent 52px, #fff 52.5px);
}

.curve-top {
  position: absolute;
  top: -52px;
  right: 0;
  width: 52px;
  height: 52px;
  background: radial-gradient(circle at 0 0, transparent 52px, #fff 52.5px);
}

.sns-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--primary-blue);
}

.sns-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sns-icons a {
  color: var(--primary-blue);
  transition: opacity 0.3s;
}

.sns-icons svg {
  width: 30px;
  height: 30px;
}

.bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  animation: move 12s infinite ease-in-out;
}

.b1 {
  background: #e2d1b1;
  top: 20%;
  left: 30%;
}

.b2 {
  background: #003366;
  top: 50%;
  left: 60%;
}

@keyframes move {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(80px, -40px);
  }
}

.canvas_container {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

/* =========================
   TOP MV MESSAGE
========================= */
.mv-message {
  font-family: "Yu Mincho", "YuMincho", "游明朝体", "游明朝", serif;
  padding: 88px 20px 90px;
  position: relative;
  /* overflow: hidden; */

  background-image:
    url("../images/intro-feather.webp"),
    linear-gradient(90deg, #f7f4f7 0%, #f8fbfb 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
  background-size: min(1000px, 92vw) auto, cover;
}

.mv-message {
  position: relative;
}

/* 点線 */
.mv-message::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(900px, 88%);
  height: 4px;
  transform: translateX(-50%);
  z-index: 2;

  background-image: radial-gradient(circle,
      rgba(111, 133, 163, 0.32) 1px,
      transparent 1.2px);
  background-size: 8px 4px;
  background-repeat: repeat-x;
  background-position: left center;

  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      #000 5%,
      #000 calc(50% - 12px),
      transparent calc(50% - 12px),
      transparent calc(50% + 12px),
      #000 calc(50% + 12px),
      #000 95%,
      transparent 100%);

  mask-image: linear-gradient(to right,
      transparent 0%,
      #000 5%,
      #000 calc(50% - 12px),
      transparent calc(50% - 12px),
      transparent calc(50% + 12px),
      #000 calc(50% + 12px),
      #000 95%,
      transparent 100%);
}

/* 中央の縦線 */
.mv-message::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 0.1px;
  height: 19px;
  background: #496b93;
  transform: translateX(-50%);
  z-index: 3;
}



.mv-message-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.mv-message-title {
  margin: 0 0 28px;
  color: #42618a;
  font-size: 34px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.mv-message-text {
  margin: 0 auto 28px;
  max-width: 800px;
  color: #506e92;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.mv-message-line {
  margin: 0 0 14px;
  color: #55739a;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.mv-message-sub {
  margin: 0;
  color: #506e92;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.mv-message-feather {
  display: none;
}


/* =========================
   TOP SERVICE
========================= */
.service {
  padding: 120px 0 140px;
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 45%, #f8fbfd 100%);
  overflow: hidden;
}

.service {
  position: relative;
}

/* 点線 */
.service::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: min(900px, 88%);
  height: 4px;
  transform: translateX(-50%);
  z-index: 2;

  background-image: radial-gradient(circle,
      rgba(111, 133, 163, 0.32) 1px,
      transparent 1.2px);
  background-size: 8px 4px;
  background-repeat: repeat-x;
  background-position: left center;

  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      #000 5%,
      #000 calc(50% - 12px),
      transparent calc(50% - 12px),
      transparent calc(50% + 12px),
      #000 calc(50% + 12px),
      #000 95%,
      transparent 100%);

  mask-image: linear-gradient(to right,
      transparent 0%,
      #000 5%,
      #000 calc(50% - 12px),
      transparent calc(50% - 12px),
      transparent calc(50% + 12px),
      #000 calc(50% + 12px),
      #000 95%,
      transparent 100%);
}

/* 中央の縦線 */
.service::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 0.1px;
  height: 19px;
  background: #496b93;
  transform: translateX(-50%);
  z-index: 3;
}

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

.service-head {
  text-align: center;
  margin-bottom: 70px;
}

.service-en {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: #496b93;
  font-family: "Times New Roman", serif;
}

.service-en::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 48%;
  width: 28px;
  height: 28px;
  background: url("../images/heading-icon.webp") center / contain no-repeat;
  transform: translateY(-50%);
  border-radius: 0;
}

.service-en::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 147px;
  height: 1px;
  background: #6f89aa;
  transform: translateX(-50%);
}

.service-ja {
  margin: 6px 0 0;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #6d7b8a;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 110px;
}

.service-item {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  left: auto;
  transform: none;
}

.service-bg {
  position: absolute;
  top: 50%;
  width: 66vw;
  max-width: 760px;
  height: 115%;
  border-radius: 18px;
  box-shadow: none;
  z-index: 0;
  pointer-events: none;
}

/* 1番目・3番目：左側に向かって長めにふわっと消える */
.service-item:nth-child(1) .service-bg,
.service-item:nth-child(3) .service-bg {
  left: -20px;
  transform: translateY(-50%);
  background: linear-gradient(90deg,
      rgba(245, 244, 242, 0) 0%,
      rgba(245, 244, 242, 0.25) 18%,
      rgba(245, 244, 242, 0.55) 34%,
      rgba(245, 244, 242, 0.85) 52%,
      rgba(245, 244, 242, 1) 72%,
      rgba(245, 244, 242, 1) 100%);
}

/* 2番目：右側に向かって長めにふわっと消える */
.service-item:nth-child(2) .service-bg {
  right: -20px;
  transform: translateY(-50%);
  background: linear-gradient(90deg,
      rgba(245, 244, 242, 1) 0%,
      rgba(245, 244, 242, 1) 28%,
      rgba(245, 244, 242, 0.85) 48%,
      rgba(245, 244, 242, 0.55) 66%,
      rgba(245, 244, 242, 0.25) 82%,
      rgba(245, 244, 242, 0) 100%);
}

.service-text,
.service-image {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.service-text {
  width: 47%;
}

.service-image {
  width: 42%;
}

.service-text h3 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 9px;
  font-size: 23px;
  font-weight: 500;
  color: #4c6380;
  letter-spacing: 0.08em;
}

.service-text h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 75%;
  height: 2px;
  background: linear-gradient(to right,
      #5f7898 0%,
      #5f7898 16%,
      #d8c6a4 16%,
      #d8c6a4 100%);
  border-radius: 999px;
}

.service-text p {
  margin: 0;
  font-size: 15px;
  line-height: 2.2;
  color: #5f6f82;
}

.service-script {
  position: absolute;
  left: -170px;
  top: -184px;
  width: 360px;
  margin: 0;
  z-index: 2;
  pointer-events: none;
}

.service-script img {
  width: 100%;
  height: auto;
  display: block;
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.service-item-right .service-text {
  order: 1;
}

.service-item-right .service-image {
  order: 2;
}

.service-item-left .service-image {
  order: 1;
}

.service-item-left .service-text {
  order: 2;
}

.service-btn-wrap {
  text-align: center;
  margin-top: 70px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 44px;
  padding: 0 34px;
  border-radius: 999px;
  background: #4a76b5;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

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

/* =========================
   TOP OPTION
========================= */
.option {
  padding: 110px 0 90px;
  background: linear-gradient(180deg, #f9fcfd 0%, #ffffff 45%, #f8fbfd 100%);
  overflow: hidden;
}

.option-inner {
  width: 100%;
  margin: 0 auto;
}

.option-head {
  text-align: center;
  margin-bottom: 44px;
}

.option-en {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: #496b93;
  font-family: "Times New Roman", serif;
}

.option-en::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 48%;
  width: 28px;
  height: 28px;
  background: url("../images/heading-icon.webp") center / contain no-repeat;
  transform: translateY(-50%) rotate(-8deg);
}

.option-en::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 129px;
  height: 1px;
  background: #6f89aa;
  transform: translateX(-50%);
}

.option-ja {
  margin: 8px 0 0;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #6d7b8a;
}

/* スライダー */
.option-slider {
  width: 100vw;
  overflow: hidden;
  margin: 0 auto;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.option-slider.is-dragging {
  cursor: grabbing;
}

.option-track {
  display: flex;
  gap: 16px;
  will-change: transform;
}

.option-slide {
  flex: 0 0 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #eee;
  pointer-events: none;
  flex-shrink: 0;
}

.option-slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.option-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.option-dots button {
  width: 42px;
  height: 4px;
  border: none;
  border-radius: 999px;
  background: #d6c39d;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.option-dots button.active {
  background: #4a76b5;
}

.option-btn-wrap {
  text-align: center;
  margin-top: 38px;
}

.option-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 48px;
  padding: 0 36px;
  border-radius: 999px;
  background: #4a76b5;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s ease;
}

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

/* =========================
   PRICE HEAD
========================= */
.price-head {
  text-align: center;
  margin-bottom: 48px;
}

.price-head-en {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: #496b93;
  font-family: "Times New Roman", serif;
}

.price-head-en::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 48%;
  width: 28px;
  height: 28px;
  background: url("../images/heading-icon.webp") center / contain no-repeat;
  transform: translateY(-50%) rotate(-8deg);
}

.price-head-en::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 98px;
  height: 1px;
  background: #6f89aa;
  transform: translateX(-50%);
}

.price-head-ja {
  margin: 6px 0 12px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.18em;
  color: #7d8795;
}

.price-head-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #6d7b8a;
  font-weight: 500;
}

.retouch-plan {
  position: relative;
  padding: 100px 0 120px;
  background: #f7f7f7;
  overflow: visible;
}

.retouch-plan-inner {
  position: relative;
  width: min(1200px, 90%);
  margin: 0 auto;
}

.retouch-script {
  position: absolute;
  left: -75px;
  top: -175px;
  margin: 0;
  z-index: 2;
  pointer-events: none;
}

.retouch-script img {
  width: 100%;
  height: auto;
  display: block;
}

.retouch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
  align-items: start;
}

.retouch-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.plan-compare {
  width: 100%;
  aspect-ratio: 4 / 5.8;
  overflow: hidden;
}

.plan-compare img {
  width: 100%;
  height: auto;
  display: block;
}

.twentytwenty-wrapper,
.twentytwenty-container {
  width: 100% !important;
  max-width: 100%;
  overflow: hidden;
}

/* .plan-compare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

@media screen and (max-width: 900px) {
  .retouch-plan-inner {
    width: min(720px, 90%);
  }

  .retouch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 40px;
  }
}

.retouch-title {
  position: relative;
  margin: 18px 0 18px;
  padding-bottom: 14px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #163d72;
}

.retouch-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right,
      #5f7898 0%,
      #5f7898 24%,
      #d8c6a4 24%,
      #d8c6a4 100%);
}

.retouch-text {
  min-height: 82px;
  margin: 0;
  font-size: 14px;
  line-height: 1.95;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #163d72;
}

.retouch-price {
  margin: 18px 0 0;
  color: #163d72;
  line-height: 1.2;
}

.retouch-price-main {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-family: "Times New Roman", serif;
}

.retouch-price-yen {
  margin-left: 1px;
  font-size: 18px;
  font-weight: 500;
}

.retouch-price-tax {
  margin-left: 4px;
  font-size: 12px;
  font-weight: 600;
}

.retouch-price-consult {
  font-size: 32px;
  font-weight: 500;
  font-family: "Times New Roman", serif;
  letter-spacing: 0.02em;
}

.retouch-btn-wrap {
  text-align: center;
  margin-top: 34px;
}

.retouch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 44px;
  padding: 0 34px;
  border-radius: 999px;
  background: #4a76b5;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

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

/* =========================
   TOP ORDER FLOW
========================= */
.order-flow {
  padding: 110px 0 120px;
}

.order-flow-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.order-flow-head {
  text-align: center;
  margin-bottom: 54px;
}

.order-flow-head-en {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: #496b93;
  font-family: "Times New Roman", serif;
}

.order-flow-head-en::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 48%;
  width: 28px;
  height: 28px;
  background: url("../images/heading-icon.webp") center / contain no-repeat;
  transform: translateY(-50%) rotate(-8deg);
}

.order-flow-head-en::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 98px;
  height: 1px;
  background: #6f89aa;
  transform: translateX(-50%);
}

.order-flow-head-ja {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.18em;
  color: #7d8795;
}

.order-flow-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.order-flow-list::before {
  content: "";
  position: absolute;
  top: 47px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: #6f89aa;
  z-index: 0;
}

.order-flow-item {
  position: relative;
  text-align: center;
  z-index: 1;
}

.order-flow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-flow-icon img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  display: block;
}

.order-flow-number {
  margin-top: 18px;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #2f5686;
  font-family: "Times New Roman", serif;
}

.order-flow-text {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.8;
  color: #2f5686;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.order-flow-btn-wrap {
  text-align: center;
  margin-top: 42px;
}

.order-flow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 44px;
  padding: 0 34px;
  border-radius: 999px;
  background: #4a76b5;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.order-flow-btn:hover {
  opacity: 0.8;
}

/* =========================
   CONTACT BANNER
========================= */
.contact-banner {
  padding: 0;
  background: #fff;
}

.contact-banner-inner {
  width: 100%;
  min-height: 261px;
  margin: 0 auto;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
  color: #fff;
  background-image: url("../images/contact-bg.webp");
  overflow: hidden;
}

/* 左 */
.contact-banner-left {
  flex: 0 0 360px;
  max-width: 360px;
}

.contact-banner-en {
  position: relative;
  display: inline-block;
  margin: 0 0 6px;
  padding-bottom: 14px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Times New Roman", serif;
  font-weight: 400;
  color: #f5f4f0;
}

.contact-banner-en::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 112px;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
}

.contact-banner-ja {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.95);
}

.contact-banner-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* 右 */
.contact-banner-right {
  flex: 0 0 430px;
  max-width: 430px;
  text-align: center;
}

.contact-banner-copy {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.98);
}

.contact-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 405px;
  max-width: 100%;
  height: 64px;
  padding: 0 28px;
  border-radius: 999px;
  background: #fff;
  color: #4a76b5;
  text-decoration: none;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-banner-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* =========================
   TOP ABOUT
========================= */
.about-section {
  padding: 180px 0 100px;
  background: linear-gradient(90deg, #f7f4f7 0%, #f7fbfb 100%);
  overflow: hidden;
}

.about-inner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  min-height: 590px;
}

.about-card {
  position: relative;
  width: calc(50vw + 260px);
  min-height: 470px;
  background: rgba(246, 243, 244, 0.92);
  border-radius: 0 20px 20px 0;

  /*
    右側画像との重なりが約375pxあるため、
    右余白を400px確保する
  */
  padding:
    118px 400px 72px clamp(40px,
      calc((75vw - 1280px) / 2 + 110px),
      190px);

  z-index: 1;
}

.about-text-wrap {
  width: 100%;
  max-width: 630px;
}

.about-script {
  position: absolute;
  left: calc((90vw - 1280px) / 2 - 35px);
  top: -120px;
  margin: 0;
  z-index: 3;
  pointer-events: none;
  transform: none;
}

.about-script img {
  width: 100%;
  height: auto;
  display: block;
}

.about-feather {
  position: absolute;
  opacity: 0.18;
  pointer-events: none;
}

.about-feather-1 {
  top: 46px;
  left: calc((100vw - 1280px) / 2 + 190px);
  width: 26px;
  height: 10px;
  transform: rotate(-12deg);
}

.about-feather-2 {
  top: 70px;
  left: calc((100vw - 1280px) / 2 + 238px);
  width: 28px;
  height: 54px;
  transform: rotate(8deg);
}

.about-feather::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center,
      rgba(215, 202, 198, 0.75) 0%,
      rgba(215, 202, 198, 0.25) 58%,
      rgba(215, 202, 198, 0) 100%);
  clip-path: ellipse(48% 38% at 50% 50%);
}

.about-en {
  margin: 0 0 6px;
  color: #2f5686;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.about-sub {
  margin: 0 0 26px;
  color: #55739a;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.16em;
  font-weight: 500;
}

.about-text p {
  margin: 0 0 6px;
  color: #375579;
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.03em;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image {
  position: absolute;
  right: 0;
  top: 58px;
  width: calc(50vw + 115px);
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  z-index: 2;
}

.about-image img {
  width: 100%;
  height: 530px;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: linear-gradient(90deg, #f6f3f7 0%, #f6fbfb 100%);
}

.footer-upper {
  padding: 70px 0 90px;
}

.footer-inner {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.footer-logo {
  flex: 0 0 auto;
}

.footer-logo img {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
}

.footer-sns {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #355887;
  margin-top: 2px;
}

.footer-sns-label {
  font-size: 14px;
  letter-spacing: 0.16em;
  color: #355887;
  white-space: nowrap;
}

.footer-sns-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #355887;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-sns-icon:hover {
  opacity: 0.7;
}

.footer-sns-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

/* =========================
   FOOTER NAV
========================= */
.footer-nav {
  flex: 1;
  max-width: 700px;
  padding-top: 18px;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  column-gap: 34px;
  row-gap: 12px;
}

.footer-nav li {
  margin: 0;
  flex: 0 0 auto;
}

/* メニュー文字を改行させない */
.footer-nav a {
  display: block;
  color: #355887;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.14em;
  line-height: 1.8;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

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

/* 運用会社・プライバシーポリシーだけ下段 */
.footer-break {
  flex-basis: 100%;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* 下段も右寄せ */
.footer-break+li {
  margin-left: auto;
}

/* =========================
   FOOTER LOWER
========================= */
.footer-lower {
  background: #4d7dbc;
  padding: 11px 20px 10px;
  text-align: center;
}

.footer-lower p {
  margin: 0;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.16em;
  line-height: 1.5;
}

/* =========================
   PRICE PAGE
========================= */
.price-page {
  padding-top: 84px;
  color: #263f5f;
}

.price-section-head {
  text-align: center;
  margin-bottom: 54px;
}

.price-section-head h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 20px;
  padding-bottom: 14px;
  font-family: "Yu Mincho", "YuMincho", "游明朝体", "游明朝", serif;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #2f5686;
}

.price-section-head h2::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 34%;
  width: 28px;
  height: 28px;
  background: url("../images/heading-icon.webp") center / contain no-repeat;
  transform: translateY(-50%);
  border-radius: 0;
}

.price-section-head p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #506e92;
}

.price-btn-wrap {
  text-align: center;
  margin-top: 50px;
}

.price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 48px;
  padding: 0px 50px;
  border-radius: 999px;
  background: #3f6fa8;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.price-btn:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.price-mv {
  padding: 90px 20px 38px;
  background: #fff;
}

.price-mv-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.price-mv-title {
  margin: 0 0 22px;
  font-family: "Yu Mincho", "YuMincho", "游明朝体", "游明朝", serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #2f5686;
}

.price-mv-lead {
  margin: 0 auto 70px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #516d8d;
}

.price-tab-nav {
  width: 100%;
  height: 54px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #cfd5dc;
  border-radius: 999px;
  background: #f7f8fb;
  overflow: hidden;
}

.price-tab-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  color: #2f5686;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-right: 1px solid #cfd5dc;
  border-radius: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.price-tab-nav a:last-child {
  border-right: none;
}

.price-tab-nav a:hover {
  background: #edf4fb;
}

.plan-section {
  padding: 44px 20px 120px;
}

.plan-list {
  width: min(1120px, 100%);
  max-width: none;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 98px;
}

.plan-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.plan-item-reverse .plan-img {
  order: 2;
}

.plan-item-reverse .plan-text {
  order: 1;
}

.plan-img {
  width: 100%;
  min-width: 0;
}

.plan-img {
  width: 100%;
  min-width: 0;
}

.plan-img .twentytwenty-wrapper {
  width: 100% !important;
  max-width: 100%;
  margin: 0;
}

.plan-img .twentytwenty-container,
.plan-img .twentytwenty-container.plan-compare {
  width: 100% !important;
  max-width: 100%;
  aspect-ratio: auto;
  margin: 0;
  overflow: hidden;
}

.plan-img .twentytwenty-before,
.plan-img .twentytwenty-after,
.plan-img img {
  width: 100% !important;
  height: auto !important;
  object-fit: initial !important;
  object-position: center !important;
}
.plan-text h3 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 13px;
  font-size: 23px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #163d72;
}

.plan-text h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 86%;
  height: 1px;
  background: linear-gradient(to right, #5f7898 0%, #5f7898 24%, #d8c6a4 24%, #d8c6a4 100%);
}

.plan-copy {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #4f6380;
}

.plan-price {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 600;
  color: #163d72;
  letter-spacing: 0.04em;
}

.plan-price span {
  margin: 0 2px 0 6px;
  font-family: "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.plan-price small {
  margin-left: 5px;
  font-size: 11px;
  font-weight: 600;
}

.plan-price-consult {
  font-family: "Yu Mincho", "YuMincho", "游明朝体", "游明朝", serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.plan-detail {
  margin-bottom: 28px;
}

.plan-detail p {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: #163d72;
}

.plan-detail ul {
  margin: 0;
  padding-left: 1.2em;
}

.plan-detail li {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #4f6380;
}

/* =========================
   OPTION PRICE
========================= */
.option-price {
  padding: 92px 20px 110px;
  background: #f5f3f1;
}

.option-price-inner {
  max-width: 960px;
  margin: 0 auto;
}

.option-price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 46px 38px;
}

.option-price-card {
  min-width: 0;
}

.option-price-img {
  width: 100%;
  margin-bottom: 14px;
  background: #e9e9e9;
  overflow: hidden;
}

.option-price-img .twentytwenty-container {
  aspect-ratio: 1.45 / 1;
}

.option-price-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.option-price-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #163d72;
  letter-spacing: 0.06em;
}

.option-price-card>p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #4f6380;
  letter-spacing: 0.04em;
}

.option-price-card>.option-card-price {
  margin-top: 8px;
  font-weight: 600;
  color: #163d72;
}

.option-card-price span {
  margin: 0 2px 0 6px;
  font-family: "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.option-card-price small {
  margin-left: 4px;
  font-size: 12px;
}

/* =========================
   DIGITAL MENU
========================= */
.digital-menu {
  padding: 98px 20px 105px;
  background:
    radial-gradient(circle at 8% 35%, rgba(232, 247, 247, 0.9) 0, rgba(232, 247, 247, 0) 34%),
    radial-gradient(circle at 92% 28%, rgba(246, 241, 250, 0.9) 0, rgba(246, 241, 250, 0) 34%),
    #fff;
}

.digital-menu-inner {
  max-width: 960px;
  margin: 0 auto;
}

.digital-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid rgba(22, 61, 114, 0.25);
}

.digital-item {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 42px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 2px solid rgba(22, 61, 114, 0.25);
}

.digital-img {
  width: 100%;
  background: #eee;
  overflow: hidden;
}

.digital-img img,
.digital-img .twentytwenty-container {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  display: block;
}

.digital-img img {
  height: 100%;
  object-fit: cover;
}

.digital-text h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #163d72;
  letter-spacing: 0.06em;
}

.digital-text p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: #4f6380;
  letter-spacing: 0.04em;
}

.digital-text .digital-price {
  margin-top: 12px;
  font-weight: 600;
  color: #163d72;
}

.digital-price span {
  margin: 0 2px 0 6px;
  font-family: "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.digital-price small {
  margin-left: 4px;
  font-size: 12px;
}

/* =========================
   TWENTY TWENTY ADJUST
   全ページ共通
========================= */
.twentytwenty-wrapper,
.twentytwenty-before,
.twentytwenty-after {
  height: 100%;
}

.twentytwenty-container {
  position: relative;
}

.twentytwenty-horizontal .twentytwenty-before-label:before,
.twentytwenty-horizontal .twentytwenty-after-label:before {
  top: 50%;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #163d72;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 52px;
  text-align: center;
  text-transform: lowercase;
}

.twentytwenty-horizontal .twentytwenty-before-label:before {
  content: "before";
  left: 16px;
}

.twentytwenty-horizontal .twentytwenty-after-label:before {
  content: "after";
  right: 16px;
}

/* =========================
   TWENTY TWENTY HANDLE 修正版
   縦の青線を消して、中央に左右矢印を表示
========================= */

/* 中央の丸 */
.twentytwenty-horizontal .twentytwenty-handle {
  width: 48px !important;
  height: 48px !important;
  margin-left: -24px !important;
  margin-top: -24px !important;
  border: none !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0 3px 12px rgba(30, 50, 70, 0.18) !important;
  z-index: 50 !important;
}

/* TwentyTwentyの白い縦線を復活 */
.twentytwenty-horizontal .twentytwenty-handle::before,
.twentytwenty-horizontal .twentytwenty-handle::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  width: 3px !important;
  height: 9999px !important;
  margin-left: -1.5px !important;
  background: #fff !important;
  z-index: 1 !important;
  box-shadow: none !important;
}

/* 丸より上の線 */
.twentytwenty-horizontal .twentytwenty-handle::before {
  bottom: 50% !important;
  margin-bottom: 24px !important;
}

/* 丸より下の線 */
.twentytwenty-horizontal .twentytwenty-handle::after {
  top: 50% !important;
  margin-top: 24px !important;
}

/* 左右矢印を復活 */
.twentytwenty-left-arrow,
.twentytwenty-right-arrow {
  display: block !important;
  z-index: 3 !important;
  position: absolute !important;
  top: 50% !important;
  width: 0 !important;
  height: 0 !important;
  margin-top: -7px !important;
  border-top: 7px solid transparent !important;
  border-bottom: 7px solid transparent !important;
}

/* 左矢印 */
.twentytwenty-left-arrow {
  left: 13px !important;
  margin-left: 0 !important;
  border-right: 8px solid #163d72 !important;
  border-left: none !important;
}

/* 右矢印 */
.twentytwenty-right-arrow {
  right: 13px !important;
  margin-right: 0 !important;
  border-left: 8px solid #163d72 !important;
  border-right: none !important;
}

/* =========================
   SERVICE PAGE
========================= */
.service-page {
  padding-top: 84px;
  color: #263f5f;
}

.service-page-mv {
  padding: 120px 20px 88px;
  background: #fff;
}

.service-page-mv-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.service-page-title {
  margin: 0 0 42px;
  font-family: "Yu Mincho", "YuMincho", "游明朝体", "游明朝", serif;
  font-size: 32px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: #2f5686;
}

.service-page-lead {
  margin: 0;
  font-size: 14px;
  line-height: 2.4;
  letter-spacing: 0.1em;
  color: #3f5878;
  font-weight: 500;
}

.service-detail {
  padding: 34px 20px 130px;
  justify-content: center;
  display: flex;
}

.service-detail-inner {
  max-width: 1260px;
  margin: 0 auto;
}

.service-detail-item {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 130px;
  align-items: center;
  margin-bottom: 130px;
}

.service-detail-item:last-child {
  margin-bottom: 0;
}

.service-detail-item-reverse {
  grid-template-columns: 1fr 500px;
}

.service-detail-item-reverse .service-detail-img {
  order: 2;
}

.service-detail-item-reverse .service-detail-text {
  order: 1;
}

.service-detail-img {
  width: 100%;
  background: #dfe8fb;
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.service-detail-text {
  max-width: 490px;
}

.service-detail-text h2 {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 18px;
  font-family: "Yu Mincho", "YuMincho", "游明朝体", "游明朝", serif;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #2f5686;
  text-align: center;
}

.service-detail-text h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 320px;
  height: 2px;
  background: linear-gradient(to right, #5f7898 0%, #5f7898 33%, #d8c6a4 33%, #d8c6a4 100%);
  transform: translateX(-50%);
}

.service-detail-text p {
  margin: 0;
  font-size: 15px;
  line-height: 2.25;
  letter-spacing: 0.08em;
  color: #3f5878;
  font-weight: 500;
}

/* =========================
   FLOW PAGE
========================= */
.flow-page {
  padding-top: 84px;
  background: #fff;
  color: #263f5f;
}

.flow-mv {
  padding: 132px 20px 102px;
  background: #fff;
}

.flow-mv-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.flow-page-title {
  margin: 0 0 17px;
  font-family: "Yu Mincho", "YuMincho", "游明朝体", "游明朝", serif;
  font-size: 32px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: #2f5686;
}

.flow-page-lead {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #163d72;
  font-weight: 500;
}

/* =========================
   FLOW DETAIL
========================= */
.flow-detail {
  padding: 0 20px 138px;
  background: #fff;
}

.flow-detail-inner {
  position: relative;
  width: min(860px, 100%);
  margin: 0 auto;
}

/* 左の縦線 */
.flow-detail-inner::before {
  content: "";
  position: absolute;
  top: 94px;
  left: 98px;
  width: 1px;
  height: calc(100% - 188px);
  background: #2f5686;
  z-index: 0;
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 196px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 92px;
}

.flow-step:last-child {
  margin-bottom: 0;
}

.flow-step-icon {
  position: relative;
  z-index: 2;

  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-step-icon img {
  width: 116px;
  height: 116px;
}

.flow-step-body {
  padding-top: 42px;
  color: #2f5686;
}

.flow-step-num {
  margin: 0 0 5px;
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2f5686;
}

.flow-step-title {
  margin: 0 0 30px;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #2f5686;
}

.flow-step-text {
  max-width: 660px;
}

.flow-step-text p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 2.15;
  letter-spacing: 0.06em;
  color: #2f5686;
  font-weight: 500;
}

.flow-step-text p:last-child {
  margin-bottom: 0;
}

.flow-step-num {
  margin: 0 0 4px;
}

.flow-step-underline {
  display: block;
  width: 104px;
  height: 9px;
  margin: 0 0 7px;
  object-fit: contain;
}

.flow-step-title {
  margin: 0 0 30px;
}


@media screen and (max-width: 768px) {
  .flow-page {
    padding-top: 74px;
  }

  .flow-mv {
    padding: 88px 20px 62px;
  }

  .flow-page-title {
    margin: 0 0 24px;
    font-size: 24px;
    letter-spacing: 0.2em;
  }

  .flow-page-lead {
    margin: 0;
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.08em;
  }

  .flow-detail {
    padding: 0 24px 72px;
  }

  .flow-detail-inner {
    width: 100%;
  }

  .flow-detail-inner::before {
    content: none;
    display: none;
  }

  .flow-step {
    position: relative;
    display: block;
    margin: 0 0 42px;
    padding: 0 0 42px;
    border-bottom: 1px solid rgba(47, 86, 134, 0.35);
  }

  .flow-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .flow-step-icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    margin: 0;
  }

  .flow-step-icon img {
    display: block;
    width: 86px;
    height: 86px;
    object-fit: contain;
  }

  .flow-step-body {
    width: 100%;
    padding-top: 16px;
    color: #2f5686;
  }

  .flow-step-num {
    margin: 0 0 7px 104px;
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .flow-step-title {
    margin: 0 0 0 104px;
    font-size: 21px;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: 0.06em;
  }

  .flow-step-text {
    width: 100%;
    max-width: none;
    margin-top: 28px;
  }

  .flow-step-text p {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.04em;
    color: #2f5686;
    font-weight: 500;
  }

  .flow-step-text p:last-child {
    margin-bottom: 0;
  }

  .flow-step-num {
  margin: 0 0 4px 104px;
}

.flow-step-underline {
  width: 75px;
  height: 9px;
  margin: 0 0 7px 104px;
}

.flow-step-title {
  margin: 0 0 0 104px;
}

}

/* =========================
   FAQ PAGE
========================= */
.faq-page {
  padding-top: 84px;
  background: #fff;
  color: #163d72;
}

/* =========================
   FAQ MV
========================= */
.faq-mv {
  padding: 70px 20px 92px;
  background: #fff;
}

.faq-mv-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.faq-page-title {
  margin: 0 0 100px;
  font-family: "Yu Mincho", "YuMincho", "游明朝体", "游明朝", serif;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: #163d72;
}

/* =========================
   FAQ ANCHOR
========================= */
.faq-anchor-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}

.faq-anchor-list a {
  position: relative;
  height: 82px;
  border: 2px solid #929292;
  border-radius: 13px;
  background: #f7f8fb;
  color: #163d72;
  text-decoration: none;
  font-family: "Yu Mincho", "YuMincho", "游明朝体", "游明朝", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 22px;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.faq-anchor-list a:hover {
  background: #fff;
  opacity: 0.85;
}

/* 青丸 */
.faq-anchor-list a span {
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 22px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #3f6fa8;
}

/* 下向き矢印 */
.faq-anchor-list a span::before,
.faq-anchor-list a span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.faq-anchor-list a span::before {
  left: 6px;
  transform: translateY(-50%) rotate(45deg);
}

.faq-anchor-list a span::after {
  right: 6px;
  transform: translateY(-50%) rotate(-45deg);
}

/* =========================
   FAQ BODY
========================= */
.faq-content {
  padding: 0 20px 125px;
  background: #fff;
}

.faq-content-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.faq-group {
  margin-bottom: 70px;
  scroll-margin-top: 120px;
}

.faq-group:last-child {
  margin-bottom: 0;
}

/* 見出し */
.faq-group-title {
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 24px 25px;
  font-family: "Yu Mincho", "YuMincho", "游明朝体", "游明朝", serif;
  font-size: 27px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #163d72;

  /* 既存の線は消す */
  border-bottom: none;

  /* 下線をグラデーションに変更 */
  background: linear-gradient(to right,
      #5f7898 0%,
      #5f7898 10%,
      #d8c6a4 10%,
      #d8c6a4 100%) left bottom / 100% 1px no-repeat;
}

/* 見出し左：太い線 */
.faq-group-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 28px;
  background: #163d72;
}

/* 見出し左：細い線 */
.faq-group-title::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 7px;
  width: 2px;
  height: 28px;
  background: #163d72;
}

/* =========================
   FAQ ACCORDION
========================= */
.faq-list {
  border-top: none;
}

.faq-item {
  border-bottom: 1px solid rgba(22, 61, 114, 0.75);
}

.faq-item:first-child {
  border-top: none;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  min-height: 94px;
  display: grid;
  grid-template-columns: 55px 1fr 35px;
  align-items: center;
  column-gap: 26px;
  padding: 0 38px 0 42px;
  color: #163d72;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-q-icon,
.faq-a-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
  flex: 0 0 auto;
}

.faq-q-icon {
  border: 1px solid #163d72;
  color: #163d72;
  background: #fff;
}

.faq-a-icon {
  border: 1px solid #3f6fa8;
  color: #fff;
  background: #3f6fa8;
}

.faq-question {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #163d72;
}

/* 開閉アイコン */
.faq-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  justify-self: end;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #163d72;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-toggle::before {
  width: 24px;
  height: 2px;
}

.faq-toggle::after {
  width: 2px;
  height: 24px;
}

.faq-item[open] .faq-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

/* 回答 */
.faq-answer {
  display: grid;
  grid-template-columns: 55px 1fr;
  column-gap: 26px;
  align-items: start;
  padding: 35px 70px 42px 42px;
  background: #f2f4f8;
  border-top: 1px solid rgba(22, 61, 114, 0.5);
}

.faq-answer p {
  margin: 0;
  padding-top: 3px;
  font-size: 15px;
  line-height: 2.1;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #163d72;
}

/* =========================
   FAQ PAGE SP
========================= */
@media screen and (max-width: 768px) {
  .faq-page {
    padding-top: 74px;
  }

  .faq-mv {
    padding: 72px 20px 62px;
  }

  .faq-mv-inner {
    max-width: 100%;
  }

  .faq-page-title {
    margin: 0 0 58px;
    font-size: 24px;
    letter-spacing: 0.2em;
  }

  .faq-anchor-list {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .faq-anchor-list a {
    height: 81px;
    border-radius: 12px;
    font-size: 16px;
    padding-bottom: 26px;
  }

  .faq-anchor-list a span {
    bottom: 15px;
    width: 20px;
    height: 20px;
  }

  .faq-anchor-list a span::before,
  .faq-anchor-list a span::after {
    width: 7px;
  }

  .faq-anchor-list a span::before {
    left: 5px;
  }

  .faq-anchor-list a span::after {
    right: 5px;
  }

  .faq-content {
    padding: 0 20px 88px;
  }

  .faq-content-inner {
    width: 100%;
  }

  .faq-group {
    margin-bottom: 56px;
    scroll-margin-top: 95px;
  }

  .faq-group-title {
    margin: 0 0 24px;
    padding: 0 0 16px 22px;
    font-size: 22px;
    letter-spacing: 0.1em;
  }

  .faq-group-title::before {
    top: 5px;
    width: 6px;
    height: 22px;
  }

  .faq-group-title::after {
    left: 10px;
    top: 5px;
    width: 2px;
    height: 22px;
  }

  .faq-item summary {
    min-height: 72px;
    grid-template-columns: 38px 1fr 24px;
    column-gap: 12px;
    padding: 0 12px 0 10px;
  }

  .faq-q-icon,
  .faq-a-icon {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .faq-question {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }

  .faq-toggle {
    width: 18px;
    height: 18px;
  }

  .faq-toggle::before {
    width: 16px;
    height: 1px;
  }

  .faq-toggle::after {
    width: 1px;
    height: 16px;
  }

  .faq-answer {
    grid-template-columns: 38px 1fr;
    column-gap: 12px;
    padding: 20px 14px 24px 10px;
  }

  .faq-answer p {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

/* =========================
   CONTACT PAGE
========================= */
.contact-page {
  padding-top: 84px;
  background: #fff;
  color: #163d72;
}

.contact-mv {
  padding: 120px 20px 86px;
  background: #fff;
}

.contact-mv-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-page-title {
  margin: 0 0 32px;
  font-family: "Yu Mincho", "YuMincho", "游明朝体", "游明朝", serif;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: #163d72;
}

.contact-page-lead {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #163d72;
  font-weight: 500;
}

.contact-form-section {
  padding: 0 20px 130px;
  background: #fff;
}

.contact-form-inner {
  width: min(960px, 100%);
  margin: 0 auto;
}

.contact-form {
  width: 100%;
  border-top: 1px solid rgba(22, 61, 114, 0.72);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
  min-height: 100px;
  padding: 26px 20px;
  border-bottom: 1px solid rgba(22, 61, 114, 0.72);
}

.contact-form-row-top {
  align-items: start;
}

.contact-form-head {
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 18px;
}

.contact-form-head label {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #163d72;
}

.form-required,
.form-optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 24px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.form-required {
  background: #e95454;
}

.form-optional {
  background: #666;
}

.contact-form-body {
  min-width: 0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form input[type="date"],
.contact-form textarea {
  width: 100%;
  height: 38px;
  border: 1px solid #cfcfcf;
  background: #fff;
  padding: 0 16px;
  font-size: 14px;
  color: #163d72;
  letter-spacing: 0.04em;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form textarea {
  height: 132px;
  padding: 18px 16px;
  line-height: 1.8;
  resize: vertical;
}

.contact-name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.tel-grid {
  display: grid;
  grid-template-columns: 160px 18px 160px 18px 160px;
  align-items: center;
  gap: 8px;
}

.tel-grid span {
  text-align: center;
  color: #163d72;
}

.date-input {
  max-width: 240px;
}

.radio-list,
.checkbox-list {
  color: #163d72;
}

.radio-list label,
.checkbox-list label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #163d72;
  cursor: pointer;
}

.radio-list input,
.checkbox-list input {
  width: 15px;
  height: 15px;
  accent-color: #3f6fa8;
}

.radio-list-inline {
  display: flex;
  align-items: center;
  gap: 58px;
}

.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 44px;
  row-gap: 4px;
  padding-top: 3px;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 70px;
  row-gap: 4px;
  padding-top: 3px;
}

.form-note {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #163d72;
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.file-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #163d72;
}

.file-list label>span {
  min-width: 94px;
}

.file-list input[type="file"] {
  max-width: 430px;
  font-size: 13px;
  color: #163d72;
}

.file-list input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 6px 16px;
  border: none;
  border-radius: 999px;
  background: #3f6fa8;
  color: #fff;
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
}

.privacy-check {
  margin: 58px 0 22px;
  text-align: center;
}

.privacy-check label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #163d72;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  accent-color: #3f6fa8;
}

.contact-submit-wrap {
  text-align: center;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: #3f6fa8;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-submit-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* contactページでは下部バナーを非表示にする場合 */
.contact-page+.contact-banner {
  display: none;
}

/* =========================
   CONTACT PAGE SP
========================= */
@media screen and (max-width: 768px) {
  .contact-page {
    padding-top: 74px;
  }

  .contact-mv {
    padding: 78px 20px 54px;
  }

  .contact-page-title {
    margin-bottom: 24px;
    font-size: 24px;
    letter-spacing: 0.18em;
  }

  .contact-page-lead {
    font-size: 13px;
    line-height: 2;
    text-align: left;
  }

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

  .contact-form-row {
    display: block;
    min-height: 0;
    padding: 22px 0;
  }

  .contact-form-head {
    grid-template-columns: auto 42px;
    justify-content: start;
    gap: 14px;
    margin-bottom: 14px;
  }

  .contact-form-head label {
    font-size: 14px;
  }

  .contact-name-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tel-grid {
    grid-template-columns: 1fr 12px 1fr 12px 1fr;
    gap: 5px;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form input[type="url"],
  .contact-form input[type="date"] {
    height: 42px;
    font-size: 13px;
  }

  .contact-form textarea {
    height: 160px;
    font-size: 13px;
  }

  .radio-list-inline {
    gap: 42px;
  }

  .plan-grid,
  .option-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .file-list label {
    display: block;
  }

  .file-list label>span {
    display: block;
    margin-bottom: 6px;
  }

  .file-list input[type="file"] {
    width: 100%;
    max-width: 100%;
  }

  .privacy-check {
    margin-top: 42px;
  }

  .privacy-check label {
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
  }

  .contact-submit-btn {
    min-width: 240px;
    height: 52px;
    font-size: 15px;
  }
}

/* =========================
   CONTACT CONFIRM PAGE
========================= */
.contact-confirm-page {
  padding-top: 84px;
  background: #fff;
  color: #163d72;
}

.contact-confirm-mv {
  padding: 120px 20px 78px;
  background: #fff;
}

.contact-confirm-mv-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-confirm-title {
  margin: 0 0 28px;
  font-family: "Yu Mincho", "YuMincho", "游明朝体", "游明朝", serif;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: #163d72;
}

.contact-confirm-lead {
  margin: 0;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #163d72;
  font-weight: 500;
}

.contact-confirm-section {
  padding: 0 20px 145px;
  background: #fff;
}

.contact-confirm-inner {
  width: min(960px, 100%);
  margin: 0 auto;
}

.confirm-table {
  width: 100%;
  border-top: 1px solid rgba(22, 61, 114, 0.72);
}

.confirm-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
  min-height: 96px;
  padding: 26px 80px;
  border-bottom: 1px solid rgba(22, 61, 114, 0.72);
}

.confirm-row-top {
  align-items: start;
}

.confirm-label {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #163d72;
}

.confirm-value {
  min-width: 0;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #163d72;
}

/* アップロードファイル表示 */
.confirm-file-list {
  width: 100%;
  max-width: 520px;
}

.confirm-file-item {
  display: grid;
  grid-template-columns: 120px 1fr 70px;
  gap: 18px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #163d72;
}

.confirm-file-label {
  white-space: nowrap;
}

.confirm-file-name {
  min-width: 0;
  word-break: break-all;
}

.confirm-file-size {
  text-align: right;
  white-space: nowrap;
}

.confirm-file-total {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dotted rgba(22, 61, 114, 0.75);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: right;
  color: #163d72;
}

.confirm-message {
  margin: 0;
  font-size: 13px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: #163d72;
}

.confirm-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 70px;
}

.confirm-back-btn,
.confirm-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  height: 54px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.confirm-back-btn {
  border: 1px solid #163d72;
  background: #fff;
  color: #163d72;
}

.confirm-submit-btn {
  border: 1px solid #3f6fa8;
  background: #3f6fa8;
  color: #fff;
}

.confirm-back-btn:hover,
.confirm-submit-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* contact確認ページでは下部のお問い合わせバナーを非表示 */
.contact-confirm-page+.contact-banner {
  display: none;
}

/* =========================
   CONTACT CONFIRM PAGE SP
========================= */
@media screen and (max-width: 768px) {
  .contact-confirm-page {
    padding-top: 74px;
  }

  .contact-confirm-mv {
    padding: 78px 20px 52px;
  }

  .contact-confirm-title {
    margin-bottom: 22px;
    font-size: 24px;
    letter-spacing: 0.18em;
  }

  .contact-confirm-lead {
    font-size: 11px;
    line-height: 2;
  }

  .contact-confirm-section {
    padding: 0 20px 95px;
  }

  .confirm-row {
    display: block;
    min-height: 0;
    padding: 22px 0;
  }

  .confirm-label {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .confirm-value {
    font-size: 14px;
    line-height: 1.8;
  }

  .confirm-file-item {
    grid-template-columns: 1fr;
    gap: 2px;
    margin-bottom: 16px;
  }

  .confirm-file-size {
    text-align: left;
  }

  .confirm-file-total {
    text-align: left;
  }

  .confirm-message {
    font-size: 12px;
    line-height: 2;
  }

  .confirm-btn-wrap {
    flex-direction: column;
    gap: 14px;
    margin-top: 45px;
  }

  .confirm-back-btn,
  .confirm-submit-btn {
    width: 100%;
    max-width: 300px;
    min-width: 0;
    height: 52px;
    font-size: 14px;
  }
}

.contact-form input.is-error,
.contact-form textarea.is-error {
  border-color: #d93025;
  background: #fff7f7;
  box-shadow: 0 0 0 1px rgba(217, 48, 37, 0.25);
}

.contact-form input.is-error:focus,
.contact-form textarea.is-error:focus {
  outline: none;
  border-color: #d93025;
  box-shadow: 0 0 0 2px rgba(217, 48, 37, 0.22);
}

/* =========================
   THANKS PAGE
========================= */
.thanks-page {
  padding-top: 84px;
  background: #fff;
  color: #163d72;
}

.thanks-mv {
  min-height: 620px;
  padding: 130px 20px 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 15% 30%, rgba(226, 209, 177, 0.18) 0, rgba(226, 209, 177, 0) 34%),
    radial-gradient(circle at 85% 32%, rgba(74, 118, 181, 0.10) 0, rgba(74, 118, 181, 0) 34%),
    linear-gradient(90deg, #f7f4f7 0%, #f8fbfb 100%);
}

.thanks-mv-inner {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
  padding: 76px 60px 70px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(95, 120, 152, 0.18);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(47, 86, 134, 0.08);
}

.thanks-en {
  position: relative;
  display: inline-block;
  margin: 0 0 26px;
  padding-bottom: 14px;
  font-family: "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #496b93;
}

.thanks-en::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 150px;
  height: 1px;
  background: linear-gradient(to right, #5f7898 0%, #5f7898 35%, #d8c6a4 35%, #d8c6a4 100%);
  transform: translateX(-50%);
}

.thanks-title {
  margin: 0 0 30px;
  font-family: "Yu Mincho", "YuMincho", "游明朝体", "游明朝", serif;
  font-size: 31px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #163d72;
}

.thanks-lead {
  margin: 0;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: #375579;
  font-weight: 500;
}

.thanks-note {
  margin: 26px 0 0;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #5f6f82;
}

.thanks-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.thanks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 52px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.thanks-btn-primary {
  background: #3f6fa8;
  border: 1px solid #3f6fa8;
  color: #fff;
}

.thanks-btn-secondary {
  background: #fff;
  border: 1px solid #163d72;
  color: #163d72;
}

.thanks-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* THANKS PAGE SP */
@media screen and (max-width: 768px) {
  .thanks-page {
    padding-top: 74px;
  }

  .thanks-mv {
    min-height: auto;
    padding: 86px 20px 95px;
  }

  .thanks-mv-inner {
    padding: 52px 22px 48px;
    border-radius: 16px;
  }

  .thanks-en {
    margin-bottom: 22px;
    font-size: 26px;
  }

  .thanks-title {
    margin-bottom: 24px;
    font-size: 23px;
    letter-spacing: 0.16em;
  }

  .thanks-lead {
    font-size: 12px;
    line-height: 2.1;
    text-align: left;
  }

  .thanks-note {
    font-size: 11px;
    text-align: left;
  }

  .thanks-btn-wrap {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
  }

  .thanks-btn {
    width: 100%;
    max-width: 280px;
    min-width: 0;
    height: 50px;
    font-size: 14px;
  }
}

/* =========================
   ERROR PAGE
========================= */
.error-page {
  padding-top: 84px;
  background: #fff;
  color: #163d72;
}

.error-mv {
  min-height: 520px;
  padding: 120px 20px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 15% 30%, rgba(226, 209, 177, 0.18) 0, rgba(226, 209, 177, 0) 34%),
    radial-gradient(circle at 85% 32%, rgba(74, 118, 181, 0.10) 0, rgba(74, 118, 181, 0) 34%),
    linear-gradient(90deg, #f7f4f7 0%, #f8fbfb 100%);
}

.error-mv-inner {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
  padding: 70px 54px 64px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(95, 120, 152, 0.18);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(47, 86, 134, 0.08);
}

.error-en {
  position: relative;
  display: inline-block;
  margin: 0 0 24px;
  padding-bottom: 14px;
  font-family: "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #496b93;
}

.error-en::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, #5f7898 0%, #5f7898 35%, #d8c6a4 35%, #d8c6a4 100%);
  transform: translateX(-50%);
}

.error-title {
  margin: 0 0 28px;
  font-family: "Yu Mincho", "YuMincho", "游明朝体", "游明朝", serif;
  font-size: 31px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #163d72;
}

.error-lead {
  margin: 0;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: #375579;
  font-weight: 500;
}

.error-note {
  margin: 24px 0 0;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #5f6f82;
}

.error-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 44px;
}

.error-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  height: 52px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.error-btn-primary {
  background: #3f6fa8;
  border: 1px solid #3f6fa8;
  color: #fff;
}

.error-btn-secondary {
  background: #fff;
  border: 1px solid #163d72;
  color: #163d72;
}

.error-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

@media screen and (max-width: 768px) {
  .error-page {
    padding-top: 74px;
  }

  .error-mv {
    min-height: auto;
    padding: 86px 20px 95px;
  }

  .error-mv-inner {
    padding: 52px 22px 48px;
    border-radius: 16px;
  }

  .error-en {
    margin-bottom: 22px;
    font-size: 26px;
  }

  .error-title {
    margin-bottom: 24px;
    font-size: 23px;
    letter-spacing: 0.16em;
  }

  .error-lead,
  .error-note {
    text-align: left;
  }

  .error-lead {
    font-size: 12px;
    line-height: 2.1;
  }

  .error-note {
    font-size: 11px;
  }

  .error-btn-wrap {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
  }

  .error-btn {
    width: 100%;
    max-width: 300px;
    min-width: 0;
    height: 50px;
    font-size: 14px;
  }
}

/* =========================
   PRIVACY PAGE
========================= */
.privacy-page {
  padding-top: 84px;
  background:
    radial-gradient(circle at 12% 35%, rgba(232, 247, 247, 0.85) 0, rgba(232, 247, 247, 0) 34%),
    radial-gradient(circle at 88% 42%, rgba(246, 241, 250, 0.8) 0, rgba(246, 241, 250, 0) 34%),
    #fff;
  color: #163d72;
}

.privacy-mv {
  padding: 118px 20px 72px;
}

.privacy-mv-inner {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.privacy-page-title {
  margin: 0 0 46px;
  font-family: "Yu Mincho", "YuMincho", "游明朝体", "游明朝", serif;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: #163d72;
}

.privacy-page-lead {
  margin: 0 auto;
  max-width: 760px;
  font-size: 14px;
  line-height: 2.25;
  letter-spacing: 0.1em;
  color: #163d72;
  font-weight: 500;
}

.privacy-content {
  padding: 0 20px 132px;
}

.privacy-content-inner {
  width: min(820px, 100%);
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 64px;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section h2 {
  position: relative;
  margin: 0 0 24px;
  padding-left: 18px;
  font-family: "Yu Mincho", "YuMincho", "游明朝体", "游明朝", serif;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #163d72;
}

.privacy-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 5px;
  height: 1.05em;
  background: #163d72;
}

.privacy-section h2::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 0.28em;
  width: 1px;
  height: 1.05em;
  background: #163d72;
}

.privacy-section p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 2.25;
  letter-spacing: 0.06em;
  color: #2f5686;
  font-weight: 500;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section ul {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.privacy-section li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 1em;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #2f5686;
  font-weight: 500;
}

.privacy-section li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.privacy-section .privacy-company {
  margin-top: 28px;
}

/* =========================
   PRIVACY PAGE SP
========================= */
@media screen and (max-width: 768px) {
  .privacy-page {
    padding-top: 74px;
  }

  .privacy-mv {
    padding: 76px 20px 52px;
  }

  .privacy-page-title {
    margin-bottom: 38px;
    font-size: 24px;
    letter-spacing: 0.18em;
  }

  .privacy-page-lead {
    max-width: 335px;
    font-size: 13px;
    line-height: 2.15;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .privacy-content {
    padding: 0 20px 86px;
  }

  .privacy-content-inner {
    width: 100%;
  }

  .privacy-section {
    margin-bottom: 52px;
  }

  .privacy-section h2 {
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: 0.04em;
  }

  .privacy-section h2::before {
    width: 5px;
  }

  .privacy-section h2::after {
    left: 8px;
  }

  .privacy-section p {
    font-size: 13px;
    line-height: 2.15;
    letter-spacing: 0.055em;
  }

  .privacy-section ul {
    margin: 16px 0 22px;
  }

  .privacy-section li {
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.055em;
  }

  .privacy-section .privacy-company {
    margin-top: 24px;
  }
}

/* =========================
   PCではSPメニュー下部を非表示
========================= */
.site-nav-bottom {
  display: none;
}

/* =========================
   SP HAMBURGER 強制表示
========================= */
.hamburger-btn {
  display: none;
}

/* =========================
   SP
========================= */
@media screen and (max-width: 768px) {

  .pc-only {
    display: none;

  }

  .sp-only {
    display: block;
  }

  .pc-br {
    display: none;
  }

  /* =========================
     HEADER
  ========================= */

  .site-header-cta {
    display: none;
  }

  .hamburger-btn {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 0;
    margin-left: auto;
    border: none;
    background: transparent;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    z-index: 9999;
    flex-shrink: 0;
  }

  .hamburger-btn span {
    display: block;
    width: 38px;
    height: 2px;
    background: #2f5686;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  }

  /* 真ん中だけ短く */
  .hamburger-btn span:nth-child(2) {
    width: 28px;
    margin-left: -10px;
  }

  .hamburger-btn.is-open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .hamburger-btn.is-open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-btn.is-open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    height: calc(100vh - 74px);
    padding: 0 28px 34px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    z-index: 9998;
    display: flex;
    flex-direction: column;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav ul {
    list-style: none;
    margin: 0;
    padding: 56px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
  }

  .site-nav ul li {
    margin: 0;
    padding: 0;
  }

  .site-nav ul li a {
    color: #333;
    font-size: 18px;
    letter-spacing: 0.08em;
    text-decoration: none;
  }

  .site-nav-bottom {
    display: block;
    padding-top: 34px;
  }

  .site-nav-contact {
    text-align: center;
    margin-bottom: 34px;
  }

  .site-nav-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 330px);
    height: 58px;
    border-radius: 999px;
    background: #4a76b5;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  .site-nav-follow {
    width: min(100%, 360px);
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(74, 118, 181, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .site-nav-follow-label {
    color: #2f5686;
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .site-nav-follow-icons {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .site-nav-follow-icons a {
    color: #2f5686;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav-follow-icons svg {
    width: 30px;
    height: 30px;
  }

  /* =========================
     COMMON
  ========================= */
  body {
    overflow-x: hidden;
  }

  main {
    overflow: hidden;
  }

  .site-header {
    height: 66px;
    z-index: 9999;
  }

  .site-header-inner {
    height: 66px;
    padding: 0 18px;
  }

  .site-logo img {
    width: 150px;
  }

  /* =========================
     TOP HERO
  ========================= */
  .hero {
    height: 622px;
    max-width: none;
    padding-top: 66px;
    overflow: hidden;
    margin-top: 65px;
  }

  .side-text-container {
    left: 7px;
    top: 127px;
    width: 28px;
    height: 360px;
    z-index: 35;
  }

  .side-text {
    font-size: 9px;
    letter-spacing: 0.2em;
    opacity: 0.75;
  }

  .hero-title {
    left: 14px;
    top: 70px;
    width: 92%;
    z-index: 40;
  }

  .hero-title h1 {
    margin: 0;
  }

  .hero-title h1 img {
    width: 100%;
    max-width: 330px;
    height: auto;
    display: block;
  }

  .hero-sub {
    top: 25px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    text-align: center;
    z-index: 60;
  }

  .hero-sub p {
    font-size: 12px;
    letter-spacing: 0.14em;
    padding-bottom: 5px;
  }

  .visual-container {
    left: 42px;
    top: 110px;
    width: calc(100% - 42px);
    height: 410px;
    border-radius: 28px 28px 0 28px;
    z-index: 20;
  }

  .mv-slide img {
    object-fit: cover;
    object-position: center top;
  }

  .mv-count {
    left: 8px;
    bottom: 130px;
    gap: 8px;
    z-index: 50;
  }

  .mv-count-btn {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }

  .mv-count-svg {
    inset: -3px;
    width: 31px;
    height: 31px;
  }

  .mv-count-btn::after {
    left: 76%;
    width: 28px;
  }

  .sns-box-container {
    right: 0;
    bottom: 100px;
    z-index: 50;
  }

  .sns-box {
    width: 184px;
    height: 42px;
    gap: 10px;
    padding-left: 10px;
    border-radius: 32px 0 0 0;
  }

  .sns-label {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .sns-icons {
    gap: 9px;
    transform: translateY(3px);
  }

  .sns-icons svg {
    width: 18px;
    height: 18px;
  }

  .curve-left {
    left: -40px;
    width: 44px;
    height: 54px;
  }

  .curve-top {
    display: none;
  }

  /* =========================
     TOP MV MESSAGE
  ========================= */
  .mv-message {
    padding: 56px 20px 64px;

    background-image:
      url("../images/SP/intro-feather.webp"),
      linear-gradient(90deg, #f7f4f7 0%, #f8fbfb 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: center center, center center;
    /* background-size: 135vw auto, cover; */
  }

  .mv-message-title {
    margin-bottom: 24px;
    font-size: 19px;
    line-height: 1.8;
    letter-spacing: 0.14em;
  }

  .mv-message-text {
    font-size: 13px;
    line-height: 2.2;
    letter-spacing: 0.06em;
  }

  .mv-message-line {
    margin-top: 26px;
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .mv-message-sub {
    font-size: 12px;
    line-height: 2;
  }

  /* =========================
   TOP SERVICE SP
========================= */
  .service {
    padding: 76px 0 120px;
    background: linear-gradient(180deg,
        #f8fbfd 0%,
        #fff 48%,
        #f8fbfd 100%);
  }

  .service-inner {
    width: 100%;
    padding: 0 20px;
  }

  /* 筆記体を置くスペースを確保 */
  .service-head {
    margin-bottom: 50px;
  }

  .service-en {
    font-size: 30px;
  }

  .service-en::before {
    left: -22px;
    width: 20px;
    height: 20px;
  }

  .service-en::after {
    width: 108px;
  }

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

  .service-list {
    gap: 52px;
  }

  .service-item {
    position: relative;
    width: 100%;
    min-height: auto;
    left: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: visible;
    transform: none;
  }

  /* 2番目だけ並び順を逆にする */
  .service-list .service-item:nth-child(2) {
    flex-direction: column-reverse;
  }

  /* 背景 */
  .service-bg {
    position: absolute;
    top: 10px;
    width: calc(100vw - 58px);
    height: 360px;
    display: block;
    box-shadow: none;
    z-index: 0;
  }

  /* 1番目・3番目 */
  .service-item:nth-child(1) .service-bg,
  .service-item:nth-child(3) .service-bg {
    left: -3px;
    border-radius: 0 14px 14px 0;
    transform: none;
    background: linear-gradient(90deg,
        rgba(245, 244, 242, 0) 0%,
        rgba(245, 244, 242, 0.28) 18%,
        rgba(245, 244, 242, 0.58) 38%,
        rgba(245, 244, 242, 0.88) 60%,
        rgba(245, 244, 242, 1) 100%);
  }

  /* 2番目 */
  .service-item:nth-child(2) .service-bg {
    right: -3px;
    border-radius: 14px 0 0 14px;
    transform: none;
    background: linear-gradient(90deg,
        rgba(245, 244, 242, 1) 0%,
        rgba(245, 244, 242, 0.88) 40%,
        rgba(245, 244, 242, 0.58) 62%,
        rgba(245, 244, 242, 0.28) 82%,
        rgba(245, 244, 242, 0) 100%);
  }

  /* テキストと画像を背景より前面にする */
  .service-item .service-text,
  .service-item .service-image {
    position: relative;
    z-index: 1;
    order: initial;
  }

  .service-item .service-text {
    width: calc(100vw - 83px);
    margin: 0;
    padding: 22px 0 24px;
    background: transparent;
    border-radius: 0;
    box-sizing: border-box;
  }

  /* 1番目だけ上の余白を広げる */
  .service-item:nth-child(1) .service-text {
    padding: 60px 0 24px;
  }


  /* 1番目・3番目のテキスト */
  .service-item:nth-child(1) .service-text,
  .service-item:nth-child(3) .service-text {
    margin-left: 6px;
    margin-right: auto;
  }

  /* 2番目のテキスト */
  .service-item:nth-child(2) .service-text {
    margin-left: auto;
    margin-right: 6px;
  }

  .service-text h3 {
    max-width: 100%;
    margin-bottom: 14px;
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.08em;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .service-text h3::after {
    width: 55%;
    max-width: 320px;
    height: 1px;
  }

  .service-text p {
    max-width: 100%;
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.04em;
    word-break: normal;
    overflow-wrap: break-word;
  }

  /* Retouchingの筆記体 */
  .service-script {
    position: absolute;
    top: -17px;
    left: 0;
    width: 150px;
    margin: 0;
    z-index: 3;
    pointer-events: none;
  }

  .service-script img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* 画像 */
  .service-item .service-image {
    width: 100%;
    margin-top: 10px;
    overflow: hidden;
  }

  /* 1番目・3番目の画像 */
  .service-item:nth-child(1) .service-image,
  .service-item:nth-child(3) .service-image {
    margin-left: 46px;
    margin-right: 0;
  }

  /* 2番目の画像 */
  .service-item:nth-child(2) .service-image {
    margin-left: 0;
    margin-right: 46px;
  }

  .service-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: none;
  }

  .service-btn-wrap {
    margin-top: 32px;
  }

  .service-btn {
    min-width: 245px;
    height: 50px;
    font-size: 19px;
  }

  /* =========================
   TOP OPTION SLIDER 
========================= */

  .option {
    padding: 76px 0 129px;
    overflow: hidden;
  }

  .option-head {
    margin-bottom: 34px;
  }

  .option-en {
    font-size: 30px;
    letter-spacing: 0.12em;
  }

  .option-en::before {
    left: -24px;
    width: 22px;
    height: 22px;
  }

  .option-en::after {
    width: 112px;
  }

  .option-ja {
    margin-top: 6px;
    font-size: 11px;
  }

  .option-slider {
    width: 100vw;
    /* margin-left: 50%; */
    transform: translateX(-50%);
    overflow: hidden;
  }

  .option-track {
    gap: 14px;
    align-items: center;
  }

  .option-slide {
    flex: 0 0 330px;
    max-width: calc(100vw - 88px);
    height: 170px;
    border-radius: 18px;
    overflow: hidden;
    background: #eee;
  }

  .option-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .option-dots {
    margin-top: 18px;
    gap: 8px;
  }

  .option-dots button {
    width: 32px;
    height: 4px;
    border-radius: 999px;
  }

  .option-btn-wrap {
    margin-top: 42px;
  }

  .option-btn {
    max-width: calc(100vw - 72px);
    border-radius: 999px;
    letter-spacing: 0.18em;
    min-width: 245px;
    height: 50px;
    font-size: 19px;
  }

  /* =========================
   TOP PRICE
========================= */
  .retouch-plan {
    position: relative;
    padding: 0px 0 82px;
  }

  .retouch-plan-inner {
    position: relative;
    width: 100%;
    margin: 0;
  }

  /* 左上のOrder画像 */
  .retouch-script {
    position: absolute;
    top: -30px;
    left: 24px;
    width: 150px;
    margin: 0;
    z-index: 2;
    pointer-events: none;
  }

  .retouch-script img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* PRICE見出し */
  .price-head {
    margin: 0 0 34px;
    padding: 90px 18px 0;
    text-align: center;
  }

  .price-head-en {
    font-size: 30px;
  }

  .price-head-en::before {
    left: -22px;
    width: 20px;
    height: 20px;
  }

  .price-head-en::after {
    width: 92px;
  }

  .price-head-ja {
    margin-top: 6px;
    font-size: 11px;
  }

  .price-head-text {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.8;
  }

  .retouch-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .retouch-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* TwentyTwenty適用前 */
  .retouch-card>.plan-compare {
    width: calc(100% - 36px) !important;
    max-width: none !important;
    height: auto !important;
    aspect-ratio: 1 / 1.35;
    margin: 0 auto !important;
    border-radius: 0;
    overflow: hidden;
    background: #ddd;
  }

  /* TwentyTwenty適用後の外側 */
  .retouch-card>.twentytwenty-wrapper {
    width: calc(100% - 36px) !important;
    max-width: none !important;
    height: auto !important;
    aspect-ratio: 1 / 1.35;
    margin: 0 auto !important;
    overflow: hidden;
  }

  /* TwentyTwenty適用後の比較画像部分 */
  .retouch-card>.twentytwenty-wrapper>.twentytwenty-container {
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: #ddd;
  }

  .retouch-card .twentytwenty-before,
  .retouch-card .twentytwenty-after {
    width: 100% !important;
    height: 100% !important;
  }

  .retouch-card .plan-compare img,
  .retouch-card .twentytwenty-before,
  .retouch-card .twentytwenty-after {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  /* 画像下のタイトル・文章・料金 */
  .retouch-title,
  .retouch-text,
  .retouch-price {
    width: calc(100% - 36px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    color: #163d72;
  }

  .retouch-title {
    margin-top: 16px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .retouch-title::after {
    width: 100%;
  }

  .retouch-text {
    min-height: auto;
    margin-top: 0;
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: 0.04em;
    text-align: left;
  }

  .retouch-price {
    margin-top: 12px;
    text-align: center;
  }

  .retouch-price-main,
  .retouch-price-consult {
    font-size: 27px;
  }

  .retouch-price-yen {
    font-size: 13px;
  }

  .retouch-price-tax {
    font-size: 12px;
  }

  .retouch-btn-wrap {
    margin-top: 34px;
    text-align: center;
  }

  .retouch-btn {
    width: auto;
    min-width: 245px;
    height: 50px;
    font-size: 19px;
  }

  /* Before・Afterラベル */
  .twentytwenty-horizontal .twentytwenty-before-label::before,
  .twentytwenty-horizontal .twentytwenty-after-label::before {
    width: 38px;
    height: 38px;
    margin-top: -19px;
    font-size: 8px;
    line-height: 38px;
  }

  .twentytwenty-horizontal .twentytwenty-before-label::before {
    left: 8px;
  }

  .twentytwenty-horizontal .twentytwenty-after-label::before {
    right: 8px;
  }

  /* 中央ハンドル */
  .twentytwenty-handle {
    width: 40px;
    height: 40px;
    margin-left: -20px;
    margin-top: -20px;
  }

  /* =========================
   TOP FLOW
========================= */
  .order-flow {
    padding: 72px 0 76px;
  }

  .order-flow-inner {
    width: calc(100% - 40px);
    margin: 0 auto;
  }

  .order-flow-head {
    margin-bottom: 34px;
    text-align: center;
  }

  .order-flow-head-en {
    font-size: 30px;
    letter-spacing: 0.12em;
    padding-bottom: 10px;
  }

  .order-flow-head-en::before {
    left: -24px;
    width: 22px;
    height: 22px;
  }

  .order-flow-head-en::after {
    width: 112px;
    height: 1px;
  }

  .order-flow-head-ja {
    margin-top: 6px;
    font-size: 12px;
  }

  .order-flow-list {
    position: relative;
    width: 330px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .order-flow-list::before {
    display: none;
  }

  .order-flow-item {
    position: relative;
    display: grid;
    grid-template-columns: 86px 1fr;
    column-gap: 28px;
    align-items: center;
    min-height: 116px;
    padding: 0;
    text-align: left;
  }

  .order-flow-item::after {
    content: "";
    position: absolute;
    left: 43px;
    top: 86px;
    width: 1px;
    height: 48px;
    background: #2f5686;
    transform: none;
    z-index: 0;
  }

  .order-flow-item:last-child::after {
    display: none;
  }

  .order-flow-icon {
    position: relative;
    z-index: 1;
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .order-flow-icon img {
    width: 86px;
    height: 86px;
    object-fit: contain;
    display: block;
  }

  .order-flow-number {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin: 0 0 2px;
    font-size: 23px;
    line-height: 1;
    letter-spacing: 0.08em;
    color: #2f5686;
    font-family: "Times New Roman", serif;
  }

  /* テキスト */
  .order-flow-text {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    color: #2f5686;
    white-space: normal;
  }

  /* ボタン */
  .order-flow-btn-wrap {
    margin-top: 44px;
    text-align: center;
  }

  .order-flow-btn {
    border-radius: 999px;
    letter-spacing: 0.18em;
    min-width: 245px;
    height: 50px;
    font-size: 19px;
  }

  /* =========================
   CONTACT
========================= */
  .contact-banner {
    padding: 0;
  }

  .contact-banner-inner {
    max-width: 100%;
    min-height: 470px;
    padding: 58px 24px 62px;
    gap: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background-size: cover;
    background-position: center;
  }

  .contact-banner-left,
  .contact-banner-right {
    width: 100%;
    max-width: none;
    flex: none;
  }

  .contact-banner-en {
    margin: 0 0 6px;
    padding-bottom: 10px;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.12em;
  }

  .contact-banner-en::after {
    left: 50%;
    width: 86px;
    transform: translateX(-50%);
  }

  .contact-banner-ja {
    margin: 0 0 30px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .contact-banner-text {
    margin: 0;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.08em;
    font-weight: 500;
  }

  .contact-banner-right {
    margin-top: 50px;
  }

  .contact-banner-copy {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.08em;
    font-weight: 500;
  }

  .contact-banner-btn {
    width: 320px;
    max-width: calc(100vw - 72px);
    height: 52px;
    border-radius: 999px;
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  /* =========================
     TOP ABOUT
  ========================= */
  .about-section {
    padding: 90px 0 5px;
    background: #fff;
    overflow: hidden;
  }

  .about-inner {
    width: 100%;
    margin-left: 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .about-card {
    width: calc(100% - 22px);
    min-height: auto;
    margin: 0 auto -88px 0;
    padding: 72px 24px 128px;
    background: rgba(246, 243, 244, 0.92);
    border-radius: 0 12px 12px 0;
  }

  .about-image {
    position: relative;
    right: auto;
    top: auto;
    width: calc(100% - 28px);
    margin: 0 0 0 auto;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    z-index: 1;
  }

  .about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center center;
  }

  .about-script {
    left: 18px;
    top: -42px;
    width: 190px;
  }

  .about-en {
    font-size: 22px;
  }

  .about-sub {
    margin-bottom: 24px;
    font-size: 13px;
  }

  .about-text p {
    font-size: 13px;
    line-height: 2.1;
    letter-spacing: 0.06em;
  }

  /* =========================
   FOOTER
========================= */

  .footer {
    background: none;
  }

  .footer-upper {
    padding: 46px 0 48px;
  }

  .footer-inner {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .footer-logo img {
    width: 190px;
    height: auto;
  }

  .footer-sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .footer-sns-label {
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 600;
  }

  .footer-sns-icon svg {
    width: 22px;
    height: 22px;
  }

  .footer-nav {
    width: 100%;
    max-width: 380px;
    padding-top: 0;
  }

  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 21px;
    row-gap: 12px;
  }

  .footer-nav a {
    font-size: 13px;
    letter-spacing: 0.14em;
    line-height: 1.6;
  }

  .footer-lower {
    padding: 11px 10px;
    background: #4d7dbc;
  }

  .footer-lower p {
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .footer-nav li:nth-child(7),
  .footer-nav li:nth-child(8) {
    flex-basis: auto;
  }

  .footer-break {
    flex-basis: 100%;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
  }

  /* 下段も右寄せ */
  .footer-break+li {
    margin-left: 0;
  }

  /* =========================
     SERVICE PAGE 
  ========================= */
  .service-page-mv {
    padding: 58px 20px 72px;
    background: transparent;
    position: relative;
  }
.service-page-mv {
  position: relative;
}

/* 点線 */
.service-page-mv::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(900px, 88%);
  height: 4px;
  transform: translateX(-50%);
  z-index: 2;

  background-image: radial-gradient(
    circle,
    rgba(111, 133, 163, 0.32) 1px,
    transparent 1.2px
  );
  background-size: 8px 4px;
  background-repeat: repeat-x;
  background-position: left center;

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 5%,
    #000 calc(50% - 12px),
    transparent calc(50% - 12px),
    transparent calc(50% + 12px),
    #000 calc(50% + 12px),
    #000 95%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 5%,
    #000 calc(50% - 12px),
    transparent calc(50% - 12px),
    transparent calc(50% + 12px),
    #000 calc(50% + 12px),
    #000 95%,
    transparent 100%
  );
}

/* 中央の縦線 */
.service-page-mv::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 1px;
  height: 19px;
  background: #496b93;
  transform: translateX(-50%);
  z-index: 3;
}

  .service-page-mv-inner {
    max-width: 100%;
    text-align: center;
  }

  .service-page-title {
    margin: 0 0 22px;
    font-size: 24px;
    line-height: 1.7;
    letter-spacing: 0.22em;
    color: #2f5686;
  }

  .service-page-lead {
    margin: 0 auto;
    font-size: 13px;
    line-height: 2.15;
    letter-spacing: 0.08em;
    color: #3f5878;
    font-weight: 500;
  }

  .service-detail {
    display: block;
    padding: 44px 20px 84px;
  }

  .service-detail-inner {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  .service-detail-item,
  .service-detail-item-reverse {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 82px;
  }

  .service-detail-item:last-child {
    margin-bottom: 0;
  }

  .service-detail-item .service-detail-text,
  .service-detail-item-reverse .service-detail-text {
    order: 1;
  }

  .service-detail-item .service-detail-img,
  .service-detail-item-reverse .service-detail-img {
    order: 2;
  }

  .service-detail-text {
    width: 100%;
    max-width: none;
  }

  .service-detail-text h2 {
    margin: 0 0 24px;
    padding-bottom: 12px;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: 0.18em;
    text-align: center;
    color: #2f5686;
  }

  .service-detail-text h2::after {
    width: 150px;
    height: 1px;
    background: linear-gradient(to right,
        #5f7898 0%,
        #5f7898 28%,
        #d8c6a4 28%,
        #d8c6a4 100%);
  }

  .service-detail-text p {
    font-size: 13px;
    line-height: 2.05;
    letter-spacing: 0.06em;
    color: #3f5878;
    font-weight: 500;
  }

  .service-detail-img {
    width: 100%;
    background: #dfe8fb;
    overflow: hidden;
  }

  .service-detail-img img {
    width: 100%;
    aspect-ratio: 1.48 / 1;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* =========================
     PRICE PAGE 
  ========================= */
  .price-page {
    padding-top: 74px;

  }

  /* =========================
     PRICE MV
  ========================= */
  .price-mv {
    padding: 52px 18px 34px;
    background: transparent;
  }

  .price-mv-inner {
    max-width: 100%;
  }

  .price-mv-title {
    margin: 0 0 22px;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: 0.22em;
  }

  .price-mv-lead {
    margin: 0 auto 30px;
    font-size: 13px;
    line-height: 2.1;
    letter-spacing: 0.07em;
  }

  .price-tab-nav {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
    border-radius: 999px;
    overflow: hidden;
    background: #f7f8fb;
    border: 1px solid #cfd5dc;
  }

  .price-tab-nav a {
    min-height: 60px;
    padding: 0 4px;
    font-size: 13px;
    letter-spacing: 0.06em;
    border-right: 1px solid #cfd5dc;
    white-space: nowrap;
  }

  .price-tab-nav a:last-child {
    border-right: none;
  }

  /* =========================
     SECTION HEAD COMMON
  ========================= */
  .price-section-head {
    margin-bottom: 8px;
    text-align: center;
  }

  .price-section-head h2 {
    margin: 0 0 14px;
    padding-bottom: 8px;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.18em;
  }

  .price-section-head h2::before {
    left: -24px;
    top: 42%;
    width: 21px;
    height: 21px;
  }

  .price-section-head p {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.06em;
    text-align: center;
  }

  /* =========================
     3つのプラン
  ========================= */
  .plan-section {
    padding: 36px 18px 76px;
  }

  .plan-list {
    width: 100%;
    max-width: none;
    gap: 56px;
  }

  .plan-item,
  .plan-item-reverse {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .plan-item-reverse .plan-img,
  .plan-item-reverse .plan-text {
    order: initial;
  }

  .plan-img {
    width: 100%;
  }

  .plan-img .twentytwenty-wrapper {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    aspect-ratio: 1 / 1.35 !important;
    margin: 0 !important;
  }

  .plan-img .twentytwenty-container,
  .plan-img .twentytwenty-container.plan-compare {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .plan-img .twentytwenty-before,
  .plan-img .twentytwenty-after {
    height: 100% !important;
  }

  .plan-img img,
  .plan-img .twentytwenty-before img,
  .plan-img .twentytwenty-after img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  .plan-text {
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .plan-text h3 {
    margin: 0 0 12px;
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.07em;
    text-align: center;
  }

  .plan-text h3::after {
    left: 0;
    width: 100%;
  }

  .plan-copy {
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: 0.04em;
    text-align: left;
  }

  .plan-price {
    margin: 0 0 14px;
    font-size: 13px;
    text-align: center;
  }

  .plan-price span {
    margin-left: 4px;
    font-size: 30px;
  }

  .plan-price small {
    margin-left: 3px;
    font-size: 12px;
  }

  .plan-price-consult {
    font-size: 24px;
    line-height: 1.4;
    text-align: center;
  }

  .plan-detail {
    margin-bottom: 18px;
  }

  .plan-detail p {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .plan-detail ul {
    padding-left: 1.1em;
  }

  .plan-detail li {
    font-size: 13px;
    line-height: 1.75;
    letter-spacing: 0.03em;
  }

  .plan-text .price-btn {
    width: 190px;
    padding: 0 20px;
    display: flex;
    margin: 0 auto;
    letter-spacing: 0.06em;
    min-width: 245px;
    height: 50px;
    font-size: 19px;
  }

  /* =========================
     オプション
  ========================= */
  .option-price {
    padding: 68px 18px 76px;
    background: #f5f3f1;
  }

  .option-price-inner {
    max-width: none;
    width: 100%;
  }

  .option-price .price-section-head {
    margin-bottom: 30px;
  }

  .option-price-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .option-price-card {
    width: 100%;
    margin: 0 auto;
  }

  .option-price-img {
    margin-bottom: 10px;
  }

  .option-price-img .twentytwenty-wrapper {
    width: 100% !important;
    aspect-ratio: 1.35 / 1 !important;
    height: auto !important;
  }

  .option-price-img .twentytwenty-container,
  .option-price-img .twentytwenty-container img,
  .option-price-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .option-price-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    letter-spacing: 0.06em;
  }

  .option-price-card>p {
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.03em;
  }

  .option-price-card>.option-card-price {
    margin-top: 6px;
    font-size: 13px;
  }

  .option-card-price span {
    font-size: 25px;
  }

  .option-card-price small {
    font-size: 13px;
  }

  .option-price .price-btn-wrap {
    margin-top: 34px;
  }

  .option-price .price-btn {
    padding: 0 20px;
    min-width: 245px;
    height: 50px;
    font-size: 19px;

  }

  /* =========================
     その他メニュー
  ========================= */
  .digital-menu {
    padding: 68px 18px 76px;

  }

  .digital-menu-inner {
    max-width: none;
    width: 100%;
  }

  .digital-menu .price-section-head {
    margin-bottom: 30px;
  }

  .digital-list {
    width: 100%;
    margin: 0 auto;
    gap: 0;
    border-top: none;
  }

  .digital-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 0 28px;
    margin-bottom: 28px;
    border-bottom: none;
  }

  .digital-item:last-child {
    margin-bottom: 0;
  }

  .digital-img {
    width: 100%;
  }

  .digital-img .twentytwenty-wrapper {
    width: 100% !important;
    aspect-ratio: 1.35 / 1 !important;
    height: auto !important;
  }

  .digital-img .twentytwenty-container,
  .digital-img .twentytwenty-container img,
  .digital-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .digital-text h3 {
    margin: 0 0 6px;
    font-size: 18px;
    letter-spacing: 0.06em;
  }

  .digital-text p {
    font-size: 13px;
    line-height: 1.75;
    letter-spacing: 0.03em;
  }

  .digital-text .digital-price {
    margin-top: 6px;
  }

  .digital-price span {
    font-size: 25px;
  }

  .digital-price small {
    font-size: 13px;
  }

  .digital-menu .price-btn-wrap {
    margin-top: 34px;
  }

  .digital-menu .price-btn {
    width: 190px;
    padding: 0 20px;
    min-width: 245px;
    height: 50px;
    font-size: 19px;
  }

}

/* =========================
   COMMON SCROLL ANIMATION
========================= */
.scroll-reveal {
  opacity: 0;
  transition:
    opacity 1.7s ease,
    transform 2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.scroll-reveal-up {
  transform: translate3d(0, 32px, 0);
}

.scroll-reveal-left {
  transform: translate3d(-65px, 0, 0);
}

.scroll-reveal-right {
  transform: translate3d(65px, 0, 0);
}

.scroll-reveal-fade {
  transform: none;
  transition:
    opacity 1.9s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 768px) {
  .scroll-reveal-up {
    transform: translate3d(0, 24px, 0);
  }

  .scroll-reveal-left {
    transform: translate3d(-32px, 0, 0);
  }

  .scroll-reveal-right {
    transform: translate3d(32px, 0, 0);
  }

  .scroll-reveal.is-visible {
    transform: translate3d(0, 0, 0);
  }

  .price-page .plan-img.scroll-reveal-left,
  .price-page .plan-img.scroll-reveal-right {
    opacity: 0;
    transform: none;
    transition: opacity 2s ease;
    transition-delay: var(--reveal-delay, 0s);
  }

  .price-page .plan-img.scroll-reveal-left.is-visible,
  .price-page .plan-img.scroll-reveal-right.is-visible {
    opacity: 1;
    transform: none;
  }

}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.service-image.scroll-reveal {
  transition:
    opacity 1.8s ease,
    transform 2.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.service-text.scroll-reveal-fade {
  transition: opacity 2s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.scroll-reveal.is-first-view {
  transition: none !important;
}

.flow-step.scroll-reveal-up {
  transform: translate3d(0, 20px, 0);
}

.flow-step.scroll-reveal {
  transition:
    opacity 1.8s ease,
    transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-step.scroll-reveal.is-visible {
  transform: translate3d(0, 0, 0);
}


/* ========================================
   TOP ローディング動画
======================================== */
.loading-screen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;

  background: #fff;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.loading-screen.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.is-loading {
  overflow: hidden;
}


/* ローディング中はスクロール禁止 */
body.is-loading {
  overflow: hidden;
}