@charset "UTF-8";
:root {
  --color-ink: #202124;
  --color-paper: #faf9f6;
  --color-mist: #eef3f0;
  --color-line: #d8ded8;
  --color-accent: #0f766e;
  --color-accent-strong: #134e4a;
  --color-white: #ffffff;
  --shadow-soft: 0 18px 60px rgba(32, 33, 36, 0.12);
  --design-width: 402px;
  --lp-max-width: 750px;
  --content-wide: 1120px;
  --content-base: 960px;
  color-scheme: light;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  font-size: min(0.2487562189vw, 1.8656716418px);
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  line-height: 1.75;
  overflow-x: clip;
  font-size: 16rem;
  padding-bottom: calc(64rem + env(safe-area-inset-bottom));
}

body.is-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20rem;
  font-size: 42rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16rem;
  font-size: 28rem;
  line-height: 1.15;
}

h3 {
  margin-bottom: 8rem;
  font-size: 20rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
.l-scale {
  width: min(100vw, var(--lp-max-width));
  padding-top: 62rem;
  margin-inline: auto;
  overflow: visible;
}

.l-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--color-white);
}

.l-fixed-header {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  width: min(100vw, var(--lp-max-width));
  height: 62rem;
  margin-inline: auto;
}

.l-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 62rem;
  padding: 8rem 33rem 8rem 20rem;
  border-bottom: 1rem solid var(--color-line);
  background: var(--color-white);
}

.l-header__logo {
  display: block;
  width: 54rem;
  flex: 0 0 auto;
  text-decoration: none;
}
.l-header__logo img {
  width: 100%;
  height: auto;
}
.l-header__logo:focus-visible {
  outline: 2rem solid var(--color-accent);
  outline-offset: 4rem;
}

.l-header__menu {
  position: absolute;
  top: 62rem;
  right: 0;
  left: 0;
  padding: 18rem 20rem 22rem;
  border-bottom: 1rem solid var(--color-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18rem 40rem rgba(32, 33, 36, 0.12);
}

.l-header__menu-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.l-header__menu-list a {
  display: block;
  padding: 9rem 0;
  border-bottom: 1rem solid rgba(32, 33, 36, 0.12);
  color: var(--color-ink);
  font-size: 14rem;
  font-weight: 500;
  line-height: 1.4;
}
.l-header__menu-list a:focus-visible {
  outline: 2rem solid var(--color-accent);
  outline-offset: 3rem;
}

.l-header__menu-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8rem;
  width: 100%;
  margin: 20rem auto 0;
}

.l-header__menu-button {
  display: block;
}
.l-header__menu-button:focus-visible {
  outline: 2rem solid var(--color-accent);
  outline-offset: 4rem;
}

.l-header__menu-button img {
  width: 100%;
  height: auto;
}

.l-footer {
  width: min(var(--content-wide), 100% - 32px);
  margin: 0 auto;
  padding: 28px 0 40px;
  color: rgba(32, 33, 36, 0.68);
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48rem;
  padding: 12rem 22rem;
  border: 1rem solid var(--color-accent);
  border-radius: 6rem;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}
.c-button:hover {
  background: var(--color-accent-strong);
  transform: translateY(-1rem);
}
.c-button:focus-visible {
  outline: 3rem solid rgba(15, 118, 110, 0.35);
  outline-offset: 4rem;
}
@media (prefers-reduced-motion: reduce) {
  .c-button {
    transition: none;
  }
}

.c-button--dark {
  border-color: var(--color-ink);
  background: var(--color-ink);
}

.c-menu-button {
  position: relative;
  display: block;
  width: 34rem;
  height: 28rem;
  flex: 0 0 auto;
}
.c-menu-button:focus-visible {
  outline: 2rem solid var(--color-accent);
  outline-offset: 6rem;
}

.c-menu-button__line {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 34rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--color-ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.c-menu-button__line:nth-child(1) {
  transform: translateY(-11rem);
}

.c-menu-button__line:nth-child(2) {
  transform: translateY(-50%);
}

.c-menu-button__line:nth-child(3) {
  transform: translateY(8rem);
}

.c-menu-button[aria-expanded=true] .c-menu-button__line:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}

.c-menu-button[aria-expanded=true] .c-menu-button__line:nth-child(2) {
  opacity: 0;
}

.c-menu-button[aria-expanded=true] .c-menu-button__line:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .c-menu-button__line {
    transition: none;
  }
}
.c-fixed-cta {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6rem;
  width: min(100vw, var(--lp-max-width));
  margin-inline: auto;
  padding: 8rem 10rem calc(8rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
}

.c-fixed-cta__button {
  display: block;
}
.c-fixed-cta__button:focus-visible {
  outline: 2rem solid var(--color-accent);
  outline-offset: 3rem;
}

.c-fixed-cta__button img {
  width: 100%;
  height: auto;
}

.c-menu-overlay {
  position: fixed;
  z-index: 110;
  top: 62rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: min(100vw, var(--lp-max-width));
  margin-inline: auto;
  background: rgba(0, 0, 0, 0.45);
}

.p-kv {
  width: 100%;
}

.p-kv__video {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: contain;
}

.p-first {
  width: 100%;
  padding-bottom: 32rem;
}

.p-first__reserve {
  display: block;
}
.p-first__reserve:focus-visible {
  outline: 2rem solid var(--color-accent);
  outline-offset: -4rem;
}

.p-first__reserve img {
  width: 100%;
  height: auto;
}

.p-second {
  position: relative;
  z-index: 2;
  width: 100%;
}

.p-second__image {
  width: 100%;
  height: auto;
}

.p-third {
  --section03-overlap: -20rem;
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: var(--section03-overlap);
}

.p-third__image {
  width: 100%;
  height: auto;
}

.p-fourth {
  --section04-padding-block: 40rem;
  width: 100%;
  padding-block: var(--section04-padding-block);
}

.p-fourth__image {
  width: 321rem;
  height: auto;
  margin-inline: auto;
}

.p-fifth {
  width: 100%;
}

.p-fifth__image {
  width: 100%;
  height: auto;
}

.p-sixth {
  --voice-slide-width: 298rem;
  --voice-slide-gap: 22rem;
  --voice-slide-offset: 52rem;
  --voice-slider-x: var(--voice-slide-offset);
  --section06-padding-block: 48rem;
  --voice-slider-margin-top: 32rem;
  width: 100%;
  padding-block: var(--section06-padding-block);
  overflow: hidden;
}

.p-sixth__title {
  width: 100rem;
  height: auto;
  margin-inline: auto;
}

.p-sixth__slider {
  width: 100%;
  margin-top: var(--voice-slider-margin-top);
  overflow: hidden;
}

.p-sixth__track {
  display: flex;
  gap: var(--voice-slide-gap);
  width: max-content;
  transform: translateX(var(--voice-slider-x));
  transition: transform 600ms ease;
}

.p-sixth__track.is-resetting {
  transition: none;
}

.p-sixth__slide {
  width: var(--voice-slide-width);
  flex: 0 0 auto;
}

.p-sixth__slide img {
  width: 100%;
  height: auto;
}

.p-sixth__dots {
  display: flex;
  justify-content: center;
  gap: 8rem;
  margin-top: 18rem;
}

.p-sixth__dot {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(32, 33, 36, 0.25);
}

.p-sixth__dot[aria-current=true],
.p-sixth__dot.is-current {
  background: var(--color-ink);
}

@media (prefers-reduced-motion: reduce) {
  .p-sixth__track {
    transition: none;
  }
}
.p-seventh {
  --section07-padding-block: 48rem;
  --section07-bg: #FEFAF1;
  width: 100%;
  padding-block: var(--section07-padding-block);
  background-color: var(--section07-bg);
}

.p-seventh__image {
  width: 335rem;
  height: auto;
  margin-inline: auto;
}

.p-seventh__actions {
  display: grid;
  gap: 12rem;
  width: 261rem;
  margin: 24rem auto 0;
}

.p-seventh__button {
  display: block;
}
.p-seventh__button:focus-visible {
  outline: 2rem solid var(--color-accent);
  outline-offset: 4rem;
}

.p-seventh__button img {
  width: 100%;
  height: auto;
}

.p-seventh__note {
  margin-top: 14rem;
  color: var(--color-ink);
  font-size: 12rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.p-eighth {
  --section08-padding-block: 48rem;
  --faq-card-bg: #f6f1e9;
  --faq-accent: #c58b12;
  --faq-note-margin-top: 24rem;
  width: 100%;
  padding-block: var(--section08-padding-block);
}

.p-eighth__title {
  width: 154rem;
  height: auto;
  margin-inline: auto;
}

.p-eighth__list {
  display: grid;
  gap: 6rem;
  width: 362rem;
  margin: 30rem auto 0;
}

.p-eighth__item {
  border-radius: 8rem;
  background: var(--faq-card-bg);
  overflow: hidden;
}

.p-eighth__question {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 14rem;
  min-height: 78rem;
  padding: 18rem 28rem 18rem 32rem;
  cursor: pointer;
}

.p-eighth__question::-webkit-details-marker {
  display: none;
}

.p-eighth__question::after {
  content: "+";
  color: var(--color-ink);
  font-size: 24rem;
  font-weight: 300;
  line-height: 1;
}

.p-eighth__item[open] .p-eighth__question::after {
  content: "−";
}

.p-eighth__mark {
  color: var(--faq-accent);
  font-size: 21rem;
  line-height: 1;
}

.p-eighth__text {
  color: var(--color-ink);
  font-family: inherit;
  font-size: 17rem;
  font-weight: 400;
  line-height: 1.6;
}

.p-eighth__answer {
  padding: 0 34rem 26rem;
}

.p-eighth__answer p {
  font-family: inherit;
  font-size: 14rem;
  font-weight: 400;
  line-height: 1.7;
}

.p-eighth__note {
  margin-top: var(--faq-note-margin-top);
  font-family: inherit;
  font-size: 14rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

.p-ninth {
  --section09-padding-block: 48rem;
  width: 100%;
  padding-block: var(--section09-padding-block);
}

.p-ninth__title {
  width: 88rem;
  height: auto;
  margin-inline: auto;
}

.p-ninth__map {
  width: 362rem;
  height: 240rem;
  margin: 28rem auto 0;
  overflow: hidden;
}

.p-ninth__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-ninth__address {
  width: 362rem;
  margin-top: 20rem;
  margin-inline: auto;
  font-size: 14rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
}

.p-tenth {
  width: 100%;
}

.p-tenth__image {
  width: 100%;
  height: auto;
}

.p-eleventh {
  width: 100%;
  min-height: 392rem;
  padding-top: 237rem;
  padding-bottom: 20rem;
  background-image: url("../images/section11.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}

.p-eleventh__button {
  display: block;
  width: 300rem;
  margin-inline: auto;
}
.p-eleventh__button:focus-visible {
  outline: 2rem solid var(--color-accent);
  outline-offset: 4rem;
}

.p-eleventh__button img {
  width: 100%;
  height: auto;
}

.p-eleventh__social {
  display: flex;
  justify-content: center;
  gap: 18rem;
  margin-top: 22rem;
}

.p-eleventh__social-link {
  display: block;
  width: 36rem;
  height: 36rem;
}
.p-eleventh__social-link:focus-visible {
  outline: 2rem solid var(--color-accent);
  outline-offset: 4rem;
}

.p-eleventh__social-link img {
  width: 100%;
  height: auto;
}

.p-eleventh__copyright {
  margin-top: 14rem;
  color: var(--color-white);
  font-size: 10rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: 48px;
  width: min(var(--content-wide), 100% - 32px);
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: 36px 0 72px;
}
@media (max-width: 760px) {
  .p-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 28px;
  }
}

.p-hero__content {
  max-width: 640px;
}

.p-hero__lead {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: clamp(17px, 2vw, 21px);
}

.p-hero__visual {
  display: grid;
  min-height: 420px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.14), transparent 55%), var(--color-mist);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 760px) {
  .p-hero__visual {
    min-height: 280px;
  }
}

.p-hero__panel {
  display: grid;
  gap: 12px;
  width: min(320px, 80%);
}
.p-hero__panel span {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(32, 33, 36, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.p-section {
  width: min(var(--content-base), 100% - 32px);
  margin: 0 auto;
  padding: 88px 0;
}

.p-section--muted {
  width: 100%;
  max-width: none;
  padding-right: max(16px, (100% - var(--content-wide)) / 2);
  padding-left: max(16px, (100% - var(--content-wide)) / 2);
  background: var(--color-mist);
}

.p-section__label {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.p-section--cta {
  text-align: center;
}
.p-section--cta p {
  max-width: 600px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}
.p-section--cta .c-button {
  margin-top: 28px;
}

.p-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
@media (max-width: 760px) {
  .p-feature-grid {
    grid-template-columns: 1fr;
  }
}

.p-feature {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
}

.p-feature__text {
  margin-bottom: 0;
}

.u-text-center {
  text-align: center;
}