@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  background: #f6efe2;
  color: #2c2418;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 400;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

a {
  color: #b89968;
  text-decoration: none;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
a:focus-visible {
  outline: 2px solid rgba(184, 153, 104, 0.35);
  outline-offset: 2px;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h1 {
  font-size: 35px;
  font-size: 3.5rem;
}

h2 {
  font-size: 28px;
  font-size: 2.8rem;
}

h3 {
  font-size: 22px;
  font-size: 2.2rem;
}

h4 {
  font-size: 18px;
  font-size: 1.8rem;
}

h5 {
  font-size: 15px;
  font-size: 1.5rem;
}

.smaller {
  font-size: 0.7em;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

hr {
  border: none;
  border-top: 1px solid #2c2418;
  margin: 0;
  opacity: 0.4;
}

#header {
  position: relative;
  z-index: 100;
}
#header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 40px;
}
#header #logo {
  width: 120px;
}

.head-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

#header_nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}
#header_nav a {
  display: inline-block;
  padding: 8px 10px;
  color: #2c2418;
  text-decoration: none;
  position: relative;
  transition: opacity 0.2s;
}
#header_nav a:hover {
  opacity: 0.85;
}
#header_nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
#header_nav a:hover::after, #header_nav a.active::after {
  transform: scaleX(1);
}
#header_nav.hover-circle a::after {
  display: none;
}
#header_nav.hover-circle a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #2c2418;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  opacity: 0;
  transition: all 0.5s ease;
}
#header_nav.hover-circle a:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0.1;
}
#header_nav.hover-circle a.active::before {
  opacity: 0.1;
}

.sp-btn {
  display: none;
}

#nav-toggle,
#sp-nav {
  display: none;
}

#footer {
  position: relative;
  border-top: 10px solid #FEFEFE;
}
#footer .inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
#footer .inner .footer-left {
  width: 55%;
  padding-right: 5%;
}
#footer .inner .footer-right {
  width: 45%;
}

.flogo {
  margin-bottom: 20px;
  width: 140px;
}

.footer_navi {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #2c2418;
}
.footer_navi ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin-inline: auto;
}
.footer_navi ul li {
  width: 20%;
  text-align: center;
}
.footer_navi ul li a {
  position: relative;
  display: inline-block;
  color: #2c2418;
  padding: 4px 0;
  font-size: 1.4rem;
}
.footer_navi ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #b89968;
  transform: translateX(-50%) scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
  opacity: 0.9;
}
.footer_navi ul li a:hover::after, .footer_navi ul li a:focus-visible::after, .footer_navi ul li a.is-current::after, .footer_navi ul li a[aria-current=page]::after {
  transform: translateX(-50%) scaleX(1);
}
.footer_navi ul li a:hover {
  opacity: 0.95;
}

#page-title .inner {
  max-width: 80%;
  margin: auto;
  padding: 100px 0;
}
#page-title .inner .title,
#page-title .inner .text {
  width: 50%;
  margin-bottom: 0;
}
#page-title .inner .title span,
#page-title .inner .text span {
  display: block;
}
#page-title .inner .title .ja::before,
#page-title .inner .text .ja::before {
  display: none;
}

.contact_btn {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact_btn a {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: #b89968;
  color: #FEFEFE;
  border-radius: 90px;
  padding: 8px 24px;
  font-weight: 700;
  min-width: 220px;
}
.contact_btn a:hover {
  opacity: 0.6;
}
.contact_btn a.icon_link {
  min-width: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding: 8px;
}
.contact_btn a.reserve {
  border-radius: 60px;
  aspect-ratio: initial;
  background: #2c2418;
  padding: 8px 24px;
  font-size: 0.9em;
}
.contact_btn img {
  inline-size: 24px;
  block-size: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact_btn p:nth-child(2) a {
  background: #d99478;
}
.contact_btn.column {
  flex-direction: column;
  align-items: flex-start;
}
.contact_btn.big {
  gap: 16px;
}
.contact_btn.big a {
  padding: 32px 24px;
  min-width: 320px;
  font-size: 1.3em;
}
.contact_btn.dark a,
.contact_btn.dark p:nth-child(2) a {
  background: #FEFEFE;
  border: 1px solid #2c2418;
  color: #2c2418;
}
.contact_btn.dark a img,
.contact_btn.dark p:nth-child(2) a img {
  filter: invert(1);
}

.contact_icon {
  width: 30px;
}

#form .form-contents {
  padding: 0px !important;
}
#form dl {
  margin-bottom: 0 !important;
}
#form dl dt:not(.pattern-exclusion) span.required::before {
  background: #b89968 !important;
}
#form dl dd:not(.pattern-exclusion) {
  border-bottom: none !important;
  padding-bottom: 10px !important;
}
#form dl dd:not(.pattern-exclusion) input.textarea {
  height: 45px !important;
}
#form .submit-btn {
  background: #b89968 !important;
  color: #FEFEFE !important;
  border: 1px solid #b89968 !important;
  border-radius: 999px !important;
}
#form .submit-btn:hover {
  opacity: 0.8 !important;
}

.container {
  --container-max: 1240px;
  --container-pb: 80px;
  --container-pi: 60px;
  position: relative;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-block: var(--container-pb);
  padding-inline: var(--container-pi);
}
.container--base {
  --container-max: 1240px;
}
.container--wide {
  --container-max: 1500px;
}
.container--full {
  --container-max: 100vw;
}
.container--p-xl {
  --container-pb: 120px;
  --container-pi: 0;
}
.container--p-l {
  --container-pb: 80px;
  --container-pi: 0;
}
.container--p-m {
  --container-pb: 60px;
  --container-pi: 0;
}
.container--p-s {
  --container-pb: 40px;
  --container-pi: 0;
}
.container--full {
  padding-left: 0;
  padding-right: 0;
}
.container--top-only {
  padding-block-end: 0 !important;
}
.container--btm-only {
  padding-block-start: 0 !important;
}

.box {
  position: relative;
  margin-inline: auto;
  z-index: 3;
  padding: clamp(16px, 4vw, 30px);
}
.box--bwidth {
  max-width: 1240px;
  margin-inline: auto;
}
.box--small {
  max-width: 1100px;
  margin-inline: auto;
}
.box--small2 {
  max-width: 1000px;
  margin-inline: auto;
}
.box--small3 {
  max-width: 900px;
  margin-inline: auto;
}
.box--small4 {
  max-width: 800px;
  margin-inline: auto;
}
.box--small5 {
  max-width: 700px;
  margin-inline: auto;
}
.box--content-fit {
  display: grid;
  place-items: center;
}
.box--content-fit > * {
  inline-size: min(100%, var(--inner-max, -moz-max-content));
  inline-size: min(100%, var(--inner-max, max-content));
}
.box--content-fit img {
  max-inline-size: 100%;
}
.box--pd60 {
  padding: clamp(30px, 4vw, 60px);
}
.box--pd-30-60 {
  padding: 30px 60px;
}
.box--bd {
  border: 1px solid #b89968;
}
.box--more {
  --more-closed: 350px;
}
.box--more .more-content {
  max-height: var(--more-closed);
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.box--more.is-open .more-content {
  max-height: 2000px;
}
.box--more .more-btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #c83434;
  background: rgba(200, 52, 52, 0.06);
  color: #c83434;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.box--more .more-btn:hover {
  background: rgba(200, 52, 52, 0.12);
}
.box--more .more-btn:focus-visible {
  outline: 2px solid rgb(222.8095238095, 131.1904761905, 131.1904761905);
  outline-offset: 2px;
}

.l-column {
  --gap: 40px;
  --cols: 3;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  align-items: stretch;
  justify-content: flex-start;
}
.l-column > li,
.l-column .col-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 0 0 calc((100% - var(--gap) * (var(--cols) - 1)) / var(--cols));
}
.l-column > li > *:first-child,
.l-column .col-item > *:first-child {
  margin-top: 0;
}
.l-column > li > .card,
.l-column .col-item > .card {
  inline-size: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
}
.l-column.col2 {
  --cols: 2;
}
.l-column.col3 {
  --cols: 3;
}
.l-column.col4 {
  --cols: 4;
}
.l-column.col5 {
  --cols: 5;
}

.hero--marquee {
  -webkit-transform: translateZ(0);
}
.hero--marquee .hero__viewport {
  position: relative;
  overflow: hidden;
  padding-block: 12px;
}
.hero--marquee .hero__track {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: var(--gap, 22px);
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: hero-marquee var(--duration, 60s) linear infinite;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.hero--marquee .hero__slide {
  flex: 0 0 auto;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  line-height: 0;
  width: clamp(320px, 55vw, 1180px);
}
.hero--marquee .hero__slide img {
  display: block;
  inline-size: 100%;
  block-size: clamp(340px, 56vw, 700px);
  -o-object-fit: cover;
     object-fit: cover;
}
.hero--marquee .hero__overlay {
  padding: 40px 40px 20px;
}
.hero--marquee .hero__overlay h2 {
  font-size: 35px;
  font-size: 3.5rem;
  margin: 0 0 8px;
  font-weight: 700;
}
.hero--marquee .hero__overlay p {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0;
  line-height: 1.8;
}
.hero--marquee {
  /* クローンを1回（=2セット分）にするので距離は -50% でOK */
}
@keyframes hero-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--marquee .hero__track {
    animation: none !important;
    transform: none !important;
  }
}
.title {
  margin: 0 auto 60px;
  position: relative;
}
.title .en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  display: block;
  color: #b89968;
  font-size: 0.6em;
}
.title .ja {
  position: relative;
}
.title .ja::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3em;
  height: 3em;
  background: url(../img/hone.png) no-repeat center/contain;
  opacity: 0.1;
}
.title--m0 {
  margin-bottom: 0;
}
.title--m20 {
  margin-bottom: 20px;
}
.title--slim {
  margin: 0 auto 20px;
}
.title--left {
  margin-left: 0;
}
.title--slash {
  display: flex;
  justify-content: center;
  align-items: center;
}
.title--slash::before, .title--slash::after {
  width: 2px;
  height: 30px;
  background-color: #b89968;
  content: "";
}
.title--slash::before {
  transform: rotate(-35deg);
  margin-right: 30px;
}
.title--slash::after {
  transform: rotate(35deg);
  margin-left: 30px;
}
.title--bgbar {
  display: flex;
  align-items: center;
  padding: 0.3em 0.7em;
  background-color: #f2f2f2;
  margin-bottom: 10px;
  font-size: 2rem;
}
.title--bgbar::before {
  display: inline-block;
  width: 5px;
  height: 1.5em;
  margin-right: 0.5em;
  background-color: #b89968;
  content: "";
}
.title--num {
  position: relative;
  padding-top: 1.5em;
  padding-left: 1em;
}
.title--num::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  color: #c83434;
  font-size: 3em;
  line-height: 1;
  content: attr(data-number);
  pointer-events: none;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  opacity: 0.5;
}
.title--border {
  border-top: 1px solid #2c2418;
  border-bottom: 1px solid #2c2418;
  padding: 10px;
  width: 100%;
}

.ttl-wave {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}
.ttl-wave::before, .ttl-wave::after {
  content: "〜";
  flex-shrink: 0;
}

.btn {
  text-align: center;
  margin-top: 40px;
}
.btn a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  color: #2c2418;
  border: 1px solid #2c2418;
  border-radius: 30px;
  transition: 0.3s;
  font-weight: 600;
  min-width: 240px;
  font-size: 0.9em;
  text-align: center;
  justify-content: center;
}
.btn a::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b8a7d4;
  transition: all 0.2s ease;
}
.btn a:hover {
  opacity: 0.6;
}
.btn a:hover::before {
  transform: translate(5px, -50%);
}
.btn.slim {
  margin-top: 20px;
}
.btn--left {
  text-align: left;
}
.btn--primary a {
  background: #b89968;
  color: #FEFEFE;
  border-color: #b8a7d4;
}
.btn--outline a {
  background: #FEFEFE;
  color: #b89968;
  border-color: #b89968;
}
.btn--ghost a {
  background: transparent;
  border-color: transparent;
  color: #b89968;
}

.card {
  height: 100%;
  display: flex;
  background: #FEFEFE;
  border-radius: 16px;
  overflow: hidden;
  gap: 20px;
  padding: 32px;
}
.card__img {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  line-height: 0;
  width: 200px;
}
.card__img::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.card__img img,
.card__img picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.card__body {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card__body .btn {
  text-align: left;
}
.card__title {
  font-size: 2rem;
}
.card__text {
  font-size: 0.9em;
}
.card--ratio-4x3 .card__img::before {
  padding-top: 75%;
}
.card--ratio-3x2 .card__img::before {
  padding-top: 66.6667%;
}
.card--ratio-1x1 .card__img::before {
  padding-top: 100%;
}
.card--ratio-21x9 .card__img::before {
  padding-top: 42.8571%;
}

.l-column > li,
.l-column .col-item {
  display: flex;
}
.l-column > li > .card,
.l-column .col-item > .card {
  inline-size: 100%;
}

.news-list {
  display: grid;
  gap: 10px;
  max-width: 800px;
  margin-inline: auto;
}
.news-list li:first-child {
  border-top: 1px solid #eee;
}
.news-list li {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #eee;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}
.news-list time {
  color: #666;
  font-size: 1.3rem;
}
.news-list .cat {
  color: #c83434;
  font-weight: 700;
  font-size: 1.3rem;
}
.news-list .ttl {
  font-size: 1.5rem;
}

.blog {
  padding-inline: clamp(16px, 4vw, 40px);
}
.blog .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.blog .blog-card {
  width: calc((100% - 40px) / 3);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #ddd;
}
.blog .blog-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.blog .blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.blog .blog-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f3f4f6;
}
.blog .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.blog .blog-img {
  /* ホバーで軽くズーム */
}
.blog-card:hover .blog .blog-img img {
  transform: scale(1.04);
}
.blog .blog-title {
  font-weight: 600;
  padding: 14px;
  font-size: 1.6rem;
}

.blog-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.blog-pager > div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  border: 1px solid #d9dde3;
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: transform 0.12s ease, filter 0.12s ease, box-shadow 0.12s ease;
  font-size: 14px;
}
.blog-pager > div:hover {
  filter: brightness(0.98);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.blog-pager > div:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.blog-pager > div:first-child {
  background: #f7f8fa;
}
.blog-pager > div:last-child {
  background: #b89968;
  color: #fff;
  border-color: #cfd6e0;
}
.blog-pager > div:last-child:hover {
  filter: brightness(1.05);
}
.blog-pager > div:only-child {
  background: #b89968;
  color: #fff;
  border-color: #cfd6e0;
}

.blog-detail {
  background: #fefefe;
  border-radius: 20px;
  padding: 2em;
}
.blog-detail .post__title {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  margin: 0 0 24px;
  color: #333;
}
.blog-detail .post__date {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: rgba(61, 61, 61, 0.6);
}
.blog-detail .post__body {
  margin-top: 20px;
}

.media {
  display: grid;
  grid-template-columns: var(--media-img, 120px) 1fr;
  gap: var(--media-gap, 100px);
}
.media__img {
  inline-size: 100%;
  block-size: 100%;
}
.media__img img {
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.media__body {
  line-height: 1.8;
}
.media--sm {
  --media-img: 80px;
}
.media--md {
  --media-img: 120px;
}
.media--lg {
  --media-img: 180px;
}
.media--xl {
  --media-img: 240px;
}
.media--2xl {
  --media-img: 360px;
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #b89968;
}
.alert--success {
  background: #f0faf2;
  border-color: #c9e7ce;
  color: #1a7f3a;
}
.alert--warning {
  background: #fff8e6;
  border-color: #ffe1a5;
  color: #8a5b00;
}
.alert--danger {
  background: #fff1f1;
  border-color: #ffc7c7;
  color: #a52b2b;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
}

.badge--accent {
  background: #c83434;
  color: #FEFEFE;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: m #b89968;
}

.tabs__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.tabs__btn {
  width: 48%;
  padding: 16px 24px;
  border-radius: 8px 8px 0 0;
  background: #b89968;
  color: #FEFEFE;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}
.tabs__btn.is-active {
  background: #FEFEFE;
  color: #b89968;
  border: 2px solid #b89968;
  border-bottom: none;
}
.tabs__panel {
  display: none;
  background: #FEFEFE;
  border-radius: 8px;
}
.tabs__panel.is-active {
  display: block;
  padding: 40px;
}

.contents-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 120px;
}
.contents-nav > li a {
  background: #c83434;
  color: #FEFEFE;
  border-radius: 60px;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 1.2em;
  min-width: 240px;
  display: block;
  text-align: center;
  border: 1px solid #c83434;
}
.contents-nav > li a:hover {
  color: #c83434;
  background: #FEFEFE;
}
.contents-nav > li:nth-child(2) a {
  background: #d99478;
  border: 1px solid #d99478;
}
.contents-nav > li:nth-child(2) a:hover {
  color: #d99478;
  background: #FEFEFE;
}

.breadcrumb {
  max-width: 90%;
  margin: auto;
  padding: 30px;
  font-size: 12px;
}
.breadcrumb a {
  color: #2c2418;
  opacity: 0.6;
  text-decoration: underline;
}
.breadcrumb .kigou {
  font-size: 0.6em;
  padding: 0 0.5em;
}

.list--disc li {
  position: relative;
}
.list--disc li:not(:last-of-type) {
  margin-bottom: 5px;
}
.list--disc li::before {
  content: "●";
  color: #c83434;
  font-size: 9px;
  margin-right: 5px;
}
.list--disc.sbc li::before {
  color: #b89968;
}
.list--inline li {
  display: inline-block;
}
.list--inline li:not(:last-of-type) {
  margin-right: 5px;
}
.list--check {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list--check li {
  position: relative;
  padding-left: 26px;
  line-height: 1.8;
}
.list--check li:not(:last-of-type) {
  margin-bottom: 6px;
}
.list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 8px;
  border-left: 2px solid #c83434;
  border-bottom: 2px solid #c83434;
  transform: rotate(-45deg);
}
.list--check.sbc li::before {
  border-color: #b89968;
}
.list--num li figure {
  position: relative;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.list--num li figure::before {
  content: "";
  position: absolute;
  right: -1em;
  top: -1.5em;
  width: 5em;
  height: 5em;
}
.list--num li:nth-child(1) figure::before {
  background: url(../img/01.png) no-repeat center/contain;
}
.list--num li:nth-child(2) figure::before {
  background: url(../img/02.png) no-repeat center/contain;
}
.list--num li:nth-child(3) figure::before {
  background: url(../img/03.png) no-repeat center/contain;
}
.list li {
  text-indent: -1em;
  padding-left: 1em;
}

.tbl {
  width: 100%;
  margin-inline: auto;
  border-collapse: separate;
  border-spacing: 4px 2px;
}
.tbl tr th,
.tbl tr td {
  padding: 10px 15px;
}
.tbl tr th {
  font-weight: 600;
  width: 30%;
  text-align: center;
  background: #b89968;
  color: #FEFEFE;
}
.tbl tr td {
  background: #FEFEFE;
}
.tbl:not(.tbl--hours) tr > th {
  width: 30%;
}
.tbl--alternating {
  border-collapse: collapse;
}
.tbl--alternating tr {
  background: #d99478;
}
.tbl--alternating tr:nth-child(odd) {
  background: #FEFEFE;
}
.tbl--alternating tr th,
.tbl--alternating tr td {
  background: transparent;
  color: #2c2418;
}
.tbl {
  /* ボーダー */
}
.tbl--border {
  border-collapse: collapse;
}
.tbl--border tr th,
.tbl--border tr td {
  border-bottom: 2px solid #ddd;
  background: transparent;
}
.tbl--border tr th {
  border-bottom: 2px solid #b89968;
  color: #2c2418;
}
.tbl--bubble {
  border-collapse: separate;
  border-spacing: 0 4px;
}
.tbl--bubble tr th,
.tbl--bubble tr td {
  background: #FEFEFE;
  border-radius: 0 8px 8px 0;
}
.tbl--bubble tr td {
  padding-left: 24px;
}
.tbl--bubble tr th {
  background-color: #b89968;
  color: #fff;
  border-radius: 8px 0 0 8px;
  position: relative;
  vertical-align: middle;
}
.tbl--bubble tr th::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left: 10px solid #b89968;
  z-index: 2;
}
.tbl--hours {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}
.tbl--hours col.col-time {
  width: 11.5rem;
}
@media (max-width: 600px) {
  .tbl--hours col.col-time {
    width: 9.5rem;
  }
}
.tbl--hours tr th,
.tbl--hours tr td {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 14px 10px;
  text-align: center;
  vertical-align: middle;
  background: #fff;
}
.tbl--hours tr th {
  width: auto;
}
.tbl--hours thead th {
  background: #b89968;
  font-weight: 700;
  color: #fff;
}
.tbl--hours thead th:first-child {
  text-align: center;
}
.tbl--hours .nowrap {
  white-space: nowrap;
}
.tbl--hours tbody th {
  text-align: center;
  white-space: nowrap;
  background: #fff;
  font-weight: 700;
  color: #2c2418;
  width: auto;
}
.tbl--hours tbody td {
  position: relative;
}
.tbl--hours tbody td .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.tbl--hours tbody td[data-open=true]::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: #b89968;
}
.tbl--hours tbody td[data-open=false]::before {
  content: "—";
  font-size: 14px;
  line-height: 1;
  opacity: 0.45;
}
.tbl--price tr td {
  border-bottom: 1px solid #ddd;
}
.tbl--price tr th,
.tbl--price tr td {
  vertical-align: middle;
}
.tbl--price tr th {
  width: 40% !important;
}

/* モバイルで詰まりそうなら */
@media (max-width: 480px) {
  .hours__row {
    grid-template-columns: 6em 1fr;
    gap: 8px;
  }
  .tbl--hours th,
  .tbl--hours td {
    padding: 12px 8px;
  }
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.accordion {
  position: relative;
  overflow: hidden;
}
.accordion > .ttl {
  position: relative;
  font-size: 1.6rem;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.accordion > .inner {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.accordion.is-open > .inner {
  max-height: 2000px;
  opacity: 1;
  padding: 12px 16px;
}
.accordion.faq {
  border-color: #c83434;
}
.accordion.faq > .ttl {
  padding: 16px;
  padding-left: 4em;
  background: #FEFEFE;
  border-radius: 8px;
  border: 1px solid #efefef;
}
.accordion.faq > .ttl::before {
  content: "Q";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  inline-size: 36px;
  block-size: 36px;
  border-radius: 50%;
  background: #c83434;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.accordion.faq > .ttl::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  inline-size: 10px;
  block-size: 10px;
  border-right: 2px solid #c83434;
  border-bottom: 2px solid #c83434;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.25s ease;
}
.accordion.faq > .ttl:hover {
  background: rgb(245.9619047619, 220.2380952381, 220.2380952381);
}
.accordion.faq > .inner {
  position: relative;
  margin-top: 4px;
}
.accordion.faq > .inner::before {
  content: "A";
  position: absolute;
  left: 16px;
  top: 1em;
  inline-size: 32px;
  block-size: 32px;
  border-radius: 50%;
  background: #d99478;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.accordion.faq > .inner p {
  margin: 0;
  padding-left: 3em;
  padding-right: 2em;
  line-height: 1.8;
}
.accordion.faq.is-open > .ttl::after {
  transform: translateY(-50%) rotate(-135deg);
}
.accordion.faq.is-open > .inner {
  padding: 8px 16px;
}
.accordion.faq.is-open > .inner::before {
  opacity: 1;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.gallery img {
  display: inline-block;
  width: calc((100% - 30px) / 3);
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 350px;
}
.gallery--picture picture {
  display: inline-block;
  width: calc((100% - 30px) / 3);
}
.gallery--picture picture img {
  width: 100%;
}

.pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  padding: 0 10px;
  border: 1px solid #ddd;
  background: #fff;
  color: #2c2418;
  font-weight: 700;
}
.pagination .is-current {
  background: #c83434;
  color: #FEFEFE;
  border-color: #c83434;
}

/* Swiper base fix */
.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
}
.swiper-slide img,
.swiper-slide picture {
  display: block;
  width: 100%;
  height: clamp(340px, 56vw, 700px);
  -o-object-fit: cover;
     object-fit: cover;
}

.ggmap iframe {
  height: 350px;
  width: 100%;
}

/* ==============================
  Voice（お客様の声）
============================== */
.voice {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #ddd;
}
.voice:hover {
  transform: translateY(-3px);
}
.voice__img {
  width: 300px;
  text-align: center;
}
.voice__img img {
  margin: auto;
  width: 80%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice__body {
  width: calc(100% - 340px);
  padding: 20px;
  line-height: 1.8;
}
.voice__name {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: clamp(15px, 1.8vw, 17px);
  color: #b89968;
}
.voice__comment {
  font-size: clamp(14px, 1.6vw, 16px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none !important;
}

.flex {
  display: flex;
}
.flex.fd-row {
  flex-direction: row;
}
.flex.fd-col {
  flex-direction: column;
}

.ai-start {
  align-items: flex-start;
}

.ai-center {
  align-items: center;
}

.ai-end {
  align-items: flex-end;
}

.ai-stretch {
  align-items: stretch;
}

.jc-start {
  justify-content: flex-start;
}

.jc-center {
  justify-content: center;
}

.jc-end {
  justify-content: flex-end;
}

.jc-between {
  justify-content: space-between;
}

.fw-wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

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

.grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid--cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-40 {
  gap: 40px;
}

.gap-60 {
  gap: 60px;
}

.gap-80 {
  gap: 80px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.mt-8 {
  margin-top: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.ml-8 {
  margin-left: 8px;
}

.mr-8 {
  margin-right: 8px;
}

.pt-8 {
  padding-top: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pl-8 {
  padding-left: 8px;
}

.pr-8 {
  padding-right: 8px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mb-12 {
  margin-bottom: 12px;
}

.ml-12 {
  margin-left: 12px;
}

.mr-12 {
  margin-right: 12px;
}

.pt-12 {
  padding-top: 12px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pl-12 {
  padding-left: 12px;
}

.pr-12 {
  padding-right: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.pt-16 {
  padding-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pl-16 {
  padding-left: 16px;
}

.pr-16 {
  padding-right: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.ml-24 {
  margin-left: 24px;
}

.mr-24 {
  margin-right: 24px;
}

.pt-24 {
  padding-top: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pl-24 {
  padding-left: 24px;
}

.pr-24 {
  padding-right: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.ml-32 {
  margin-left: 32px;
}

.mr-32 {
  margin-right: 32px;
}

.pt-32 {
  padding-top: 32px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pl-32 {
  padding-left: 32px;
}

.pr-32 {
  padding-right: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.b-m5 {
  margin-bottom: 5px;
}

.b-m10 {
  margin-bottom: 10px;
}

.b-m20 {
  margin-bottom: 20px;
}

.b-m30 {
  margin-bottom: 30px;
}

.b-m40 {
  margin-bottom: 40px;
}

.b-m60 {
  margin-bottom: 60px;
}

.b-m80 {
  margin-bottom: 80px;
}

.t-m10 {
  margin-top: 10px;
}

.t-m20 {
  margin-top: 20px;
}

.t-m40 {
  margin-top: 40px;
}

.w-100pe {
  width: 100%;
}

.h-100pe {
  height: 100%;
}

.asp-1-1 {
  aspect-ratio: 1/1;
}

.img-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.rounded-4 {
  border-radius: 4px;
}

.rounded-8 {
  border-radius: 8px;
}

.rounded-12 {
  border-radius: 12px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-24 {
  border-radius: 24px;
}

.rounded-32 {
  border-radius: 32px;
}

.b-r8 {
  border-radius: 8px;
}

.b-r16 {
  border-radius: 16px;
}

.b-r24 {
  border-radius: 24px;
}

.b-r50pe {
  border-radius: 50%;
}

.line-h200 {
  line-height: 2;
}

.text-center,
.tcenter,
.tcenter_pc {
  text-align: center;
}

.text-right,
.tright {
  text-align: right;
}

.bold {
  font-weight: 700;
}

.bold2 {
  font-weight: 900;
}

.bigger {
  font-size: 1.2em;
  line-height: 2;
}

.smaller {
  font-size: 0.65em;
  letter-spacing: 0;
}

.en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.color01 {
  color: #b89968;
}

.color02 {
  color: #c83434;
}

.color-w {
  color: #FEFEFE !important;
}

.bg_line {
  background: #219d01 !important;
}

.bg_instagram {
  background: #e4405f !important;
}

.bg_line {
  background: #219d01 !important;
}

.bg_youtube {
  background: #ff0000 !important;
}

.para-gap p + p {
  margin-top: 20px;
}
.para-gap--large p + p {
  margin-top: 30px;
}
.para-gap--mini p + p {
  margin-top: 12px;
}

.bg {
  position: relative;
}
.bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg--img01::after {
  background: url(../img/bg-01.png) no-repeat center/contain;
  opacity: 0.6;
}
.bg--img02 {
  margin-top: 100px;
}
.bg--img02::after {
  background: url(../img/wave3.svg) no-repeat center bottom/100%;
  top: -150px;
  height: 190px;
}
.bg--img03::after {
  background: url(../img/wave4.svg) no-repeat center bottom/100%;
  top: -150px;
  height: 190px;
  z-index: 1;
}
.bg--img04::after {
  background: url(../img/bg-04-1.png) no-repeat top left/100%;
  width: 60%;
  left: -20%;
  opacity: 0.6;
}
.bg--img04::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 100%;
  background: url(../img/bg-04-2.png) no-repeat bottom left/100%;
  transform: scale(-1, 1);
  opacity: 0.6;
}
.bg--round {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 60px;
  overflow: hidden;
}

.bg--w {
  background: #fff;
}

.bg--w2 {
  background: rgba(255, 255, 255, 0.5);
}

.bg--cream {
  background: #ede2cc;
}

.bg--main {
  background: #b89968;
}

.bg--sub {
  background: #c83434;
}

.bg--sub2 {
  background: #d99478;
}

.bg--gray {
  background: #f5f5f5;
}

.u-decor {
  position: absolute;
  bottom: 10%;
  inline-size: min(28vw, 320px);
  opacity: 0.9;
  pointer-events: none;
  width: -moz-fit-content;
  width: fit-content;
}
.u-decor img {
  display: block;
  inline-size: 100%;
  height: auto;
}
.u-decor--left {
  left: clamp(8px, 4vw, 40px);
  top: 20%;
}
.u-decor--right {
  right: clamp(8px, 4vw, 40px);
  bottom: 20%;
}
.u-decor.w150 img {
  width: 150px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z--1 {
  z-index: -1;
}

.z-1 {
  z-index: 1;
}

.z-5 {
  z-index: 5;
}

.z-10 {
  z-index: 10;
}

.spbr {
  display: none;
}

.hidden {
  overflow: hidden;
}

.marker {
  background: linear-gradient(transparent 70%, rgba(255, 147, 109, 0.3) 0%);
  display: inline;
  border-radius: 2px;
  padding: 0 0.1em;
}

.text-link a {
  color: #b89968;
  text-decoration: underline;
}
.text-link.white a {
  color: #FEFEFE;
}

.shadow {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}

.shadow-md {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.tcenter_sp {
  text-align: center;
}

[data-ani] {
  --a-duration: 3.8s;
  --a-delay: 0s;
  --a-distance: 24px;
  --a-ease: cubic-bezier(.2, .7, .2, 1);
  --a-blur: 0px;
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity var(--a-duration) var(--a-ease) var(--a-delay), transform var(--a-duration) var(--a-ease) var(--a-delay), filter var(--a-duration) var(--a-ease) var(--a-delay);
  will-change: opacity, transform, filter;
}
[data-ani].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* フェード（指定がある時だけ透明スタート） */
[data-ani*=fade]:not(.is-visible) {
  opacity: 0;
}

[data-ani*=up]:not(.is-visible) {
  transform: translate3d(0, var(--a-distance), 0);
}

[data-ani*=down]:not(.is-visible) {
  transform: translate3d(0, calc(var(--a-distance) * -1), 0);
}

[data-ani*=left]:not(.is-visible) {
  transform: translate3d(var(--a-distance), 0, 0);
}

[data-ani*=right]:not(.is-visible) {
  transform: translate3d(calc(var(--a-distance) * -1), 0, 0);
}

[data-ani*=zoom-in]:not(.is-visible) {
  transform: scale(0.94);
}

[data-ani*=zoom-out]:not(.is-visible) {
  transform: scale(1.06);
}

[data-ani*=blur]:not(.is-visible) {
  filter: blur(var(--a-blur, 8px));
}

[data-ani*=rotate]:not(.is-visible) {
  transform: rotate(2.5deg);
}

.ani-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}
.ani-stagger > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--a-ease) var(--a-delay), transform 0.6s var(--a-ease) var(--a-delay);
}

.ani-stagger.is-visible > *:nth-child(1) {
  transition-delay: calc(var(--a-delay, 0s) + 0s);
}

.ani-stagger.is-visible > *:nth-child(2) {
  transition-delay: calc(var(--a-delay, 0s) + 0.06s);
}

.ani-stagger.is-visible > *:nth-child(3) {
  transition-delay: calc(var(--a-delay, 0s) + 0.12s);
}

.ani-stagger.is-visible > *:nth-child(4) {
  transition-delay: calc(var(--a-delay, 0s) + 0.18s);
}

.ani-stagger.is-visible > *:nth-child(5) {
  transition-delay: calc(var(--a-delay, 0s) + 0.24s);
}

.ani-stagger.is-visible > *:nth-child(6) {
  transition-delay: calc(var(--a-delay, 0s) + 0.3s);
}

.ani-stagger.is-visible > *:nth-child(7) {
  transition-delay: calc(var(--a-delay, 0s) + 0.36s);
}

.ani-stagger.is-visible > *:nth-child(8) {
  transition-delay: calc(var(--a-delay, 0s) + 0.42s);
}

.ani-stagger.is-visible > *:nth-child(9) {
  transition-delay: calc(var(--a-delay, 0s) + 0.48s);
}

.ani-stagger.is-visible > *:nth-child(10) {
  transition-delay: calc(var(--a-delay, 0s) + 0.54s);
}

@media (prefers-reduced-motion: reduce) {
  [data-ani],
  .ani-stagger > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
[data-fx] {
  --fx-duration: 6s;
  --fx-delay: 0s;
  --fx-amp: 8px;
  /* 振幅(px) */
  --fx-rot: 3deg;
  /* 回転幅 */
  --fx-ease: ease-in-out;
  --fx-iter: infinite;
  --fx-dir: normal;
  --fx-fill: both;
  display: inline-block;
  will-change: transform, filter;
  animation-delay: var(--fx-delay);
  animation-iteration-count: var(--fx-iter);
  animation-direction: var(--fx-dir);
  animation-fill-mode: var(--fx-fill);
  animation-timing-function: var(--fx-ease);
}

/* ふわふわ(上下) */
[data-fx*=float] {
  animation-name: fx-float-y;
  animation-duration: var(--fx-duration);
}

@keyframes fx-float-y {
  0% {
    transform: translateY(calc(var(--fx-amp) * -1));
  }
  100% {
    transform: translateY(var(--fx-amp));
  }
}
/* 横ゆらゆら */
[data-fx*=float][data-fx*=x],
[data-fx*=sway][data-fx*=x] {
  animation-name: fx-float-x;
}

@keyframes fx-float-x {
  0% {
    transform: translateX(calc(var(--fx-amp) * -1));
  }
  100% {
    transform: translateX(var(--fx-amp));
  }
}
/* なめらかスウェイ（回転＋上下少し） */
[data-fx*=sway] {
  animation-name: fx-sway;
  transform-origin: center;
  animation-duration: var(--fx-duration);
}

@keyframes fx-sway {
  0% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
  }
  50% {
    transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(var(--fx-rot));
  }
  100% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
  }
}
/* なめらかスウェイ反転（回転＋上下少し） */
[data-fx*=sway-rev] {
  animation-name: fx-sway-rev;
}

@keyframes fx-sway-rev {
  0% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
  }
  50% {
    transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(calc(var(--fx-rot) * -1));
  }
  100% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
  }
}
/* 振り子（支点を上に） */
[data-fx*=pendulum] {
  transform-origin: top center;
  animation-name: fx-pendulum;
}

@keyframes fx-pendulum {
  0% {
    transform: rotate(calc(var(--fx-rot) * -1));
  }
  50% {
    transform: rotate(var(--fx-rot));
  }
  100% {
    transform: rotate(calc(var(--fx-rot) * -1));
  }
}
/* くるくる（連続回転） */
[data-fx*=spin] {
  animation-name: fx-spin;
  animation-duration: calc(var(--fx-duration) * 1.2);
  animation-timing-function: linear;
}

@keyframes fx-spin {
  to {
    transform: rotate(360deg);
  }
}
/* ぷかぷか + ちょい拡縮 */
[data-fx*=float][data-fx*=soft],
[data-fx*=float][data-fx*=gentle] {
  animation-name: fx-float-soft;
}

@keyframes fx-float-soft {
  0% {
    transform: translateY(calc(var(--fx-amp) * -1)) scale(0.995);
  }
  100% {
    transform: translateY(var(--fx-amp)) scale(1.005);
  }
}
/* 小刻みゆれ（やわらか） */
[data-fx*=wiggle] {
  animation-name: fx-wiggle;
  animation-duration: calc(var(--fx-duration) * 0.6);
}

@keyframes fx-wiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(calc(var(--fx-rot) * 0.6));
  }
  50% {
    transform: rotate(calc(var(--fx-rot) * -0.6));
  }
  75% {
    transform: rotate(calc(var(--fx-rot) * 0.4));
  }
  100% {
    transform: rotate(0deg);
  }
}
/* 速さ */
[data-fx*=fast] {
  animation-duration: calc(var(--fx-duration) * 0.3);
}

[data-fx*=slow] {
  animation-duration: calc(var(--fx-duration) * 1.6);
}

[data-fx*=slower] {
  animation-duration: calc(var(--fx-duration) * 2.2);
}

/* 振幅 */
[data-fx*=sm] {
  --fx-amp: 6px;
  --fx-rot: 2deg;
}

[data-fx*=md] {
  --fx-amp: 10px;
  --fx-rot: 3deg;
}

[data-fx*=lg] {
  --fx-amp: 16px;
  --fx-rot: 5deg;
}

/* 方向／挙動 */
[data-fx*=alternate] {
  animation-direction: alternate;
}

/* デフォの往復を明示したい時 */
[data-fx*=reverse] {
  --fx-dir: reverse;
}

/* 回転の反転などに */
[data-fx*=pause-hover]:hover {
  animation-play-state: paused;
}

/* 親が見えたら動かす（入場後に発動させたい場合） */
.is-visible [data-fx-start=visible] {
  animation-play-state: running;
}

[data-fx-start=visible] {
  animation-play-state: paused;
}

/* アクセシビリティ：動きを抑制 */
@media (prefers-reduced-motion: reduce) {
  [data-fx] {
    animation: none !important;
    transform: none !important;
  }
}
:root {
  --bg: #f6efe2;
  --bg-2: #ede2cc;
  --bg-3: #e2d3b6;
  --paper: #fdfaf3;
  --line: rgba(74, 62, 46, 0.18);
  --ink: #2c2418;
  --ink-2: #4a3e2e;
  --ink-3: #7a6c56;
  --ink-4: #a89878;
  --gold: #b89968;
  --gold-2: #d6b88a;
  --gold-dk: #8a6f44;
  --rose: #d99478;
  --rose-dk: #b56a4c;
  --lavender: #b8a7d4;
  --accent-red: #c83434;
  --accent-red-dk: #a82424;
  --accent-red-light: #e54545;
  --section-pad-y: clamp(96px, 9vw, 120px);
  --arch-overlap: clamp(48px, 5vw, 72px);
  --section-pad-y-top-arched: clamp(32px, 3vw, 48px);
  --sec-pt: clamp(48px, 9vw, 150px);
  --sec-pb: clamp(100px, 10vw, 140px);
  --sec-px: clamp(20px, 4vw, 56px);
  --mincho:
    "Shippori Mincho B1", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho",
    serif;
  --sans: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --serif-en: "Cormorant Garamond", "Times New Roman", serif;
  --script: "Allura", "Italianno", "Pinyon Script", cursive;
  --script-2: "Italianno", "Allura", cursive;
}

html {
  font-size: 19px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mincho);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: #f6efe2;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent;
  border-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  padding: 16px clamp(20px, 4vw, 56px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  width: 96px;
  height: 96px;
  display: block;
  mix-blend-mode: screen;
  filter: invert(1);
  -o-object-fit: contain;
     object-fit: contain;
  background: transparent;
}
@media (max-width: 1024px) {
  .brand-logo img {
    width: 72px;
    height: 72px;
  }
}
@media (max-width: 600px) {
  .brand-logo img {
    width: 52px;
    height: 52px;
  }
}

.brand-sub {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.14em;
  font-size: 1rem;
  color: #f6efe2;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .brand-sub {
    font-size: 0.55rem;
  }
}

.brand-sub strong {
  display: block;
  font-style: normal;
  font-family: var(--serif-en);
  font-weight: 500;
  font-size: 1.65rem;
  letter-spacing: 0.24em;
  color: #fdfaf3;
  margin-top: 4px;
}
@media (max-width: 600px) {
  .brand-sub strong {
    font-size: 1.2rem;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.access-pill {
  display: inline-flex;
  align-items: center;
  padding: 13px 22px;
  border-radius: 0;
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-family: var(--mincho);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  white-space: nowrap;
  min-height: 44px;
}

.access-pill .access-text {
  color: #ffffff;
}

.hero {
  position: relative;
  padding: 20px 20px 220px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .hero {
    padding: 20px 10px 80px;
  }
}

.hero > .silk {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/bg-silk.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(900px 700px at 25% 30%, rgba(232, 196, 168, 0.38), transparent 60%), radial-gradient(900px 700px at 80% 70%, rgba(217, 148, 120, 0.14), transparent 65%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(180deg, rgba(184, 153, 104, 0.1), transparent 70%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 560px minmax(0, 600px);
  justify-content: center;
  gap: clamp(40px, 4.5vw, 80px);
  align-items: center;
}

.hero-below {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: clamp(40px, 5vw, 72px) auto 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(28px, 3vw, 48px);
}

@media (max-width: 900px) {
  .hero-below {
    margin-top: clamp(28px, 5vw, 40px);
  }
}
.visual {
  position: relative;
  aspect-ratio: 4/5;
  width: 560px;
  max-width: 100%;
  margin: 0 auto;
  align-self: stretch;
  height: 100%;
  overflow: visible;
}

.arch {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 12px 12px/42% 42% 6% 6%;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(74, 62, 46, 0.35);
}

.arch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 18%;
     object-position: center 18%;
  display: block;
}

.arch p {
  margin: 0;
  height: 100%;
}

.arch > div[id^=cms-text-] {
  height: 100%;
}

.arch-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0) 60%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

.arch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% 30%, rgba(255, 240, 220, 0.25), transparent 60%), linear-gradient(180deg, rgba(255, 240, 220, 0.1), rgba(255, 240, 220, 0));
  mix-blend-mode: screen;
  pointer-events: none;
}

.arch-line {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 250, 240, 0.55);
  border-radius: 50% 50% 8px 8px/42% 42% 4% 4%;
  pointer-events: none;
}

.echo {
  position: absolute;
  left: 0;
  bottom: -10%;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 84px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: rgba(184, 153, 104, 0.22);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 0;
  white-space: nowrap;
}

.echo b {
  display: block;
  font-weight: 300;
  color: rgba(184, 153, 104, 0.16);
}

.sparkle {
  position: absolute;
  width: 22px;
  height: 22px;
  color: var(--gold);
  pointer-events: none;
}

.sparkle.s1 {
  top: 4%;
  right: -8px;
  width: 26px;
  height: 26px;
}

.sparkle.s2 {
  bottom: 18%;
  left: -14px;
  width: 18px;
  height: 18px;
  color: var(--rose);
}

.sparkle.s3 {
  top: 38%;
  right: -22px;
  width: 14px;
  height: 14px;
  color: var(--lavender);
}

.v-tagline {
  position: absolute;
  top: 6%;
  right: 6px;
  z-index: 3;
  background: var(--paper);
  border: 1px solid rgba(184, 153, 104, 0.55);
  padding: 26px 14px 28px;
  writing-mode: vertical-rl;
  font-family: var(--mincho);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.85;
  letter-spacing: 0.2em;
  color: var(--ink);
  box-shadow: 0 14px 30px -16px rgba(74, 62, 46, 0.35);
}

.v-tagline b {
  color: var(--gold-dk);
  font-weight: 600;
}

.copy {
  position: relative;
  min-width: 0;
  max-width: 640px;
  align-self: center;
}

.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.eyebrow-line .line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}
@media (max-width: 600px) {
  .eyebrow-line .line {
    width: 14px;
  }
}

.eyebrow-line .text {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.42em;
  color: var(--gold-dk);
}
@media (max-width: 600px) {
  .eyebrow-line .text {
    font-size: 16px;
  }
}

.catch {
  font-family: var(--mincho);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 50px);
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 22px 0;
  text-wrap: balance;
}
@media (max-width: 600px) {
  .catch {
    text-align: center;
    font-size: clamp(33px, 4vw, 50px);
  }
}

.catch .num {
  font-family: var(--serif-en);
  font-weight: 700;
  font-style: italic;
  color: var(--accent-red);
  font-size: 1.35em;
  letter-spacing: 0;
  margin: 0 0.05em;
}

.catch .soul {
  color: var(--accent-red);
  font-size: 1.3em;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.promise-en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  margin-bottom: 28px;
}
@media (max-width: 600px) {
  .promise-en {
    text-align: center;
  }
}

.body-text {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 32px 0;
  max-width: 36em;
}
@media (max-width: 600px) {
  .body-text {
    text-align: center;
    font-size: 17px;
  }
}

.body-text p {
  margin: 0 0 6px 0;
}

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

.meta-frame div {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(184, 153, 104, 0.25);
  border-radius: 2px;
  padding: clamp(24px, 3vw, 36px) clamp(28px, 4vw, 48px);
  font-size: 22px;
  line-height: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 12px;
}
.meta-frame div p {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 600px) {
  .meta-frame div {
    text-align: center;
  }
}

.meta-frame div::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  pointer-events: none;
}

.meta-pin {
  display: inline-block;
  background: var(--gold-dk);
  color: var(--paper);
  padding: 8px 18px;
  font-size: 22px;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  border-radius: 1px;
  line-height: 1.4;
  white-space: nowrap;
  font-weight: 600;
}

.meta-text {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.9;
  color: var(--ink);
}

.meta-text > span {
  display: inline-block;
  white-space: nowrap;
}

.meta-text .sep {
  color: var(--ink-4);
  margin: 0 6px;
}

.meta-text .strong {
  color: var(--accent-red);
  font-weight: 700;
}

.cta-wrap div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-wrap p {
  text-align: center;
}

.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 26px 14px;
  background: linear-gradient(180deg, var(--accent-red-light) 0%, var(--accent-red-dk) 100%);
  color: #fff;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  border-radius: 4px;
  box-shadow: 0 16px 36px -14px rgba(214, 54, 54, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  min-height: 44px;
}
@media (max-width: 600px) {
  .cta {
    font-size: 20px;
  }
}

.cta::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  pointer-events: none;
}

.cta .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  text-indent: 0;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -14px rgba(214, 54, 54, 0.7);
}

.cta-note {
  display: block !important;
  text-align: center;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0.16em;
  color: var(--ink-2);
}
@media (max-width: 600px) {
  .cta-note {
    font-size: 14px;
  }
}

.cta-note .star {
  color: var(--gold-dk);
}

.scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--serif-en);
  font-size: 10.5px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: var(--ink-3);
}

.scroll .line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--ink-4), transparent);
  position: relative;
  overflow: hidden;
}

.scroll .line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -50%;
  width: 1px;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--ink-2));
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0% {
    top: -50%;
  }
  60% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 460px 1fr;
    gap: 56px;
  }
  .visual {
    width: 460px;
  }
}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 380px 1fr;
    gap: 40px;
  }
  .visual {
    width: 90%;
  }
  .access-pill {
    padding: 11px 16px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }
  .header-right {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .access-pill {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .visual {
    max-width: 90%;
  }
  .v-tagline {
    right: 6px;
  }
}
.section-arch {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
  width: 100vw;
  height: 160px;
  pointer-events: none;
  z-index: 5;
  display: block;
}
@media (max-width: 600px) {
  .section-arch {
    height: 90px;
  }
}

.s10msg {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(60px, 9vw, 150px) clamp(20px, 4vw, 56px) clamp(140px, 22vw, 400px);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #050810 0%, #050810 14%, rgba(5, 8, 16, 0.85) 20%, rgba(5, 8, 16, 0.35) 28%, transparent 40%), radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232, 196, 168, 0.18), transparent 55%), radial-gradient(ellipse 60% 40% at 20% 30%, rgba(120, 100, 180, 0.1), transparent 60%), radial-gradient(ellipse 60% 40% at 80% 35%, rgba(80, 110, 180, 0.08), transparent 60%), #050810;
}
@media (max-width: 720px) {
  .s10msg {
    padding: 100px 20px 160px;
  }
}

.s10msg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(1px 1px at 12% 18%, rgba(255, 255, 255, 0.7), transparent), radial-gradient(1px 1px at 28% 32%, rgba(255, 255, 255, 0.5), transparent), radial-gradient(1.5px 1.5px at 48% 12%, rgba(255, 255, 255, 0.8), transparent), radial-gradient(1px 1px at 68% 28%, rgba(255, 255, 255, 0.5), transparent), radial-gradient(1px 1px at 85% 18%, rgba(255, 255, 255, 0.6), transparent), radial-gradient(1.5px 1.5px at 18% 48%, rgba(255, 255, 255, 0.55), transparent), radial-gradient(1px 1px at 82% 52%, rgba(255, 255, 255, 0.5), transparent), radial-gradient(1px 1px at 35% 62%, rgba(255, 255, 255, 0.45), transparent);
  pointer-events: none;
}

.s10msg .earth-bg {
  position: absolute;
  inset: auto 0 0 0;
  height: 100%;
  bottom: -10%;
  background: url("../img/earth-space.jpg") center top/cover no-repeat;
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
}
.s10msg .earth-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 16, 0.9) 0%, rgba(5, 8, 16, 0.78) 20%, rgba(5, 8, 16, 0.6) 40%, rgba(5, 8, 16, 0.38) 60%, rgba(5, 8, 16, 0.18) 80%, transparent 100%);
  pointer-events: none;
}

.s10msg .inner {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.s10msg .lead {
  font-family: var(--mincho);
  font-weight: 400;
  font-size: clamp(1.7rem, 2vw, 3.6rem);
  line-height: 1.65;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin: 0 auto 40px;
}

.s10msg .lead .gold-em {
  color: #dab588;
  font-size: 1.18em;
  letter-spacing: 0.04em;
  padding: 0 0.04em;
}

.s10msg .body {
  font-weight: 400;
  font-size: clamp(1rem, 1.3vw, 1.35rem);
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: #f4ebde;
  max-width: 680px;
  margin: 0 auto 48px;
  opacity: 0.85;
}
@media (max-width: 600px) {
  .s10msg .body {
    font-size: clamp(0.9rem, 1.3vw, 1.35rem);
  }
}

.s10msg .body p {
  margin: 0 0 24px;
}

.s10msg .body .em {
  color: #dab588;
  font-size: 1.05em;
  letter-spacing: 0.04em;
}

.s10msg .closing {
  font-weight: 400;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  line-height: 2;
  letter-spacing: 0.06em;
  color: #f4ebde;
  margin: 40px auto 0;
}

.s10msg .closing .brand {
  display: block;
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.3vw, 1.3rem);
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  background: linear-gradient(180deg, #f8dca0 0%, #e8c478 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 780px) {
  .s10msg .lead {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }
}
@media (max-width: 600px) {
  .s10msg .lead {
    font-size: clamp(1rem, 5vw, 2.4rem);
  }
}
section {
  position: relative;
}

.sec-head {
  position: relative;
  text-align: center;
  padding-top: 0;
  margin-bottom: 56px;
}
@media (max-width: 600px) {
  .sec-head {
    margin-bottom: 32px;
  }
}

.sec-head .script {
  display: none;
}

.sec-head .eyebrow-en {
  display: block;
  font-family: var(--serif-en);
  font-size: 0.85rem;
  letter-spacing: 0.45em;
  text-indent: 0.45em;
  color: var(--gold-dk);
  margin-bottom: 18px;
}

.sec-head .ja {
  font-family: var(--mincho);
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--ink);
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin: 0 0 14px;
  display: block;
}
@media (max-width: 600px) {
  .sec-head .ja {
    font-size: 1.3rem;
  }
}

.sec-head .ja .em {
  color: var(--rose-dk);
}

.sec-head .ja .qhht-mark {
  font-family: var(--serif-en);
  font-weight: 700;
  color: var(--accent-red);
  letter-spacing: 0.06em;
  margin-right: 0.06em;
  font-size: 1.05em;
}

.sec-head .ornament {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  color: var(--gold);
}

.sec-head .ornament .line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.sec-head .ornament i {
  font-size: 0.7rem;
  color: var(--gold-dk);
}

.head-orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
  margin: 18px auto 0;
}

.head-orn .line {
  width: 36px;
  height: 1px;
  background: var(--gold);
  display: block;
}

.head-orn i {
  font-size: 0.6rem;
  color: var(--gold-dk);
}

.marker,
.marker-rose {
  background: none;
  padding: 0;
  color: var(--rose-dk);
  font-weight: 700;
}

.laurel {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-family: var(--mincho);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.laurel::before,
.laurel::after {
  content: "";
  width: 30px;
  height: 56px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 56' fill='none' stroke='%23b89968' stroke-width='1.4' stroke-linecap='round'><path d='M22 4 C 10 14, 4 30, 12 52'/><path d='M19 10 q -6 1 -7 5'/><path d='M16 18 q -6 1 -7 5'/><path d='M13 26 q -6 1 -7 5'/><path d='M11 34 q -6 1 -7 5'/><path d='M11 42 q -6 1 -7 5'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.laurel::after {
  transform: scaleX(-1);
}

.s02 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 60px 20px 200px;
  margin: 0;
  max-width: none;
  width: 100%;
}

.s02 .inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.s02 .s02-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.s02a {
  background: radial-gradient(60% 50% at 50% 70%, rgba(232, 196, 168, 0.35) 0%, rgba(246, 239, 226, 0) 70%), linear-gradient(180deg, #f6efe2 0%, #efe2c9 50%, #f6efe2 100%);
  padding-bottom: 300px;
}
@media (max-width: 600px) {
  .s02a {
    padding-bottom: 140px;
  }
}

.s02a .s02-bg {
  background-image: url("../img/planets-book.jpg");
  background-size: 1500px auto;
  background-position: center 92%;
  background-repeat: no-repeat;
  -webkit-mask-image: radial-gradient(circle at 50% 92%, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 150px, rgba(0, 0, 0, 0.94) 240px, rgba(0, 0, 0, 0.78) 340px, rgba(0, 0, 0, 0.5) 460px, rgba(0, 0, 0, 0.24) 580px, rgba(0, 0, 0, 0.08) 700px, rgba(0, 0, 0, 0) 820px);
  mask-image: radial-gradient(circle at 50% 92%, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 150px, rgba(0, 0, 0, 0.94) 240px, rgba(0, 0, 0, 0.78) 340px, rgba(0, 0, 0, 0.5) 460px, rgba(0, 0, 0, 0.24) 580px, rgba(0, 0, 0, 0.08) 700px, rgba(0, 0, 0, 0) 820px);
}

.s02a .orbit {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -8%);
  width: 760px;
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 1;
}

.s02a .orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 153, 104, 0.32);
  border-radius: 50%;
}

.s02a .orbit i {
  position: absolute;
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.85;
}

.s02a .orbit i.t1 {
  top: 8%;
  left: 12%;
}

.s02a .orbit i.t2 {
  top: 30%;
  right: 6%;
}

.s02a .orbit i.t3 {
  bottom: 18%;
  left: 4%;
}

.s02a .orbit i.t4 {
  bottom: 4%;
  right: 14%;
}

.s02 .blockA {
  text-align: center;
  position: relative;
}

.s02 .worries {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.s02 .worry {
  position: relative;
  background: rgba(253, 250, 243, 0.96);
  border: 1px solid rgba(184, 153, 104, 0.18);
  box-shadow: 0 14px 28px -16px rgba(74, 62, 46, 0.18);
  border-radius: 4px;
  padding: 22px 12px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.s02 .worry .accent {
  color: var(--accent-red);
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .s02 .worries {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .s02 .worry {
    font-size: 0.9rem;
    padding: 20px 10px;
  }
}
.s02a .arch-divider,
.s02b .arch-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 160px;
  pointer-events: none;
  z-index: 5;
  display: block;
}
@media (max-width: 600px) {
  .s02a .arch-divider,
  .s02b .arch-divider {
    height: 90px;
  }
}

.s02b {
  background: linear-gradient(180deg, #14201f 0%, #14201f 78%, rgba(20, 32, 31, 0.6) 92%, #f9f4e9 100%);
  padding: 20px 20px 240px;
}
@media (max-width: 600px) {
  .s02b {
    padding: 20px 10px 140px;
  }
}

.s02b .s02-bg {
  background-image: url("../img/hero-lotus.jpg");
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, rgba(0, 0, 0, 0.6) 90%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 78%, rgba(0, 0, 0, 0.6) 90%, transparent 100%);
}

.s02b .s02-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #14201f 0%, rgba(20, 32, 31, 0.95) 5%, rgba(20, 32, 31, 0.6) 14%, rgba(20, 32, 31, 0.45) 30%, rgba(20, 32, 31, 0.45) 65%, rgba(20, 32, 31, 0.6) 80%, rgba(20, 32, 31, 0.85) 92%, rgba(249, 244, 233, 0) 100%), radial-gradient(ellipse 75% 55% at 50% 45%, rgba(20, 32, 31, 0.55) 0%, rgba(20, 32, 31, 0.25) 55%, rgba(20, 32, 31, 0) 100%);
}

.s02b .inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  text-align: center;
}
@media (max-width: 600px) {
  .s02b .inner {
    padding: 0;
  }
}

.s02b .blockB {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.s02b .sec-head {
  text-align: center;
  margin-bottom: 40px;
}

.s02b .sec-head .ja {
  color: #ffffff;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.5;
}

.s02b .sec-head .ja .em {
  color: #f4d28a;
  background: none;
  padding: 0;
  font-weight: 800;
}

.s02b .sec-head .ja::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold-2);
  margin: 18px auto 0;
}

.s02b .sec-head .eyebrow-en {
  color: #f4d28a;
}

.s02b .body-stack {
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 28px;
  gap: 20px;
  font-family: var(--sans);
  font-weight: 500;
}

.s02b .body-stack p {
  margin: 0 0 16px;
}

.s02b .body-stack .marker {
  background: none;
  padding: 0;
  color: #e8c4a8;
  font-weight: 700;
}

.s02b .body-stack .key,
.s02b .body-stack .marker.key {
  font-family: var(--mincho);
  font-size: 1.22em;
  font-weight: 800;
  color: #f4d28a;
  letter-spacing: 0.04em;
  background: none;
  padding: 0;
}

.s02b .body-stack .qhht {
  font-family: var(--serif-en);
  color: #f4d28a;
  font-weight: 700;
  font-size: 1.3em;
  letter-spacing: 0.06em;
}

.s02b .frame {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(184, 153, 104, 0.35);
  text-align: center;
  padding: 36px 28px 38px;
  max-width: none;
  backdrop-filter: blur(3px);
  font-family: var(--sans);
}
@media (max-width: 600px) {
  .s02b .frame {
    padding: 28px 15px 30px;
  }
}

.s02b .frame::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--gold);
  pointer-events: none;
}

.s02b .frame .top-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), var(--gold-dk));
  color: var(--paper);
  margin: 0 auto 16px;
  font-size: 1.05rem;
  box-shadow: 0 8px 18px -10px rgba(138, 111, 68, 0.6);
}

.s02b .frame p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.95;
}
@media (max-width: 600px) {
  .s02b .frame p {
    font-size: 0.95rem;
  }
}

.s02b .frame .accent {
  font-family: var(--mincho);
  color: var(--accent-red);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.6;
  display: block;
  margin: 6px 0;
}

.s03 {
  position: relative;
  background: linear-gradient(180deg, #f9f4e9 0%, rgba(249, 244, 233, 0.92) 6%, rgba(249, 244, 233, 0.5) 26%, rgba(249, 244, 233, 0.18) 50%, rgba(249, 244, 233, 0) 72%), url("../img/dove-sunset.jpg") center bottom/cover no-repeat, linear-gradient(180deg, #f9f4e9 0%, #efe2c9 100%);
  padding: 0 20px 220px;
  max-width: none;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 600px) {
  .s03 {
    padding: 0 10px 140px;
  }
}

.s03 .s03-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.s03 .side-curve {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  border-radius: 50%;
  border: 1px solid rgba(184, 153, 104, 0.25);
  pointer-events: none;
  z-index: 1;
}

.s03 .side-curve.left {
  left: -45%;
}

.s03 .side-curve.right {
  right: -45%;
}

.s03 .sparkle-dot {
  position: absolute;
  color: var(--gold);
  font-size: 0.6rem;
  z-index: 1;
  opacity: 0.75;
}

.s03 .sparkle-dot.a1 {
  top: 6%;
  left: 12%;
}
@media (max-width: 600px) {
  .s03 .sparkle-dot.a1 {
    display: none;
  }
}

.s03 .sparkle-dot.a2 {
  top: 20%;
  left: 4%;
}

.s03 .sparkle-dot.a3 {
  top: 50%;
  left: 2%;
}

.s03 .sparkle-dot.a4 {
  bottom: 22%;
  left: 4%;
}

.s03 .sparkle-dot.a5 {
  bottom: 6%;
  left: 14%;
}

.s03 .sparkle-dot.b1 {
  top: 6%;
  right: 12%;
}
@media (max-width: 600px) {
  .s03 .sparkle-dot.b1 {
    display: none;
  }
}

.s03 .sparkle-dot.b2 {
  top: 20%;
  right: 4%;
}

.s03 .sparkle-dot.b3 {
  top: 50%;
  right: 2%;
}

.s03 .sparkle-dot.b4 {
  bottom: 22%;
  right: 4%;
}

.s03 .sparkle-dot.b5 {
  bottom: 6%;
  right: 14%;
}

.s03 .head-extra {
  text-align: center;
  max-width: 880px;
  margin: 0 auto clamp(56px, 7vw, 88px);
}

.s03 .head-extra .body {
  font-family: var(--mincho);
  font-size: 1.05rem;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: var(--ink);
}
@media (max-width: 600px) {
  .s03 .head-extra .body {
    font-size: 0.9rem;
  }
}

.s03 .head-extra .body p {
  margin: 0 0 4px;
  line-height: 2.2;
}

.s03 .head-extra .body .marker.key {
  background: none;
  padding: 0;
  color: var(--accent-red);
  font-weight: 700;
}

.s03 .head-extra .note {
  margin-top: 16px;
  font-family: var(--mincho);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  color: var(--ink-4);
}

.s03 .cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
  max-width: 1280px;
  margin: 0 auto;
}

.s03 .card {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(184, 153, 104, 0.25);
  border-radius: 4px;
  padding: 260px 12px 24px;
  text-align: center;
  box-shadow: 0 18px 36px -28px rgba(74, 62, 46, 0.35);
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: block;
  height: auto;
  gap: 0;
}

.s03 .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 44px -28px rgba(74, 62, 46, 0.45);
  border-color: rgba(184, 153, 104, 0.5);
}

.s03 .card .card-img {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  height: 200px;
  width: auto;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
  filter: saturate(0.92);
}
.s03 .card .card-img div,
.s03 .card .card-img p,
.s03 .card .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.s03 .card .card-img::before {
  content: none;
  display: none;
}

.s03 .card .num {
  position: absolute;
  top: 205px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--gold-dk);
  font-family: var(--serif-en);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(3.6rem, 5vw, 5.4rem);
  letter-spacing: 0.04em;
  display: block;
  text-align: center;
  box-shadow: none;
  z-index: 3;
  border: 0;
  line-height: 0.9;
}
@media (max-width: 600px) {
  .s03 .card .num {
    top: 180px;
  }
}

.s03 .card h3 {
  font-family: var(--mincho);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--accent-red);
  margin: 24px 0 18px;
  min-height: 3.6em;
}

.s03 .card .sep {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 18px;
  position: relative;
}

.s03 .card .sep::before,
.s03 .card .sep::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.s03 .card .sep::before {
  left: -10px;
}

.s03 .card .sep::after {
  right: -10px;
}

.s03 .card p {
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: var(--ink);
}

@media (max-width: 820px) {
  .s03 .cards {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .s03 .card {
    padding: 240px 12px 32px;
  }
  .s03 .card h3 {
    min-height: 0;
    font-size: 1.25rem;
  }
}
.s03 .compare {
  margin-top: clamp(80px, 9vw, 130px);
  position: relative;
  z-index: 2;
}

.s03 .compare-sub-head {
  text-align: center;
  margin: 0 auto 36px;
  position: relative;
  max-width: 780px;
  padding: 28px clamp(20px, 4vw, 48px) 32px;
  background: rgba(253, 250, 243, 0.92);
  border: 1px solid rgba(184, 153, 104, 0.35);
  border-radius: 4px;
  box-shadow: 0 16px 40px -20px rgba(74, 62, 46, 0.25);
  backdrop-filter: blur(2px);
}

.s03 .compare-sub-head .orn-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-dk);
  margin-bottom: 18px;
}

.s03 .compare-sub-head .orn-line .line {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.s03 .compare-sub-head .orn-line i {
  font-size: 0.55rem;
  color: var(--gold-dk);
}

.s03 .compare-sub-head .sub-script {
  display: none;
}

.s03 .compare-sub-head .sub-en {
  display: block;
  font-family: var(--serif-en);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  color: var(--gold-dk);
  margin-bottom: 18px;
}

.s03 .compare-sub-head .sub-ja {
  font-family: var(--mincho);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  letter-spacing: 0.08em;
  color: var(--ink);
  margin: 0 0 12px;
}

.s03 .compare-sub-head .sub-cap {
  font-family: var(--mincho);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin: 0;
}

.s03 .table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--paper);
  border: 1px solid rgba(184, 153, 104, 0.25);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 60px -40px rgba(74, 62, 46, 0.35);
}

.s03 .row {
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid rgba(184, 153, 104, 0.18);
}

.s03 th,
.s03 td {
  padding: 0;
  border: 0;
  font-weight: inherit;
  text-align: inherit;
  vertical-align: middle;
}

.s03 .row-head th {
  border-bottom: 1px solid rgba(184, 153, 104, 0.35);
}

.s03 .row:last-child {
  border-bottom: 0;
}

.s03 .row-head {
  border-bottom: 1px solid rgba(184, 153, 104, 0.35);
}

.s03 .row-head .rh {
  background: transparent;
}

.s03 .row-head .qhht-cell,
.s03 .row-head .other-cell {
  padding: 18px 16px;
  font-family: var(--mincho);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s03 .row-head .qhht-cell .pill {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: var(--paper);
  padding: 12px 36px;
  border-radius: 4px 4px 0 0;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  box-shadow: 0 8px 18px -10px rgba(138, 111, 68, 0.5);
}

.s03 .row-head .other-cell {
  color: var(--ink-4);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.s03 .rh {
  background: rgba(237, 226, 204, 0.45);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: var(--mincho);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  border-right: 1px solid rgba(184, 153, 104, 0.2);
  white-space: nowrap;
}

.s03 .rh-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  color: var(--gold-dk);
  font-size: 0.9rem;
}

.s03 .cell {
  padding: 24px 22px;
  text-align: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--ink);
}
@media (max-width: 600px) {
  .s03 .cell {
    padding: 18px 8px;
  }
}

.s03 .qhht-cell {
  color: var(--ink);
  background: rgba(184, 153, 104, 0.05);
  border-right: 1px solid rgba(184, 153, 104, 0.2);
}

.s03 .qhht-cell .strong {
  color: var(--accent-red);
  font-weight: 700;
  font-size: 1.06rem;
  margin-bottom: 4px;
}
@media (max-width: 600px) {
  .s03 .qhht-cell .strong {
    font-size: 0.98rem;
  }
}

.s03 .other-cell {
  color: var(--ink-3);
}

.s03 .cell .sub {
  font-size: 0.92rem;
  color: var(--ink-3);
  line-height: 1.7;
}

.s03 .other-cell .sub {
  color: var(--ink-4);
}

.s03 .compare-note {
  position: relative;
  margin: 56px auto 0;
  max-width: 1000px;
  padding: 56px clamp(28px, 4vw, 64px) 40px;
  background: rgba(253, 250, 243, 0.85);
  border: 1px solid rgba(184, 153, 104, 0.3);
  border-radius: 2px;
  text-align: center;
  font-family: var(--mincho);
  font-size: 0.92rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--ink-3);
}
@media (max-width: 600px) {
  .s03 .compare-note {
    padding: 40px 20px 28px;
  }
}

.s03 .compare-note::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(184, 153, 104, 0.4);
  border-radius: 1px;
  pointer-events: none;
}

.s03 .compare-note .leaf-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), var(--gold-dk));
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 8px 18px -8px rgba(138, 111, 68, 0.5);
  border: 2px solid var(--paper);
}

.s03 .compare-note p {
  margin: 0 0 6px;
  font-size: 0.98rem;
  line-height: 2;
}

.s03 .compare-note p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.04rem;
}

.s03 .compare-note .key {
  color: var(--accent-red);
  font-weight: 700;
}

.s03 .compare-note .key.strong {
  color: var(--accent-red);
}

@media (max-width: 820px) {
  .s03 .row {
    grid-template-columns: 1fr;
  }
  .s03 .rh {
    border-right: 0;
    border-bottom: 1px solid rgba(184, 153, 104, 0.15);
    padding: 14px 20px;
    justify-content: center;
  }
  .s03 .qhht-cell {
    border-right: 0;
  }
  .s03 .row-head {
    display: none;
  }
  .s03 .cell {
    text-align: center;
  }
  .s03 .cell.qhht-cell::before {
    content: "QHHT（量子催眠）";
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--gold-dk);
    margin-bottom: 6px;
  }
  .s03 .cell.other-cell::before {
    content: "一般的なヒプノセラピー";
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--ink-4);
    margin-bottom: 6px;
  }
}
.s04 {
  position: relative;
  z-index: 1;
  padding: 40px 20px 240px;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .s04 {
    padding: 28px 10px 100px;
  }
}

.s04 .s04-body {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 60px;
}

.s04 .sec-head .ja .em {
  font-size: 0.8em;
}

.s04 .s04-body .body {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--ink);
}
@media (max-width: 600px) {
  .s04 .s04-body .body {
    font-size: 16px;
  }
}

.s04 .s04-body .body p {
  margin: 0;
}

.s04 .s04-body .body .key,
.s04 .s04-body .body .marker.key {
  color: var(--accent-red);
  font-weight: 700;
  background: none;
  padding: 0;
}

.s04 .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.2vw, 30px);
  margin-bottom: clamp(40px, 5vw, 64px);
}

.s04 .card {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(184, 153, 104, 0.25);
  border-radius: 2px;
  padding: 200px 28px 36px 28px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 18px 36px -28px rgba(74, 62, 46, 0.35);
  display: block;
  height: auto;
  gap: 0;
}

.s04 .card::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  pointer-events: none;
}

.s04 .card .card-photo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.92);
}
.s04 .card .card-photo div,
.s04 .card .card-photo p,
.s04 .card .card-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.s04 .card .diamond {
  margin: 0 auto 20px;
  width: 28px;
  height: 28px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  box-shadow: 0 6px 14px -6px rgba(138, 111, 68, 0.55);
}

.s04 .card h3 {
  font-family: var(--mincho);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--accent-red);
  margin: 0 0 14px;
  min-height: 3.3em;
}

.s04 .card .sep {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 16px;
}

.s04 .card p {
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-align: left;
}

.s04 .closing {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(184, 153, 104, 0.25);
  border-radius: 2px;
  padding: 36px clamp(24px, 4vw, 56px) 38px;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.s04 .closing::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  pointer-events: none;
}

.s04 .closing p {
  margin: 0;
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.95;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.s04 .closing .key {
  color: var(--accent-red);
  font-weight: 700;
  font-size: 1.08em;
}

.s04 .closing .accent {
  font-family: var(--mincho);
  color: var(--accent-red);
  font-weight: 800;
  font-size: 1.12em;
}

@media (max-width: 820px) {
  .s04 .cards {
    grid-template-columns: 1fr;
  }
  .s04 .card h3 {
    min-height: 0;
    font-size: 1.2rem;
  }
}
.s05 {
  position: relative;
  padding: 20px 20px 240px;
  max-width: none;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #f9f4e9 0%, #f9f4e9 6%, rgba(249, 244, 233, 0.95) 12%, rgba(249, 244, 233, 0.75) 22%, rgba(249, 244, 233, 0.45) 34%, rgba(249, 244, 233, 0.28) 48%, rgba(249, 244, 233, 0.28) 70%, rgba(249, 244, 233, 0.6) 92%, #f9f4e9 100%), url("../img/silk-cream.jpg") center/cover no-repeat, #f9f4e9;
}
@media (max-width: 600px) {
  .s05 {
    padding: 0 10px 100px;
  }
}

.s05 .s05-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.s05 .qa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 2.6vw, 36px);
  max-width: 1080px;
  margin: 0 auto;
}

.s05 .q {
  position: relative;
  background: rgba(253, 250, 243, 0.95);
  border: 1px solid rgba(184, 153, 104, 0.22);
  border-radius: 2px;
  padding: 32px 36px 32px 86px;
  box-shadow: 0 18px 36px -28px rgba(74, 62, 46, 0.22);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.s05 .q:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 153, 104, 0.5);
  box-shadow: 0 24px 44px -28px rgba(74, 62, 46, 0.4);
}

.s05 .q .mark {
  position: absolute;
  top: 32px;
  left: 32px;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold-dk);
  letter-spacing: 0.02em;
}

.s05 .q .deco {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 70px;
  height: 70px;
  color: var(--gold);
  opacity: 0.55;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
}

.s05 .q .deco-2 {
  position: absolute;
  right: 30px;
  top: 18px;
  width: 12px;
  height: 12px;
  color: var(--gold-2);
  opacity: 0.7;
  font-size: 0.6rem;
}

.s05 .q h3 {
  font-family: var(--mincho);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0 0 18px;
}

.s05 .q p {
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.s05 .q .q-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.s05 .q .q-list li {
  position: relative;
  padding-left: 1.4em;
  margin: 0 0 4px;
  text-indent: 0;
}

.s05 .q .q-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--gold-dk);
  font-weight: 700;
}

.s05 .note {
  margin: clamp(40px, 5vw, 64px) auto 0;
  max-width: 880px;
  text-align: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: rgba(253, 250, 243, 0.85);
  border: 1px solid rgba(184, 153, 104, 0.25);
  border-radius: 4px;
  padding: 28px clamp(24px, 3vw, 36px);
  backdrop-filter: blur(2px);
}
@media (max-width: 600px) {
  .s05 .note {
    padding: 20px 16px;
  }
}

.s05 .note p {
  margin: 0 0 4px;
}

.s05 .note .key {
  color: var(--gold-dk);
  font-weight: 600;
}

.s05 .note .strong {
  color: var(--accent-red);
  font-weight: 700;
}

.s05 .sec-head .ja .em {
  color: var(--accent-red);
  font-weight: 800;
}

@media (max-width: 820px) {
  .s05 .qa {
    grid-template-columns: 1fr;
  }
  .s05 .q {
    padding: 24px 12px 20px 35px;
  }
  .s05 .q .mark {
    top: 24px;
    left: 5px;
    font-size: 1.7rem;
  }
  .s05 .q h3 {
    font-size: 1rem;
  }
  .s05 .q .q-list {
    font-size: 1rem;
  }
  .s05 .note {
    font-size: 1rem;
  }
}
.s06 {
  position: relative;
  padding: 40px 20px 240px;
  max-width: none;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #f9f4e9 0%, #efe2c9 100%);
}
@media (max-width: 600px) {
  .s06 {
    padding: 28px 10px 100px;
  }
}

.s06 .s06-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.s06 .meta {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--rose-dk);
}

.s06 .meta .sep {
  display: inline-block;
  margin: 0 16px;
  color: var(--gold);
  font-weight: 300;
}

.s06 .meta .item .em {
  color: var(--accent-red);
  font-weight: 700;
}

.s06 {
  position: relative;
  padding: 40px 20px 240px;
  max-width: none;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #f9f4e9 0%, #efe2c9 100%);
}
@media (max-width: 600px) {
  .s06 {
    padding: 28px 10px 100px;
  }
}
.s06 .s06-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}
.s06 .meta {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--rose-dk);
}
.s06 .meta .sep {
  display: inline-block;
  margin: 0 16px;
  color: var(--gold);
  font-weight: 300;
}
.s06 .meta .item .em {
  color: var(--accent-red);
  font-weight: 700;
}
.s06 .flow {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
  align-items: stretch;
  gap: 0;
}
.s06 .step {
  position: relative;
  background: rgba(253, 250, 243, 0.95);
  border: 1px solid rgba(184, 153, 104, 0.22);
  border-radius: 4px;
  padding: 70px 16px 32px;
  overflow: visible;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 36px -28px rgba(74, 62, 46, 0.35);
}
.s06 .step > div[id^=cms-text-][id$=-area] {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-height: 100%;
}
.s06 .step::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  pointer-events: none;
}
.s06 .step .step-badge {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-red-light) 0%, var(--accent-red-dk) 100%);
  color: var(--paper);
  font-family: var(--mincho);
  font-weight: 600;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 12px 24px -10px rgba(214, 54, 54, 0.55);
  border: 3px solid var(--paper);
  z-index: 3;
}
.s06 .step .step-badge .lbl {
  font-family: var(--serif-en);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-indent: 0.18em;
  opacity: 0.85;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}
.s06 .step .step-badge .num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.s06 .step h3 {
  margin: 14px 0 16px;
  font-family: var(--mincho);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.s06 .step p {
  width: auto;
  height: auto;
  -o-object-fit: initial;
     object-fit: initial;
  border-radius: 0;
  filter: none;
  display: block;
  margin: 0 0 16px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.08rem;
  line-height: 1.85;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.s06 .step > div[id^=cms-text-][id$=-area] > p:last-child {
  margin-top: auto;
  margin-bottom: 0;
  line-height: 1;
}
.s06 .step .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  padding: 10px 24px;
  background: var(--paper);
  border: 1px solid var(--gold);
  color: var(--gold-dk);
  border-radius: 999px;
  font-size: 1rem;
  letter-spacing: 0.18em;
  font-family: var(--mincho);
  line-height: 1;
  white-space: nowrap;
}
.s06 .step.after .pill {
  background: linear-gradient(180deg, var(--gold), var(--gold-dk));
  color: var(--paper);
  border-color: transparent;
}
.s06 .arrow {
  align-self: center;
  color: var(--gold);
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.s06 .notes-wrap {
  position: relative;
  max-width: 980px;
  margin: clamp(20px, 2.5vw, 36px) auto 0;
  padding: 40px clamp(28px, 4vw, 56px) 36px;
  background: rgba(253, 250, 243, 0.85);
  border: 1px solid rgba(184, 153, 104, 0.22);
  border-radius: 2px;
}
.s06 .notes-ico {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), var(--gold-dk));
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: 2px solid #f9f4e9;
}
.s06 .notes {
  text-align: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.s06 .notes p {
  width: auto;
  height: auto;
  -o-object-fit: initial;
     object-fit: initial;
  border-radius: 0;
  filter: none;
  display: block;
  margin: 0 0 4px;
}
.s06 .notes .em {
  color: var(--accent-red);
  font-weight: 700;
}
.s06 .notes .key {
  color: var(--gold-dk);
  font-weight: 600;
}
@media (max-width: 980px) {
  .s06 .flow {
    grid-template-columns: 1fr 1fr;
    gap: 56px 18px;
  }
  .s06 .arrow {
    display: none;
  }
  .s06 .step {
    padding: 70px 18px 28px;
  }
  .s06 .step h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 560px) {
  .s06 .flow {
    grid-template-columns: 1fr;
  }
  .s06 .meta {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
  }
  .s06 .meta .sep {
    margin: 0 6px;
  }
}

.s06 .notes-wrap {
  position: relative;
  max-width: 980px;
  margin: clamp(20px, 2.5vw, 36px) auto 0;
  padding: 40px clamp(28px, 4vw, 56px) 36px;
  background: rgba(253, 250, 243, 0.85);
  border: 1px solid rgba(184, 153, 104, 0.22);
  border-radius: 2px;
}

.s06 .notes-ico {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), var(--gold-dk));
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: 2px solid #f9f4e9;
}

.s06 .notes {
  text-align: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.s06 .notes p {
  margin: 0 0 4px;
}

.s06 .notes .em {
  color: var(--accent-red);
  font-weight: 700;
}

.s06 .notes .key {
  color: var(--gold-dk);
  font-weight: 600;
}

@media (max-width: 980px) {
  .s06 .flow {
    grid-template-columns: 1fr 1fr;
    gap: 56px 18px;
  }
  .s06 .arrow {
    display: none;
  }
  .s06 .step {
    padding: 70px 18px 28px;
  }
  .s06 .step h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 560px) {
  .s06 .flow {
    grid-template-columns: 1fr;
  }
  .s06 .meta {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
  }
  .s06 .meta .sep {
    margin: 0 6px;
  }
}
.s07 {
  position: relative;
  padding: 40px 20px 240px;
  max-width: none;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #f9f4e9 0%, rgba(249, 244, 233, 0.92) 4%, rgba(249, 244, 233, 0.65) 14%, rgba(249, 244, 233, 0.35) 32%, rgba(249, 244, 233, 0.35) 65%, rgba(249, 244, 233, 0.55) 85%, rgba(249, 244, 233, 0.88) 96%, #f9f4e9 100%), url("../img/s07-bg.jpg") center/cover no-repeat, #f9f4e9;
}
@media (max-width: 600px) {
  .s07 {
    padding: 28px 10px 100px;
  }
}

.s07 .s07-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.s07 .grid {
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.s07 .left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.s07 .right {
  position: relative;
  z-index: 1;
  padding-top: 4px;
}

.s07 .photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--paper);
  border: 1px solid rgba(184, 153, 104, 0.4);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 50px -28px rgba(74, 62, 46, 0.35);
  padding: 12px;
}

.s07 .photo div,
p,
img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  display: block;
  filter: saturate(0.92);
}

.s07 .photo::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  pointer-events: none;
}

.s07 .photo .photo-sparkle {
  position: absolute;
  color: var(--gold-2);
  font-size: 0.6rem;
  z-index: 3;
  opacity: 0.85;
}

.s07 .photo .photo-sparkle.tl {
  top: -6px;
  left: -6px;
  font-size: 0.85rem;
}

.s07 .photo .photo-sparkle.bl {
  bottom: 4px;
  left: 4px;
}

.s07 .photo .photo-sparkle.tr {
  top: 4px;
  right: 4px;
}

.s07 .chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(253, 250, 243, 0.95);
  border: 1px solid rgba(184, 153, 104, 0.3);
  padding: 14px 22px;
  font-family: var(--mincho);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  border-radius: 4px;
  white-space: nowrap;
}

.s07 .chip .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--gold-dk);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.s07 .chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s07 .socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.s07 .socials a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dk));
  border: 1px solid var(--gold-dk);
  color: var(--paper);
  font-family: var(--mincho);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  min-height: 44px;
}

.s07 .socials a:hover {
  background: transparent;
  color: var(--gold-dk);
  border-color: var(--gold);
}

.s07 .name {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: clamp(2.6rem, 4.6vw, 3.6rem);
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
  margin: 10px 0 14px;
}

.s07 .title-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}

.s07 .title-list li {
  margin: 0;
}

.s07 .bio {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-weight: 500;
  background: rgba(253, 250, 243, 0.86);
  padding: 32px clamp(24px, 3vw, 40px);
  border-radius: 4px;
  backdrop-filter: blur(2px);
}
@media (max-width: 600px) {
  .s07 .bio {
    padding: 12px;
  }
}

.s07 .bio p {
  margin: 0;
}

.s07 .bio .intro {
  margin-bottom: 8px;
  padding: 18px 22px;
  background: rgba(184, 153, 104, 0.1);
  border-left: 3px solid var(--gold-dk);
  border-radius: 2px;
  font-family: var(--mincho);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1.85;
}
@media (max-width: 600px) {
  .s07 .bio .intro {
    padding: 12px 8px;
  }
}

.s07 .bio .lead {
  margin-top: 16px;
  padding: 22px 24px;
  background: rgba(184, 153, 104, 0.08);
  border-left: 3px solid var(--accent-red);
  border-radius: 2px;
  font-family: var(--mincho);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1.9;
}
@media (max-width: 600px) {
  .s07 .bio .lead {
    padding: 12px 8px;
  }
}

.s07 .bio .key {
  color: var(--gold-dk);
  font-weight: 700;
}

.s07 .bio .strong {
  color: var(--accent-red);
  font-weight: 700;
}

@media (max-width: 820px) {
  .s07 .grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .s07 .photo {
    max-width: 320px;
    margin: 0 auto;
  }
  .s07 .name {
    font-size: 2.6rem;
  }
  .s07 .bio .intro,
  .s07 .bio .lead {
    font-size: 1rem;
  }
}
.s08 {
  position: relative;
  padding: 20px 20px 240px;
  max-width: none;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #f9f4e9 0%, rgba(249, 244, 233, 0.85) 6%, rgba(249, 244, 233, 0) 22%), url("../img/hero-bokeh.jpg") center/cover no-repeat, #f9f4e9;
}
@media (max-width: 600px) {
  .s08 {
    padding: 20px 10px 100px;
  }
}

.s08 .s08-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.s08 .sec-intro {
  max-width: 820px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
  font-family: var(--sans);
  color: var(--ink);
}

.s08 .sec-intro-lead {
  font-family: var(--mincho);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0 0 24px;
}
@media (max-width: 600px) {
  .s08 .sec-intro-lead {
    font-size: 1.1rem;
  }
}

.s08 .sec-intro-emp {
  font-family: var(--mincho);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--accent-red);
  text-align: center;
  margin: 0 auto 28px;
  padding: 20px clamp(20px, 4vw, 40px);
  background: linear-gradient(180deg, rgba(232, 196, 168, 0.18) 0%, rgba(217, 148, 120, 0.1) 100%);
  border-top: 2px solid var(--accent-red);
  border-bottom: 2px solid var(--accent-red);
  display: block;
  max-width: 760px;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
  white-space: normal;
}

.s08 .sec-intro-emp .emp-mark {
  color: var(--gold);
  font-size: 0.7em;
  margin: 0 0.3em;
}

.s08 .sec-intro-emp .emp-sub {
  display: block;
  font-size: 0.55em;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  margin-top: 6px;
}

.s08 .sec-intro-emp > span.emp-mark,
.s08 .sec-intro-emp > br + .emp-sub {
  display: inline-block;
}

.s08 .sec-intro-body {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--ink-2);
}
@media (max-width: 600px) {
  .s08 .sec-intro-body {
    font-size: 0.85rem;
  }
}

.s08 .voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
.s08 .voice {
  position: relative;
  background: rgba(253, 250, 243, 0.96);
  border: 1px solid rgba(184, 153, 104, 0.25);
  border-radius: 6px;
  padding: 56px 30px 32px;
  box-shadow: 0 18px 36px -28px rgba(74, 62, 46, 0.35);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.s08 .voice > div[id^=cms-text-][id$=-area] {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  height: 100%;
}
.s08 .voice .voice-headline,
.s08 .voice .voice-body,
.s08 .voice .voice-meta {
  width: 100%;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}
.s08 .voice .voice-quote-mark {
  position: absolute;
  top: 14px;
  left: 22px;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.55;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.s08 .voice .voice-headline {
  font-family: var(--mincho);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 20px;
  text-align: left;
}
.s08 .voice .voice-body {
  flex: 1;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 24px;
  text-align: left;
}
.s08 .voice .voice-body .key {
  color: var(--accent-red);
  font-weight: 700;
}
.s08 .voice .voice-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(184, 153, 104, 0.25);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.s08 .voice .voice-sep {
  color: var(--gold);
}
.s08 .voice .voice-name {
  color: var(--ink);
  font-weight: 700;
}

.s08 .more-link-wrap {
  text-align: center;
  margin-top: clamp(36px, 5vw, 56px);
}

.s08 .more-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dk) 100%);
  border: 1px solid var(--gold-dk);
  color: #fdfaf3;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.16em;
  border-radius: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 26px -14px rgba(138, 111, 68, 0.55);
  min-height: 44px;
}

.s08 .more-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(138, 111, 68, 0.7);
  color: #fff;
}

.s08 .note-foot-wrap {
  margin-top: clamp(36px, 4vw, 56px);
  text-align: center;
}

.s08 .note-foot {
  display: inline-block;
  max-width: 720px;
  padding: 16px clamp(20px, 3vw, 32px);
  background: rgba(253, 250, 243, 0.85);
  border: 1px solid rgba(184, 153, 104, 0.22);
  border-radius: 4px;
  backdrop-filter: blur(2px);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  text-align: center;
}

.s08 .note-foot .em {
  color: var(--accent-red);
  font-weight: 700;
}

@media (max-width: 820px) {
  .s08 .voices {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .s08 .voice {
    padding: 48px 24px 28px;
  }
  .s08 .voice .voice-headline {
    font-size: 1.18rem;
  }
}
.s09 {
  position: relative;
  z-index: 1;
  padding: 20px 20px 240px;
  max-width: 900px;
  margin: 0 auto;
  overflow: visible;
  background: #f6efe2;
}
@media (max-width: 600px) {
  .s09 {
    padding: 20px 10px 100px;
  }
}

.s09 .sec-head {
  margin-bottom: 32px;
}

.s09 .price-deco {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 0 auto -60px;
  aspect-ratio: 16/8;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 50px -32px rgba(74, 62, 46, 0.45);
  z-index: 1;
}

.s09 .price-deco div,
p,
img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 90%;
     object-position: center 90%;
}
@media (max-width: 600px) {
  .s09 .price-deco div,
  p,
  img {
    -o-object-position: center 100%;
       object-position: center 100%;
  }
}

.s09 .price-deco::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(246, 239, 226, 0.7) 100%);
}

.s09 .price-card {
  position: relative;
  z-index: 2;
  background: var(--paper);
  border: 1px solid rgba(184, 153, 104, 0.3);
  border-radius: 4px;
  padding: 56px clamp(24px, 4vw, 56px) 48px;
  text-align: center;
  box-shadow: 0 30px 60px -32px rgba(74, 62, 46, 0.4);
  margin-bottom: 36px;
}

.s09 .price-card::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  pointer-events: none;
}

.s09 .price-card .ribbon-wrap {
  margin: -84px auto 22px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.s09 .price-card .ribbon {
  position: relative;
  display: inline-block;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: var(--paper);
  padding: 16px 56px;
  font-family: var(--mincho);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.18em;
}
@media (max-width: 600px) {
  .s09 .price-card .ribbon {
    padding: 12px 40px;
    font-size: 1rem;
  }
}

.s09 .price-card .ribbon::before,
.s09 .price-card .ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14px;
  background: var(--gold-dk);
}

.s09 .price-card .ribbon::before {
  left: -14px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 100% 50%);
}

.s09 .price-card .ribbon::after {
  right: -14px;
  clip-path: polygon(0 0, 100% 0, 0 50%, 100% 100%, 0 100%);
}

.s09 .price-emphasis {
  position: relative;
  background: linear-gradient(180deg, rgba(246, 239, 226, 0.8) 0%, rgba(232, 196, 168, 0.18) 100%);
  border: 1px solid rgba(184, 153, 104, 0.4);
  border-radius: 4px;
  padding: 24px 24px 28px;
  margin: 14px auto 18px;
  max-width: 540px;
}
@media (max-width: 600px) {
  .s09 .price-emphasis {
    padding: 12px 12px 22px;
  }
}

.s09 .normal-line {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(184, 153, 104, 0.4);
  border-radius: 2px;
  background: rgba(253, 250, 243, 0.8);
  margin-bottom: 14px;
  max-width: 340px;
  margin-inline: auto;
  font-family: var(--mincho);
  font-size: 1rem;
  color: var(--ink-3);
}
@media (max-width: 600px) {
  .s09 .normal-line {
    padding: 8px;
    font-size: 0.9rem;
  }
}

.s09 .normal-line .normal-lbl {
  font-family: var(--mincho);
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  color: var(--ink-3);
}
@media (max-width: 600px) {
  .s09 .normal-line .normal-lbl {
    font-size: 0.78rem;
  }
}

.s09 .normal-line .normal-val {
  color: var(--ink-3);
  font-size: 1.15rem;
}

.s09 .normal-line .normal-val .strike {
  text-decoration: line-through;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration-thickness: 2px;
}

.s09 .normal-line .tax-sm {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-4);
  margin-left: 4px;
  display: inline-block;
}

.s09 .arrow-down {
  color: var(--accent-red);
  font-size: 1.4rem;
  line-height: 1;
  margin: 4px 0 2px;
}

.s09 .price-emphasis .label {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: var(--paper);
  font-family: var(--mincho);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  border-radius: 2px;
  margin: 4px 0 12px;
}
@media (max-width: 600px) {
  .s09 .price-emphasis .label {
    padding: 12px 18px;
    font-size: 1rem;
  }
}

.s09 .price-card::after {
  content: none;
}

.s09 .save-badge {
  position: relative;
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  padding: 10px 12px 22px;
  font-family: var(--mincho);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 0;
  margin: 8px auto 18px;
  box-shadow: 0 8px 20px -8px rgba(214, 54, 54, 0.55);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0 60%);
  text-align: center;
  line-height: 1;
}

.s09 .save-badge .off-num {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1;
}

.s09 .save-badge .off-pct {
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--serif-en);
  margin-left: 1px;
  line-height: 1;
}

.s09 .save-badge .off-lbl {
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.s09 .price-card .price {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  font-family: var(--serif-en);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1;
}
@media (max-width: 600px) {
  .s09 .price-card .price {
    padding: 0;
  }
}

.s09 .price-card .price .num {
  color: var(--accent-red);
  font-size: clamp(5rem, 7vw, 7.4rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 0 rgba(168, 36, 36, 0.12);
}
@media (max-width: 600px) {
  .s09 .price-card .price .num {
    font-size: 3.5rem;
  }
}

.s09 .price-card .price .unit {
  font-family: var(--mincho);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-left: 6px;
}

.s09 .price-card .price .tax {
  font-family: var(--mincho);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-left: 8px;
}

.s09 .limited {
  display: block;
  background: var(--accent-red);
  color: #fff;
  border: 0;
  padding: 18px 28px;
  font-family: var(--sans);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 4px;
  margin: 0 auto 16px;
  text-align: center;
  box-shadow: 0 10px 24px -10px rgba(214, 54, 54, 0.5);
}
@media (max-width: 600px) {
  .s09 .limited {
    line-height: 2.3;
    padding: 14px 8px;
    font-size: 1rem;
  }
}

.s09 .limited strong {
  background: #fff;
  color: var(--accent-red);
  padding: 2px 10px;
  font-weight: 800;
  margin: 0 4px;
  border-radius: 2px;
}

.s09 .price-card .includes {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.08rem;
  line-height: 1.95;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
@media (max-width: 600px) {
  .s09 .price-card .includes {
    font-size: 0.95rem;
  }
}

.s09 .price-card .includes .key {
  color: var(--gold-dk);
  font-weight: 600;
}

.s09 .price-card .monitor-cond {
  margin: 18px auto 0;
  padding: 18px 22px;
  background: rgba(184, 153, 104, 0.07);
  border: 1px solid rgba(184, 153, 104, 0.32);
  border-radius: 6px;
}
@media (max-width: 600px) {
  .s09 .price-card .monitor-cond {
    padding: 16px 16px;
  }
}

.s09 .price-card .monitor-cond__head {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  color: var(--gold-dk);
  text-align: center;
  margin: 0 0 12px;
}
.s09 .price-card .monitor-cond__head::before, .s09 .price-card .monitor-cond__head::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: rgba(184, 153, 104, 0.55);
  vertical-align: middle;
  margin: 0 10px;
}

.s09 .price-card .monitor-cond__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.s09 .price-card .monitor-cond__list li {
  position: relative;
  padding-left: 28px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.s09 .price-card .monitor-cond__list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.18em;
  font-size: 0.82rem;
  color: var(--gold);
}
.s09 .price-card .monitor-cond__list li + li {
  margin-top: 8px;
}
@media (max-width: 600px) {
  .s09 .price-card .monitor-cond__list li {
    font-size: 0.88rem;
  }
}

.policy-link-wrap {
  text-align: center;
  margin-top: 18px;
}

.policy-link {
  display: inline-block;
  background: none;
  border: 0;
  padding: 6px 10px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  cursor: pointer;
  transition: color 0.25s ease;
  text-align: center;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
@media (max-width: 600px) {
  .policy-link {
    padding: 0;
  }
}
.policy-link .policy-link__text {
  display: inline;
}
.policy-link .u {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(184, 153, 104, 0.6);
  color: var(--gold-dk);
  font-weight: 600;
}
.policy-link i {
  font-size: 1rem;
  color: var(--gold-dk);
  margin-right: 6px;
  vertical-align: -1px;
}
.policy-link:hover, .policy-link:focus-visible {
  color: var(--ink);
}
.policy-link:hover .u, .policy-link:focus-visible .u {
  text-decoration-color: var(--gold-dk);
}

.footer-policy {
  text-align: center;
  margin: 28px auto 0;
}

.policy-link--footer {
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 500;
}
.policy-link--footer i {
  color: var(--gold-dk);
}
.policy-link--footer:hover, .policy-link--footer:focus-visible {
  color: var(--ink);
}
.policy-link--footer:hover .u, .policy-link--footer:focus-visible .u {
  text-decoration-color: var(--gold-dk);
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.policy-modal[hidden] {
  display: none;
}
.policy-modal .policy-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, 0.6);
  backdrop-filter: blur(4px);
  animation: policy-fade-in 0.25s ease;
}
.policy-modal .policy-modal__dialog {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(184, 153, 104, 0.45);
  outline: 1px solid rgba(184, 153, 104, 0.4);
  outline-offset: -7px;
  border-radius: 4px;
  width: 100%;
  max-width: 800px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: clamp(64px, 6vw, 76px) clamp(28px, 4vw, 52px) clamp(28px, 4vw, 44px);
  box-shadow: 0 30px 80px -20px rgba(74, 62, 46, 0.5);
  animation: policy-pop-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.policy-modal .policy-modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  left: auto;
  margin: 0;
  padding: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(184, 153, 104, 0.45);
  background: rgba(253, 250, 243, 0.95);
  color: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.policy-modal .policy-modal__close::before {
  content: "×";
  display: block;
  font-size: 32px;
  line-height: 1;
  font-weight: 300;
  color: currentColor;
  transform: translateY(-1px);
}
.policy-modal .policy-modal__close > * {
  display: none;
}
.policy-modal .policy-modal__close:hover, .policy-modal .policy-modal__close:focus-visible {
  background: var(--gold);
  color: var(--paper);
  transform: rotate(90deg);
}
.policy-modal .policy-modal__title {
  text-align: center;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(184, 153, 104, 0.3);
}
.policy-modal .policy-modal__title .t-en {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--gold-dk);
  margin-bottom: 6px;
}
.policy-modal .policy-modal__title .t-ja {
  display: block;
  font-family: var(--mincho);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  letter-spacing: 0.1em;
  color: var(--ink);
}
.policy-modal .policy-modal__body {
  font-family: var(--sans);
  font-size: 0.96rem;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.policy-modal .policy-modal__body .policy-intro {
  margin: 0 0 24px;
  padding: 14px 18px;
  background: rgba(232, 196, 168, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
}
.policy-modal .policy-modal__body .policy-intro .key {
  color: var(--accent-red);
  font-weight: 700;
}
.policy-modal .policy-modal__body .policy-block {
  margin: 0 0 20px;
}
.policy-modal .policy-modal__body .policy-block h4 {
  font-family: var(--mincho);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0 0 8px;
  padding-left: 14px;
  border-left: 3px solid var(--gold-dk);
}
.policy-modal .policy-modal__body .policy-block p {
  margin: 0 0 6px;
}
.policy-modal .policy-modal__body .policy-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.policy-modal .policy-modal__body .policy-block ul li {
  position: relative;
  padding-left: 1.2em;
  margin: 0 0 4px;
}
.policy-modal .policy-modal__body .policy-block ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--gold-dk);
  font-weight: 700;
}
.policy-modal .policy-modal__body .policy-block .strong {
  color: var(--accent-red);
  font-weight: 700;
}
.policy-modal .policy-modal__body .policy-block--note {
  margin-top: 24px;
  padding: 12px 16px;
  background: rgba(253, 250, 243, 0.7);
  border: 1px dashed rgba(184, 153, 104, 0.4);
  border-radius: 2px;
  font-size: 0.88rem;
  color: var(--ink-3);
}
.policy-modal .policy-modal__body .policy-block--note p {
  margin: 0;
  line-height: 1.7;
}

@keyframes policy-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes policy-pop-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
body.policy-modal-open {
  overflow: hidden;
}

.s09 .points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
.s09 .point {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(184, 153, 104, 0.25);
  border-radius: 2px;
  padding: 22px 24px 22px 60px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.08rem;
  line-height: 1.85;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.s09 .point::before {
  content: "\f00c";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), var(--gold-dk));
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.75rem;
  line-height: 1;
}
.s09 .point .em {
  font-family: var(--mincho);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.18rem;
  display: block;
  margin-bottom: 6px;
}

.s09 .cta-wrap {
  text-align: center;
  margin-bottom: 60px;
}
.s09 .cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(180deg, #e54545 0%, #b32525 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.28em;
  padding: 28px 56px;
  border-radius: 4px;
  box-shadow: 0 16px 36px -14px rgba(214, 54, 54, 0.6);
  min-height: 44px;
  transition: all 0.3s ease;
}
.s09 .cta::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  transition: transform 0.3s ease;
}
.s09 .cta:hover {
  transform: translateY(-2px);
}
.s09 .cta:hover::after {
  transform: translateX(4px);
}

.s09 .notfor {
  background: rgba(184, 153, 104, 0.06);
  border: 1px solid rgba(184, 153, 104, 0.2);
  border-radius: 2px;
  padding: 36px clamp(24px, 4vw, 50px);
}

.s09 .notfor h3 {
  text-align: center;
  font-family: var(--mincho);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--ink-2);
  margin: 0 0 18px;
}

.s09 .notfor ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s09 .notfor li {
  position: relative;
  padding-left: 30px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.85;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}

.s09 .notfor li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: rotate(45deg);
}

.s09 .notfor li .key {
  color: var(--ink-2);
  font-size: 1.05em;
  font-weight: 700;
}

@media (max-width: 760px) {
  .s09 .points {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  .s09 .cta {
    font-size: 1.18rem;
    padding: 22px 14px;
  }
  .s09 .point {
    font-size: 1rem;
  }
  .s09 .notfor li {
    font-size: 1rem;
  }
}
@media (min-width: 820px) {
  .s09 .price-emphasis {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    grid-template-areas: "badge   label" "normal  price";
    -moz-column-gap: 28px;
         column-gap: 28px;
    row-gap: 20px;
    align-items: center;
    max-width: 920px;
    padding: 40px 44px;
  }
  .s09 .save-badge {
    grid-area: badge;
    margin: 0;
    justify-self: stretch;
    padding: 14px 12px;
    font-size: 1.3rem;
    clip-path: none;
    border-radius: 4px;
  }
  .s09 .save-badge .off-num {
    font-size: 2.1rem;
  }
  .s09 .price-emphasis .label {
    grid-area: label;
    margin: 0;
    justify-self: stretch;
    text-align: center;
    font-size: 1.2rem;
    padding: 14px 28px;
  }
  .s09 .normal-line {
    grid-area: normal;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 20px;
    margin: 0;
    max-width: none;
    align-self: stretch;
    background: rgba(253, 250, 243, 0.92);
  }
  .s09 .normal-line::after {
    content: "";
    position: absolute;
    right: -42px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 0 16px 20px;
    border-color: transparent transparent transparent var(--accent-red);
    filter: drop-shadow(2px 2px 4px rgba(74, 62, 46, 0.2));
    z-index: 3;
  }
  .s09 .normal-line .normal-lbl {
    font-size: 1rem;
    letter-spacing: 0.2em;
  }
  .s09 .normal-line .normal-val .strike {
    font-size: 1.7rem;
  }
  .s09 .arrow-down {
    display: none;
  }
  .s09 .price-card .price {
    grid-area: price;
    margin: 0;
    padding: 0;
    text-align: center;
    align-self: center;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-left: 30px;
  }
  .s09 .price-card .price .num {
    font-size: clamp(4.8rem, 7vw, 6.4rem);
  }
  .s09 .price-card .price .unit {
    font-size: 2.2rem;
  }
  .s09 .price-card .price .tax {
    font-size: 0.95rem;
    margin-left: 4px;
    align-self: baseline;
  }
}
.s09-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 20px auto 32px;
}

.s09-trust__item {
  position: relative;
  text-align: center;
  padding: 22px 18px;
  font-family: var(--mincho);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.s09-trust__item::before,
.s09-trust__item::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 70px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 56' fill='none' stroke='%23b89968' stroke-width='1.4' stroke-linecap='round'><path d='M22 4 C 10 14, 4 30, 12 52'/><path d='M19 10 q -6 1 -7 5'/><path d='M16 18 q -6 1 -7 5'/><path d='M13 26 q -6 1 -7 5'/><path d='M11 34 q -6 1 -7 5'/><path d='M11 42 q -6 1 -7 5'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

.s09-trust__item::before {
  left: 0;
}

.s09-trust__item::after {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}

.s09-trust__item .big {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold-dk);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .s09-trust {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.s10 {
  position: relative;
  z-index: 1;
  padding: 20px 20px 240px;
  max-width: 1040px;
  margin: 0 auto;
  overflow: visible;
}
@media (max-width: 600px) {
  .s10 {
    padding: 20px 10px 100px;
  }
}

.s10 .salon-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.4vw, 32px);
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

.s10 .salon-gallery figure {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 18px 36px -28px rgba(74, 62, 46, 0.4);
  position: relative;
}

.s10 .salon-gallery figure::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(184, 153, 104, 0.4);
  border-radius: 2px;
  pointer-events: none;
  z-index: 2;
}

.s10 .salon-gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: saturate(0.92);
}

.s10 .salon-gallery .g1 {
  transform: translateY(-12px);
}

.s10 .salon-gallery .g2 {
  transform: translateY(12px);
}

@media (max-width: 600px) {
  .s10 .salon-gallery .g1,
  .s10 .salon-gallery .g2 {
    transform: none;
  }
}
.s10 .faq {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.s10 details {
  background: var(--paper);
  border: 1px solid rgba(184, 153, 104, 0.25);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.s10 details[open] {
  border-color: rgba(184, 153, 104, 0.5);
  box-shadow: 0 18px 36px -28px rgba(74, 62, 46, 0.32);
}

.s10 summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 64px 26px 30px;
  position: relative;
  font-family: var(--mincho);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  line-height: 1.5;
  min-height: 44px;
}

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

.s10 summary .q {
  font-family: var(--serif-en);
  font-style: italic;
  color: var(--gold-dk);
  margin-right: 0.5em;
  font-weight: 500;
}

.s10 summary .toggle {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  color: var(--gold-dk);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: transform 0.3s ease;
}

.s10 details[open] summary .toggle {
  transform: translateY(-50%) rotate(45deg);
  color: var(--rose-dk);
}

.s10 .answer {
  padding: 22px 30px 28px;
  border-top: 1px solid rgba(184, 153, 104, 0.18);
  margin-top: -4px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.s10 .answer p {
  margin: 0 0 4px;
}

.s10 .answer .key {
  color: var(--gold-dk);
  font-weight: 600;
}

.s10 .answer .strong {
  color: var(--accent-red);
  font-weight: 600;
}

@media (max-width: 720px) {
  .s10 summary {
    font-size: 1.05rem;
    padding: 22px 50px 22px 22px;
  }
  .s10 .answer {
    font-size: 1rem;
    padding: 18px 22px 22px;
  }
}
.s11cta {
  position: relative;
  padding: 20px 20px 120px;
  background: url("../img/sailboat-rainbow.jpg") center 35%/cover no-repeat, #4a3e2e;
  color: #fdfaf3;
  text-align: center;
  overflow: hidden;
}

.s11cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: clamp(220px, 26vw, 340px);
  background: linear-gradient(180deg, #4a3e2e 0%, #4a3e2e 30%, rgba(74, 62, 46, 0.85) 50%, rgba(74, 62, 46, 0.55) 70%, rgba(74, 62, 46, 0.25) 88%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.s11cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74, 62, 46, 0) 0%, rgba(74, 62, 46, 0.3) 50%, rgba(74, 62, 46, 0.55) 100%);
  z-index: 0;
  pointer-events: none;
}

.s11cta .inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.s11cta h2 {
  font-family: var(--mincho);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: #fdfaf3;
  margin: 0 0 24px;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.s11cta h2 .line {
  display: block;
  white-space: nowrap;
}

.s11cta .sub {
  font-family: var(--mincho);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: rgba(253, 250, 243, 0.95);
  margin-bottom: 30px;
}

.s11cta .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px 64px;
  background: linear-gradient(180deg, var(--accent-red-light) 0%, var(--accent-red-dk) 100%);
  color: #fff;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.26em;
  text-indent: 0.24em;
  border-radius: 4px;
  box-shadow: 0 16px 36px -14px rgba(214, 54, 54, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  min-width: 240px;
  border: 0;
  min-height: 44px;
}
.s11cta .btn::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  pointer-events: none;
}
.s11cta .btn::after {
  content: "\f061";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.85rem;
  line-height: 1;
  text-indent: 0;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.s11cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -14px rgba(214, 54, 54, 0.7);
}
.s11cta .btn:hover::after {
  transform: translateX(4px);
}
.s11cta .btn .arrow {
  display: none;
}

.s11cta .meta {
  margin-top: 36px;
  font-family: var(--mincho);
  font-size: 0.92rem;
  line-height: 2;
  letter-spacing: 0.06em;
  color: rgba(253, 250, 243, 0.82);
}

.s11cta .meta p {
  margin: 0;
}

.s11cta .meta a {
  color: #e8c4a8;
  text-decoration: underline;
}

.s11cta .meta .price {
  color: #ffd29b;
  font-weight: 600;
}

@media (max-width: 720px) {
  .s11cta {
    padding: 40px 10px;
  }
  .s11cta h2 {
    font-size: clamp(1.4rem, 5vw, 1.9rem);
  }
  .s11cta h2 .line {
    white-space: normal;
  }
  .s11cta .btn {
    font-size: 1.15rem;
    padding: 22px 36px;
    letter-spacing: 0.18em;
  }
}
.footer {
  position: relative;
  z-index: 5;
  background: linear-gradient(180deg, #fbf6ec 0%, #f6efe2 100%);
  color: var(--ink);
  padding: 80px clamp(20px, 4vw, 56px) 36px;
  border-top: 1px solid rgba(184, 153, 104, 0.35);
  font-family: var(--mincho);
  font-size: 1.05rem;
  line-height: 1.9;
  letter-spacing: 0.06em;
}
@media (max-width: 600px) {
  .footer {
    padding: 60px 12px 28px;
  }
}

.footer .row {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(184, 153, 104, 0.3);
  align-items: start;
}

.footer .brand-block {
  text-align: center;
}

.footer .brand-block .logo {
  display: block;
  width: 150px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto 14px;
  mix-blend-mode: multiply;
}

.footer .tagline-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 8px auto 18px;
  max-width: 320px;
  color: var(--gold);
}

.footer .tagline-rule span {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.footer .tagline-rule i {
  font-size: 0.55rem;
  color: var(--gold-dk);
}

.footer .info {
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-align: center;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-height: 1.7;
}

.footer .tel {
  color: var(--ink);
  font-family: var(--mincho);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-align: center;
}

.footer .tel a {
  color: var(--ink);
}

.footer .tel i {
  color: var(--gold-dk);
  margin-right: 6px;
}

.footer .sns {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 6px;
}
.footer .sns a {
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  transition: color 0.25s ease;
  min-height: 44px;
}
.footer .sns a::before {
  color: var(--gold-dk);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.footer .sns a:hover {
  color: var(--rose-dk);
}
.footer .sns .sns-instagram::before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  content: "\f16d";
}
.footer .sns .sns-blog::before {
  content: "\f044";
}

.footer .links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 24px;
  align-content: start;
}
.footer .links-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mincho);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.25s ease;
  min-height: 44px;
  padding-block: 10px;
  white-space: nowrap;
  word-break: keep-all;
}
.footer .links-grid a::before {
  content: "›";
  color: var(--gold-dk);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.footer .links-grid a:hover {
  color: var(--gold-dk);
}
@media (max-width: 720px) {
  .footer .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer .row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
}

.footer .dj-note {
  max-width: 1240px;
  margin: 28px auto 0;
  padding: 16px 24px;
  text-align: center;
  background: rgba(184, 153, 104, 0.12);
  border: 1px solid rgba(184, 153, 104, 0.3);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink-2);
  letter-spacing: 0.08em;
}

.footer .dj-note i {
  color: var(--gold-dk);
  margin-right: 4px;
}

.footer .dj-note strong {
  font-family: var(--serif-en);
  font-weight: 600;
  font-style: italic;
  color: var(--accent-red);
  letter-spacing: 0.08em;
  font-size: 1.05em;
  margin: 0 0.2em;
}

.footer .dj-note .sp-br {
  display: none;
}

@media (max-width: 600px) {
  .footer .dj-note .sp-br {
    display: inline;
  }
}
.footer .copyright > div {
  max-width: 1240px;
  margin: 28px auto 0;
  text-align: center;
  font-family: var(--serif-en);
  font-size: 1rem;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 600px) {
  .footer .copyright > div {
    font-size: 0.7rem;
  }
}

.footer .copyright .cr-sparkle {
  font-size: 0.55rem;
  color: var(--gold);
  opacity: 0.8;
}

@media (max-width: 820px) {
  .footer .copyright {
    gap: 18px;
    font-size: 0.78rem;
  }
}
.sp-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px 16px;
  background: rgba(20, 16, 12, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(184, 153, 104, 0.3);
}

.sp-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dk));
  color: #fdfaf3;
  font-family: var(--mincho);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.24em;
  border-radius: 2px;
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.5);
  min-height: 44px;
}

.sp-cta a .ico {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(253, 250, 243, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

@media (max-width: 820px) {
  .sp-cta {
    display: block;
  }
  body {
    padding-bottom: 90px;
  }
}
@media (max-width: 720px) {
  .s02b .body-stack {
    font-size: 1rem;
  }
  .s02b .body-stack .marker.key,
  .s02b .body-stack .key {
    font-size: 1.18em;
  }
  .s02b .frame .accent {
    font-size: 1.15rem;
  }
}
.s03 .compare-note p {
  font-size: 1.1rem;
  line-height: 1.9;
}

.s03 .compare-note p:last-child {
  font-size: 1.18rem;
}

@media (max-width: 720px) {
  .s04 .closing p {
    font-size: 1.05rem;
  }
}
.s06b {
  position: relative;
  padding: 40px 0 240px;
  max-width: none;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #f9f4e9 0%, #f9f4e9 4%, rgba(249, 244, 233, 0.7) 10%, rgba(249, 244, 233, 0.22) 20%, rgba(249, 244, 233, 0.04) 35%, rgba(239, 226, 201, 0.04) 65%, rgba(249, 244, 233, 0.25) 85%, #f9f4e9 100%), url("../img/space-bg.jpg") center/cover no-repeat, #f9f4e9;
}
@media (max-width: 600px) {
  .s06b {
    padding: 20px 0 100px;
  }
}

.s06b-inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.s06b-lead {
  text-align: center;
  font-family: var(--mincho);
  font-size: 1.15rem;
  line-height: 1.95;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  margin: 0 auto clamp(40px, 5vw, 60px);
}
@media (max-width: 600px) {
  .s06b-lead {
    font-size: 0.95rem;
  }
}

.spbr {
  display: none;
}

@media (max-width: 720px) {
  .spbr {
    display: inline;
  }
}
.salon-mosaic {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 auto;
}
.salon-mosaic__item {
  overflow: hidden;
  position: relative;
  padding: 6px;
  background: #fffdf8;
  border: 1.5px solid var(--gold-2);
  box-shadow: 0 18px 36px -28px rgba(74, 62, 46, 0.45);
}
.salon-mosaic__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.5s ease;
}
.salon-mosaic__item:hover img {
  transform: scale(1.04);
}
.salon-mosaic__item--main {
  width: 70%;
  border-color: var(--gold);
  border-radius: 0 30px 30px 0;
}
.salon-mosaic__item--a {
  width: 55%;
  aspect-ratio: 16/12.5;
  margin-left: auto;
  margin-top: -20%;
  border-color: var(--rose);
  border-radius: 30px 0 0 30px;
}
.salon-mosaic__item--b {
  border-color: var(--rose-dk);
}
.salon-mosaic__item--c {
  border-color: var(--gold-dk);
}
.salon-mosaic__item--d {
  border-color: var(--ink-4);
}
.salon-mosaic__logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px auto;
  padding: 0 16px;
  position: relative;
  z-index: 3;
}
.salon-mosaic__logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(300px, 72%);
}
.salon-mosaic__bottom {
  display: contents;
}
@media (max-width: 980px) {
  .salon-mosaic__bottom {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 12px 40px;
    margin-top: 4px;
  }
  .salon-mosaic__bottom .salon-mosaic__item {
    margin: 0;
    border-radius: 80px 80px 0 0;
    aspect-ratio: 3/4;
  }
  .salon-mosaic__item--b, .salon-mosaic__item--c {
    flex: 1 1 0;
  }
  .salon-mosaic__item--b {
    transform: translateY(24px);
  }
  .salon-mosaic__item--c {
    transform: translateY(-10px);
  }
  .salon-mosaic__item--d {
    flex: 0 1 27%;
    opacity: 0.85;
    transform: translateY(44px);
  }
}
@media (min-width: 981px) {
  .salon-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 28px;
         column-gap: 28px;
    row-gap: 24px;
    width: 100%;
    align-items: start;
  }
  .salon-mosaic__bottom {
    display: contents;
  }
  .salon-mosaic__item {
    width: auto;
    margin: 0;
  }
  .salon-mosaic__item--main {
    grid-column: 1/span 6;
    grid-row: 1;
    aspect-ratio: 16/9;
    border-radius: 0 60px 60px 0;
  }
  .salon-mosaic__item--a {
    grid-column: 8/-1;
    grid-row: 1;
    aspect-ratio: 16/10;
    border-radius: 60px 0 0 60px;
    align-self: center;
  }
  .salon-mosaic__logo {
    grid-column: 1/-1;
    grid-row: 2;
    margin: 18px auto 6px;
  }
  .salon-mosaic__logo img {
    max-width: 380px;
  }
  .salon-mosaic__item--b {
    grid-column: 2/span 3;
    grid-row: 3;
    aspect-ratio: 3/4;
    border-radius: 200px 200px 0 0;
    align-self: start;
  }
  .salon-mosaic__item--b img {
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
  .salon-mosaic__item--c {
    grid-column: 6/span 3;
    grid-row: 3;
    aspect-ratio: 1/1.15;
    border-radius: 200px 200px 0 0;
    margin-top: 40px;
  }
  .salon-mosaic__item--d {
    grid-column: 10/span 2;
    grid-row: 3;
    aspect-ratio: 3/4;
    border-radius: 140px 140px 0 0;
    margin-top: 150px;
    opacity: 0.82;
  }
}

.s06b-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-4);
  margin: 24px auto 0;
}

.price-bar {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0 auto 28px;
  padding: 22px 36px 24px;
  border: 1px solid rgba(232, 196, 168, 0.6);
  background: rgba(20, 16, 12, 0.45);
  border-radius: 4px;
  max-width: 580px;
}

.price-bar__lead {
  font-family: var(--mincho);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(253, 250, 243, 0.92);
  margin: 0 0 6px;
}

.price-bar__tag {
  display: inline-block;
  margin-left: 0.4em;
  padding: 2px 12px;
  background: var(--accent-red);
  color: #fff;
  font-family: var(--mincho);
  font-weight: 700;
  font-size: 0.95em;
  letter-spacing: 0.12em;
  border-radius: 2px;
}

.price-bar__main {
  font-family: var(--serif-en);
  color: #ffd29b;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.01em;
}

.price-bar__num {
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 700;
  color: #ffd29b;
}

.price-bar__unit {
  font-family: var(--mincho);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fdfaf3;
  margin-left: 6px;
}

.price-bar__tax {
  font-family: var(--mincho);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(253, 250, 243, 0.7);
  margin-left: 4px;
}

.price-bar__note {
  font-family: var(--mincho);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  color: rgba(253, 250, 243, 0.78);
  margin: 6px 0 0;
}

@media (max-width: 720px) {
  .price-bar {
    padding: 18px 22px 20px;
  }
}
@media (max-width: 720px) {
  .footer .info {
    font-size: 1rem;
  }
  .footer nav.links-grid a {
    font-size: 1.02rem;
  }
}
@media (max-width: 720px) {
  .s08 .sec-intro-emp {
    font-size: 1rem;
    padding: 16px 8px;
  }
}
.s03 .card h3 .em,
.s03 .card h3 .sub-em {
  font-size: 0.78em;
  letter-spacing: 0.02em;
  display: inline;
}

.s03 .card:nth-child(2) h3 {
  font-size: 1.3rem;
  line-height: 1.45;
}
@media (max-width: 600px) {
  .s03 .card:nth-child(2) h3 {
    font-size: 1.18rem;
  }
}

.s07 .left .name {
  text-align: center;
  margin: 0 0 8px;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  letter-spacing: 0.06em;
}

.s07 .left .title-list {
  text-align: center;
  align-items: center;
  margin: 0 auto 22px;
  font-size: 0.98rem;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.s07 .left .title-list li {
  text-align: center;
  padding-left: 0;
  text-indent: 0;
}

.s07 .left .title-list li::before {
  content: none;
}

.s07 .right .name,
.s07 .right .title-list {
  display: none;
}

@media (max-width: 820px) {
  .s07 .left .name {
    font-size: 2.2rem;
  }
}
@media (max-width: 720px) {
  .s09 .price-deco {
    margin-bottom: 0;
  }
  .s09 .price-card {
    padding: 36px 18px 30px;
  }
}
@media (min-width: 721px) {
  .footer .info br {
    display: none;
  }
}
.s10msg .section-arch {
  bottom: -1px;
  z-index: 5;
}

.hero::before {
  background: linear-gradient(180deg, #f6efe2 0%, rgba(246, 239, 226, 0.96) 3%, rgba(246, 239, 226, 0.75) 9%, rgba(246, 239, 226, 0.45) 16%, rgba(246, 239, 226, 0.18) 24%, transparent 34%), radial-gradient(900px 700px at 25% 30%, rgba(232, 196, 168, 0.38), transparent 60%), radial-gradient(900px 700px at 80% 70%, rgba(217, 148, 120, 0.14), transparent 65%);
  z-index: 1;
}

.s06 .s06-inner,
.s07 .s07-inner,
.s08 .s08-inner,
.s05 .s05-inner,
.s03 .s03-inner {
  padding-bottom: 0;
}

@media (max-width: 720px) {
  :root {
    --sec-pt: clamp(40px, 6vw, 56px);
    --sec-pb: clamp(80px, 12vw, 120px);
    --sec-px: clamp(20px, 4vw, 32px);
  }
}
.sc-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.sc-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  #footer .inner {
    flex-direction: column;
    gap: 20px;
  }
  #footer .inner .footer-left,
  #footer .inner .footer-right {
    width: 100%;
    padding-left: 0;
  }
  #header .contact_btn {
    display: none;
  }
}
@media (max-width: 900px) {
  .flogo {
    margin-left: auto;
    margin-right: auto;
  }
  .tbl--hours tr th,
  .tbl--hours tr td {
    padding: 7px 5px;
    font-size: 12px;
  }
  .contact_btn {
    justify-content: center;
  }
  .bg--img02 {
    margin-top: 50px;
  }
  #header {
    padding-top: 0;
  }
  #header .inner {
    max-width: 100%;
    justify-content: space-between;
  }
  .head-right {
    justify-content: flex-end;
    padding-right: 60px;
  }
  #header_nav {
    display: none;
  }
  .sp-btn {
    display: block;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    width: 100%;
  }
  .sp-btn p {
    width: 25%;
  }
  .sp-btn p:nth-child(1) {
    background: #e4405f;
  }
  .sp-btn p:nth-child(2) {
    background: #d99478;
  }
  .sp-btn p:nth-child(3) {
    background: #b89968;
  }
  .sp-btn p:nth-child(4) {
    background: #2c2418;
  }
  .sp-btn p a {
    color: #FEFEFE;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px 5px;
  }
  .sp-btn p a img {
    max-width: 25px;
  }
  .sp-btn p a span {
    display: block;
    text-align: center;
  }
  #sp-logo {
    width: 120px;
  }
  #nav-toggle {
    position: fixed;
    right: 16px;
    top: 24px;
    inline-size: 44px;
    block-size: 44px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 120;
  }
  #nav-toggle .bars {
    position: relative;
    inline-size: 26px;
    block-size: 18px;
    display: grid;
    align-content: space-between;
  }
  #nav-toggle .bars i {
    display: block;
    inline-size: 100%;
    block-size: 3px;
    border-radius: 2px;
    background: #333;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  #nav-toggle.is-active .bars i:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  #nav-toggle.is-active .bars i:nth-child(2) {
    opacity: 0;
  }
  #nav-toggle.is-active .bars i:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
  #sp-nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.96);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.25s ease;
    z-index: -10;
  }
  #sp-nav.open {
    opacity: 1;
    pointer-events: auto;
    z-index: 110;
  }
  #sp-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    min-width: 260px;
  }
  #sp-nav li:not(:first-child) {
    margin-top: 1em;
  }
  #sp-nav li a {
    font-size: 18px;
    color: #2c2418;
    text-decoration: none;
    border-bottom: 1px solid #b89968;
    display: block;
    padding-bottom: 1em;
  }
  #sp-nav .contact_btn {
    flex-wrap: wrap;
    row-gap: 24px;
  }
  #sp-nav .contact_btn p:last-child {
    width: 100%;
  }
  #sp-nav .contact_btn p:last-child a {
    color: #FEFEFE;
    max-width: 260px;
    margin-inline: auto;
  }
  .copyright {
    padding-bottom: 40px;
  }
  .media {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--media-gap, 20px);
  }
  .box {
    padding: 15px;
  }
  .box--pd60 {
    padding: 30px;
  }
  body.fixed {
    overflow: hidden;
  }
  .u-decor-spflex {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .u-decor {
    position: initial;
  }
  .u-decor.w150 img {
    width: 100px;
  }
  .hero--single .hero__content {
    inset: auto 0 8% 0;
  }
  .hero--slider .hero__overlay {
    padding: 14px;
  }
  .hero--slider .hero__overlay h1 {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .hero--slider .hero-prev,
  .hero--slider .hero-next {
    inline-size: 40px;
    block-size: 40px;
  }
  #page-title .inner {
    flex-direction: column;
    gap: 40px;
    padding: 40px 0;
  }
  #page-title .inner .title,
  #page-title .inner .text {
    width: 100%;
  }
  .container--p-xl {
    padding: 60px 15px;
  }
  .container--p-l {
    padding: 40px 15px;
  }
  .container--p-m {
    padding: 30px 15px;
  }
  .container--p-s {
    padding: 20px 15px;
  }
  .l-column {
    row-gap: 20px;
  }
  .l-column.reverse {
    flex-direction: column-reverse;
  }
  .l-column.col2 {
    --cols: 1;
  }
  .l-column.col3 {
    --cols: 1;
  }
  .l-column.col4 {
    --cols: 2;
  }
  .l-column.col5 {
    --cols: 3;
  }
  .sp-contents {
    display: block !important;
  }
  .pc-contents {
    display: none !important;
  }
  .spbr {
    display: block;
  }
  .pcbr {
    display: none;
  }
  .btn {
    margin-top: 20px;
    width: 100%;
  }
  .btn a {
    width: 100%;
    justify-content: center;
  }
  .btn--left {
    text-align: center;
  }
  .btn--left a {
    margin-left: auto;
  }
  #footer .inner .footer-left {
    padding-right: 0;
  }
  .footer_navi ul li {
    width: 50%;
    text-align: left;
  }
  .footer_navi ul li a {
    text-align: center;
  }
  .grid {
    gap: 12px;
  }
  .blog-detail {
    padding: 0;
  }
}
@media (max-width: 600px) {
  #header .contact_btn {
    display: none;
  }
  #header .inner {
    padding: 16px;
  }
  #header .inner #logo {
    width: 90px;
  }
  .copyright {
    padding-bottom: 20px;
  }
  .sp-btn p a {
    font-weight: 600;
    padding: 7px;
  }
  .sp-btn p a img {
    max-width: 20px;
  }
  .sp-btn p a span {
    font-size: 12px;
  }
  body#top::after {
    width: 24rem;
    height: 7rem;
  }
  .hero::after {
    width: 250px;
    height: 140px;
    bottom: -50px;
  }
  .hero--marquee .hero__overlay h1 {
    font-size: 2.5rem;
  }
  .hero--marquee .hero__overlay {
    padding: 20px 15px;
  }
  h1,
  h2,
  h3,
  h4,
  h5 {
    font-weight: 700;
  }
  h1 {
    font-size: 26px;
    font-size: 2.6rem;
  }
  h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }
  h3 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  h4 {
    font-size: 15px;
    font-size: 1.5rem;
  }
  h5 {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .tcenter_pc {
    text-align: left;
  }
  .card {
    padding: 24px;
  }
  .title {
    margin-bottom: 30px;
  }
  .contact_btn.big {
    flex-direction: column;
  }
  .contact_btn.big a {
    padding: 16px 24px;
  }
  .bg--img02::after {
    top: -39px;
    height: 40px;
  }
  .bg--img03::after {
    top: -39px;
    height: 40px;
  }
  .bg-chosei {
    padding-bottom: 50px;
  }
  .bg-chosei2 {
    padding-bottom: 50px;
    margin-bottom: 40px;
  }
  #page-title .inner {
    max-width: 90%;
    gap: 20px;
  }
  .gallery img {
    width: 100%;
  }
  .tabs__panel.is-active {
    padding: 20px 10px;
  }
  .accordion.faq > .ttl {
    padding-left: 3em;
    padding-right: 2.5em;
  }
  .accordion.faq > .ttl::before {
    left: 8px;
    inline-size: 32px;
    block-size: 32px;
  }
  .accordion.faq > .ttl::after {
    right: 10px;
    inline-size: 7px;
    block-size: 7px;
  }
  .accordion.faq > .inner::before {
    left: 8px;
  }
  .accordion.faq > .inner p {
    padding-right: 0;
    padding-left: 2em;
  }
  .contents-nav {
    flex-direction: column;
    margin-bottom: 60px;
  }
  .voice {
    flex-direction: column !important;
    padding: 20px;
  }
  .voice__img {
    width: 100%;
  }
  .voice__img img {
    max-width: 120px;
  }
  .voice__body {
    width: 100%;
    padding: 0;
  }
  .tabs__btn {
    padding: 8px;
    font-size: 0.8em;
  }
  .tabs__panel.is-active {
    padding: 0;
  }
  .tabs__panel .t-m20 {
    margin-top: 10px;
  }
  .accordion > .ttl,
  .accordion.faq > .inner p {
    font-size: 0.9em;
  }
  .bg--round {
    border-radius: 30px;
  }
  .blog-list .blog-card {
    width: 48%;
  }
  .box--pd60 {
    padding: 30px 15px;
  }
  .blog-pager {
    margin-top: 20px;
  }
  .blog-page section {
    margin-top: 30px;
  }
}
@media print {
  a {
    text-decoration: underline;
  }
  .btn,
  .chip,
  .badge,
  .alert {
    box-shadow: none;
    background: transparent;
  }
}
.img-op-15p {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 15%;
     object-position: center 15%;
}
