@charset "UTF-8";
:root {
  --header-h: 60px;
  --footer-btn-h: 75px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --footer-h: calc(var(--footer-btn-h) + var(--safe-bottom));
  --bg-safe-color: #fdf5f5;
}
@media screen and (max-width: 402px) {
  :root {
    --header-h: 50px;
    --footer-btn-h: 70px;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #4a3535;
  background-color: var(--bg-safe-color);
}

img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: bottom;
  pointer-events: none;
}

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

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  z-index: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #f0e0e0;
}
.l-header__logo {
  margin: 0;
}
.l-header__logo img {
  height: 50px;
  width: auto;
  padding: 5px 0;
}

.l-hamburger {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 44px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 201;
}
.l-hamburger__line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #4a3535;
  border-radius: 2px;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.l-hamburger.is-active .l-hamburger__line:nth-child(1) {
  -webkit-transform: translateY(7.75px) rotate(45deg);
          transform: translateY(7.75px) rotate(45deg);
}
.l-hamburger.is-active .l-hamburger__line:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.l-hamburger.is-active .l-hamburger__line:nth-child(3) {
  -webkit-transform: translateY(-7.75px) rotate(-45deg);
          transform: translateY(-7.75px) rotate(-45deg);
}

.l-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 210;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.l-nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.l-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: #fff;
  z-index: 220;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 calc(var(--safe-bottom) + 20px);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
          box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
}
.l-nav.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.l-nav__close {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border: none;
  border-bottom: 1px solid #f0e0e0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-nav__close span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #4a3535;
  position: absolute;
}
.l-nav__close span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-nav__close span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-nav__logo {
  padding: 24px 24px 20px;
  text-align: center;
  border-bottom: 1px solid #f5eded;
}
.l-nav__logo img {
  height: 36px;
  width: auto;
}
.l-nav__list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.l-nav__item {
  border-bottom: 1px solid #f5eded;
}
.l-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.95rem;
  color: #4a3535;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.l-nav__link:hover, .l-nav__link:active {
  background: #fdf0f0;
}
.l-nav__link--toggle {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}
.l-nav__arrow {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #7a6060;
  border-bottom: 1.5px solid #7a6060;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: -2px;
}
[aria-expanded=true] .l-nav__arrow {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-top: 4px;
}
.l-nav__sub {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  background: #faf7f7;
}
.l-nav__sub.is-open {
  max-height: 400px;
}
.l-nav__sub-link {
  display: block;
  padding: 13px 24px 13px 36px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.88rem;
  color: #7a6060;
  text-decoration: none;
  border-bottom: 1px solid #efe8e8;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.l-nav__sub-link::before {
  content: "— ";
  color: #d4787e;
}
.l-nav__sub-link:hover, .l-nav__sub-link:active {
  background: #fdf0f0;
}

.l-main {
  width: 100%;
  height: 100%;
  padding-top: var(--header-h);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.l-swiper {
  width: 100%;
  height: 100%;
}

.l-footer {
  position: fixed;
  bottom: -120px;
  left: 0;
  width: 100%;
  height: var(--footer-btn-h);
  padding-bottom: var(--safe-bottom);
  background: rgba(255, 255, 255, 0.95);
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: bottom 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: bottom 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.l-footer.is-visible {
  bottom: 0;
}
.l-footer__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  max-width: 400px;
  height: 50px;
  background: #06C755;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 402px) {
  .l-footer__btn {
    height: 40px;
    font-size: 0.9rem;
  }
}
.l-footer__btn:hover {
  opacity: 0.9;
}

.p-section-header {
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 402px) {
  .p-section-header {
    margin-bottom: 20px;
  }
}
.p-section-header__label {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.85rem;
  color: #d4787e;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}
.p-section-header__title {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.8rem;
  font-weight: normal;
  color: #4a3535;
  margin: 0;
  line-height: 1.4;
}
@media screen and (max-width: 402px) {
  .p-section-header__title {
    font-size: 1.5rem;
  }
}
.p-section-header__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #d4787e;
  margin: 12px auto 0;
}

.p-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
@media screen and (max-width: 402px) {
  .p-check-list {
    gap: 10px;
    margin-bottom: 20px;
  }
}

.p-check-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #f0dede;
  border-radius: 8px;
  padding: 14px 16px;
}
@media screen and (max-width: 402px) {
  .p-check-item {
    padding: 10px 14px;
    gap: 10px;
  }
}
.p-check-item__mark {
  color: #d4787e;
  font-size: 1.1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
}
.p-check-item__text {
  font-size: 1rem;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  color: #4a3535;
  line-height: 1.4;
}
@media screen and (max-width: 402px) {
  .p-check-item__text {
    font-size: 0.9rem;
  }
}
.p-check-item__text strong {
  color: #d4787e;
  font-weight: bold;
}
.p-check-list--recommend .p-check-item {
  padding: 16px 18px;
}
.p-check-list--recommend .p-check-item .p-check-item__text {
  font-size: 1.05rem;
}
@media screen and (max-width: 402px) {
  .p-check-list--recommend .p-check-item .p-check-item__text {
    font-size: 0.95rem;
  }
}
.p-check-list--service .p-check-item {
  background: #fdf0f0;
  border-color: #e8a4a8;
}

.c-btn-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 360px;
  min-height: 58px;
  background: #06C755;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.4;
  -webkit-box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
          box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
  margin: 0 auto;
  padding: 12px 20px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 402px) {
  .c-btn-line {
    font-size: 0.9rem;
    min-height: 50px;
  }
}
.c-btn-line:hover {
  opacity: 0.9;
}

.c-title-english {
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 2.2rem;
  font-weight: normal;
  margin: 0 0 5px;
  letter-spacing: 0.05em;
  color: #4a3535;
}
@media screen and (max-width: 402px) {
  .c-title-english {
    font-size: 1.8rem;
  }
}

.p-slide {
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-slide--scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (min-width: 1025px) and (min-height: 800px) {
  .p-slide--scroll {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 35px 20px calc(var(--footer-h) + 40px);
  position: relative;
}
@media screen and (max-width: 402px) {
  .p-container {
    padding: 20px 15px calc(var(--footer-h) + 30px);
  }
}
@media screen and (min-width: 2048px) and (min-height: 1200px) {
  .p-container {
    max-width: 750px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.p-container[data-step]::before {
  content: attr(data-step);
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 402px) {
  .p-container[data-step]::before {
    font-size: 3.5rem;
    top: 12px;
    right: 15px;
  }
}
.step06 .p-container[data-step]::before {
  color: rgba(255, 255, 255, 0.06);
}

/* Step 01: トップ画像 */
.step01 {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--bg-safe-color);
}
.step01__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.step01__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}

/* Step 02: 体験会タイトル & 期間 */
.step02 {
  background-color: #fdf0f0;
}

.p-intro-header {
  text-align: center;
  margin-bottom: 30px;
}

.p-intro-label {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.9rem;
  color: #d4787e;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}

.p-intro-sub {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  color: #7a6060;
  margin: 0 0 10px;
}

.p-intro-title {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 2rem;
  font-weight: normal;
  color: #4a3535;
  margin: 0 0 20px;
  line-height: 1.3;
}
@media screen and (max-width: 402px) {
  .p-intro-title {
    font-size: 1.7rem;
  }
}

.p-intro-date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: #d4787e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}
@media screen and (max-width: 402px) {
  .p-intro-date {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}
.p-intro-date__icon {
  font-size: 1.1rem;
}

.p-intro-body {
  text-align: center;
  background: #fff;
  border: 1px solid #f0dede;
  border-radius: 12px;
  padding: 25px 20px;
}
@media screen and (max-width: 402px) {
  .p-intro-body {
    padding: 18px 15px;
  }
}

.p-intro-copy {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #4a3535;
  margin: 0;
}
@media screen and (max-width: 402px) {
  .p-intro-copy {
    font-size: 1rem;
  }
}
.p-intro-copy--strong {
  font-size: 1.5rem;
  color: #d4787e;
  font-weight: bold;
  margin: 10px 0;
}
@media screen and (max-width: 402px) {
  .p-intro-copy--strong {
    font-size: 1.3rem;
  }
}

/* Step 03: 来店増加 & コンセプト */
.step03 {
  background-color: #f7f0e8;
}

.p-notice-box {
  background: #fdf0f0;
  border-radius: 0 8px 8px 0;
  padding: 20px;
  margin-bottom: 35px;
  font-weight: bold;
}
@media screen and (max-width: 402px) {
  .p-notice-box {
    padding: 15px;
    margin-bottom: 25px;
  }
}
.p-notice-box__text {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4a3535;
  margin: 0;
}
@media screen and (max-width: 402px) {
  .p-notice-box__text {
    font-size: 0.95rem;
  }
}

.p-concept {
  text-align: center;
}
.p-concept__label {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.85rem;
  color: #7a6060;
  margin: 0 0 10px;
  letter-spacing: 0.05em;
}
.p-concept__lead {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  color: #4a3535;
  margin: 0 0 8px;
}
.p-concept__quote {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.4rem;
  color: #7a6060;
  background: #f7f7f5;
  border-radius: 8px;
  padding: 14px 20px;
  margin: 0 0 14px;
  display: inline-block;
  line-height: 1.5;
  font-weight: bold;
  width: 100%;
}
@media screen and (max-width: 402px) {
  .p-concept__quote {
    font-size: 1.2rem;
    padding: 10px 16px;
  }
}
.p-concept__connect {
  font-size: 1rem;
  color: #7a6060;
  margin: 0 0 14px;
}
.p-concept__main {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #4a3535;
  margin: 0 0 20px;
}
@media screen and (max-width: 402px) {
  .p-concept__main {
    font-size: 1.05rem;
  }
}
.p-concept__main em {
  font-style: normal;
  color: #d4787e;
  font-weight: bold;
}
.p-concept__closing {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.95rem;
  color: #7a6060;
  line-height: 1.8;
  margin: 0;
  background: #fdf0f0;
  border-radius: 8px;
  padding: 16px 20px;
}

/* Step 04: 体験会でできること */
.step04 {
  background-color: #fdf0f0;
}

.p-message-box {
  text-align: center;
  background: #fff;
  border: 1px solid #f0dede;
  border-radius: 12px;
  padding: 22px 18px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #4a3535;
}
@media screen and (max-width: 402px) {
  .p-message-box {
    font-size: 0.9rem;
    padding: 16px 14px;
    line-height: 1.8;
  }
}
.p-message-box p {
  margin: 0;
}
.p-message-box__strong {
  font-size: 1.2rem;
  color: #d4787e;
  font-weight: bold;
  margin: 10px 0 !important;
}
@media screen and (max-width: 402px) {
  .p-message-box__strong {
    font-size: 1.1rem;
  }
}

/* Step 05: こんな方におすすめ */
.step05 {
  background-color: #eef2ee;
}

/* Step 06: little wedding サービス — ダーク反転スライド */
.step06 {
  background-color: #3d2b2b;
}
.step06 .p-check-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}
.step06 .p-check-item__mark {
  color: #e8a4a8;
}
.step06 .p-check-item__text {
  color: rgba(255, 255, 255, 0.92);
}

.p-tagline {
  text-align: center;
  padding: 28px 0 0;
}
.p-tagline__text {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 10px;
}
.p-tagline__main {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  font-weight: normal;
  color: #fff;
  line-height: 1.5;
  margin: 0 0 12px;
}
@media screen and (max-width: 402px) {
  .p-tagline__main {
    font-size: 1.4rem;
  }
}
.p-tagline__sub {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* Step 07: 共通ご案内 */
.step07 {
  background-color: #fef6f0;
}

.p-closing {
  text-align: center;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  line-height: 1.9;
  color: #4a3535;
}
.p-closing p {
  margin: 0;
}
.p-closing__quote {
  font-size: 1.2rem;
  color: #d4787e;
  font-weight: bold;
  margin: 8px 0 !important;
}
@media screen and (max-width: 402px) {
  .p-closing__quote {
    font-size: 1.1rem;
  }
}

/* Step 08: アクセス & LINE */
.step08 {
  background-color: #fff;
}

.p-access-header {
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 402px) {
  .p-access-header {
    margin-bottom: 15px;
  }
}
.p-access-header .c-title-english {
  color: #d4787e;
}
.p-access-header .sub-title {
  display: block;
  font-size: 0.9rem;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  color: #7a6060;
}

.p-access-img {
  margin-bottom: 20px;
}
@media screen and (max-width: 402px) {
  .p-access-img {
    margin-bottom: 12px;
  }
}
.p-access-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.p-access-logo {
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 402px) {
  .p-access-logo {
    margin-bottom: 15px;
  }
}
.p-access-logo .logo-main {
  width: 160px;
  max-width: 100%;
  height: auto;
}

.p-access-info {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 402px) {
  .p-access-info {
    margin-bottom: 20px;
  }
}

.p-access-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 18px;
}
@media screen and (max-width: 402px) {
  .p-access-row {
    margin-bottom: 12px;
  }
}
.p-access-row dt {
  width: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.85rem;
  color: #d4787e;
  border-bottom: 1px solid #d4787e;
  padding-bottom: 3px;
  margin-right: 16px;
  text-align: center;
}
.p-access-row dd {
  margin: 0;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #4a3535;
}
@media screen and (max-width: 402px) {
  .p-access-row dd {
    font-size: 0.85rem;
  }
}
.p-access-row .tel-link {
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 1.1rem;
  color: #4a3535;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.p-line-btn {
  text-align: center;
  padding-top: 5px;
}

/* Step Gallery: 撮影ギャラリー */
.step-gallery {
  background-color: #fff;
}

/* Step Closet: 衣装ギャラリー */
.step-closet {
  background-color: #fdf0f0;
}

/* ギャラリー見出し（Gallery / Dress & Kimono） */
.p-gallery-header {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 402px) {
  .p-gallery-header {
    margin-bottom: 14px;
  }
}
.p-gallery-header .c-title-english {
  color: #4a3535;
  margin-bottom: 4px;
}
.p-gallery-header .sub-title {
  display: block;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.85rem;
  color: #7a6060;
  letter-spacing: 0.1em;
}

/* 撮影ギャラリー: 2列グリッド */
.p-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 0;
}
@media screen and (max-width: 402px) {
  .p-gallery-grid {
    gap: 8px;
  }
}

.p-gallery-item {
  width: 100%;
}
.p-gallery-item img {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}

/* 衣装ギャラリー: 3列グリッド */
.p-dress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 20px;
  margin-bottom: 0;
}
@media screen and (max-width: 402px) {
  .p-dress-grid {
    row-gap: 8px;
  }
}

.p-dress-item {
  width: 100%;
}
.p-dress-item .dress-img {
  width: 100%;
}
.p-dress-item .dress-img img {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}

/* Moreボタン */
.p-gallery-more,
.p-dress-more {
  text-align: center;
  padding: 28px 0 0;
}
@media screen and (max-width: 402px) {
  .p-gallery-more,
  .p-dress-more {
    padding: 20px 0 0;
  }
}

.c-btn-more {
  display: inline-block;
  background-color: #8c6a63;
  color: #fff;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 1.2rem;
  padding: 12px 60px;
  border-radius: 30px;
  letter-spacing: 0.05em;
  -webkit-transition: opacity 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.2s;
  transition: opacity 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.2s;
  transition: opacity 0.3s, box-shadow 0.3s, transform 0.2s;
  transition: opacity 0.3s, box-shadow 0.3s, transform 0.2s, -webkit-box-shadow 0.3s, -webkit-transform 0.2s;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  border: 1px solid #7a5c55;
}
@media screen and (max-width: 402px) {
  .c-btn-more {
    font-size: 1rem;
    padding: 8px 60px;
  }
}
.c-btn-more:hover {
  opacity: 0.9;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

/* ==========================================
   スクロール誘導ヒント
   ギャラリースライド内で「まだある」を伝える
   ========================================== */
.c-scroll-hint {
  position: sticky;
  bottom: calc(var(--footer-h) + 8px);
  text-align: center;
  margin-top: 8px;
  cursor: pointer;
}
.c-scroll-hint::before {
  content: "";
  display: block;
  height: 48px;
  margin-bottom: -4px;
}
.c-scroll-hint__arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  -webkit-animation: hint-bounce 1.8s ease-in-out infinite;
          animation: hint-bounce 1.8s ease-in-out infinite;
  -webkit-transition: background 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, box-shadow 0.2s;
  transition: background 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.c-scroll-hint__arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #d4787e;
  border-bottom: 2px solid #d4787e;
  -webkit-transform: rotate(45deg) translate(-2px, -2px);
          transform: rotate(45deg) translate(-2px, -2px);
}
.c-scroll-hint:hover .c-scroll-hint__arrow, .c-scroll-hint:active .c-scroll-hint__arrow {
  background: #fff;
  -webkit-box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
}

@-webkit-keyframes hint-bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
}

@keyframes hint-bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
}
.u-text-sm {
  font-size: 0.85rem;
}

.u-mb-20 {
  margin-bottom: 20px;
}/*# sourceMappingURL=style.css.map */