/* ============================================================
   CSS Custom Properties (Figmaデザイン変数に準拠)
   ============================================================ */
:root {
  --color-main: #E28D8D;
  --color-main-dark: #C45D5D;
  --color-text: #333333;
  --color-white: #FFFFFF;
  --color-bg-light: #F9EEEE;
  --color-orange: #FE4500;
  --color-border: #e0e0e0;

  --font-jp: 'Zen Maru Gothic', sans-serif;
  --font-en: 'Futura PT', 'Futura', 'Century Gothic', 'Josefin Sans', sans-serif;

  --container-inner: 75rem;
  --container-padding: 1.25rem;

  --transition: 0.3s ease;
}

/* ============================================================
   Base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-jp);
  font-size: clamp(0.875rem, 0.818rem + 0.242vw, 1rem);
  background-color: #fff;
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 2;
  letter-spacing: 0.05em;
  animation: loading 1.5s;
}

@keyframes loading {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: .2s;
}

a:hover img {
  opacity: 0.7;
  transition: .2s;
}

main {
  overflow: hidden;
}

section {
  position: relative;
}

mark {
  background: linear-gradient(transparent 55%, rgba(226, 141, 141, 0.4) 55%);
  background-color: transparent;
  color: inherit;
  font-weight: 700;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  padding-inline: 0.1em;
}

/* ============================================================
   Device
   ============================================================ */
@media (min-width:1025px) {
  .is-hidden_pc {
    display: none;
  }
}

@media (max-width:1024px) and (min-width:769px) {
  .is-hidden_tb {
    display: none;
  }
}

@media (max-width:768px) {
  .is-hidden_sp {
    display: none;
  }
}

/* ============================================================
   Layout
   ============================================================ */
.l-wrap {
  position: relative;
}

.l-container {
  max-width: calc(var(--container-inner) + var(--container-padding) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.l-container--w1000 {
  max-width: calc(62.5rem + var(--container-padding) * 2);
}

.l-section {
  padding-block: 10rem 16.25rem;
}

@media (max-width:768px) {
  .l-section {
    padding-block: 5rem;
  }
}

/* ============================================================
   Utility: Color
   ============================================================ */
.u-color--main {
  color: var(--color-main);
}

/* ============================================================
   Component: Section Heading
   ============================================================ */
.c-title__primary {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  font-weight: 700;
  text-align: center;
  margin-block-end: 5rem;
  letter-spacing: 0.15em;
  line-height: 1.4;
}

.c-title__primary-title {
  font-size: clamp(1.25rem, 4vw, 2rem);
}

.c-title__primary-en {
  font-size: clamp(0.75rem, 0.693rem + 0.242vw, 0.875rem);
  font-family: var(--font-en);
  color: var(--color-main);
}

/* 見出し：左アクセントバー付き */
.c-title__sticky {
  position: relative;
  font-family: var(--font-jp);
  font-size: clamp(1.125rem, 0.955rem + 0.727vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  letter-spacing: 0.1em;
  padding-left: 3.5rem;
}

.c-title__sticky::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.375rem;
  height: 100%;
  background-color: var(--color-main);
  border-radius: 0.1875rem;
}

@media (min-width:769px) {
  .c-title__primary--horizon {
    flex-direction: row;
    gap: 2.5rem;
  }
}

@media (max-width:768px) {
  .c-title__primary {
    gap: 0.625rem;
    margin-block-end: 3.75rem;
  }

  .c-title__sticky {
    padding-left: 1.25rem;
  }

  .c-title__sticky::before {
    width: 0.1875rem;
  }
}

/* ============================================================
   Component: Section Frame
   ============================================================ */
.c-frame__wave::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  width: 100%;
  position: absolute;
  inset: auto 0 calc(100% - 1px);
}

.c-frame__wave--01::before {
  background-image: url(../img/common/frame_wave_01.webp);
  height: 4.6875rem;
}

.c-frame__wave--02::before {
  background-image: url(../img/common/frame_wave_02.webp);
  height: 3.6875rem;
}

.c-frame__wave--03::before {
  background-image: url(../img/common/frame_wave_01.webp);
  height: 3.6875rem;
  scale: -1 1;
}

.c-frame__wave--cutting::before {
  background-image: url(../img/common/frame_wave_cutting.webp);
  height: 4.6875rem;
  inset-block: 0 auto;
}

@media (max-width: 768px) {
  .c-frame__wave--01::before {
    height: 1rem;
  }

  .c-frame__wave--02::before {
    height: 0.875rem;
  }

  .c-frame__wave--03::before {
    height: 0.875rem;
  }

  .c-frame__wave--cutting::before {
    height: 1rem;
  }
}

/* ============================================================
   Component: Button
   ============================================================ */
.c-btn {
  border-radius: 9.375rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  height: 5.625rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
  max-width: 25rem;
  width: 90%;
  position: relative;
  transition: opacity var(--transition), transform 0.12s ease, box-shadow 0.12s ease;
}

.c-btn::after {
  content: '';
  background: url(../img/icon/arrow.svg) no-repeat center / contain;
  aspect-ratio: 1;
  width: 1.125rem;
  height: auto;
  margin-block: auto;
  position: absolute;
  inset: 0 2.1875rem 0 auto;
}

.c-btn:hover {
  opacity: 0.7;
}

.c-btn--primary {
  background-color: var(--color-main);
  box-shadow: 0 0.375rem 0 #D06B6B;
}

.c-btn--primary:hover {
  opacity: 1;
  transform: translateY(0.375rem);
  box-shadow: 0 0 0 #D06B6B;
}

.c-btn--primary--small {
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 0.9375rem 1.25rem;
  width: fit-content;
  height: auto;
  gap: 0.625rem;
  box-shadow: 0 0.25rem 0 #D06B6B;
}

.c-btn--primary--small::after {
  position: static;
}

.c-btn--primary:hover {
  transform: translateY(0.25rem);
}

.c-btn--gray {
  background-color: #c9c9c9;
  color: var(--color-text);
  box-shadow: 0 0.375rem 0 #969696;
}

.c-btn--gray:hover {
  opacity: 1;
  transform: translateY(0.375rem);
  box-shadow: 0 0 0 #969696;
}

.c-btn--line {
  background-color: #06C755;
  box-shadow: 0 0.375rem 0 #2B9A59;
}

.c-btn--line::before {
  content: '';
  background: url(../img/icon/line.svg) no-repeat center / contain;
  aspect-ratio: 1;
  width: 2.6875rem;
  height: auto;
  margin-block: auto;
  position: absolute;
  inset: 0 auto 0 1.5625rem;
}

.c-btn--line:hover {
  opacity: 1;
  transform: translateY(0.375rem);
  box-shadow: 0 0 0 #2B9A59;
}

.c-btn--mail {
  background-color: var(--color-main);
  box-shadow: 0 0.375rem 0 #D06B6B;
}

.c-btn--mail::before {
  content: '';
  background: url(../img/icon/mail.svg) no-repeat center / contain;
  aspect-ratio: 1;
  width: 2.8125rem;
  height: auto;
  margin-block: auto;
  position: absolute;
  inset: 0 auto 0 1.5625rem;
}

.c-btn--mail:hover {
  opacity: 1;
  transform: translateY(0.375rem);
  box-shadow: 0 0 0 #D06B6B;
}

@media (max-width:768px) {
  .c-btn {
    gap: 0.3125rem;
    height: 3.75rem;
    margin-inline: auto;
  }

  .c-btn::after {
    width: 0.75rem;
    inset-inline-end: 0.9375rem;
  }

  .c-btn--primary {
    box-shadow: 0 0.25rem 0 #D06B6B;
  }

  .c-btn--primary:hover {
    transform: translateY(0.25rem);
  }

  .c-btn--gray {
    box-shadow: 0 0.25rem 0 #969696;
  }

  .c-btn--gray:hover {
    transform: translateY(0.25rem);
  }

  .c-btn--line {
    box-shadow: 0 0.25rem 0 #2B9A59;
  }

  .c-btn--line::before {
    width: 1.875rem;
    inset-inline-start: 1.25rem;
  }

  .c-btn--line:hover {
    transform: translateY(0.25rem);
  }

  .c-btn--mail {
    box-shadow: 0 0.25rem 0 #D06B6B;
  }

  .c-btn--mail::before {
    width: 1.875rem;
    inset-inline-start: 1.25rem;
  }

  .c-btn--mail:hover {
    transform: translateY(0.25rem);
  }
}

/* ============================================================
   Component: Link
   ============================================================ */
.c-link--underline {
  color: var(--color-main);
  font-weight: 700;
  text-decoration: underline;
}

.c-link--underline:hover {
  color: var(--color-main-dark);
  text-decoration: none;
}

/* ============================================================
   Component: List
   ============================================================ */
.c-list--desc {
  text-indent: -1em;
  padding-inline-start: 1em;
}

.c-list--desc li::before {
  content: "・";
}

.c-list--number {
  list-style: decimal;
  padding-inline-start: 1.3em;
}

/* ============================================================
   Component: Arrow Circle
   ============================================================ */
.c-arrow-circle {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background-color: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-arrow-circle::after {
  content: '';
  width: 0.75rem;
  height: 0.75rem;
  border-top: 0.125rem solid var(--color-white);
  border-right: 0.125rem solid var(--color-white);
  transform: rotate(45deg) translate(-0.125rem, 0.125rem);
  display: block;
}

/* ============================================================
   Component: FAQ Item
   ============================================================ */
.c-faq-item {
  border-block-end: 1px solid #DAD0D0;
  display: flex;
  padding-block: 2.5rem;
}

.c-faq-item:first-child {
  padding-block-start: 0;
}

.c-faq-item dt {
  border-inline-end: 1px solid #DAD0D0;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  gap: 0.625rem;
  padding: 1.25rem;
  position: relative;
  width: 23.75rem;
  max-width: 35%;
}

.c-faq-item dt::before {
  content: "Q.";
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-main);
  flex-shrink: 0;
  line-height: 1.6;
}

.c-faq-item::after {
  content: '+';
  background-color: var(--color-main);
  color: #fff;
  border-radius: 50%;
  aspect-ratio: 1;
  width: 1.5rem;
  height: auto;
  flex-shrink: 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: 0;
  margin-inline: auto;
  position: absolute;
  inset: calc(100% - 0.75rem) 0 auto;
}

.c-faq-item.is-open::after {
  content: '−';
}

.c-faq-item dd {
  flex: 1;
  padding: 1.25rem 1.25rem 1.25rem 5.625rem;
}

/* ddはoverflow制御のみ。paddingをinnerに移しmax-height:0でも
   paddingが見えるレンダリング問題を回避する */
.c-faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

@media (min-width: 1025px) {
  .c-faq-item dt {
    cursor: default;
    pointer-events: none;
  }

  .c-faq-item::after {
    display: none;
  }

  .c-faq-item .c-faq-item__answer {
    overflow: visible;
    max-height: none;
    transition: none;
  }
}

@media (max-width: 1024px) {
  .c-faq-item {
    flex-direction: column;
    padding-block: 0;
  }

  .c-faq-item:first-child {
    border-block-start: 1px solid #DAD0D0;
  }

  .c-faq-item dt {
    border-inline-end: 0;
    width: 100%;
    max-width: 100%;
    padding: 1.875rem 0;
  }

  .c-faq-item__answer-inner {
    padding-block-end: 1.875rem;
  }

  /* .c-faq-item ddのpadding(1.25rem)を0で上書きしclipを確実にする */
  .c-faq-item .c-faq-item__answer {
    padding: 0;
  }
}

/* ============================================================
   Component: Flow Step
   ============================================================ */
.c-flow-step {
  display: flex;
  gap: 4.6875rem;
  align-items: flex-start;
  position: relative;
  z-index: 0;
}

.c-flow-step:not(:last-child) {
  min-height: 21.875rem;
  padding-block-end: 2.5rem;
}

.c-flow-step:not(:last-child)::after {
  content: "";
  background-color: var(--color-main);
  width: 1px;
  position: absolute;
  inset: 0 auto 0 5rem;
  z-index: -1;
}

.c-flow-step__number {
  flex-shrink: 0;
  aspect-ratio: 1;
  width: 10rem;
  height: auto;
  border-radius: 50%;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.c-flow-step__number::before {
  content: counter(number, decimal-leading-zero);
  counter-increment: number 1;
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-main);
  line-height: 1;
  letter-spacing: 0;
}

.c-flow-step__number img {
  filter: brightness(0) saturate(100%) invert(80%) sepia(13%) saturate(7095%) hue-rotate(307deg) brightness(111%) contrast(78%);
}

.c-flow-step__content {
  flex: 1;
  width: 51.25rem;
  max-width: 100%;
}

.c-flow-step__title {
  font-size: clamp(1rem, 0.886rem + 0.485vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.c-flow-step__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-block-start: 1.875rem;
}

@media (max-width:768px) {
  .c-flow-step {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .c-flow-step:not(:last-child) {
    padding-block-end: 0;
    min-height: auto;
  }

  .c-flow-step:not(:last-child)::after {
    height: 3.75rem;
    position: static;
    margin-block-start: 0.625rem;
  }

  .c-flow-step__title {
    text-align: center;
  }

  .c-flow-step__cta {
    gap: 0.625rem;
    margin-block-start: 1.25rem;
  }
}


/* ============================================================
スクロールすると用度がフェードイン
   ============================================================ */
.js-inview {
  transform: translateY(3.125rem);
  opacity: 0;
  transition: transform 1s, opacity 1s;
}

.js-inview.is-show {
  transform: translateY(0);
  opacity: 1;
}

.js-inview_delay {
  transform: translateY(3.125rem);
  opacity: 0;
}

.js-inview_delay.is-show {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  0% {}

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

/* ============================================================
   Site Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-white);
  height: 5.625rem;
  display: flex;
  align-items: stretch;
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 4.0625rem;
  gap: 0;
}

.site-header__logo {
  flex-shrink: 0;
  margin-right: auto;
  display: flex;
  align-items: center;
}

.site-header__nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 5.625rem;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(255 255 255 / 90%);
  backdrop-filter: blur(0.625rem);
  z-index: 99;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}

.site-header__nav>ul {
  width: 50rem;
  max-width: 90%;
}

.site-header__nav>ul a {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.25rem;
  border-block-end: 1px solid var(--color-main);
}

.site-header__nav a:hover {
  color: var(--color-main);
}

.site-header__btn-wrap {
  display: flex;
  flex-shrink: 0;
}

.site-header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0 1.25rem;
  height: 100%;
  width: 15.625rem;
  position: relative;
  text-decoration: none;
  transition: opacity var(--transition);
}

.site-header__btn:hover {
  opacity: 0.9;
}

.site-header__btn--line {
  background-color: #06c755;
}

.site-header__btn--mail {
  background-color: var(--color-main);
}

.site-header__btn-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.15em;
  line-height: 1.4;
}

.site-header__hamburger {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.375rem;
  height: 100%;
  width: 5.625rem;
  cursor: pointer;
  padding: 0 1.875rem;
}

.site-header__hamburger span {
  display: block;
  height: 0.125rem;
  background-color: var(--color-main);
  border-radius: 0.125rem;
  transition: var(--transition);
  width: 100%;
}

.site-header__hamburger span:last-child {
  width: 70%;
}

.site-header__hamburger.is-open {
  gap: 0;
}

.site-header__hamburger.is-open span:first-child {
  width: 100%;
  transform: translateY(1px) rotate(45deg);
}

.site-header__hamburger.is-open span:last-child {
  width: 100%;
  transform: translateY(-1px) rotate(-45deg);
}

/* Mobile nav overlay */
.site-header__nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-header__nav.is-open .site-header__nav-item {
  font-size: 1.125rem;
}


@media (min-width: 1025px) {
  .site-header__nav__tel-wrap {
    display: none;
  }
}

@media (max-width: 1024px) {
  .site-header__btn-wrap {
    display: none;
  }

  .site-header__nav__tel-wrap {
    flex-direction: column;
  }

  .site-header__nav__tel-wrap a {
    height: 4.375rem;
  }
}

@media (max-width:768px) {
  .site-header {
    height: 3.125rem;
  }

  .site-header__inner {
    padding: 0 1.25rem;
  }

  .site-header__logo img {
    width: 8.125rem;
  }

  .site-header__hamburger {
    width: 3.75rem;
    padding: 0 0.9375rem;
  }

  .site-header__nav {
    top: 3.125rem;
    padding: 0 1.25rem 3.75rem;
  }

  .site-header__nav>ul a {
    font-size: 0.875rem;
    padding: 0.625rem;
  }

}

/* ============================================================
   Fixed Nav
   ============================================================ */
.p-fixed__nav {
  position: fixed;
  inset: auto 0 0 0;
  width: 100%;
  z-index: 100;
}

.p-fixed__nav-menu {
  display: flex;
}

.p-fixed__nav-btn {
  width: 50%;
}

.p-fixed__nav-btn a {
  color: #fff;
  font-weight: 700;
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  position: relative;
  z-index: 0;
  height: 3.75rem;
}

.p-fixed__nav-btn a::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 1;
  width: 1.875rem;
  height: auto;
}

.p-fixed__nav-btn a:hover {
  opacity: 0.7;
}

.p-fixed__nav-btn--line a {
  background-color: #06c755;
}

.p-fixed__nav-btn--line a::before {
  background-image: url(../img/icon/line.svg);
}

.p-fixed__nav-btn--mail a {
  background-color: var(--color-main);
}

.p-fixed__nav-btn--mail a::before {
  background-image: url(../img/icon/mail.svg);
}


/* ============================================================
   Back to Top
   ============================================================ */
.p-back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: var(--color-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background-color 0.2s;
  z-index: 101;
}

.p-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.p-back-to-top:hover {
  background-color: var(--color-main-dark);
}

.p-back-to-top__arrow {
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .p-back-to-top {
    bottom: 4.5rem;
    right: 1rem;
  }
}


/* ============================================================
   Hero (MV)
   ============================================================ */
.p-hero {
  padding: 0 0 11.5625rem 4.0625rem;
  position: relative;
}

.p-hero::after {
  content: "";
  background: url(../img/common/circle.svg) no-repeat center / contain;
  aspect-ratio: 1;
  width: 40.625rem;
  max-width: 43vw;
  height: auto;
  animation: rotation 20s linear infinite;
  position: absolute;
  inset: auto -10vw -21vw auto;
  z-index: 1;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.p-hero__inner {
  position: relative;
}

.p-hero__slide {
  position: relative;
  overflow: hidden;
}

.p-hero__inner .p-hero__swiper .swiper-slide {
  border-radius: 0 0 0 2.5rem;
  overflow: hidden;
}

.p-hero__swiper .video,
.p-hero__swiper .p-hero__slide img {
  object-fit: cover;
  width: 100%;
  min-height: 40.625rem;
  height: 85vh;
}

.p-hero__swiper .video {
  object-position: top;
}

.p-hero__swiper .swiper-slide-active .swiper-img,
.p-hero__swiper .swiper-slide-duplicate-active .swiper-img,
.p-hero__swiper .swiper-slide-prev .swiper-img {
  animation: heroZoom 10s normal both;
  transition: none;
}

@keyframes heroZoom {
  from {
    transform: scale(1.10);
  }

  to {
    transform: scale(1.0);
  }
}

.p-hero__body {
  position: absolute;
  inset: auto auto 2.5rem 3.4375rem;
  z-index: 1;
  filter: drop-shadow(0rem 0rem 0.625rem rgba(0, 0, 0, 0.4));
}

.p-hero__tagline {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.p-hero__heading {
  font-size: clamp(1.375rem, 0.949rem + 1.818vw, 2.313rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.p-hero__scroll {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: absolute;
  inset: 31.25rem auto auto 1.875rem;
  z-index: 1;
}

.p--hero__scroll-label {
  color: #fff;
  line-height: 1;
  transform-origin: left bottom;
  translate: 0.5em;
  rotate: -90deg;
}

.p-hero__scroll-line {
  width: 1px;
  height: 7.5rem;
  background: #fff;
  animation: pathmove 2s ease-in-out infinite;
}

@keyframes pathmove {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
    opacity: 0;
  }
}

.p-hero__bg {
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
}

.p-hero__bg .p-hero__swiper .video,
.p-hero__bg .p-hero__swiper .p-hero__slide img {
  height: 32.5rem;
}

.p-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(226, 141, 141, 0.5);
  backdrop-filter: blur(0.625rem);
  z-index: 1;
}

@media (max-width:768px) {
  .p-hero {
    padding: 0 0 clamp(14.688rem, 12.004rem + 11.45vw, 17.5rem) 1.25rem;
  }

  .p-hero::after {
    width: 10.625rem;
    max-width: 100%;
    inset: auto -3.125rem -5.3125rem auto;
  }

  .p-hero__swiper .video,
  .p-hero__swiper .p-hero__slide img {
    min-height: 18.75rem;
    height: 56vw;
  }

  .p-hero__bg .p-hero__swiper .video,
  .p-hero__bg .p-hero__swiper .p-hero__slide img {
    min-height: 22.5rem;
    height: 56vw;
  }

  .p-hero__body {
    inset: calc(100% - 6.5625rem) auto auto -0.625rem;
  }

  .p-hero__tagline {
    font-size: 0.75rem;
  }

  .p-hero__scroll {
    align-items: center;
    margin-inline: 0;
    inset: auto 0 0;
  }

  .p--hero__scroll-label {
    transform-origin: left bottom;
    translate: none;
    rotate: none;
  }

  .p-hero__scroll-line {
    height: 5rem;
  }
}


/* ============================================================
   Business Section
   ============================================================ */
.p-business {
  padding-block-end: 7.5rem;
}

.p-business__body {
  /* padding: 6.25rem 1.25rem; */
  padding: 4rem 1.25rem;
  background: rgba(255, 255, 255, 0.6);
  border: 0.5rem solid #F9EEEE;
  border-radius: 3.125rem;
}

.p-business__lead {
  font-size: clamp(1rem, 0.773rem + 0.97vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 3.75rem;
  text-align: center;
}

.p-business__text {
  text-align: center;
  line-height: 2.2;
}

@media (max-width: 768px) {
  .p-business__body {
    padding: 2.5rem 0.9375rem;
    border-width: 0.25rem;
    border-radius: 1.25rem;
  }

  .p-business__lead {
    margin-bottom: 2.5rem;
  }

  .p-business__text {
    text-align: left;
    line-height: 2;
  }
}

.p-business__service {
  margin-block-start: 6.25rem;
}

.p-business__service-img img {
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
}

.p-business__service-title {
  font-weight: 700;
  letter-spacing: 0.1em;
}

.p-business__service--event {
  margin-bottom: 7.5rem;
  display: flex;
  flex-direction: column;
  gap: 6.67%;
  align-items: center;
}

.p-business__service-img--event {
  flex-shrink: 0;
  width: 36%;
  max-width: 26.875rem;
}

.p-business__service-img--event img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.p-business__service-content--event {
  flex: 1;
  padding-block-start: 10.625rem;
}

.p-business__service-title--event {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.p-business__service-text--event {
  font-size: clamp(1rem, 0.943rem + 0.242vw, 1.125rem);
  margin-block-end: 2.5rem;
  padding-block-start: 2.5rem;
}

.p-business__service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7.5rem 2.5rem;
}

.p-business__service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
}

.p-business__service-card__img {
  position: relative;
}

.p-business__service-card__img::before {
  content: "";
  position: absolute;
  aspect-ratio: 1;
  width: 7.875rem;
  height: auto;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, #E28D8D 0%, rgba(255, 107, 107, 0) 100%);
  opacity: 0.3;
  z-index: -1;
}

.p-business__service-card:nth-child(3n+1) .p-business__service-card__img::before {
  inset: -3.125rem auto auto -3.125rem;
}

.p-business__service-card:nth-child(3n+2) .p-business__service-card__img::before {
  inset: auto -3.125rem -3.125rem auto;
}

.p-business__service-card:nth-child(3n+3) .p-business__service-card__img::before {
  inset: -3.125rem -3.125rem auto auto;
}

.p-business__service-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-business__service-card__title {
  font-size: clamp(1rem, 0.886rem + 0.485vw, 1.25rem);
  text-align: center;
}

.p-business__service-card__text {
  padding-block-start: 1.25rem;
}

.p-business__service-card__link {
  margin: 1.875rem auto 0;
}

.p-business__catch {
  margin-block-start: 3.125rem;
}

.p-business__catch img {
  width: 100%;
}

@media (min-width:1025px) {
  .p-business__service-card:nth-child(3n+2) {
    margin-block-start: 5rem;
  }
}

@media (min-width:769px) {
  .p-business {
    background: url(../img/common/shape_circle.svg) no-repeat left calc(50% - 39.375rem) top 13.125rem, url(../img/common/shape_circle.svg) no-repeat left calc(50% + 34.125rem) top 50rem / 37.1875rem;
  }

  .p-business__service--event {
    flex-direction: row;
    align-items: flex-start;
  }

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

@media (max-width: 1024px) {
  .p-business__service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-business__service-card:nth-child(even) {
    margin-block-start: 5rem;
  }
}

@media (max-width: 768px) {
  .p-business {
    padding-block-end: 1.875rem;
  }

  .p-business__service {
    margin-block-start: 3.75rem;
  }

  .p-business__service-img img {
    width: 12.1875rem;
  }

  .p-business__service--event {
    align-items: center;
    gap: 1.5625rem;
    margin-block-end: 3.75rem;
  }

  .p-business__service-img--event {
    max-width: none;
    width: auto;
  }

  .p-business__service-content--event {
    padding-block-start: 0;
  }

  .p-business__service-text--event {
    margin-block-end: 1.875rem;
    padding-block-start: 1.25rem;
  }

  .p-business__service-grid {
    gap: 3.75rem;
  }

  .p-business__catch {
    margin-block-start: 1.25rem;
  }

  .p-business__catch img {
    margin-inline-start: auto;
    width: 80vw;
  }

  /* スマホ時アコーディオン：イベント事業 */
  .p-business__service-title--event {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .p-business__service-card__title::after,
  .p-business__service-title--event::after {
    content: '−';
    background-color: var(--color-main);
    color: #fff;
    border-radius: 50%;
    aspect-ratio: 1;
    width: 1.5rem;
    height: auto;
    flex-shrink: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    letter-spacing: 0;
  }

  .p-business__service-card__title.is-open::after,
  .p-business__service-title--event.is-open::after {
    content: '+';
  }

  .p-business__service-event__collapse {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    padding-block-end: 0.25rem;
  }

  /* スマホ時アコーディオン：サービスカード */
  .p-business__service-card__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .p-business__service-card__collapse {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    padding-block-end: 0.25rem;
  }
}


/* ============================================================
   FLOW Section
   ============================================================ */
.p-flow {
  background-color: var(--color-bg-light);
}

.p-flow::before {
  mask: url(../img/common/frame_wave_02.webp) no-repeat center / 100% 100%;
  background: var(--color-bg-light);
}

.p-flow__steps {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  counter-reset: number 0;
}

@media (max-width: 768px) {
  .p-flow__steps {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
  }

  .c-flow-step__cta {
    justify-content: center;
  }
}

/* ============================================================
   Company Profile Section
   ============================================================ */
.p-company__row {
  display: flex;
  padding-block: 2.5rem;
  border-block-end: 1px solid #DAD0D0;
}

.p-company__row:first-child {
  border-block-start: 1px solid #DAD0D0;
}

.p-company__term {
  font-weight: 700;
  min-width: 12.5rem;
  flex-shrink: 0;
  padding-inline: 1.25rem;
  width: 12.5rem;
}

.p-company__desc {
  padding-inline: 1.25rem;
  flex: 1;
}

@media (min-width:769px) {
  .p-company {
    background: url(../img/common/shape_circles.svg) no-repeat center top 28.125rem;
  }
}

@media (max-width:768px) {
  .p-company__row {
    flex-direction: column;
    gap: 0.625rem;
    padding-block: 1.875rem;
  }

  .p-company__term {
    min-width: auto;
    padding-inline: 0;
    width: 100%;
  }

  .p-company__desc {
    padding-inline: 0;
    flex: 0;
  }
}

/* ============================================================
   FAQ Section
   ============================================================ */
.p-faq {
  background-image: url(../img/common/shape_circles_white.svg), url(../img/common/shape_circles_white.svg);
  background-repeat: no-repeat;
  background-position: center top 58.125rem, center bottom 12.5rem;
  background-color: #F6F3F3;
}

.p-faq::before {
  mask: url(../img/common/frame_wave_01.webp) no-repeat center / 100% 100%;
  background: #F6F3F3;
}

.p-faq__category+.p-faq__category {
  margin-block-start: 7.5rem;
}

.p-faq__category-title {
  font-size: clamp(1.125rem, 0.955rem + 0.727vw, 1.5rem);
  font-weight: 700;
  display: flex;
  gap: 3.125rem;
  padding-block: 0.4375rem;
}

.p-faq__category-title::before {
  content: "";
  background-color: var(--color-main);
  border-radius: 0.625rem;
  width: 0.375rem;
}

@media (min-width: 769px) {
  .p-faq__category-header {
    background-repeat: no-repeat;
    background-position: center right;
    background-size: auto 100%;
    border-radius: 0 12.5rem 12.5rem 0;
    display: flex;
    align-items: center;
    min-height: 13.75rem;
    margin-bottom: 3.75rem;
    overflow: hidden;
  }

  .p-faq__category--keiyaku .p-faq__category-header {
    background-image: url(../img/top/faq_title_01.webp);
  }

  .p-faq__category--business .p-faq__category-header {
    background-image: url(../img/top/faq_title_02.webp);
  }

  .p-faq__category--other .p-faq__category-header {
    background-image: url(../img/top/faq_title_03.webp);
  }
}

@media (max-width: 768px) {
  .p-faq__category+.p-faq__category {
    margin-block-start: 3.125rem;
  }

  .p-faq__category-header {
    margin-block-end: 2.5rem;
  }

  .p-faq__category-title {
    gap: 0.9375rem;
    padding-block: 0.1875rem;
  }
}

/* ============================================================
   NEWS Section
   ============================================================ */
.p-news {
  padding-block-end: 0;
}

.p-news__list {
  border-top: 1px solid var(--color-border);
}

.p-news__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 2.5rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
}

.p-news__date {
  font-family: var(--font-en);
  font-size: 0.875rem;
  flex-shrink: 0;
  width: 13.75rem;
  max-width: 20%;
}

a.p-news__item {
  padding-inline-end: 5rem;
  position: relative;
}

a.p-news__item::after {
  content: "";
  background: url(../img/icon/arrow_circle_fill_pink.svg) no-repeat center / contain;
  aspect-ratio: 1;
  width: 2.625rem;
  height: auto;
  margin-block: auto;
  position: absolute;
  inset: 0 1.25rem 0 auto;
}

a.p-news__item:hover {
  color: var(--color-main);
}

.p-news__title {
  line-height: 1.6;
  flex: 1;
}

@media (max-width:768px) {
  .p-news__item {
    flex-direction: column;
    align-items: normal;
    padding: 1.875rem 0;
  }

  a.p-news__item {
    padding-inline-end: 2.5rem;
  }

  a.p-news__item::after {
    width: 1.75rem;
    inset-inline-end: 0;
  }

  .p-news__date {
    font-size: 0.75rem;
    width: 100%;
    max-width: 100%;
  }
}

/* ============================================================
   Sky Lantern CTA
   ============================================================ */
.p-sky-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 7.5rem 11.25rem;
}

@media (max-width:768px) {
  .p-sky-cta {
    padding-block: 3.75rem;
  }
}


/* ============================================================
   Contact Section
   ============================================================ */
.p-contact {
  position: relative;
  background: url(../img/top/contact_bg.webp) repeat-y center top / 100%;
  color: var(--color-white);
  padding-block: 14.375rem 10rem;
}


/* Method sections (LINE / Phone / Form) */

.p-contact__method+.p-contact__method {
  padding-block-start: 7.5rem;
}

.p-contact__method-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
}

.p-contact__method-icon {
  margin-block-end: 1.875rem;
}

.p-contact__badge {
  margin-block-end: 0.625rem;
}

.p-contact__method-title {
  font-size: clamp(1.125rem, 0.955rem + 0.727vw, 1.5rem);
  font-weight: 700;
}

.p-contact__method-desc {
  margin-bottom: 2.5rem;
  text-align: center;
}

.p-contact__method-btn {
  display: flex;
  justify-content: center;
}

.p-contact__method-warning {
  text-align: center;
  margin-bottom: 5rem;
}

.p-contact__tel-number {
  width: fit-content;
  margin-inline: auto;
}

.p-contact__tel-number>div {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}

.p-contact__tel-number dt {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1.875rem;
}

.p-contact__tel-number dt::after {
  content: "";
  background-color: #fff;
  width: 4.0625rem;
  height: 1px;
}

.p-contact__tel-number a {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 500;
  text-decoration: underline;
}

.p-contact__tel-number a:hover {
  opacity: 0.7;
}

/* Contact Form */
.p-contact-form__row {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem 6.25rem;
  border-block-end: 1px solid #DAD0D0;
}

.p-contact-form__label {
  width: 13.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.9375rem;
  position: relative;
}

.p-contact-form__label--s {
  width: 13.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.9375rem;
  position: relative;
}

.p-contact-form__required::after {
  content: "必須";
  background-color: var(--color-main);
  border-radius: 6.25rem;
  color: var(--color-white);
  font-weight: 500;
  padding: 0.3125rem 0.9375rem;
  line-height: 1;
  position: absolute;
  inset: auto 0 auto auto;
}

.p-contact-form__input {
  color: var(--color-text);
  background: #fff;
  border: none;
  border-radius: 6.25rem;
  padding: 0.9375rem 1.875rem;
  width: 100%;
}

.p-contact-form__input::placeholder {
  color: #ccc;
}

.p-contact-form__select-wrap {
  flex: 1;
  position: relative;
  width: 100%;
}

.p-contact-form__select-wrap::after {
  content: "";
  background: url(../img/icon/arrow_select.svg) no-repeat center / contain;
  position: absolute;
  inset: 0 1.25rem 0 auto;
  margin-block: auto;
  aspect-ratio: 1;
  width: 1.0625rem;
  height: auto;
  pointer-events: none;
}

.p-contact-form__select {
  color: var(--color-text);
  flex: 1;
  background: #fff;
  border: none;
  border-radius: 6.25rem;
  padding: 0.9375rem 3.125rem 0.9375rem 1.875rem;
  width: 100%;
}

.p-contact-form__checkboxes {
  flex: 1;
}

.p-contact-form__checkboxes .wpcf7-list-item {
  display: block;
  width: 100%;
}

.p-contact-form__checkboxes label {
  display: block;
  width: 100%;
}

.p-contact-form__checkboxes input,
.p-contact-form__privacy input {
  appearance: auto;
}

.p-contact-form__textarea {
  color: var(--color-text);
  flex: 1;
  background: #fff;
  border: none;
  border-radius: 0.3125rem;
  padding: 0.9375rem 1.875rem;
  width: 100%;
}

.p-contact-form__textarea:focus {
  border-color: var(--color-white);
}

.p-contact-form__privacy {
  text-align: center;
  margin-block: 3.75rem;
}

.p-contact-form__privacy-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-white);
  font-size: 1rem;
  cursor: pointer;
}

.p-contact-form__privacy-label input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  accent-color: var(--color-main);
  cursor: pointer;
}

.p-contact-form__notes {
  width: fit-content;
  margin: 0 auto 2.5rem;
}

.p-contact-form__submit-wrap {
  display: flex;
  justify-content: center;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-not-valid-tip {
  background-color: var(--color-bg-light);
  border-radius: 0.625rem;
  padding: 0.3125rem 0.625rem;
  margin-block-start: 0.625rem;
}

@media (max-width: 1024px) {
  .p-contact-form__row {
    flex-direction: column;
    gap: 0.9375rem;
    padding: 1.875rem 0;
  }

  .p-contact-form__label {
    font-size: 1rem;
    width: 100%;
    padding-top: 0;
  }

  .p-contact-form__input,
  .p-contact-form__textarea {
    padding: 0.625rem 0.9375rem;
  }

  .p-contact-form__select-wrap::after {
    width: 0.75rem;
  }

  .p-contact-form__select {
    padding: 0.625rem 2.5rem 0.625rem 0.9375rem;
  }

  .p-contact-form__privacy {
    margin-block: 2.5rem;
    padding-inline: 1.875rem;
  }

  .p-contact-form__privacy label {
    display: flex;
    gap: 0.625rem;
  }

  .p-contact-form__privacy .wpcf7-list-item {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .p-contact {
    padding-block: 9.375rem 5rem;
  }

  .p-contact__method+.p-contact__method {
    padding-block-start: 3.75rem;
  }

  .p-contact__method-icon-wrap {
    margin-block-end: 1.25rem;
  }

  .p-contact__method-desc {
    text-align: left;
  }

  .p-contact__tel-number {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
  }

  .p-contact__tel-number>div {
    flex-direction: column;
    gap: 0;
  }

  .p-contact__tel-number dt {
    font-size: 1rem;
  }

  .p-contact__tel-number dt::after {
    display: none;
  }

  .p-contact__method-warning {
    text-align: left;
    margin-bottom: 1.875rem;
  }

  .p-contact-form__privacy {
    text-align: left;
  }
}

.p-contact__confirm .p-contact-form__label {
  padding-block-start: 0;
}

.p-contact__confirm .p-contact-form__submit-wrap {
  margin-block-start: 2.5rem;
  gap: 0.9375rem;
}

.wpcf7-spinner {
  display: none;
}

.p-contact:has(.p-contact__confirm),
.p-contact:has(.p-contact__thanks) {
  padding-block: 5rem;
}

.p-contact__thanks .c-btn {
  margin: 2.5rem auto 0;
}

.wpcf7 .wpcf7-submit:disabled {
  opacity: 0.7;
}


/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background-color: var(--color-main);
  padding: 3.75rem 1.25rem 2.5rem;
  position: relative;
}

.site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-block-end: 3.75rem;
  gap: 0;
}

.site-footer__nav ul li {
  position: relative;
}

.site-footer__nav>ul li+*::before {
  content: "";
  background-color: #fff;
  width: 1px;
  height: 0.9375rem;
  margin-block: auto;
  position: absolute;
  inset: 0 auto 0 0;
}

.site-footer__nav>ul a {
  color: var(--color-white);
  padding-inline: 1.5625rem;
}

.site-footer__nav>ul a:hover {
  opacity: 0.7;
}

.site-footer__copy {
  text-align: center;
  color: var(--color-white);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .site-footer {
    padding-block-end: 6.25rem;
  }

  .site-footer__nav ul {
    margin-block-end: 3.125rem;
  }

  .site-footer__nav ul li+*::before {
    display: none;
  }

  .site-footer__nav>ul li {
    width: 50%;
  }

  .site-footer__nav>ul li:last-child {
    width: 100%;
  }

  .site-footer__nav>ul a {
    display: block;
    text-align: center;
    padding: 0.5rem;
  }

  .site-footer__copy {
    font-size: 0.75rem;
  }
}


/* ============================================================
   Sub-page FV (First View / Main Visual)
   ============================================================ */
.fv {
  position: relative;
  height: 25rem;
  overflow: hidden;
}

/* 右側：画像エリア（幅の約66.7% = 960/1440） */
.fv--img {
  border-radius: 0 0 0 2.5rem;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  width: 66.67%;
  height: 100%;
  z-index: 0;
}

.fv--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 左側：白背景ブロック（幅の約52.8% = 760/1440、高さ70% = 280/400） */
.fv--title-wrap {
  border-radius: 0 0 2.5rem 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 52.78%;
  height: 70%;
  background: #fff;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: calc(50vw - 31.25rem) 1.25rem;
}

@media (max-width: 1040px) {
  .fv--title-wrap {
    padding-inline-start: 1.25rem;
  }
}

/* テキストグループ：左端から約15.3% (220/1440) の位置 */
.fv--en {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(3.5rem, 1.682rem + 7.758vw, 7.5rem);
  color: var(--color-main);
  letter-spacing: 0.15em;
  line-height: 1;
  z-index: 2;
  opacity: 0.2;
  position: absolute;
  inset: calc(100% - 0.7em) auto auto auto;
  text-transform: uppercase;
}

.fv--txt {
  font-size: clamp(1.25rem, 0.767rem + 2.061vw, 2.313rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  z-index: 2;
}

@media (max-width: 768px) {
  .fv {
    height: 15rem;
  }

  /* SP：画像は右側に寄せて幅の約74.7% (280/375) */
  .fv--img {
    left: auto;
    right: 0;
    width: 74.67%;
    top: 0;
  }

  /* SP：左側白背景オーバーレイを調整 */
  .fv--title-wrap {
    width: 85%;
    height: 66.67%;
  }

  .fv--en {
    font-weight: 700;
  }
}

/* ============================================================
   Page: Privacy Policy
   ============================================================ */
/* イントロ文 */
.p-privacy__intro {
  margin-block-end: 7.5rem;
}

/* 各条文を縦に並べるコンテナ */
.p-privacy__sections {
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
}

/* 各条文ブロック */
.p-privacy__item {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}

.p-privacy__body p+p,
.p-privacy__body p+ul,
.p-privacy__body ul+p {
  margin-block-start: 1em;
}

/* お問い合わせ先 */
.p-privacy__address {
  margin-block-start: 1em;
}

@media (max-width: 768px) {

  .p-privacy.l-section {
    padding-block: 5rem 10rem;
  }

  .p-privacy__intro {
    margin-block-end: 5rem;
  }

  .p-privacy__sections {
    gap: 5rem;
  }

  .p-privacy__item {
    gap: 2.5rem;
  }
}

.p-news_single {
  padding-block: 0 10rem;
}

.p-news_single .fv--txt {
  display: flex;
  gap: 1.875rem;
  align-items: center;
  padding-block: 7.5rem;
}

.p-news_single .fv--txt::before,
.p-news_single .fv--txt::after {
  content: "";
  background: var(--color-main);
  height: 1px;
  flex: 1px;
}

.p-news_single .fv--txt .text {
  flex-shrink: 0;
}

.p-news_single time {
  font-family: var(--font-en);
  font-size: 0.75rem;
  text-align: right;
  margin-block: 1.25rem 5rem;
  display: block;
}

.p-news_single__img {
  text-align: center;
  margin-block-end: 3.75rem;
}

.p-news_single__img img {
  width: 50rem;
}

.p-news_single__btn {
  margin: 5rem auto 0;
}

@media (max-width: 768px) {
  .p-news_single {
    padding-block: 0 5rem;
  }

  .p-news_single .fv--txt {
    padding-block: 3.75rem;
  }

  .p-news_single time {
    margin-block-end: 2.5rem;
  }

  .p-news_single__btn {
    margin-block-start: 2.5rem;

  }
}

/* Contact Form Consent Accordion */
.p-contact__consent {
  margin-block-end: 2rem;
}

/* 全体ボックス */
.p-contact__consent-label {
  display: flex;
  align-items: flex-start;
  max-width: 48rem;
  margin-inline: auto;
  padding: 1.25rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.p-contact__consent-label:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ネイティブcheckboxをアクセシビリティを維持しつつ非表示 */
.p-contact__consent-checkbox {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* テキスト部分：左パディングでカスタムチェックボックスのスペース確保 */
.p-contact__consent-text {
  position: relative;
  padding-left: 2.25rem;
  color: var(--color-white);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* カスタムチェックボックス（□） */
.p-contact__consent-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.375rem;
  height: 1.375rem;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  transition: background var(--transition), border-color var(--transition);
}

/* チェックマーク（✓）— デフォルト非表示 */
.p-contact__consent-text::after {
  content: '';
  position: absolute;
  left: calc(1.375rem / 2);
  top: calc(0.2em + 1.375rem / 2);
  width: 0.5rem;
  height: 0.3rem;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}

/* チェック済み：□を塗りつぶす */
.p-contact__consent-checkbox:checked ~ .p-contact__consent-text::before {
  background: var(--color-main);
  border-color: var(--color-main);
}

/* チェック済み：✓を表示 */
.p-contact__consent-checkbox:checked ~ .p-contact__consent-text::after {
  opacity: 1;
}

/* チェック済み：ラベル全体の強調 */
.p-contact__consent-label:has(.p-contact__consent-checkbox:checked) {
  background: rgba(226, 141, 141, 0.12);
  border-color: rgba(226, 141, 141, 0.6);
}

/* キーボード操作時のフォーカス表示 */
.p-contact__consent-checkbox:focus-visible ~ .p-contact__consent-text::before {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

/* アコーディオン折り畳みパネル */
.p-contact__form-collapse {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

@media (max-width: 768px) {
  .p-contact__consent-label {
    padding: 1rem 1.25rem;
  }

  .p-contact__consent-text {
    font-size: 0.875rem;
  }
}