@charset"utf-8";
@import url(common.css);



body {
  background-color: #fafafa;
  color: #18181b;
}
.glass-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.clean-card {
  background: #ffffff;
  border: 1px solid rgba(228, 228, 231, 0.8);
  box-shadow: 0 10px 30px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 読むためのカードは動かさず、クリック可能なカードだけ明示的に浮かせる */
.clean-card:hover {
  transform: none;
  box-shadow: 0 10px 30px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  border-color: rgba(228, 228, 231, 0.8);
}

.clean-card.is-interactive,
a.clean-card,
button.clean-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.clean-card.is-interactive:hover,
a.clean-card:hover,
button.clean-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -4px rgba(225, 29, 72, 0.08);
  border-color: rgba(251, 207, 232, 0.8);
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
img, video, iframe {
  max-width: 100%;
}
input, textarea, button, a {
  min-width: 0;
}
.mobile-balance {
  text-wrap: balance;
}
.mobile-wrap {
  overflow-wrap: anywhere;
  word-break: normal;
}

.header-dropdown {
  position: relative;
}

.header-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  min-width: 13rem;
  padding: 0.5rem;
  border: 1px solid rgba(228, 228, 231, 0.95);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 45px rgba(24, 24, 27, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 0.5rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header-dropdown:hover .header-dropdown-menu,
.header-dropdown:focus-within .header-dropdown-menu,
.header-dropdown.is-open .header-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.4rem;
  width: 0.75rem;
  height: 0.75rem;
  background: white;
  border-left: 1px solid rgba(228, 228, 231, 0.95);
  border-top: 1px solid rgba(228, 228, 231, 0.95);
  transform: translateX(-50%) rotate(45deg);
}

.header-dropdown-link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 0.7rem;
  color: #3f3f46;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header-dropdown-link:hover,
.header-dropdown-link:focus-visible {
  background: #fdf2f8;
  color: #e11d48;
  outline: none;
}

.mobile-submenu-icon {
  transition: transform 0.2s ease;
}

.mobile-submenu-button[aria-expanded="true"] .mobile-submenu-icon {
  transform: rotate(180deg);
}
@media (max-width: 639px) {
  .clean-card:hover {
    transform: none;
  }
  h1, h2, h3 {
    text-wrap: balance;
  }
  p, dd, dt, label, a, span {
    overflow-wrap: anywhere;
  }
}


/* =========================================================
   メニュー選択時のカットイン演出（index採用版を移植）
========================================================== */
.menu-scene-transition {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  contain: layout paint;
}

.menu-scene-transition.is-playing {
  visibility: visible;
}

.menu-scene-transition__panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 51%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 2px, transparent 2px 8px),
    linear-gradient(180deg, #09090b, #18181b);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.menu-scene-transition__panel--top {
  top: 0;
  transform: translate3d(0, -102%, 0);
  border-bottom: 2px solid rgba(255,255,255,.08);
}

.menu-scene-transition__panel--bottom {
  bottom: 0;
  transform: translate3d(0, 102%, 0);
  border-top: 2px solid rgba(255,255,255,.08);
}

.menu-scene-transition__card {
  position: relative;
  z-index: 3;
  width: min(90vw, 620px);
  padding: 30px 34px 32px;
  text-align: center;
  color: #09090b;
  background: rgba(255,255,255,.995);
  border: 6px solid #09090b;
  box-shadow: 12px 12px 0 #e11d48, 0 0 34px rgba(255,255,255,.18);
  transform: translate3d(0, 18px, 0) scale(.92);
  opacity: 0;
  will-change: transform, opacity;
}

.menu-scene-transition__card::before,
.menu-scene-transition__card::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #facc15;
  border: 2px solid #18181b;
}

.menu-scene-transition__card::before {
  top: -10px;
  left: -10px;
}

.menu-scene-transition__card::after {
  right: -10px;
  bottom: -10px;
  background: #7dd3fc;
}

.menu-scene-transition__no {
  display: inline-block;
  padding: 7px 15px;
  color: #fff;
  background: #09090b;
  border: 2px solid #fff;
  box-shadow: 3px 3px 0 #e11d48;
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .14em;
}

.menu-scene-transition__title {
  display: block;
  margin-top: 16px;
  color: #09090b;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 5.4vw, 48px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: .025em;
  text-shadow: 0 2px 0 #fff, 0 0 1px #09090b;
  overflow-wrap: anywhere;
}

.menu-scene-transition__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  color: #3f3f46;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}

.menu-scene-transition__status span {
  width: 7px;
  height: 7px;
  margin-right: 28px;
  border-radius: 50%;
  background: #e11d48;
  box-shadow: 14px 0 0 #facc15, 28px 0 0 #7dd3fc;
}

html.is-menu-cutin-paused,
body.is-menu-cutin-paused {
  overscroll-behavior: none;
}

body.is-menu-cutin-paused {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 640px) {
  .menu-scene-transition__card {
    width: min(92vw, 560px);
    padding: 24px 18px 26px;
    border-width: 4px;
    box-shadow: 8px 8px 0 #e11d48;
  }

  .menu-scene-transition__title {
    font-size: clamp(25px, 8vw, 38px);
  }

  .menu-scene-transition__no {
    padding: 6px 11px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-scene-transition {
    display: none !important;
  }
}


/* ==========================================
   右下の案内役（ハッピーガイド）
   ========================================== */
.character-speaker {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(210px, 310px) 124px;
  align-items: end;
  gap: 4px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .35s ease, transform .45s cubic-bezier(.2,.85,.2,1.2);
}

.character-speaker.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.character-speaker__portrait {
  order: 2;
  position: relative;
  width: 124px;
  height: 250px;
  overflow: visible;
  background: transparent;
  pointer-events: auto;
  cursor: default;
  isolation: isolate;
  animation: characterFloat 3.8s ease-in-out infinite;
}

.character-speaker__fallback,
.character-speaker__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  transform: scale(1.03);
  transform-origin: bottom center;
  transition: opacity .25s ease, transform .3s ease;
  pointer-events: none;
}

.character-speaker__fallback {
  z-index: 1;
  filter: drop-shadow(0 12px 20px rgba(31, 27, 48, .18));
}

.character-speaker__portrait video {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.character-speaker__canvas {
  z-index: 2;
  display: block;
  background: transparent;
  filter: drop-shadow(0 12px 20px rgba(31, 27, 48, .18));
}

.character-speaker.has-video .character-speaker__fallback {
  opacity: 0;
}

.character-speaker.is-talking .character-speaker__fallback,
.character-speaker.is-talking .character-speaker__canvas {
  animation: talkingBounce .36s ease-in-out infinite alternate;
}

.character-speaker__bubble {
  order: 1;
  position: relative;
  min-height: 110px;
  margin-bottom: 92px;
  padding: 14px 15px 12px;
  color: #17131a;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 4px solid #17131a;
  border-radius: 22px 22px 8px 22px;
  box-shadow: 0 10px 28px rgba(232,54,137,.22), 7px 7px 0 rgba(255,79,154,.5);
  pointer-events: auto;
}

.character-speaker__bubble::before {
  content: "";
  position: absolute;
  right: -14px;
  bottom: 14px;
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,.94);
  border-right: 4px solid #17131a;
  border-bottom: 4px solid #17131a;
  transform: rotate(-45deg);
}

.character-speaker__name {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  color: #fff;
  background: linear-gradient(90deg, #e83689, #7557d9);
  border: 2px solid #17131a;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.character-speaker__text {
  position: relative;
  z-index: 1;
  min-height: 42px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.65;
}

.character-speaker__text::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 1em;
  margin-left: 3px;
  vertical-align: -.12em;
  background: #e83689;
  animation: cursorBlink .7s steps(1) infinite;
}

.character-speaker__actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.character-speaker__actions button {
  flex: 1;
  min-width: 0;
  padding: 6px 8px;
  border: 2px solid #17131a;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 2px 2px 0 #17131a;
  transition: transform .15s ease, box-shadow .15s ease;
}

.character-speaker__actions button:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 #17131a;
}

.character-speaker__next {
  color: #17131a;
  background: #fff4a8;
}

.character-speaker__cta {
  color: #fff;
  background: #e83689;
}

.character-speaker__close {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 4;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 2px solid #17131a;
  border-radius: 999px;
  color: #17131a;
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 2px 2px 0 #17131a;
  pointer-events: auto;
}

.character-speaker.is-minimized {
  grid-template-columns: 88px;
}

.character-speaker.is-minimized .character-speaker__bubble {
  display: none;
}

.character-speaker.is-minimized .character-speaker__portrait {
  width: 88px;
  height: 172px;
  cursor: pointer;
}

@keyframes characterFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-7px) rotate(1deg); }
}

@keyframes talkingBounce {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.07) translateY(-2px); }
}

@keyframes cursorBlink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@media (max-width: 1024px) {
  .character-speaker {
    grid-template-columns: minmax(190px, 260px) 108px;
    gap: 2px;
  }

  .character-speaker__portrait {
    width: 108px;
    height: 220px;
  }

  .character-speaker__bubble {
    margin-bottom: 72px;
  }
}

@media (max-width: 700px) {
  .character-speaker {
    right: max(6px, env(safe-area-inset-right));
    bottom: max(8px, env(safe-area-inset-bottom));
    width: min(318px, calc(100vw - 12px));
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 0;
  }

  .character-speaker__portrait {
    width: 72px;
    height: 142px;
  }

  .character-speaker__bubble {
    min-height: 72px;
    margin-bottom: 28px;
    padding: 9px 10px 8px;
    border-width: 2px;
    border-radius: 15px 15px 6px 15px;
    box-shadow: 4px 5px 0 rgba(255,79,154,.48);
  }

  .character-speaker__bubble::before {
    right: -8px;
    bottom: 12px;
    width: 13px;
    height: 13px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }

  .character-speaker__name {
    padding: 3px 7px;
    border-width: 1px;
    font-size: 8.5px;
  }

  .character-speaker__text {
    min-height: 27px;
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.45;
  }

  .character-speaker__actions {
    margin-top: 5px;
    gap: 5px;
  }

  .character-speaker__actions button {
    min-height: 30px;
    padding: 5px 6px;
    border-width: 1px;
    font-size: 8.5px;
    box-shadow: 1px 2px 0 #17131a;
  }

  .character-speaker__close {
    top: 3px;
    right: 3px;
    width: 23px;
    height: 23px;
    border-width: 1px;
    box-shadow: 1px 2px 0 #17131a;
  }

  .character-speaker.is-minimized {
    right: max(6px, env(safe-area-inset-right));
    width: auto;
    grid-template-columns: 72px;
  }

  .character-speaker.is-minimized .character-speaker__portrait {
    width: 72px;
    height: 142px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .character-speaker,
  .character-speaker__portrait,
  .character-speaker.is-talking .character-speaker__fallback,
  .character-speaker.is-talking .character-speaker__canvas {
    animation: none !important;
    transition: none !important;
  }
}

/* シャッター演出中はキャラクター演出を静止する */
.character-speaker.is-cutin-paused,
.character-speaker.is-cutin-paused .character-speaker__portrait,
.character-speaker.is-cutin-paused .character-speaker__fallback,
.character-speaker.is-cutin-paused .character-speaker__canvas {
  animation-play-state: paused !important;
  transition: none !important;
}



/* index採用：マウスポインター追従のきらめきエフェクト */
.cursor-sparkle {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 70;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 79, 154, 0.85) 45%,
    rgba(255, 79, 154, 0) 72%
  );
  transform: translate(-50%, -50%) scale(0);
  animation: sparklePop 0.7s ease-out forwards;
  will-change: transform, opacity;
}

@keyframes sparklePop {
  0% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.8);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
}

@media (max-width: 767px), (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-sparkle {
    display: none !important;
  }
}



/* Cute step connectors */
.flow-steps-grid {
  column-gap: 3.9rem;
  row-gap: 4.5rem;
}

.flow-step-card {
  isolation: isolate;
}

.flow-step-card::after {
  content: "\276F";
  position: absolute;
  top: 50%;
  right: -3.38rem;
  z-index: 5;
  width: 3.15rem;
  height: 3.15rem;
  display: grid;
  place-items: center;
  padding-left: .08rem;
  border: 3px solid #4a1530;
  border-radius: 52% 48% 55% 45% / 48% 55% 45% 52%;
  background:
    radial-gradient(circle at 31% 25%, rgba(255,255,255,.98) 0 8%, transparent 9%),
    linear-gradient(145deg, #fff7fc 0%, #ffd7eb 35%, #ff87bf 72%, #ff5fa8 100%);
  color: #ffffff;
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: 1.62rem;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1.5px #c2185b;
  text-shadow: 2px 2px 0 #c2185b;
  box-shadow:
    4px 5px 0 #4a1530,
    0 11px 24px rgba(236,72,153,.27),
    inset 0 0 0 3px rgba(255,255,255,.44);
  transform: translateY(-50%) rotate(-7deg);
  transform-origin: center;
  animation: cuteArrowBounce 1.8s ease-in-out infinite;
  pointer-events: none;
}

.flow-step-card::before {
  content: "\2665  \2726";
  position: absolute;
  top: calc(50% - 2.05rem);
  right: -3.58rem;
  z-index: 6;
  color: #f43f8c;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .15rem;
  text-shadow: 1px 1px 0 #fff, 2px 2px 0 rgba(74,21,48,.34);
  transform: rotate(10deg);
  animation: cuteHeartTwinkle 1.8s ease-in-out infinite;
  pointer-events: none;
}

.flow-step-card:nth-child(even)::after {
  transform: translateY(-50%) rotate(7deg);
  animation-delay: .2s;
}

.flow-step-card:nth-child(even)::before {
  animation-delay: .2s;
}

.flow-step-card:last-child::after,
.flow-step-card:last-child::before {
  display: none;
}

@keyframes cuteArrowBounce {
  0%, 100% { translate: 0 0; scale: 1; }
  42% { translate: 5px -2px; scale: 1.09; }
  58% { translate: 2px 1px; scale: .98; }
}

@keyframes cuteHeartTwinkle {
  0%, 100% { opacity: .55; scale: .85; }
  45% { opacity: 1; scale: 1.18; }
  70% { opacity: .76; scale: .95; }
}

/* Final CTA: 安心・信頼を主役にしたデザイン */
#contact {
  border-top: 1px solid rgba(251, 207, 232, .9) !important;
  border-bottom: 1px solid rgba(186, 230, 253, .85) !important;
  background: linear-gradient(135deg, #fff7fa 0%, #fdf2f8 48%, #f0f9ff 100%) !important;
  color: #18181b;
  isolation: isolate;
}

#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 13% 20%, rgba(244, 114, 182, .13) 0 7rem, transparent 7.1rem),
    radial-gradient(circle at 88% 82%, rgba(56, 189, 248, .12) 0 9rem, transparent 9.1rem);
}

#contact .contact-trust-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 960px);
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid rgba(244, 114, 182, .22);
  border-radius: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, .94);
  box-shadow:
    0 28px 70px rgba(136, 19, 55, .10),
    0 8px 24px rgba(24, 24, 27, .05),
    inset 0 1px 0 rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#contact .contact-trust-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #e11d48, #ec4899 55%, #38bdf8);
}

#contact .contact-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .55rem 1rem;
  color: #9f1239;
  background: #fff1f5;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .04em;
}

#contact h2 {
  color: #18181b !important;
  -webkit-text-stroke: 0;
  text-shadow: none !important;
  letter-spacing: -.025em;
}

#contact .contact-main-title {
  width: min(100%, 760px);
  margin: 1.25rem auto 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  line-height: 1.35 !important;
  text-wrap: balance;
}

#contact .contact-lead {
  width: min(100%, 700px);
  margin: 1rem auto 0;
  color: #52525b;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
}

#contact .contact-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  width: min(100%, 760px);
  margin: 1.6rem auto 0;
}

#contact .contact-assurance-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .7rem .8rem;
  color: #3f3f46;
  background: #fafafa;
  border: 1px solid #e4e4e7;
  border-radius: 1rem;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.45;
}

#contact .contact-assurance-item i {
  color: #e11d48;
  font-size: 1rem;
}

#contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .9fr);
  gap: .9rem;
  width: min(100%, 760px);
  margin: 1.5rem auto 0;
}

#contact-cta button,
#contact-cta a {
  min-height: 64px;
  border-radius: 1.1rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}

#contact-cta .contact-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  width: 100%;
  padding: .9rem 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, #e11d48, #db2777);
  border: 1px solid rgba(159, 18, 57, .22);
  box-shadow: 0 12px 28px rgba(225, 29, 72, .24);
  font-weight: 900;
  text-align: left;
}

#contact-cta .contact-primary:hover,
#contact-cta .contact-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(225, 29, 72, .31);
  outline: none;
}

#contact-cta .contact-primary small {
  display: block;
  margin-bottom: .1rem;
  color: #ffe4e6;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
}

#contact-cta .contact-primary strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

#contact-cta .contact-primary .contact-btn-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  color: #be123c;
  background: #fff;
  border-radius: 999px;
  font-size: 1rem;
}

#contact-cta .contact-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .9rem 1.1rem;
  color: #3f3f46;
  background: #fff;
  border: 1px solid #d4d4d8;
  box-shadow: 0 8px 20px rgba(24, 24, 27, .07);
  font-weight: 900;
}

#contact-cta .contact-phone:hover,
#contact-cta .contact-phone:focus-visible {
  transform: translateY(-2px);
  border-color: #f9a8d4;
  box-shadow: 0 12px 26px rgba(24, 24, 27, .10);
  outline: none;
}

#contact-cta .contact-phone i {
  color: #e11d48;
  font-size: 1.05rem;
}

#contact-cta .contact-phone small {
  display: block;
  color: #71717a;
  font-size: .7rem;
  font-weight: 700;
  line-height: 1.2;
}

#contact-cta .contact-phone strong {
  display: block;
  margin-top: .15rem;
  color: #18181b;
  font-size: .98rem;
  line-height: 1.2;
}

#contact .contact-reception {
  margin-top: 1rem;
  color: #71717a;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.7;
}

#contact .contact-play-accent {
  position: absolute;
  z-index: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #db2777;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(244, 114, 182, .32);
  border-radius: 42% 58% 48% 52%;
  box-shadow: 0 8px 22px rgba(225, 29, 72, .10);
  font-size: 1rem;
  transform: rotate(-8deg);
  pointer-events: none;
}

#contact .contact-play-accent--one { left: max(2%, 20px); top: 17%; }
#contact .contact-play-accent--two { right: max(2%, 20px); bottom: 16%; transform: rotate(10deg); }

@media (max-width: 767px) {
  #contact .contact-assurance-grid {
    grid-template-columns: 1fr;
    gap: .6rem;
  }

  #contact .contact-assurance-item {
    justify-content: flex-start;
  }

  #contact-cta {
    grid-template-columns: 1fr;
  }

  #contact-cta button,
  #contact-cta a {
    min-height: 60px;
  }

  #contact .contact-play-accent {
    width: 38px;
    height: 38px;
    opacity: .75;
  }
}

@media (max-width: 420px) {
  #contact .contact-main-title {
    font-size: clamp(1.65rem, 8.5vw, 2.1rem) !important;
  }

  #contact .contact-trust-card {
    padding: 1.45rem 1rem 1.25rem;
  }

  #contact-cta .contact-primary strong {
    font-size: .94rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #contact-cta button,
  #contact-cta a {
    transition: none !important;
  }
}

.text-shadow-hero-strong {
  text-shadow: 0 4px 18px rgba(0,0,0,.95), 0 2px 6px rgba(0,0,0,.9);
}

.border-3 { border-width: 3px; }

.anime-btn {
  border: 3px solid #17131a !important;
  box-shadow: 5px 6px 0 #17131a !important;
  transition: transform .18s ease, box-shadow .18s ease, color .18s ease;
}

.anime-btn:hover {
  transform: translate(-2px,-3px) rotate(-.35deg) scale(1.02) !important;
  box-shadow: 8px 9px 0 #17131a !important;
}


#contact-modal { z-index: 10050; }


@media (max-width: 767px) {
  .flow-step-card::after,
  .flow-step-card:nth-child(even)::after {
    top: auto;
    right: auto;
    bottom: -3.75rem;
    left: 50%;
    transform: translateX(-50%) rotate(83deg);
  }

  .flow-step-card::before,
  .flow-step-card:nth-child(even)::before {
    top: auto;
    right: auto;
    bottom: -2.02rem;
    left: calc(50% + 1.35rem);
    transform: rotate(13deg);
  }

  @keyframes cuteArrowBounce {
    0%, 100% { translate: 0 0; scale: 1; }
    42% { translate: 0 5px; scale: 1.09; }
    58% { translate: 0 2px; scale: .98; }
  }

}

@media (prefers-reduced-motion: reduce) {
  .flow-step-card::after,
  .flow-step-card::before {
    animation: none !important;
  }
}


/* みなさまの声：成果を最初に伝えるカード設計 */
.voice-result-panel {
  position: relative;
  overflow: hidden;
  margin: -0.25rem -0.25rem 0.25rem;
  padding: 1rem 1rem 1.05rem;
  border: 2px solid rgba(225, 29, 72, .16);
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.92) 0 4px, transparent 5px),
    linear-gradient(135deg, #fff1f7 0%, #ffe4ef 58%, #fff8fb 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 8px 18px rgba(225,29,72,.08);
}

.voice-result-panel--emerald {
  border-color: rgba(5, 150, 105, .18);
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 58%, #f7fffb 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 8px 18px rgba(5,150,105,.08);
}

.voice-result-panel--sky {
  border-color: rgba(2, 132, 199, .18);
  background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 58%, #f8fcff 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 8px 18px rgba(2,132,199,.08);
}

.voice-result-panel--amber {
  border-color: rgba(217, 119, 6, .18);
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 58%, #fffdf6 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 8px 18px rgba(217,119,6,.08);
}

.voice-result-kicker {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .45rem;
  color: #be123c;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.voice-result-panel--emerald .voice-result-kicker { color: #047857; }
.voice-result-panel--sky .voice-result-kicker { color: #0369a1; }
.voice-result-panel--amber .voice-result-kicker { color: #b45309; }

.voice-result-title {
  color: #18181b;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.voice-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
  margin-top: .2rem;
}

.voice-result-item {
  min-width: 0;
  padding: .72rem .68rem;
  border: 1px solid rgba(2, 132, 199, .16);
  border-radius: .8rem;
  background: rgba(255,255,255,.76);
  color: #0c4a6e;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 3px 10px rgba(2,132,199,.06);
}

@media (max-width: 390px) {
  .voice-result-grid { grid-template-columns: 1fr; }
  .voice-result-title { font-size: 1.28rem; }
}

/* 読みやすさ改善：支援内容・みなさまの声・FAQ */
#services > div > .text-center p,
#voices > div > .text-center p,
#faq > div > .text-center p {
  font-size: 15px !important;
  line-height: 1.8 !important;
}

#services .clean-card p,
#services .clean-card li,
#services .clean-card a {
  font-size: 15px !important;
  line-height: 1.8 !important;
}

#services .clean-card span.rounded-full {
  font-size: 14px !important;
  line-height: 1.55 !important;
}

#voices .clean-card p:not(.voice-result-kicker):not(.voice-result-title),
#voices .clean-card h3 {
  font-size: 15px !important;
  line-height: 1.85 !important;
}

#voices .clean-card h3 {
  font-size: 16px !important;
  line-height: 1.7 !important;
}

#voices .voice-result-kicker {
  font-size: 12px;
  line-height: 1.5;
}

#voices .voice-result-item {
  font-size: 14px;
  line-height: 1.55;
}

#voices .clean-card > .pt-2 span {
  font-size: 14px !important;
  line-height: 1.5 !important;
}

#voices > div > .mb-6 p,
#voices #success-voices > .mb-6 p {
  font-size: 13px !important;
  line-height: 1.5 !important;
}

#faq .space-y-4 > div h3 {
  font-size: 16px !important;
  line-height: 1.7 !important;
}

#faq .space-y-4 > div h3 > span {
  font-size: 14px !important;
  line-height: 1 !important;
}

#faq .space-y-4 > div > p {
  font-size: 15px !important;
  line-height: 1.85 !important;
}

@media (min-width: 768px) {
  #services > div > .text-center p,
  #voices > div > .text-center p,
  #faq > div > .text-center p,
  #services .clean-card p,
  #services .clean-card li,
  #services .clean-card a,
  #voices .clean-card p:not(.voice-result-kicker):not(.voice-result-title),
  #faq .space-y-4 > div > p {
    font-size: 16px !important;
  }

  #voices .clean-card h3,
  #faq .space-y-4 > div h3 {
    font-size: 17px !important;
  }

  #voices .voice-result-kicker {
    font-size: 13px;
  }

  #voices .voice-result-item,
  #voices .clean-card > .pt-2 span {
    font-size: 15px !important;
  }
}



/* =========================================================
   サイト共通の文字サイズ方針
   本文：スマートフォン15px／パソコン16px
   補助情報：スマートフォン13px／パソコン14px
   フォーム注意書き：14px以上
   本文行間：1.75〜1.9
========================================================== */
:root {
  --site-body-size: 15px;
  --site-body-leading: 1.8;
  --site-meta-size: 13px;
  --site-meta-leading: 1.65;
  --site-form-note-size: 14px;
}

/* 本文として読む文章 */
main section :where(
  p:not(.font-en):not(.voice-result-kicker):not(.voice-result-title):not(.contact-kicker),
  li,
  dd,
  dt,
  blockquote
) {
  font-size: var(--site-body-size) !important;
  line-height: var(--site-body-leading) !important;
}

/* お知らせ本文は見出し要素でも本文サイズを確保 */
#news article h3 {
  font-size: var(--site-body-size) !important;
  line-height: 1.75 !important;
}

/* 英字キッカー、日付、タグ、ボタン補足などの補助情報 */
main section :where(span, time, div, a)[class~="text-xs"],
main section :where(span, time, div, a)[class~="text-[10px]"],
main section :where(span, time, div, a)[class~="text-[11px]"],
main section :where(span, time, div, a)[class~="text-[12px]"],
main section p.font-en,
main section .voice-result-kicker {
  font-size: var(--site-meta-size) !important;
  line-height: var(--site-meta-leading) !important;
}

/* 利用者の属性・受講コース・採用情報などは補助情報として整理 */
#voices p[class~="text-[11px]"],
#voices .clean-card > .pt-2 span,
#company p[class~="text-[11px]"] {
  font-size: var(--site-meta-size) !important;
  line-height: var(--site-meta-leading) !important;
}

/* フッターも小さくなりすぎないようにする */
footer {
  font-size: var(--site-meta-size) !important;
  line-height: 1.7 !important;
}

/* フォーム：入力文字は本文相当、説明・注意書きは最低14px */
#contact-form,
#contact-form label,
#contact-form input,
#contact-form select,
#contact-form textarea {
  font-size: 15px !important;
  line-height: 1.65 !important;
}

#contact-modal p,
#contact-modal [class~="text-xs"],
#contact-modal [class~="text-[11px]"],
#contact-modal [class~="text-[12px]"],
#contact-modal [class~="text-[13px]"],
#contact-modal [class~="text-[14px]"],
#contact-consultation-note,
#contact-tel-help {
  font-size: var(--site-form-note-size) !important;
  line-height: 1.75 !important;
}

/* 案内キャラクター内の文字も13px未満にしない */
.character-speaker__name,
.character-speaker__actions button {
  font-size: 13px !important;
  line-height: 1.4 !important;
}

.character-speaker__text {
  font-size: 14px !important;
  line-height: 1.65 !important;
}

@media (min-width: 768px) {
  :root {
    --site-body-size: 16px;
    --site-meta-size: 14px;
  }

  #contact-form,
  #contact-form label,
  #contact-form input,
  #contact-form select,
  #contact-form textarea {
    font-size: 16px !important;
  }

  .character-speaker__name,
  .character-speaker__actions button,
  .character-speaker__text {
    font-size: 14px !important;
  }
}

@media (max-width: 700px) {
  .character-speaker__bubble {
    min-height: 86px;
  }

  .character-speaker__name,
  .character-speaker__text,
  .character-speaker__actions button {
    font-size: 13px !important;
  }
}



/* 利用者の声：成果→要約→全文展開 */
.voice-story-summary {
  margin: 0;
  color: #52525b;
  font-size: 15px;
  line-height: 1.8;
}

.voice-story-details {
  margin-top: .85rem;
  border-top: 1px solid rgba(228, 228, 231, .9);
  padding-top: .8rem;
}

.voice-story-details summary {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  padding: .65rem .9rem;
  border: 1px solid rgba(225, 29, 72, .22);
  border-radius: 999px;
  background: #fff7fa;
  color: #be123c;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.voice-story-details summary::-webkit-details-marker {
  display: none;
}

.voice-story-details summary:hover {
  background: #fdf2f8;
  border-color: rgba(225, 29, 72, .38);
}

.voice-story-details summary:focus-visible {
  outline: 3px solid rgba(14, 165, 233, .45);
  outline-offset: 3px;
}

.voice-story-details summary i {
  transition: transform .2s ease;
}

.voice-story-details[open] summary i {
  transform: rotate(180deg);
}

.voice-details-close {
  display: none;
}

.voice-story-details[open] .voice-details-open {
  display: none;
}

.voice-story-details[open] .voice-details-close {
  display: inline;
}

.voice-story-full {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(250, 250, 250, .92);
  color: #52525b;
  font-size: 15px;
  line-height: 1.85;
  white-space: pre-line;
}

@media (min-width: 768px) {
  .voice-story-summary,
  .voice-story-full {
    font-size: 16px;
  }
}


/* ファーストビュー動画：音声ON/OFF・再生/停止コントロール */
.hero-video-frame {
  position: relative;
}

.hero-video-controls {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  max-width: calc(100% - 1.5rem);
}

.hero-video-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(24, 24, 27, 0.88);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-video-control:hover {
  background: rgba(9, 9, 11, 0.97);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
}

.hero-video-control:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.hero-video-control:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.hero-audio-toggle[aria-pressed="true"] {
  background: rgba(190, 18, 60, 0.94);
}

@media (max-width: 420px) {
  .hero-video-controls {
    right: 0.55rem;
    bottom: 0.55rem;
    gap: 0.35rem;
    max-width: calc(100% - 1.1rem);
  }

  .hero-video-control {
    min-height: 40px;
    padding: 0.58rem 0.68rem;
    font-size: 12px;
  }
}

@media (max-width: 340px) {
  .hero-video-controls {
    align-items: flex-end;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-control {
    transition: none !important;
  }
}


/* 選ばれる理由：カードを連続させず、番号・アイコン・短文で見せる */
.feature-simple-list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 0;
  border-top: 1px solid #d4d4d8;
}

.feature-simple-item {
  position: relative;
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid #d4d4d8;
}

.feature-simple-mark {
  position: relative;
  min-height: 4.5rem;
}

.feature-simple-number {
  display: block;
  color: #be123c;
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: clamp(2.4rem, 10vw, 3.4rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.07em;
}

.feature-simple-icon {
  position: absolute;
  left: 1.9rem;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  color: #be123c;
  background: #fff1f5;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  font-size: .92rem;
}

.feature-simple-content h3 {
  margin: 0;
  color: #18181b;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.45;
}

.feature-simple-content p {
  margin-top: .55rem;
  color: #52525b;
  line-height: 1.8;
}

/* スタッフ紹介：プロフィール情報を読み取りやすく整理 */
.staff-profile-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(251, 207, 232, .9);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .82);
}

.staff-profile-fact {
  display: grid;
  grid-template-columns: 7.2rem minmax(0, 1fr);
  gap: .75rem;
  align-items: start;
}

.staff-profile-fact dt {
  color: #71717a;
  font-size: 13px !important;
  font-weight: 800;
  line-height: 1.6 !important;
}

.staff-profile-fact dd {
  margin: 0;
  color: #27272a;
  font-size: 15px !important;
  font-weight: 800;
  line-height: 1.65 !important;
}

@media (min-width: 768px) {
  .feature-simple-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid #d4d4d8;
  }

  .feature-simple-item {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    min-height: 100%;
    padding: 2rem clamp(1.25rem, 3vw, 2.25rem);
    border-bottom: 0;
  }

  .feature-simple-item + .feature-simple-item {
    border-left: 1px solid #d4d4d8;
  }

  .feature-simple-mark {
    min-height: 5.2rem;
  }

  .feature-simple-number {
    font-size: clamp(3.2rem, 5vw, 4.4rem);
  }

  .feature-simple-icon {
    left: 2.7rem;
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1rem;
  }

  .feature-simple-content h3 {
    font-size: 1.3rem;
  }

  .staff-profile-facts {
    padding: 1.1rem 1.2rem;
  }

  .staff-profile-fact dt {
    font-size: 14px !important;
  }

  .staff-profile-fact dd {
    font-size: 16px !important;
  }
}

@media (max-width: 420px) {
  .staff-profile-fact {
    grid-template-columns: 1fr;
    gap: .15rem;
  }
}
