@charset "UTF-8";
/* =========================================
   Colors
   ========================================= */
/* =========================================
   BreakPoint
   ========================================= */
/* =========================================
Interaction
========================================= */
/* =========================================
   Button
   ========================================= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-style: Regular;
  color: #222;
}

.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;
}

.bold {
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .sp-break {
    display: block;
  }
}

.accordion {
  padding: 32px 40px;
  position: relative;
}
.accordion::after {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 0;
  height: 1px;
  background: #cacaca;
}
.accordion:last-child::after {
  display: none;
}
@media only screen and (max-width: 767px) {
  .accordion {
    padding: 32px 16px;
  }
  .accordion::after {
    left: 16px;
    right: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .accordion {
    padding: 32px 16px;
  }
}
.accordion__summary {
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0%;
  position: relative;
}
.accordion__summary__icon {
  display: inline-flex;
  margin-right: 16px;
  justify-content: center;
  align-content: center;
  width: 40px;
  height: 40px;
  background-color: #4b2e39;
  border-radius: 50%;
}
.accordion__summary__icon img {
  width: 20px;
  height: 20px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .accordion__summary {
    display: flex;
    gap: 4px;
    font-size: 18px;
    line-height: 160%;
  }
  .accordion__summary:last-of-type {
    border-bottom: none;
  }
  .accordion__summary__icon {
    margin-right: 8px;
    display: block;
  }
  .accordion__summary__text {
    display: flex;
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .accordion__summary {
    /* 行全体をflex化して高さブレを防止 */
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    /* Qアイコン（40x40を常に維持） */
  }
  .accordion__summary::-webkit-details-marker {
    display: none;
  }
  .accordion__summary__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 40px; /* 縮まない固定幅 */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 0; /* 行高由来の余白を無効化 */
  }
  .accordion__summary__icon img {
    display: block; /* ベースライン余白除去 */
    width: 20px;
    height: 20px;
  }
}
.accordion__toggle {
  text-align: right;
  position: absolute;
  top: 50%;
  right: 0;
}
.accordion__toggle::before, .accordion__toggle::after {
  content: "";
  width: 24px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #222;
}
.accordion__toggle::before {
  position: absolute;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.3s ease;
}
.accordion__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
@media only screen and (max-width: 767px) {
  .accordion__toggle {
    display: block;
    position: static;
    width: 40px;
    height: 40px;
  }
  .accordion__toggle::before, .accordion__toggle::after {
    left: auto;
    right: -16px;
  }
}
.accordion__content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  will-change: max-height, opacity;
  transition: max-height 0.45s ease, opacity 0.35s ease;
  padding-block: 0;
  padding-inline: 0;
}
.accordion__img {
  height: -moz-fit-content;
  height: fit-content;
  padding: 1em 0;
}
.accordion__img img {
  -o-object-fit: contain;
     object-fit: contain;
}
.accordion.is-open .accordion__toggle::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.accordion.is-open .accordion__content {
  max-height: 1000px;
  opacity: 1;
  padding-block: 16px;
}

.footer {
  background-color: #4b2e39;
}
.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 80px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .footer__inner {
    padding: 0 16px;
  }
}
.footer__info {
  display: flex;
  justify-content: space-between;
}
.footer__btn--pc {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 44px;
  text-align: center;
  background-color: #fff;
  color: #4b2e39;
  border-radius: 2px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}
.footer__btn--pc:hover, .footer__btn--pc:focus-visible {
  opacity: 0.8;
}
@media (prefers-reduced-motion: reduce) {
  .footer__btn--pc {
    transition: none;
  }
}
@media only screen and (max-width: 767px) {
  .footer__btn--pc {
    border: 1px solid #222;
  }
}
.footer__links {
  margin-top: 40px;
  display: flex;
  gap: 32px;
}
.footer__link {
  color: #fff;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 4%;
  text-decoration: none;
}
.footer__link:hover, .footer__link:focus-visible {
  text-decoration-line: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.footer__btn--sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .footer__btn--sp {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 44px;
    text-align: center;
    background-color: #fff;
    color: #4b2e39;
    border-radius: 2px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: opacity 0.15s ease;
    width: 100%;
    height: 51px;
  }
  .footer__btn--sp:hover, .footer__btn--sp:focus-visible {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .footer__btn--sp {
    transition: none;
  }
}
.footer__copyright {
  margin-top: 60px;
  color: #86737a;
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .footer__inner {
    padding: 60px 16px 40px;
  }
  .footer__btn--pc {
    display: none !important;
  }
  .footer__btn--sp {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 44px;
    text-align: center;
    background-color: #fff;
    color: #4b2e39;
    border-radius: 2px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: opacity 0.15s ease;
    width: 100%;
    height: 51px;
    margin-top: 40px;
  }
  .footer__btn--sp:hover, .footer__btn--sp:focus-visible {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .footer__btn--sp {
    transition: none;
  }
}
@media only screen and (max-width: 767px) {
  .footer__links {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px 24px;
    padding-left: 0;
    list-style: none;
  }
  .footer__link {
    font-size: 14px;
    line-height: 1.6;
  }
  .footer__link a {
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
  }
  .footer__inner {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .footer__copyright {
    margin-top: 60px;
    font-size: 8px;
  }
}

.header {
  background: #4b2e39;
  /* =========================
        Header (SP)
   ========================= */
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  height: 76px;
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  .header-inner {
    padding: 0 16px;
  }
}
@media only screen and (max-width: 1090px) {
  .header-inner {
    padding: 0 20px;
    display: flex;
    align-items: center;
  }
  .header-inner:has(details[open]) {
    padding: 0;
  }
}
.header-pc {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  white-space: nowrap;
}
@media only screen and (max-width: 1200px) {
  .header-pc {
    display: none;
  }
}
.header-pc__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-pc__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-pc__nav-item {
  position: relative;
  padding-inline: 1.5rem;
}
.header-pc__nav-item + .header-pc__nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.2em;
  background: #bababa;
  opacity: 0.6;
}
.header-pc__nav-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  color: inherit;
  text-decoration: none;
}
.header-pc__nav-link:hover, .header-pc__nav-link:focus-visible {
  text-decoration-line: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.header-pc__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 44px;
  text-align: center;
  background-color: #fff;
  color: #4b2e39;
  border-radius: 2px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}
.header-pc__btn:hover, .header-pc__btn:focus-visible {
  opacity: 0.8;
}
@media (prefers-reduced-motion: reduce) {
  .header-pc__btn {
    transition: none;
  }
}
.header-sp {
  display: none;
}
@media only screen and (max-width: 1200px) {
  .header-sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 76px;
    background-color: #4b2e39;
  }
  .header-sp__left {
    display: flex;
    gap: 20px;
  }
  .header-sp__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 44px;
    text-align: center;
    background-color: #fff;
    color: #4b2e39;
    border-radius: 2px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: opacity 0.15s ease;
    width: 120px;
    height: 44px;
  }
  .header-sp__btn:hover, .header-sp__btn:focus-visible {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 1200px) and (prefers-reduced-motion: reduce) {
  .header-sp__btn {
    transition: none;
  }
}
@media only screen and (max-width: 1200px) {
  .header-sp__btn:hover {
    opacity: 0.8;
  }
  .header-sp__hamburger {
    width: 32px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
  }
  .header-sp__hamburger-bar, .header-sp__hamburger-bar::before, .header-sp__hamburger-bar::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 5px;
  }
  .header-sp__hamburger-bar::before, .header-sp__hamburger-bar::after {
    position: absolute;
    left: 0;
  }
  .header-sp__hamburger-bar::before {
    top: -8px;
  }
  .header-sp__hamburger-bar::after {
    top: 8px;
  }
  .header-sp__hamburger[aria-expanded=true] .header-sp__hamburger-bar {
    background-color: transparent;
  }
  .header-sp__hamburger[aria-expanded=true] .header-sp__hamburger-bar::before {
    top: 0;
    transform: rotate(45deg);
  }
  .header-sp__hamburger[aria-expanded=true] .header-sp__hamburger-bar::after {
    top: 0;
    transform: rotate(-45deg);
  }
}
.header-sp__drawer {
  height: 100vh;
  background-color: #4b2e39;
  color: #fff;
  padding: 0 24px;
  position: fixed;
  top: 76px;
  right: 0;
  width: 100vw;
  height: calc(100dvh - 76px);
  z-index: 1000;
  overflow-y: auto;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  will-change: transform, opacity;
}
.header-sp__drawer-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 44px;
  text-align: center;
  background-color: #fff;
  color: #4b2e39;
  border-radius: 2px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 0.15s ease;
  width: 100%;
  margin-top: 40px;
}
.header-sp__drawer-btn:hover, .header-sp__drawer-btn:focus-visible {
  opacity: 0.8;
}
@media (prefers-reduced-motion: reduce) {
  .header-sp__drawer-btn {
    transition: none;
  }
}
.header-sp__drawer[data-open=true] {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.header-sp__nav-item {
  position: relative;
  border-bottom: 1px solid var(--Red-red-300, #86737a);
}
.header-sp__nav-item::after {
  content: "";
  position: absolute;
  top: 35%;
  right: 0;
  width: 20px;
  height: 20px;
  background: url(/src/img/icon_dogleg.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.header-sp__nav-link {
  padding: 24px 0;
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 4%;
}
.header-sp__nav-link--eng {
  font-family: "Cormorant";
  font-weight: 500;
}

.cta {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 20px;
  position: relative;
}
.cta__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 1;
}
.cta__bg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
@media only screen and (max-width: 767px) {
  .cta__bg img {
    height: 100%;
  }
}
.cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(75, 46, 57, 0.3);
  z-index: 2;
}
.cta__wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 4px;
  padding: 9px;
  position: relative;
  z-index: 200;
}
@media only screen and (max-width: 767px) {
  .cta__wrapper {
    padding: 6px;
  }
}
.cta__content {
  padding: 24px 19px 0;
  border: 1px solid #222;
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  .cta__content {
    padding: 24px 17px 0;
  }
}
.cta__title {
  font-family: Zen Old Mincho;
  font-weight: 500;
  font-style: Medium;
  font-size: 28px;
  line-height: 160%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 16px;
}
.cta__title--underline {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-decoration: underline;
  text-underline-offset: 8px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .cta__title {
    font-size: 20px;
  }
}
.cta__desc {
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 24px;
}
.cta__desc--medium {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.cta__desc--large {
  font-size: 32px;
  font-weight: 700;
}
.cta__desc--small {
  width: 100%;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .cta__desc {
    font-size: 14px;
  }
  .cta__desc--medium {
    font-size: 18px;
  }
  .cta__desc--large {
    font-size: 24px;
  }
  .cta__desc--small {
    font-size: 10px;
  }
}
.cta__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 44px;
  text-align: center;
  background-color: #4b2e39;
  color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 0.15s ease;
  width: 440px;
  height: 67px;
  margin: 0 auto;
  margin-bottom: 24px;
}
.cta__btn:hover, .cta__btn:focus-visible {
  opacity: 0.8;
}
@media (prefers-reduced-motion: reduce) {
  .cta__btn {
    transition: none;
  }
}
.cta__btn::after {
  content: url("/src/img/icon_arrow_right_white.svg");
  width: 20.5px;
  height: 50px;
  position: absolute;
  top: 33%;
  right: 24px;
}
@media only screen and (max-width: 767px) {
  .cta__btn {
    width: 100%;
    height: 51px;
  }
  .cta__btn::after {
    top: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .cta {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.card-col3 {
  display: flex;
  gap: 32px 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.card-col3 .card {
  flex: 0 1 calc((100% - 48px) / 3);
}
.card-col3 .card__textarea {
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .card-col3 {
    flex-direction: column;
    gap: 24px;
  }
  .card-col3 .card {
    width: 100%;
  }
}

.card {
  display: flex;
  flex-direction: column;
}
.card__img {
  width: 100%;
  line-height: 0;
}
.card__img img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .card__img {
    height: auto;
    aspect-ratio: 343/187.58;
  }
  .card__img img {
    height: auto;
  }
}
.card__textarea {
  background-color: #fff;
  padding: 24px;
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .card__textarea {
    padding: 16px;
  }
}
.card__textarea--bgNone {
  background-color: transparent;
  padding: 0 8px;
  padding-top: 16px;
}
@media only screen and (max-width: 767px) {
  .card__textarea--bgNone {
    padding: 8px;
    padding-bottom: 0;
  }
}
.card__title {
  font-family: Zen Old Mincho;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
}
@media only screen and (max-width: 767px) {
  .card__title {
    font-size: 16px;
  }
}
.card__title--line {
  margin-top: 12px;
  display: block;
  width: 100%;
  border: 1px solid #222;
}
.card__desc {
  margin-top: 12px;
  font-size: 14px;
  line-height: 160%;
}

.fv {
  background-image: url(/src/img/img_fv.webp);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
}
.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
  pointer-events: none;
}
.fv__inner {
  max-width: 1285px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 110px;
  padding-bottom: 180px;
  position: relative;
  z-index: 22;
}
@media only screen and (max-width: 767px) {
  .fv__inner {
    padding: 0 16px;
  }
}
@media only screen and (max-width: 767px) {
  .fv__inner {
    padding-top: 32px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) {
  .fv__inner {
    padding-top: 32px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.fv__titlearea {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .fv__titlearea {
    margin-bottom: 170px;
  }
}
.fv__title {
  font-family: "Zen Old Mincho";
  font-weight: 600;
  font-size: 40px;
  line-height: 180%;
  letter-spacing: 2%;
  text-align: center;
  color: #fff;
  text-shadow: 0px 4px 8px rgba(51, 51, 51, 0.6);
}
.fv__title-logo {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .fv__title {
    font-size: 24px;
  }
  .fv__title-logo {
    width: 150px;
    height: 86px;
    margin: 0 auto;
  }
}
.fv__buttons {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 78px;
}
@media only screen and (max-width: 767px) {
  .fv__buttons {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
  }
}
.fv__button--white {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 44px;
  text-align: center;
  background-color: #fff;
  color: #4b2e39;
  border-radius: 2px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 0.15s ease;
  width: 240px;
  height: 51px;
  font-weight: 500;
}
.fv__button--white:hover, .fv__button--white:focus-visible {
  opacity: 0.8;
}
@media (prefers-reduced-motion: reduce) {
  .fv__button--white {
    transition: none;
  }
}
@media only screen and (max-width: 767px) {
  .fv__button--white {
    width: 327px;
    height: 56px;
    margin: 0 auto;
  }
}
.fv__button--brown {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 44px;
  text-align: center;
  background-color: #4b2e39;
  color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 0.15s ease;
  width: 240px;
  height: 56px;
  border: 1px solid #fff;
  display: flex;
  gap: 8px;
}
.fv__button--brown:hover, .fv__button--brown:focus-visible {
  opacity: 0.8;
}
@media (prefers-reduced-motion: reduce) {
  .fv__button--brown {
    transition: none;
  }
}
@media only screen and (max-width: 767px) {
  .fv__button--brown {
    width: 327px;
    height: 56px;
    margin: 0 auto;
  }
}
.fv__button--icon {
  display: block;
}
@media only screen and (max-width: 1200px) {
  .fv__rsv-bar {
    display: none;
  }
}

.message {
  background-color: #fcfaf6;
}
.message__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 173px;
  padding-bottom: 273px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .message__inner {
    padding: 0 16px;
  }
}
@media only screen and (max-width: 767px) {
  .message__inner {
    padding: 200px 16px 180px;
  }
}
.message__img {
  position: absolute;
}
.message__img::before {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  background-color: #4b2e39;
}
@media only screen and (max-width: 767px) {
  .message__img::before {
    width: 30px;
    height: 30px;
  }
}
.message__img--left {
  width: clamp(134.58px, 134.58px + 163.42 * (100vw - 375px) / 1065, 298px);
  height: clamp(115.16px, 115.16px + 139.84 * (100vw - 375px) / 1065, 255px);
  top: 30%;
  left: 0;
}
.message__img--left::before {
  top: -32px;
  left: -12px;
}
@media only screen and (max-width: 1200px) {
  .message__img--left {
    top: 23px;
    left: 12px;
  }
  .message__img--left::before {
    top: -12px;
    left: -12px;
  }
}
.message__img--right {
  width: clamp(160px, 160px + 136 * (100vw - 375px) / 1065, 296px);
  height: clamp(135.68px, 135.68px + 115.32 * (100vw - 375px) / 1065, 251px);
  top: 63px;
  right: 0;
}
.message__img--right::before {
  bottom: -32px;
  right: 12px;
}
@media only screen and (max-width: 767px) {
  .message__img--right {
    top: 49px;
    right: 0;
  }
  .message__img--right::before {
    bottom: -12px;
    right: 4px;
  }
}
.message__img--bottom {
  width: clamp(138.27px, 138.27px + 141.73 * (100vw - 375px) / 1065, 280px);
  height: clamp(125.93px, 125.93px + 129.07 * (100vw - 375px) / 1065, 255px);
  bottom: 20px;
  right: 145px;
}
.message__img--bottom::before {
  bottom: -32px;
  right: -32px;
}
@media only screen and (max-width: 767px) {
  .message__img--bottom {
    right: 36px;
    bottom: 9px;
  }
  .message__img--bottom::before {
    right: -18px;
    bottom: -6px;
  }
}
@media only screen and (max-width: 767px) {
  .message__img {
    width: 140px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .message__img img {
    width: 100%;
  }
  .message__img--right {
    width: 160px;
  }
}
.message__title {
  font-family: Zen Old Mincho;
  font-weight: 500;
  font-style: Medium;
  color: #4b2e39;
  font-size: 38px;
  line-height: 160%;
  letter-spacing: 2%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .message__title {
    font-size: 24px;
  }
}
.message__title--small {
  display: block;
  margin-bottom: 16px;
  font-family: Cormorant;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 160%;
  letter-spacing: 0%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .message__title--small {
    font-size: 24px;
  }
}
.message__text {
  margin-top: 24px;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 2%;
  text-align: center;
}

.voice {
  padding-top: 80px;
  padding-bottom: 200px;
  background-color: #fcfaf6;
}
@media only screen and (max-width: 767px) {
  .voice {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.voice__textarea {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .voice__textarea {
    margin-bottom: 40px;
  }
}
.voice__title {
  font-family: "Zen Old Mincho";
  font-weight: 500;
  font-style: Medium;
  color: #4b2e39;
  font-size: 38px;
  line-height: 160%;
  letter-spacing: 0%;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .voice__title {
    font-size: 24px;
  }
}
.voice__text {
  color: #4b2e39;
  font-weight: 500;
  font-size: 24px;
  line-height: 160%;
  padding-left: 48px;
  position: relative;
  margin-bottom: 16px;
}
.voice__text::before {
  position: absolute;
  top: 2px;
  left: 0;
  content: url(/src/img/icon_nikukyu.svg);
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 767px) {
  .voice__text {
    font-size: 18px;
    padding-left: 36px;
  }
  .voice__text::before {
    content: "";
    background: url(/src/img/icon_nikukyu.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 18px;
    height: 18px;
  }
}
.voice .splide {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.voice .splide__track {
  order: 1;
}
.voice .splide__arrows {
  order: 2;
  position: static;
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: flex-end;
}
.voice .splide__arrow {
  position: static;
  width: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
}
.voice .splide__arrow--prev {
  background-image: url("/src/img/icon_arrow_left.svg");
}
.voice .splide__arrow--prev::after {
  position: absolute;
  top: -8px;
  left: 115%;
  content: "";
  width: 0;
  height: 49px;
  border: 1px solid #222;
}
.voice .splide__arrow--next {
  background-image: url("/src/img/icon_arrow_right.svg");
}
.voice .splide__arrow svg {
  display: none;
}
.voice__card {
  display: flex;
  vertical-align: center;
  width: 300px;
  height: 424px;
  background-color: #fff;
  border: 1px solid var(--Red-red-500, #4b2e39);
  border-radius: 16px;
  position: relative;
  margin-top: 30px;
}
.voice__card::before, .voice__card::after {
  position: absolute;
  z-index: 99999;
  width: 35.38px;
  height: 27.2px;
}
.voice__card::before {
  content: url(/src/img/icon_quotation1.svg);
  top: -10px;
  left: 20px;
}
.voice__card::after {
  content: url(/src/img/icon_quotation2.svg);
  bottom: -10px;
  right: 20px;
}
.voice__card__text {
  color: #4b2e39;
  text-align: center;
  margin: auto 30px;
  margin-right: 28px;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 2%;
}
@media only screen and (max-width: 767px) {
  .voice__card__text {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .voice__card {
    width: 290px;
    height: 323px;
  }
  .voice__card::before, .voice__card::after {
    position: absolute;
    z-index: 99999;
    width: 31.39px;
    height: 24.15px;
    content: "";
  }
  .voice__card::before {
    background: url(/src/img/icon_quotation1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .voice__card::after {
    background: url(/src/img/icon_quotation2.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.facility {
  background-color: #4b2e39;
}
.facility__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 120px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .facility__inner {
    padding: 0 16px;
  }
}
@media only screen and (max-width: 767px) {
  .facility__inner {
    padding: 60px 16px 0;
  }
}
.facility__media {
  display: flex;
  margin-bottom: 100px;
  align-items: stretch;
  gap: 84px;
}
.facility__media__textarea {
  width: 53.98%;
}
.facility__media__img {
  max-width: 516px;
}
.facility__media__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .facility__media {
    flex-direction: column;
    gap: 40px;
  }
  .facility__media__textarea {
    order: 2;
    width: 100%;
  }
  .facility__media__img {
    order: 1;
    max-width: 100%;
  }
  .facility__media__img img {
    height: auto;
    -o-object-fit: unset;
       object-fit: unset;
  }
}
.facility__title {
  margin-bottom: 32px;
  font-family: Zen Old Mincho;
  font-weight: 500;
  font-style: Medium;
  color: #fff;
  font-size: 32px;
  line-height: 160%;
  letter-spacing: 2%;
}
.facility__title__head {
  display: block;
  margin-bottom: 24px;
  font-family: Cormorant;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 160%;
  letter-spacing: 0%;
}
@media only screen and (max-width: 767px) {
  .facility__title {
    font-size: 22px;
  }
  .facility__title__head {
    font-size: 18px;
  }
}
.facility__desc {
  color: #fff;
  font-size: 15px;
  line-height: 180%;
  margin-bottom: 40px;
}
.facility__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 44px;
  text-align: center;
  background-color: #fff;
  color: #4b2e39;
  border-radius: 2px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 0.15s ease;
  width: 238.5px;
  height: 51px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  gap: 10px;
}
.facility__btn:hover, .facility__btn:focus-visible {
  opacity: 0.8;
}
@media (prefers-reduced-motion: reduce) {
  .facility__btn {
    transition: none;
  }
}
.facility__btn--icon {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .facility__btn {
    width: 100%;
  }
}
.facility__note {
  margin-top: 8px;
  color: #fff;
  font-size: 13px;
  line-height: 160%;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .facility__note {
    font-weight: 400;
    text-align: left;
    font-size: 12px;
    letter-spacing: 0;
  }
}
.facility__cta {
  margin-top: 100px;
}
@media only screen and (max-width: 767px) {
  .facility__cta {
    margin-top: 60px;
  }
}

.tips {
  background-color: #fcfaf6;
}
.tips__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 120px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .tips__inner {
    padding: 0 16px;
  }
}
@media only screen and (max-width: 767px) {
  .tips__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.tips__wrapper {
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .tips__wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
.tips__title {
  font-family: Zen Old Mincho;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 160%;
  letter-spacing: 2%;
}
.tips__title__head {
  display: block;
  margin-bottom: 8px;
  font-family: Cormorant;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 160%;
  letter-spacing: 0%;
}
.tips__title__tag {
  margin-top: 26px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  background-color: #4b2e39;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0%;
}
.tips__program {
  display: grid;
  grid-auto-rows: 1fr;
  width: 74.58%;
  row-gap: 24px;
  margin-bottom: 120px;
}
@media only screen and (max-width: 767px) {
  .tips__program {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
.tips__media {
  display: flex;
  align-content: stretch;
  gap: 24px;
}
.tips__media__img {
  flex: 0 0 45.5%;
}
.tips__media__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.tips__media__textarea {
  flex: 54.5%;
  padding: 8px 0 8px 8px;
}
.tips__media__title {
  color: #4b2e39;
  font-family: Zen Old Mincho;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
}
.tips__media__title--head {
  display: block;
  font-family: Cormorant;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0%;
}
@media only screen and (max-width: 767px) {
  .tips__media__title {
    font-size: 20px;
  }
  .tips__media__title--head {
    font-size: 24px;
  }
}
.tips__media__desc {
  margin-top: 8px;
  font-size: 15px;
  line-height: 160%;
  letter-spacing: 0%;
}
.tips__media__desc--attention {
  display: block;
  font-size: 13px;
}
.tips__media__desc--talkingDog-1 {
  display: block;
  margin-top: 24px;
  width: 56.8%;
}
.tips__media__desc--talkingDog-2 {
  display: block;
  margin-top: 24px;
  width: 47%;
}
.tips__media__desc--talkingDog-3 {
  display: block;
  margin-top: 24px;
  width: 63.5%;
}
.tips__media__desc--talkingDog-4 {
  display: block;
  margin-top: 24px;
  width: 47%;
}
@media only screen and (max-width: 767px) {
  .tips__media {
    flex-direction: column;
    gap: 0;
  }
  .tips__media__img {
    flex: 0 0 100%;
  }
}
.tips__cta {
  display: block;
  margin-top: 80px;
}
.tips__cta img {
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .tips__cta {
    margin-top: 0;
  }
}

.spot {
  background-color: #fcfaf6;
}
.spot__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .spot__inner {
    padding: 0 16px;
  }
}
.spot__title {
  margin-bottom: 24px;
  font-family: Zen Old Mincho;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 160%;
  letter-spacing: 2%;
}
.spot__title--head {
  display: block;
  font-family: Cormorant;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  letter-spacing: 0%;
}
@media only screen and (max-width: 767px) {
  .spot__title {
    font-size: 24px;
  }
  .spot__title--head {
    font-size: 18px;
  }
}
.spot__desc {
  line-height: 160%;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .spot__desc {
    font-size: 15px;
    margin-bottom: 24px;
  }
}
.spot__cards {
  margin-bottom: 120px;
}
.spot__subtitle {
  margin-bottom: 16px;
  font-family: "Zen Old Mincho";
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 160%;
  letter-spacing: 0%;
}
.spot__subtitle__desc {
  margin-bottom: 40px;
  font-family: "Noto Sans JP";
  font-size: 15px;
}
.spot__slider {
  padding-bottom: 80px;
}

.faq {
  background-color: #fcfaf6;
}
.faq__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 767px) {
  .faq__inner {
    padding: 0 16px;
  }
}
@media only screen and (max-width: 767px) {
  .faq__inner {
    padding-bottom: 60px;
  }
}
.faq__title {
  margin-bottom: 24px;
  font-family: Zen Old Mincho;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 160%;
  letter-spacing: 2%;
}
.faq__title--head {
  display: block;
  margin-bottom: 8px;
  font-family: Cormorant;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  letter-spacing: 0%;
}
@media only screen and (max-width: 767px) {
  .faq__title {
    font-size: 24px;
  }
  .faq__title--head {
    font-size: 18px;
  }
}
.faq__title-desc {
  margin-bottom: 40px;
  line-height: 160%;
  letter-spacing: 0%;
}
.faq__qalists {
  background-color: #fff;
  padding: 0 40px;
}
@media only screen and (max-width: 767px) {
  .faq__qalists {
    padding: 0;
  }
}

.thanks {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 636px;
}
.thanks__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.thanks__bg img {
  width: 100%;
  height: auto;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right 70%;
     object-position: right 70%;
}
.thanks__bg-filter {
  position: absolute;
  inset: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(51, 51, 51, 0) 14.1%, rgba(51, 51, 51, 0.7) 98.37%);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.thanks__textarea {
  position: absolute;
  z-index: 100;
  right: 15%;
  max-width: 814px;
  padding-top: 67px;
  margin: 0 auto;
  color: #fff;
  padding-bottom: 66px;
}
.thanks__title {
  margin-bottom: 24px;
  font-family: Zen Old Mincho;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 160%;
  letter-spacing: 2%;
}
.thanks__title--head {
  display: block;
  font-family: Cormorant;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  letter-spacing: 0%;
}
.thanks__desc {
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 180%;
}
.thanks__desc--pcbr {
  display: block;
}
.thanks__buttons {
  display: flex;
  gap: 20px;
}
.thanks__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 44px;
  text-align: center;
  background-color: #fff;
  color: #4b2e39;
  border-radius: 2px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 0.15s ease;
  width: 238.5px;
  height: 51px;
  font-size: 16px;
  font-weight: 500;
  padding-right: 35px;
  position: relative;
}
.thanks__btn:hover, .thanks__btn:focus-visible {
  opacity: 0.8;
}
@media (prefers-reduced-motion: reduce) {
  .thanks__btn {
    transition: none;
  }
}
.thanks__btn::after {
  position: absolute;
  top: 25%;
  right: 23.5px;
  content: url(/src/img/icon_arrow_right.svg);
  width: 20px;
  height: 4px;
}
.thanks__btn--brown {
  color: #fff;
  background-color: #4b2e39;
  border: 1px solid #fff;
}
.thanks__btn--brown::after {
  content: url(/src/img/icon_arrow_right_white.svg);
}

@media only screen and (max-width: 767px) {
  .thanks {
    height: auto;
  }
  .thanks__bg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
  }
  .thanks__bg img {
    display: block;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .thanks__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(51, 51, 51, 0.3) 0%, rgba(51, 51, 51, 0.18) 35%, rgba(51, 51, 51, 0) 100%);
    pointer-events: none;
  }
  .thanks__bg-filter {
    display: none;
  }
  .thanks__textarea {
    position: static;
    z-index: auto;
    max-width: none;
    padding: 24px 16px 80px;
    color: #fff;
    background-color: #4b2e39;
  }
  .thanks__title {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .thanks__title--head {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .thanks__desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 40px;
  }
  .thanks--pcbr {
    display: inline;
  }
  .thanks__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .thanks__btn {
    width: 100%;
    height: 52px;
    font-size: 16px;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
  }
  .thanks__btn::after {
    display: flex;
  }
}/*# sourceMappingURL=style.css.map */