@charset "UTF-8";
/* backdrop */
@-webkit-keyframes backdrop {
  from {
    background-color: transparent;
  }
  to {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@keyframes backdrop {
  from {
    background-color: transparent;
  }
  to {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
/**
    @include media($breakpoints) { properties }
 */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

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

ol, ul, details {
  list-style: none;
}

table {
  border-collapse: collapse;
}

textarea {
  form-sizing: content;
  white-space: revert;
}

:focus {
  outline: none;
}

html {
  height: -webkit-fill-available;
  background-color: var(--wlht-primaryColor);
  color: var(--wlht-fontColor);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 100%;
  font-weight: 400;
  scroll-behavior: smooth;
  /* iPhone Safariの横向きで基本フォントサイズ拡大を防ぐ */
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  word-break: auto-phrase; /* 日本語自動折返し */
}

body {
  min-height: 100vh;
  min-height: 100dvh;
}

picture, img {
  display: block;
  max-width: 100%;
  height: auto;
  pointer-events: none;
}

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

strong {
  font-weight: 700;
}

b {
  font-weight: 500;
}

a, button, select {
  cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: inherit !important;
}

input {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input:where(:not([type=datetime]):not([type=date]):not([type=month]):not([type=week]):not([type=time]):not([type=datetime-local]))::-webkit-calendar-picker-indicator {
  display: none !important;
}

.l-header {
  z-index: 10;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  pointer-events: none;
}
.l-header::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  transition: background-color 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (min-width: 961px) {
  .l-header::before {
    display: none;
  }
}
.l-header.is-active::before {
  background-color: var(--wlht-tertiaryColor);
}
.l-header > * {
  pointer-events: visible;
}
.l-header__trigger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: block;
  width: 48px;
  height: 48px;
  background-color: var(--wlht-accentColor);
  background-image: linear-gradient(var(--wlht-tertiaryColor), var(--wlht-tertiaryColor));
  background-repeat: no-repeat;
  background-size: 1.5rem 0.0625rem;
  background-position: 50% 1.4375rem;
  transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (min-width: 961px) {
  .l-header__trigger {
    display: none;
  }
}
.l-header__trigger::before, .l-header__trigger::after {
  content: "";
  position: absolute;
  left: calc(50% - 0.75rem);
  width: 1.5rem;
  height: 0.0625rem;
  background-color: var(--wlht-tertiaryColor);
  transition-property: top, transform;
  transition-duration: 0.4s;
  transition-delay: 0s, 0.2s;
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75), cubic-bezier(0.165, 0.84, 0.44, 1);
}
.l-header__trigger::before {
  top: 0.8125rem;
}
.l-header__trigger::after {
  top: 2.0625rem;
}
.l-header.is-active > .l-header__trigger {
  right: 16rem;
  background-image: none;
}
.l-header.is-active > .l-header__trigger::before, .l-header.is-active > .l-header__trigger::after {
  top: 50%;
}
.l-header.is-active > .l-header__trigger::before {
  transform: translate3d(0, 50%, 0) rotate(45deg);
}
.l-header.is-active > .l-header__trigger::after {
  transform: translate3d(0, 50%, 0) rotate(-45deg);
}
.l-header__nav {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  z-index: 10;
  width: 16rem;
  height: 100%;
  background-color: var(--wlht-primaryColor);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (min-width: 961px) {
  .l-header__nav {
    right: auto;
    left: 0;
    z-index: unset;
    transform: none;
    transition: none;
  }
}
.l-header__nav__head {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 8rem;
  padding-inline: 2rem;
}
.l-header__nav__body {
  width: 100%;
  height: calc(100% - 8rem);
  padding-inline: 2rem;
  padding-bottom: 2rem;
  background-color: var(--wlht-tertiaryColor);
  overflow: auto;
}
.l-header__nav__body {
  -ms-overflow-style: noe; /* Edge */
  scrollbar-width: none; /* Firefox */
}
.l-header__nav__body::-webkit-scrollbar { /* Safari */
  content-visibility: auto;
  display: none;
}
.l-header__nav__body__list {
  padding-top: 0.75rem;
  padding-bottom: 0.6875rem;
}
.l-header__nav__body__list + .l-header__nav__body__list {
  border-top: 1px solid var(--wlht-quaternaryColor);
}
.l-header__nav__body__list > li {
  margin-block: 0.5625rem;
}
.l-header__nav__body__list > li > a {
  position: relative;
  display: block;
  font-size: 0.875rem;
  line-height: 24/14;
}
.l-header__nav__body__list > li > a::before, .l-header__nav__body__list > li > a::after {
  content: "";
  position: absolute;
  display: block;
  top: 0.6875rem;
  height: 0.0625rem;
  background-color: var(--wlht-fontColor);
}
.l-header__nav__body__list > li > a::before {
  right: 0.3125rem;
  transform: rotate(45deg);
  transform-origin: 100% 0;
  width: 0.5rem;
}
.l-header__nav__body__list > li > a::after {
  left: calc(100% - 1.5rem);
  width: 1.1875rem;
}
@media (any-hover: hover) {
  .l-header__nav__body__list > li > a {
    transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .l-header__nav__body__list > li > a:hover {
    color: var(--wlht-accentColor);
    font-weight: 700;
  }
  .l-header__nav__body__list > li > a::before, .l-header__nav__body__list > li > a::after {
    transition-property: right, width, background-color;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .l-header__nav__body__list > li > a:hover::before, .l-header__nav__body__list > li > a:hover::after {
    background-color: var(--wlht-accentColor);
  }
  .l-header__nav__body__list > li > a:hover::before {
    right: 0;
  }
  .l-header__nav__body__list > li > a:hover::after {
    width: 1.5rem;
  }
}
.l-header__nav__body__option {
  margin-top: 0.6875rem;
}
.l-header.is-active .l-header__nav {
  transform: none;
}

.l-footer {
  display: grid;
  grid-template-columns: [full-start] minmax(min(2rem, 8.3333333333%), 1fr) [content-start] min(960px, 100% - min(2rem, 8.3333333333%) * 2) [content-end] minmax(min(2rem, 8.3333333333%), 1fr) [full-end];
}
@media screen and (min-width: 640px) {
  .l-footer {
    grid-template-columns: [full-start] minmax(min(3rem, 5%), 1fr) [content-start] min(960px, 100% - min(3rem, 5%) * 2) [content-end] minmax(min(3rem, 5%), 1fr) [full-end];
  }
}
@media screen and (min-width: 961px) {
  .l-footer {
    grid-template-columns: [full-start] minmax(8.041958042%, 1fr) [content-start] min(960px, 83.9160839161%) [content-end] minmax(8.041958042%, 1fr) [full-end];
  }
}
.l-footer > * {
  grid-column: content;
}
.l-footer > .is-side {
  grid-column: content;
}
.l-footer > .is-full {
  grid-column: full;
}
@media screen and (min-width: 961px) {
  .l-footer {
    grid-template-columns: [full-start] minmax(min(4rem, 3.3333333333%), 1fr) [content-start] min(1792px, 100% - min(4rem, 3.3333333333%) * 2) [content-end] minmax(min(4rem, 3.3333333333%), 1fr) [full-end];
  }
}
.l-footer > * {
  grid-column: content;
  border-image-slice: 0 fill;
  border-image-outset: 0 100vw;
}
.l-footer > .is-full {
  grid-column: full;
}
.l-footer__adult {
  border-image-source: linear-gradient(var(--wlht-sixthColor), var(--wlht-sixthColor));
}
.l-footer__adult__text {
  position: relative;
  padding-block: 27px;
  padding-left: 4rem;
  font-size: 0.75rem;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 640px) {
  .l-footer__adult__text {
    padding-block: 24px;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.l-footer__adult__text::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 0;
  width: 3rem;
  height: 3rem;
  background-image: url(../images/icon/icon-exclamation-mark.webp);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 640px) {
  .l-footer__adult__text::before {
    top: 1.5rem;
  }
}
.l-footer__adult__text > br {
  display: none;
}
@media screen and (min-width: 640px) {
  .l-footer__adult__text > br {
    display: revert;
  }
}
.l-footer__body {
  border-image-source: linear-gradient(var(--wlht-tertiaryColor), var(--wlht-tertiaryColor));
  padding-top: 1.125rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 640px) {
  .l-footer__body {
    padding-top: 2.6875rem;
    padding-bottom: 3.25rem;
  }
}
@media screen and (min-width: 640px) {
  .l-footer__nav__list, .l-footer__nav__list--small {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.l-footer__nav__list > li, .l-footer__nav__list--small > li {
  margin-block: 0.5rem;
}
@media screen and (min-width: 640px) {
  .l-footer__nav__list > li, .l-footer__nav__list--small > li {
    margin-block: 0;
  }
}
.l-footer__nav__list > li > a, .l-footer__nav__list--small > li > a {
  display: grid;
  grid-template-columns: calc(1em - 0.125rem) 1fr;
  grid-column-gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
}
@media (any-hover: hover) {
  .l-footer__nav__list > li > a, .l-footer__nav__list--small > li > a {
    transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .l-footer__nav__list > li > a:hover, .l-footer__nav__list--small > li > a:hover {
    color: var(--wlht-accentColor);
  }
}
.l-footer__nav__list > li > a::before, .l-footer__nav__list--small > li > a::before {
  content: "";
  display: block;
  width: calc(1em - 0.125rem);
  height: calc(1em - 0.125rem);
  border-radius: 100%;
  background-color: var(--wlht-accentColor);
}
.l-footer__nav__list--small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.375rem;
}
@media screen and (min-width: 640px) {
  .l-footer__nav__list--small {
    display: flex;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
}
.l-footer__nav__list--small > li {
  margin-block: 0;
}
.l-footer__nav__list--small > li > a {
  grid-column-gap: 0.4375rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 2;
}
.l-footer__nav__list + .l-footer__nav__list--small, .l-footer__nav__list--small + .l-footer__nav__list--small {
  margin-top: 0.6875rem;
}
@media screen and (min-width: 640px) {
  .l-footer__nav__list + .l-footer__nav__list--small, .l-footer__nav__list--small + .l-footer__nav__list--small {
    margin-top: 0.3125rem;
  }
}
.l-footer__content:not(:first-child) {
  margin-top: 2.375rem;
}
@media screen and (min-width: 640px) {
  .l-footer__content {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.l-footer__status__tel {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 200;
  line-height: 1;
  white-space: nowrap;
}
.l-footer__status__address {
  margin-top: 0.4375rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
.l-footer__status__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 1rem;
  max-width: 25rem;
  margin-top: 2.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 640px) {
  .l-footer__status__buttons {
    margin-top: 0.9375rem;
  }
}
.l-footer__status__buttons > * {
  margin-top: 0 !important;
}
.l-footer__profile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 4rem;
}
@media screen and (min-width: 640px) {
  .l-footer__profile {
    align-items: flex-end;
    margin-top: 0;
  }
}
.l-footer__profile__logo {
  width: 17.375rem;
  margin-inline: auto;
}
@media screen and (min-width: 640px) {
  .l-footer__profile__logo {
    margin-inline: 0;
  }
}
.l-footer__profile__copyright {
  margin-top: 2.125rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  text-align: center;
}

.l-sticky {
  position: relative;
  display: grid;
}
.l-sticky > * {
  grid-area: 1/-1;
}
.l-sticky > *:first-child {
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (min-width: 961px) {
  .l-sticky > *:first-child {
    position: -webkit-sticky;
    position: sticky;
  }
}

.l-main {
  display: grid;
  grid-template-columns: [full-start] minmax(min(2rem, 8.3333333333%), 1fr) [content-start] min(960px, 100% - min(2rem, 8.3333333333%) * 2) [content-end] minmax(min(2rem, 8.3333333333%), 1fr) [full-end];
  z-index: 0;
  overflow: hidden;
}
@media screen and (min-width: 640px) {
  .l-main {
    grid-template-columns: [full-start] minmax(min(3rem, 5%), 1fr) [content-start] min(960px, 100% - min(3rem, 5%) * 2) [content-end] minmax(min(3rem, 5%), 1fr) [full-end];
  }
}
@media screen and (min-width: 961px) {
  .l-main {
    grid-template-columns: [full-start] minmax(8.041958042%, 1fr) [content-start] min(960px, 83.9160839161%) [content-end] minmax(8.041958042%, 1fr) [full-end];
  }
}
.l-main > * {
  grid-column: content;
}
.l-main > .is-side {
  grid-column: content;
}
.l-main > .is-full {
  grid-column: full;
}
@media screen and (min-width: 961px) {
  .l-main {
    margin-left: 16rem;
    background-image: linear-gradient(var(--wlht-sixthColor), var(--wlht-sixthColor));
    background-repeat: no-repeat;
    background-position: calc((100% - min(960px, 81.0810810811%)) / 2 + 8.5rem) 0;
    background-size: 0.0625rem 100%;
  }
}
.l-main__visual {
  width: min(60rem, 100% - min(2rem, 8.3333333333%));
  margin-bottom: 4rem;
}
@media screen and (min-width: 640px) {
  .l-main__visual {
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 961px) {
  .l-main__visual {
    width: calc(min(60rem, 100% - min(2rem, 8.3333333333%)) + 2.5rem);
  }
}
.l-main__visual__image {
  width: 100%;
  height: 25rem;
}
.l-main__visual__image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-main__visual__content {
  width: min(520px, 100% - min(2rem, 8.3333333333%));
  padding-top: 6rem;
  padding-inline: 2rem;
  padding-bottom: 2rem;
  margin-top: -4rem;
  margin-left: auto;
  border-image-source: linear-gradient(var(--wlht-fifthColor), var(--wlht-fifthColor));
  border-image-slice: 0 fill;
  border-image-outset: 0 100vw 0 0;
  color: var(--wlht-tertiaryColor);
}
.l-main__visual__content__head {
  padding-left: 0.875rem;
  border-left: 0.0625rem solid var(--wlht-accentColor);
}
.l-main__visual__content__head > h1 {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
}
.l-main__visual__content__head > p {
  font-family: "Poppins", sans-serif;
  font-size: 2.25rem;
  font-weight: 200;
  line-height: 0.8333333333;
}
.l-main__visual__content__text {
  margin-top: 1.125rem;
  font-size: 0.75rem;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
}
.l-main__visual--home {
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 5.625rem;
  grid-template-rows: 22rem;
  width: 100%;
  height: 22rem;
  margin-bottom: 0;
}
@media screen and (min-width: 640px) {
  .l-main__visual--home {
    grid-template-columns: 1fr 11.5rem;
    grid-template-rows: 30rem;
    height: 30rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 961px) {
  .l-main__visual--home {
    grid-template-rows: 100vh;
    grid-template-rows: 100dvh;
    height: 100vh;
    height: 100dvh;
  }
}
@media screen and (min-width: 1401px) {
  .l-main__visual--home {
    grid-template-columns: minmax(60rem, 76.25rem) minmax(11.5rem, 1fr);
  }
}
.l-main__visual--home .l-main__visual__image {
  display: grid;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.l-main__visual--home .l-main__visual__image__item {
  grid-area: 1/-1;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.l-main__visual--home .l-main__visual__image__item.is-active {
  opacity: 1;
}
.l-main__visual--home .l-main__visual__image__item > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-main__visual--home .l-main__visual__text {
  display: flex;
  justify-content: center;
  height: 100%;
  padding-top: 72px;
}
@media screen and (min-width: 640px) {
  .l-main__visual--home .l-main__visual__text {
    padding-top: 74px;
  }
}
@media screen and (min-width: 961px) {
  .l-main__visual--home .l-main__visual__text {
    align-items: center;
    padding-top: 0;
  }
}
.l-main__visual--home .l-main__visual__text > h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7777777778;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
@media screen and (min-width: 640px) {
  .l-main__visual--home .l-main__visual__text > h2 {
    font-size: 1.25rem;
    line-height: 1.8;
  }
}
@media screen and (min-width: 961px) {
  .l-main__visual--home .l-main__visual__text > h2 {
    font-size: 1.5rem;
    line-height: 1.6666666667;
  }
}

@media screen and (min-width: 961px) {
  .l-section {
    display: grid;
    grid-template-columns: 8.5625rem 1fr;
    grid-column-gap: 2.4375rem;
  }
}
.l-section__headline {
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  padding-left: 0.9375rem;
  border-left: 0.0625rem solid var(--wlht-accentColor);
  white-space: nowrap;
}
@media screen and (min-width: 961px) {
  .l-section__headline {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.875rem;
         column-gap: 0.875rem;
    row-gap: 7px;
  }
}
@media screen and (min-width: 961px) {
  .l-section__headline {
    display: block;
    padding-right: 0.9375rem;
    padding-left: 0;
    border-right: 0.0625rem solid var(--wlht-accentColor);
    border-left: none;
    text-align: right;
  }
}
.l-section__headline__en {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 200;
  line-height: 1;
}
@media screen and (min-width: 640px) {
  .l-section__headline__en {
    font-size: 2.25rem;
    line-height: 0.8888888889;
  }
}
.l-section__headline__ja {
  margin-top: 0.4375rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 640px) {
  .l-section__headline__ja {
    margin-top: 0;
  }
}
@media screen and (min-width: 961px) {
  .l-section__headline__ja {
    margin-top: 0.4375rem;
  }
}

.l-container {
  display: grid;
  grid-template-columns: [full-start] minmax(min(2rem, 8.3333333333%), 1fr) [content-start] min(960px, 100% - min(2rem, 8.3333333333%) * 2) [content-end] minmax(min(2rem, 8.3333333333%), 1fr) [full-end];
}
@media screen and (min-width: 640px) {
  .l-container {
    grid-template-columns: [full-start] minmax(min(3rem, 5%), 1fr) [content-start] min(960px, 100% - min(3rem, 5%) * 2) [content-end] minmax(min(3rem, 5%), 1fr) [full-end];
  }
}
@media screen and (min-width: 961px) {
  .l-container {
    grid-template-columns: [full-start] minmax(8.041958042%, 1fr) [content-start] min(960px, 83.9160839161%) [content-end] minmax(8.041958042%, 1fr) [full-end];
  }
}
.l-container > * {
  grid-column: content;
}
.l-container > .is-side {
  grid-column: content;
}
.l-container > .is-full {
  grid-column: full;
}

/**
 * News
 */
@media screen and (min-width: 640px) {
  .l-news {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2rem;
  }
}
.l-news__item {
  padding-block: 1rem;
  border-top: 0.0625rem solid var(--wlht-quaternaryColor);
}
.l-news__item:last-of-type {
  border-bottom: 0.0625rem solid var(--wlht-quaternaryColor);
}
@media screen and (min-width: 640px) {
  .l-news__item:nth-last-of-type(2) {
    border-bottom: 0.0625rem solid var(--wlht-quaternaryColor);
  }
}
@media screen and (min-width: 640px) {
  .l-news__item:first-of-type {
    grid-column: span 2;
    padding-block: 0;
    margin-bottom: 3rem;
    border: none;
  }
}
.l-news__link {
  display: grid;
  grid-template-columns: 4rem 1fr;
  grid-template-rows: 1rem 1fr;
  grid-template-areas: "img head" "img ttl";
  grid-column-gap: 1rem;
  grid-row-gap: 0.75rem;
}
@media screen and (min-width: 640px) {
  .l-news__item:first-of-type .l-news__link {
    grid-template-columns: 8.5625rem 1fr;
    grid-row-gap: 1.0625rem;
  }
}
.l-news__thumbnail {
  grid-area: img;
  width: 100%;
  height: 4rem;
  overflow: hidden;
}
.l-news__thumbnail > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 640px) {
  .l-news__item:first-of-type .l-news__thumbnail {
    height: 7rem;
    border-right: 0.0625rem solid var(--wlht-accentColor);
  }
  .l-news__item:first-of-type .l-news__thumbnail > img {
    width: 7rem;
  }
}
.l-news__head {
  position: relative;
  grid-area: head;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  white-space: nowrap;
}
.l-news__head::before, .l-news__head::after {
  content: "";
  position: absolute;
  display: block;
  top: 0.4375rem;
  height: 0.0625rem;
  background-color: var(--wlht-fontColor);
}
.l-news__head::before {
  right: 0;
  transform: rotate(45deg);
  transform-origin: 100% 0;
  width: 0.5rem;
}
.l-news__head::after {
  left: calc(100% - 1.1875rem);
  width: 1.1875rem;
}
@media (any-hover: hover) {
  .l-news__head::before, .l-news__head::after {
    transition-property: right, width, background-color;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .l-news__link:hover .l-news__head::before, .l-news__link:hover .l-news__head::after {
    background-color: var(--wlht-accentColor);
  }
  .l-news__link:hover .l-news__head::before {
    right: -0.3125rem;
  }
  .l-news__link:hover .l-news__head::after {
    width: 1.5rem;
  }
}
.l-news__date {
  font-size: 0.75rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
}
.l-news__news {
  display: block;
  width: 3rem;
  height: 1rem;
  background-color: var(--wlht-accentColor);
  color: var(--wlht-tertiaryColor);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.l-news__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: -0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 640px) {
  .l-news__item:first-of-type .l-news__title {
    -webkit-line-clamp: 3;
    margin-bottom: 0.4375rem;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 0.1em;
  }
}
@media (any-hover: hover) {
  .l-news__title {
    transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .l-news__link:hover .l-news__title {
    color: var(--wlht-accentColor);
  }
}

/**
 * How to use
 */
.l-how-to-use__list {
  counter-reset: howToUse;
}
.l-how-to-use__item {
  counter-increment: howToUse;
}
.l-how-to-use__item + .l-how-to-use__item {
  margin-top: 2rem;
}
@media screen and (min-width: 640px) {
  .l-how-to-use__item + .l-how-to-use__item {
    margin-top: 3.5625rem;
  }
}
@media screen and (min-width: 640px) {
  .l-how-to-use__item {
    padding-left: 10.8333333333%;
  }
}
@media screen and (min-width: 961px) {
  .l-how-to-use__item {
    padding-left: 6.5rem;
  }
}
.l-how-to-use__title {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.l-how-to-use__title::before {
  content: counter(howToUse, decimal-leading-zero);
  width: 4rem;
  height: 4rem;
  display: block;
  border-radius: 100%;
  background-color: var(--wlht-fifthColor);
  color: var(--wlht-tertiaryColor);
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  line-height: 4;
  letter-spacing: 0.1em;
  text-align: center;
}
.l-how-to-use__content {
  padding-left: 7.2429906542%;
  margin-top: 1.5rem;
}
@media screen and (min-width: 640px) {
  .l-how-to-use__content {
    display: grid;
    grid-template-columns: 39.5465994962% 1fr;
    grid-column-gap: 2rem;
    margin-top: 2rem;
  }
}
@media screen and (min-width: 961px) {
  .l-how-to-use__content {
    grid-template-columns: 19.625rem 1fr;
  }
}
.l-how-to-use__img {
  width: 100%;
}
.l-how-to-use__img > img {
  width: 100%;
  height: auto;
}
.l-how-to-use__text__description {
  font-size: 0.875rem;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
}
.l-how-to-use__text__caution {
  margin-top: 1.5rem;
  color: var(--wlht-fifthColor);
  font-size: 0.75rem;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 640px) {
  .l-how-to-use__text__caution {
    position: relative;
    margin-top: 2.75rem;
  }
  .l-how-to-use__text__caution::before {
    content: "";
    position: absolute;
    top: 0.5rem;
    left: -1.0625rem;
    transform: rotate(-45deg);
    width: 0.5rem;
    height: 0.5rem;
    border-top: 0.0625rem solid var(--wlht-fifthColor);
    border-left: 0.0625rem solid var(--wlht-fifthColor);
  }
}

/**
 * Member
 */
@media screen and (min-width: 961px) {
  .l-member {
    padding-left: 8.5rem;
  }
}
.l-member__text {
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 961px) {
  .l-member__text {
    padding-left: 1.0625rem;
  }
}
.l-member__benefits:not(:first-child) {
  margin-top: 3rem;
}
@media screen and (min-width: 640px) {
  .l-member__benefits:not(:first-child) {
    margin-top: 4.75rem;
  }
}
.l-member__benefits__content {
  margin-top: 1.5rem;
}
@media screen and (min-width: 640px) {
  .l-member__benefits__content {
    display: flex;
    align-items: center;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    margin-top: 2rem;
  }
}
@media screen and (min-width: 961px) {
  .l-member__benefits__content {
    padding-left: 1.0625rem;
  }
}
@media screen and (min-width: 640px) {
  .l-member__benefits__thumbnail {
    width: min(16rem, 31.7224287485%);
  }
}
@media screen and (min-width: 961px) {
  .l-member__benefits__thumbnail {
    width: 16rem;
  }
}
.l-member__benefits__thumbnail > img {
  width: 100%;
  height: auto;
}
.l-member__benefits__list {
  counter-reset: memberBenefits;
  margin-top: 1.5rem;
}
@media screen and (min-width: 640px) {
  .l-member__benefits__list {
    flex-grow: 1;
    width: 50%;
    margin-top: 0;
  }
}
.l-member__benefits__item {
  counter-increment: memberBenefits;
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  grid-column-gap: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.8333333333;
}
.l-member__benefits__item + .l-member__benefits__item {
  margin-top: 0.625rem;
}
.l-member__benefits__item > span {
  display: block;
  padding-top: 0.125rem;
}
.l-member__benefits__item::before {
  content: counter(memberBenefits);
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 100%;
  background-color: var(--wlht-fifthColor);
  color: var(--wlht-tertiaryColor);
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  line-height: 2;
  text-align: center;
}
.l-member__attached {
  width: min(100%, 30rem);
  margin-top: 5rem;
  margin-inline: auto;
}
@media screen and (min-width: 640px) {
  .l-member__attached {
    margin-top: 8rem;
  }
}

/**
 * Food
 */
.l-food__slider > .swiper {
  overflow: visible;
}
.l-food__slider__item {
  padding-top: 1rem;
  padding-inline: 1rem;
  padding-bottom: 0.875rem;
  background-color: var(--wlht-primaryColor);
}
.l-food__slider__img {
  width: 100%;
  height: 10rem;
}
.l-food__slider__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-food__slider__img > img.is-noimage {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.l-food__slider__head {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.l-food__slider__head__name {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
.l-food__slider__head__price {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
.l-food__slider__head__price > strong {
  margin-left: 0.25rem;
  color: var(--wlht-accentColor);
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
  vertical-align: bottom;
}
.l-food__slider__nav {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 640px) {
  .l-food__slider__nav {
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
  }
}
.l-food__slider__nav > span {
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 100%;
  background-color: #ddd;
  opacity: 1;
}
@media screen and (min-width: 640px) {
  .l-food__slider__nav > span {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.l-food__slider__nav > span.swiper-pagination-bullet-active {
  background-color: var(--wlht-accentColor);
}
.l-food__menu {
  max-width: 40.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 961px) {
  .l-food__menu {
    padding-left: 2rem;
  }
}
.l-food__menu:not(:first-of-type) {
  margin-top: 4rem;
}
@media screen and (min-width: 640px) {
  .l-food__menu:not(:first-of-type) {
    margin-top: 5rem;
  }
}
.l-food__menu__item + .l-food__menu__item {
  margin-top: 3rem;
}
@media screen and (min-width: 640px) {
  .l-food__menu__item + .l-food__menu__item {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 640px) {
  .l-food__menu__item {
    display: grid;
    grid-template-columns: 12rem 1fr;
    grid-column-gap: 2rem;
  }
}
.l-food__menu__img {
  aspect-ratio: 1/1;
  width: 100%;
}
.l-food__menu__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-food__menu__content {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}
@media screen and (min-width: 640px) {
  .l-food__menu__content {
    margin-top: 0;
  }
}
.l-food__menu__line {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  width: 100%;
}
.l-food__menu__line__date {
  font-size: 0.75rem;
  line-height: 1.3333333333;
}
.l-food__menu__line__new {
  display: block;
  width: 3rem;
  height: 1rem;
  border-radius: 0.125rem;
  background-color: var(--wlht-accentColor);
  color: var(--wlht-tertiaryColor);
  font-size: 0.75rem;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  text-align: center;
}
.l-food__menu__title {
  width: 100%;
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 640px) {
  .l-food__menu__title {
    margin-top: 1.0625rem;
  }
}
.l-food__menu__text {
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 640px) {
  .l-food__menu__text {
    margin-top: 0.6875rem;
    margin-bottom: 2rem;
  }
}
.l-food__menu__btn {
  position: relative;
  display: block;
  width: min(100%, 16rem);
  padding-inline: 3rem;
  margin-top: auto;
  margin-inline: auto;
  border: 0.0625rem solid var(--wlht-accentColor);
  border-radius: 0.25rem;
  background-color: var(--wlht-tertiaryColor);
  background-image: url(../images/icon/icon-pdf.svg);
  background-repeat: no-repeat;
  background-position: 1rem 50%;
  background-size: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.875;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 640px) {
  .l-food__menu__btn {
    margin-left: 0;
  }
}
.l-food__menu__btn::before, .l-food__menu__btn::after {
  content: "";
  position: absolute;
  display: block;
  top: 1.5rem;
  right: 0.6875rem;
  height: 0.0625rem;
  background-color: var(--wlht-accentColor);
}
.l-food__menu__btn::before {
  transform: rotate(45deg);
  transform-origin: 100% 0;
  width: 0.5rem;
}
.l-food__menu__btn::after {
  width: 1.5rem;
}
@media (any-hover: hover) {
  .l-food__menu__btn {
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .l-food__menu__btn:hover {
    opacity: 0.75;
  }
}

/**
 * Facility, Rental, Sightseeing
 */
.l-grid, .l-grid--sightseeing, .l-grid--modifire {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  grid-column-gap: 2.8125rem;
  grid-row-gap: 3rem;
}
.l-grid__block {
  background-color: var(--wlht-secondaryColor);
}
.l-grid__img {
  width: 100%;
  height: 11rem;
}
.l-grid__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-grid__img > img.is-noimage {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.l-grid__content {
  padding-block: 0.625rem;
  padding-inline: 1rem;
}
.l-grid__title {
  color: var(--wlht-fifthColor);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
.l-grid__text {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
}
.l-grid__tag {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  color: var(--wlht-fifthColor);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
}
.l-grid__link {
  display: block;
  width: 8rem;
  height: 1.625rem;
  margin-top: 0.625rem;
  border: 0.0625rem solid var(--wlht-accentColor);
  background-color: var(--wlht-tertiaryColor);
  color: var(--wlht-accentColor);
  border-radius: 0.8125rem;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (any-hover: hover) {
  .l-grid__link {
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .l-grid__link:hover {
    opacity: 0.75;
  }
}
.l-grid--modifire {
  grid-template-columns: repeat(auto-fill, minmax(16.25rem, 1fr));
  grid-column-gap: 0;
}
@media screen and (min-width: 640px) {
  .l-grid--modifire {
    grid-row-gap: 4rem;
  }
}
.l-grid--modifire .l-grid__block {
  padding-top: 1rem;
  padding-inline: 1rem;
  padding-bottom: 0.9375rem;
  background-color: var(--wlht-primaryColor);
}
.l-grid--modifire .l-grid__img {
  height: 10rem;
}
.l-grid--modifire .l-grid__content {
  padding: 0;
  margin-top: 0.625rem;
}
.l-grid--modifire .l-grid__title {
  color: var(--wlht-fontColor);
}
.l-grid--modifire .l-grid__text {
  padding-top: 0.6875rem;
  margin-top: 0.4375rem;
  border-top: 0.0625rem solid #efecd6;
  line-height: 1.6666666667;
}
.l-grid--sightseeing {
  grid-column-gap: 1.125rem;
  grid-row-gap: 2rem;
}
.l-grid--sightseeing .l-grid__img {
  height: 13.375rem;
}
.l-grid--sightseeing .l-grid__title {
  padding-bottom: 0.375rem;
  margin-bottom: 0.5rem;
  border-bottom: 0.0625rem solid var(--wlht-fifthColor);
  font-size: 1rem;
  line-height: 1.5;
}
.l-grid--sightseeing .l-grid__text {
  line-height: 1.6666666667;
}
.l-grid-wrapper + .l-grid-wrapper {
  margin-top: 4rem;
}
@media screen and (min-width: 640px) {
  .l-grid-wrapper + .l-grid-wrapper {
    margin-top: 6rem;
  }
}
.l-grid-wrapper__title {
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 0.0625rem solid var(--wlht-accentColor);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.1428571429;
}
/**
 * Plan
 */
.l-plan__item + .l-plan__item {
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 0.0625rem solid #555;
}
@media screen and (min-width: 640px) {
  .l-plan__item + .l-plan__item {
    padding-top: 4rem;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 640px) {
  .l-plan__item {
    display: grid;
    grid-template-columns: 12rem 1fr;
    grid-column-gap: 2rem;
  }
}
@media screen and (min-width: 961px) {
  .l-plan__item {
    grid-template-columns: 16rem 1fr;
  }
}
.l-plan__img {
  aspect-ratio: 1/1;
  width: 100%;
}
.l-plan__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-plan__content {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}
@media screen and (min-width: 640px) {
  .l-plan__content {
    margin-top: 0;
  }
}
.l-plan__line {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  width: 100%;
}
.l-plan__line__date {
  font-size: 0.75rem;
  line-height: 1.3333333333;
}
.l-plan__line__new {
  display: block;
  width: 3rem;
  height: 1rem;
  border-radius: 0.125rem;
  background-color: var(--wlht-accentColor);
  color: var(--wlht-tertiaryColor);
  font-size: 0.75rem;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  text-align: center;
}
.l-plan__headline {
  width: 100%;
  margin-top: 0.75rem;
}
@media screen and (min-width: 640px) {
  .l-plan__headline {
    margin-top: 1.4375rem;
  }
}
.l-plan__sub-title {
  margin-bottom: 0.1875rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
.l-plan__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.2307692308;
  letter-spacing: 0.05em;
}
.l-plan__text {
  width: 100%;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 640px) {
  .l-plan__text {
    margin-top: 1rem;
    margin-bottom: 1.375rem;
  }
}
.l-plan__btn {
  position: relative;
  display: block;
  width: min(100%, 16rem);
  padding-inline: 3rem;
  margin-top: auto;
  margin-inline: auto;
  border: 0.0625rem solid var(--wlht-accentColor);
  border-radius: 0.25rem;
  background-color: var(--wlht-tertiaryColor);
  background-image: url(../images/icon/icon-check.svg);
  background-repeat: no-repeat;
  background-position: 1.125rem 50%;
  background-size: 1.8125rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.875;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 640px) {
  .l-plan__btn {
    margin-left: 0;
  }
}
.l-plan__btn::before, .l-plan__btn::after {
  content: "";
  position: absolute;
  display: block;
  top: 1.5rem;
  right: 0.6875rem;
  height: 0.0625rem;
  background-color: var(--wlht-accentColor);
}
.l-plan__btn::before {
  transform: rotate(45deg);
  transform-origin: 100% 0;
  width: 0.5rem;
}
.l-plan__btn::after {
  width: 1.5rem;
}
@media (any-hover: hover) {
  .l-plan__btn {
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .l-plan__btn:hover {
    opacity: 0.75;
  }
}

/**
 * Coupon
 */
.l-coupon__item + .l-coupon__item {
  margin-top: 6rem;
}
@media screen and (min-width: 640px) {
  .l-coupon__item + .l-coupon__item {
    margin-top: 9.9375rem;
  }
}
@media screen and (min-width: 640px) {
  .l-coupon__item {
    display: grid;
    grid-template-columns: 12rem 1fr;
    grid-column-gap: 2rem;
  }
}
@media screen and (min-width: 961px) {
  .l-coupon__item {
    grid-template-columns: 21rem 1fr;
  }
}
.l-coupon__img {
  aspect-ratio: 1/1;
  width: 100%;
}
.l-coupon__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-coupon__title {
  margin-top: -0.25rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
}
.l-coupon__text {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
.l-coupon__price {
  margin-top: 1.25rem;
}
.l-coupon__price__text {
  position: relative;
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.111;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.l-coupon__price__text + .l-coupon__price__text {
  margin-top: 1.125rem;
}
.l-coupon__price__text > mark {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 0.222em;
       column-gap: 0.222em;
  color: var(--wlht-fifthColor);
  font-family: "Oswald", sans-serif;
  font-size: 1.8em;
  font-weight: 300;
  letter-spacing: 0.05em;
  border-bottom: 0.0625rem solid var(--wlht-fifthColor);
}
.l-coupon__price__text > mark::before {
  content: "￥";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.5555555556em;
  font-weight: 500;
}
.l-coupon__price__text > mark.has-off::after {
  content: "OFF";
  color: var(--wlht-fontColor);
  font-size: 0.7777777778em;
}
.l-coupon__caution {
  margin-top: 1.5rem;
}
@media screen and (min-width: 640px) {
  .l-coupon__caution {
    margin-top: 1.6875rem;
  }
}
.l-coupon__caution__item {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
.l-coupon__caution__item + .l-coupon__caution__item {
  margin-top: 0.125rem;
}
.l-coupon__caution__item::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 100%;
  background-color: var(--wlht-fifthColor);
}
.l-coupon__start {
  display: grid;
  grid-template-columns: 8rem 1fr;
  grid-column-gap: 1rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 640px) {
  .l-coupon__start {
    margin-top: 1.5rem;
  }
}
.l-coupon__start__label {
  display: block;
  height: 1.5rem;
  border-radius: 0.25rem;
  background-color: var(--wlht-accentColor);
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  text-align: center;
}
.l-coupon__start__date {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.l-coupon__main {
  grid-column: span 2;
  margin-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 640px) {
  .l-coupon__main {
    margin-top: 3.6875rem;
  }
}
.l-coupon__main__label {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
.l-coupon__main__id {
  margin-top: 0.75rem;
  font-family: "Oswald", sans-serif;
  font-size: 3.75rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
}
.l-coupon__main__date {
  margin-top: 0.5625rem;
  width: 16.25rem;
  height: 1.75rem;
  margin-inline: auto;
  border-radius: 0.25rem;
  background-color: var(--wlht-accentColor);
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
}

/**
 * Access
 */
.l-access:not(:first-of-type) {
  margin-top: 4rem;
}
@media screen and (min-width: 640px) {
  .l-access:not(:first-of-type) {
    margin-top: 5rem;
  }
}
.l-access__content {
  padding-left: 1rem;
  margin-top: 3rem;
}
@media screen and (min-width: 640px) {
  .l-access__content {
    margin-top: 3.875rem;
  }
}
@media screen and (min-width: 961px) {
  .l-access__content {
    padding-left: 9.5rem;
  }
}
@media screen and (min-width: 961px) {
  .l-access > .c-head {
    margin-left: 8.5rem;
  }
}
.l-access__name {
  color: var(--wlht-fifthColor);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.1111111111;
  letter-spacing: 0.05em;
}
.l-access__address {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
.l-access__information {
  margin-top: 0.75rem;
}
.l-access__information__item {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.75rem;
  line-height: 1.6666666667;
}
.l-access__information__item + .l-access__information__item {
  margin-top: 0.125rem;
}
.l-access__information__item::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 100%;
  background-color: var(--wlht-fifthColor);
}
.l-access__map {
  height: 20rem;
  margin-top: 3rem;
}
@media screen and (min-width: 640px) {
  .l-access__map {
    margin-top: 3.75rem;
  }
}
.l-access__map > iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/**
 * Faq
 */
.l-faq__block + .l-faq__block {
  margin-top: 4rem;
}
@media screen and (min-width: 640px) {
  .l-faq__block + .l-faq__block {
    margion-top: 5rem;
  }
}
.l-faq__title {
  width: min(100%, 20rem);
  height: 2rem;
  margin-inline: auto;
  border-radius: 1rem;
  background-color: var(--wlht-accentColor);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.2857142857;
  letter-spacing: 0.05em;
  text-align: center;
}
.l-faq__content {
  margin-top: 1.0625rem;
}
.l-faq__item {
  border-bottom: 0.0625rem solid #666;
}
.l-faq__label {
  position: relative;
  padding-block: 0.75rem;
  padding-left: 1.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.l-faq__label::before {
  content: "";
  position: absolute;
  top: 1.125rem;
  left: 0;
  display: block;
  border-block: 6.5px solid transparent;
  border-left: 0.625rem solid var(--wlht-accentColor);
}
.l-faq__item[open] .l-faq__label::before {
  top: 1.25rem;
  border-top: 0.625rem solid var(--wlht-accentColor);
  border-inline: 6.5px solid transparent;
  border-bottom: none;
}
.l-faq__text {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.l-faq__text__wrapper {
  overflow: hidden;
  padding-bottom: 1rem;
}
.l-faq__text__wrapper > p {
  padding-block: 0.75rem;
  padding-inline: 1.375rem;
  background-color: #666;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
.l-faq__item[open] .l-faq__text {
  grid-template-rows: 1fr;
}

/**
 * Price
 */
.l-price__block + .l-price__block {
  margin-top: 3rem;
}
@media screen and (min-width: 640px) {
  .l-price__block + .l-price__block {
    margin-top: 4.875rem;
  }
}
.l-price__head__label {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 200;
  line-height: 1;
}
.l-price__head__name {
  margin-top: 0.3125rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.875rem;
  font-weight: 200;
  line-height: 1;
}
.l-price__head__tag {
  display: grid;
  grid-template-columns: repeat(auto-fill, 4rem);
  grid-gap: 0.5rem;
  padding-top: 1rem;
  margin-top: 0.4375rem;
  border-top: 0.0625rem solid var(--wlht-accentColor);
}
.l-price__head__tag__item > a {
  display: block;
  width: 100%;
  height: 1.25rem;
  border-radius: 0.625rem;
  background-color: var(--wlht-accentColor);
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-align: center;
}
.l-price__m-icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-right: 0.3125rem;
  border-radius: 100%;
  background-color: var(--wlht-fontColor);
  color: var(--wlht-tertiaryColor);
  font-family: "Roboto", sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.4545454545;
  text-align: center;
}
.l-price__m-icon::before {
  content: "M";
}
.l-price__table {
  width: 100%;
  margin-top: 2rem;
  overflow: auto;
}
.l-price__table__body {
  width: max(100%, 50rem);
  background-image: linear-gradient(var(--wlht-accentColor), var(--wlht-accentColor));
  background-repeat: no-repeat;
  background-position: 0 3rem;
  background-size: 100% 0.0625rem;
}
.l-price__table__empty {
  font-size: 0.75rem;
  letter-spacing: 0.025em;
  text-align: center;
}
.l-price__table__head {
  border-bottom: 0.0625rem solid var(--wlht-accentColor);
}
.l-price__table__head .l-price__table__column {
  height: 3rem;
  background-color: #666;
  border-radius: 0.1875rem 0.1875rem 0 0;
  border-inline: 0.125rem solid transparent;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.l-price__table__head .l-price__table__column > span {
  display: block;
  font-size: 0.75rem;
  line-height: 2;
}
.l-price__table__content .l-price__table__column {
  height: 6rem;
  padding-block: 0.125rem;
  padding-inline: 1rem;
}
.l-price__table__content .l-price__table__column:nth-of-type(even) {
  background-color: var(--wlht-tertiaryColor);
}
.l-price__table__content .l-price__table__column__price {
  color: var(--wlht-accentColor);
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.025em;
}
.l-price__table__content .l-price__table__column__price::before {
  content: "￥";
  font-size: 1rem;
}
.l-price__table__content .l-price__table__column__price--m {
  display: flex;
  align-items: center;
  height: 1.5rem;
  border-image-source: linear-gradient(var(--wlht-secondaryColor), var(--wlht-secondaryColor));
  border-image-slice: 0 fill;
  border-image-outset: 0 0.875rem;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
.l-price__table__content .l-price__table__column__price--m > span::before {
  content: "￥";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
}
.l-price__table__content .l-price__table__column__description {
  font-size: 0.75rem;
  line-height: 2.6666666667;
  letter-spacing: 0.05em;
}
.l-price__table__content th {
  padding-inline: 1rem;
  background-color: var(--wlht-secondaryColor);
  background-image: linear-gradient(var(--wlht-primaryColor), var(--wlht-primaryColor)), linear-gradient(var(--wlht-primaryColor), var(--wlht-primaryColor));
  background-repeat: no-repeat;
  background-position: 0 0, 0 100%;
  background-size: 100% 0.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
}
.l-price__table__content td {
  vertical-align: top !important;
}
.l-price__table__content :is(th, td) {
  border-bottom: 0.0625rem solid var(--wlht-accentColor);
}
.l-price__table__content {
  border-top: 0.0625rem solid var(--wlht-accentColor);
}
.l-price__table__row {
  position: relative;
}
.l-price__table__row > :is(th, td) {
  vertical-align: middle;
}
.l-price__table__row > :is(th:not(:first-child), td:not(:first-child)) {
  width: calc((100% - 10rem) / 4);
}
.l-price__table__row > :is(th:first-child, td:first-child) {
  width: 10rem;
}
.l-price__table__caution {
  width: max(100%, 50rem);
  padding-block: 0.6875rem;
  border-bottom: 0.0625rem solid var(--wlht-accentColor);
}
.l-price__table__caution__item {
  position: relative;
  padding-left: 1rem;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}
.l-price__table__caution__item + .l-price__table__caution__item {
  margin-top: 0.125rem;
}
.l-price__table__caution__item::before {
  content: "";
  position: absolute;
  top: 0.3125rem;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 100%;
  background-color: var(--wlht-accentColor);
}

/* COMMON */
@media screen and (min-width: 640px) {
  .l-post__wrapper {
    display: flex;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
@media screen and (min-width: 640px) {
  .l-post__img {
    width: min(21.125rem, 35.2083333333%);
  }
}
.l-post__img > img {
  width: 100%;
  height: auto;
}
.l-post__head {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
.l-post__date {
  font-size: 0.75rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
}
.l-post__new {
  width: 3rem;
  height: 1rem;
  background-color: var(--wlht-accentColor);
  color: var(--wlht-tertiaryColor);
  font-size: 0.75rem;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  text-align: center;
}
.l-post__title {
  margin-top: 1.0625rem;
  color: var(--wlht-fifthColor);
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4166666667;
  letter-spacing: 0.1em;
}
.l-post__text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
.l-post__period {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
.l-post__caution {
  margin-top: 0.875rem;
}
.l-post__caution__item {
  position: relative;
  padding-left: 1.375rem;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}
.l-post__caution__item::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 100%;
  background-color: var(--wlht-fifthColor);
}
.l-post__btn {
  max-width: 12rem;
  margin-top: 2.625rem;
  margin-inline: auto;
  background-image: url(../images/icon/icon-return.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 0.6875rem) 50%;
  background-size: 0.8125rem;
}

.l-room-photo {
  display: grid;
  align-items: end;
}
.l-room-photo__slider {
  grid-area: 1/-1;
}
.l-room-photo__slider__list {
  display: grid;
}
.l-room-photo__slider__item {
  grid-area: 1/-1;
  width: 100%;
  height: 50vh;
  height: 50dvh;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (min-width: 961px) {
  .l-room-photo__slider__item {
    height: 34rem;
  }
}
.l-room-photo__slider__item.is-active {
  opacity: 1;
}
.l-room-photo__slider__item > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-room-photo__slider__nav {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(4, 2rem);
  grid-column-gap: 0.625rem;
  height: 2rem;
  margin-top: 5rem;
}
@media screen and (min-width: 640px) {
  .l-room-photo__slider__nav {
    justify-content: flex-end;
    margin-top: 2rem;
  }
}
@media screen and (min-width: 961px) {
  .l-room-photo__slider__nav {
    grid-template-columns: repeat(4, 3rem);
    height: 3rem;
    margin-top: 1rem;
  }
}
.l-room-photo__slider__nav__item.is-active {
  display: none;
}
.l-room-photo__label {
  grid-area: 1/-1;
  z-index: 10;
  width: 8rem;
  height: 8rem;
  padding-top: 2.25rem;
  margin-bottom: 3rem;
  margin-inline: auto;
  background-color: var(--wlht-fifthColor);
  color: var(--wlht-tertiaryColor);
  font-family: "Poppins", sans-serif;
  text-align: center;
}
@media screen and (min-width: 640px) {
  .l-room-photo__label {
    margin-bottom: 0;
  }
}
.l-room-photo__label__room {
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1;
}
.l-room-photo__label__number {
  margin-top: 0.5rem;
  font-size: 1.875rem;
  font-weight: 200;
  line-height: 1;
}

.l-room-content {
  margin-top: 3rem;
}
@media screen and (min-width: 640px) {
  .l-room-content {
    margin-top: 4.875rem;
  }
}
@media screen and (min-width: 961px) {
  .l-room-content {
    padding-left: 8.5rem;
  }
}
@media screen and (min-width: 961px) {
  .l-room-content__inner {
    padding-left: 1rem;
  }
}
.l-room-content__title {
  color: var(--wlht-fifthColor);
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.l-room-content__text {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
.l-room-content__title + .l-room-content__text {
  margin-top: 0.875rem;
}
.l-room-content__tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 640px) {
  .l-room-content__tag {
    margin-top: 3rem;
  }
}
.l-room-content__tag__item {
  padding-inline: 0.5rem;
  border: 0.0625rem solid #666;
  background-color: var(--wlht-tertiaryColor);
  color: #ccc;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 640px) {
  .l-room-slider {
    margin-top: 6.5625rem;
  }
}
.l-room-slider__wrapper {
  margin-top: 1.5rem;
}
@media screen and (min-width: 640px) {
  .l-room-slider__wrapper {
    margin-top: 3rem;
  }
}
.l-room-slider__wrapper > .swiper {
  overflow: visible;
}
.l-room-slider__item {
  background-color: var(--wlht-secondaryColor);
}
.l-room-slider__img {
  width: 100%;
  height: 14rem;
}
.l-room-slider__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-room-slider__img > img.is-noimage {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.l-room-slider__content {
  padding-block: 0.625rem;
  padding-inline: 0.1875rem;
  text-align: center;
}
.l-room-slider__title {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
.l-room-slider__box {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.l-room-slider__box__label {
  background-color: var(--wlht-primaryColor);
  line-height: 1.5714285714;
}
.l-room-slider__box__text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  min-height: 1.25rem;
  -moz-column-gap: 0.3em;
       column-gap: 0.3em;
  margin-top: 0.375rem;
  line-height: 1.4285714286;
}
@media (any-hover: hover) {
  .l-room-slider__box__text > a {
    transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .l-room-slider__box__text > a:hover {
    color: var(--wlht-accentColor);
  }
}
.l-room-slider__nav {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 640px) {
  .l-room-slider__nav {
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
  }
}
.l-room-slider__nav > span {
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 100%;
  background-color: #ddd;
  opacity: 1;
}
@media screen and (min-width: 640px) {
  .l-room-slider__nav > span {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.l-room-slider__nav > span.swiper-pagination-bullet-active {
  background-color: var(--wlht-accentColor);
}

.l-page, .l-page--contact {
  width: 100%;
  max-width: 38rem;
  padding-top: 3rem;
  margin-inline: auto;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 640px) {
  .l-page, .l-page--contact {
    padding-top: 4.875rem;
  }
}
@media screen and (min-width: 961px) {
  .l-page, .l-page--contact {
    padding-top: 6rem;
  }
}
.l-page label, .l-page--contact label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 0.875rem;
       column-gap: 0.875rem;
  width: 100%;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.l-page label.is-required::after, .l-page--contact label.is-required::after {
  content: "必須";
  display: block;
  width: 3rem;
  height: 1.25rem;
  border-radius: 0.25rem;
  background-color: var(--wlht-accentColor);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  text-align: center;
}
.l-page hr, .l-page--contact hr {
  display: block;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 1.875rem;
  border-top: 0.0625rem solid var(--wlht-quaternaryColor);
}
.l-page input:is([type=text], [type=url], [type=email], [type=tel], [type=number], [type=date], [type=time]), .l-page--contact input:is([type=text], [type=url], [type=email], [type=tel], [type=number], [type=date], [type=time]),
.l-page select,
.l-page--contact select, .l-page textarea, .l-page--contact textarea {
  padding-inline: 0.75rem;
  border-radius: 0.25rem;
  background-color: var(--wlht-fontColor);
  color: var(--wlht-tertiaryColor);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
.l-page input:is([type=text], [type=url], [type=email], [type=tel], [type=number], [type=date], [type=time])::-moz-placeholder, .l-page--contact input:is([type=text], [type=url], [type=email], [type=tel], [type=number], [type=date], [type=time])::-moz-placeholder, .l-page select::-moz-placeholder, .l-page--contact select::-moz-placeholder, .l-page textarea::-moz-placeholder, .l-page--contact textarea::-moz-placeholder {
  color: #ccc;
}
.l-page input:is([type=text], [type=url], [type=email], [type=tel], [type=number], [type=date], [type=time])::placeholder, .l-page--contact input:is([type=text], [type=url], [type=email], [type=tel], [type=number], [type=date], [type=time])::placeholder,
.l-page select::placeholder,
.l-page--contact select::placeholder, .l-page textarea::placeholder, .l-page--contact textarea::placeholder {
  color: #ccc;
}
.l-page input[type=text], .l-page--contact input[type=text] {
  width: 10rem;
}
.l-page input:is([type=url], [type=email]), .l-page--contact input:is([type=url], [type=email]) {
  width: min(100%, 26rem);
}
.l-page input:is([type=number], [type=date], [type=time]), .l-page--contact input:is([type=number], [type=date], [type=time]) {
  width: 8rem;
}
.l-page select, .l-page--contact select {
  padding-right: 2.5rem;
  border-radius: 0;
  background-image: url(../images/icon/icon-select.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 1.125rem) 50%;
  background-size: 0.875rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.l-page textarea, .l-page--contact textarea {
  resize: none;
  width: 100%;
  height: 10rem;
  padding-block: 0.25rem;
  line-height: 1.5;
}
.l-page input:is([type=button], [type=submit]), .l-page--contact input:is([type=button], [type=submit]), .l-page button, .l-page--contact button {
  display: block;
  width: 12rem;
  height: 2rem;
  border: 0.0625rem solid var(--wlht-fontColor);
  margin-top: 3rem;
  margin-inline: auto;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  text-align: center;
  cursor: pointer;
}
@media screen and (min-width: 640px) {
  .l-page input:is([type=button], [type=submit]), .l-page--contact input:is([type=button], [type=submit]), .l-page button, .l-page--contact button {
    margin-top: 4rem;
  }
}
@media (any-hover: hover) {
  .l-page input:is([type=button], [type=submit]), .l-page--contact input:is([type=button], [type=submit]), .l-page button, .l-page--contact button {
    transition: background-color, border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .l-page input:is([type=button], [type=submit]):hover, .l-page--contact input:is([type=button], [type=submit]):hover, .l-page button:hover, .l-page--contact button:hover {
    border-color: var(--wlht-accentColor);
    background-color: var(--wlht-accentColor);
  }
}
.l-page--contact {
  padding-top: 0;
}

.c-button, .c-button--full {
  display: block;
  width: 100%;
  border: 0.0625rem solid var(--wlht-fontColor);
  font-size: 0.875rem;
  line-height: 2.1428571429;
  text-align: center;
}
@media (any-hover: hover) {
  .c-button, .c-button--full {
    transition-property: border-color, background-color, color;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .c-button:hover, .c-button--full:hover {
    border-color: var(--wlht-accentColor);
    background-color: var(--wlht-accentColor);
    color: var(--wlht-fontColor);
  }
}
.c-button + .c-button, .c-button--full + .c-button--full, .c-button + .c-button--full, .c-button--full + .c-button {
  margin-top: 1rem;
}
.c-button--full {
  background-color: var(--wlht-fontColor);
  color: var(--wlht-tertiaryColor);
}

.c-popup {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: min(80vw, 480px);
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  max-height: 80dvh;
  margin: auto;
}
.c-popup[open]::-webkit-backdrop {
  -webkit-animation: backdrop 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) both;
          animation: backdrop 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
.c-popup[open]::backdrop {
  -webkit-animation: backdrop 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) both;
          animation: backdrop 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
.c-popup__close {
  position: fixed;
  top: 16px;
  right: 16px;
  display: block;
  width: 48px;
  height: 48px;
}
.c-popup__close::before, .c-popup__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 100%;
  height: 1px;
  background-color: white;
}
.c-popup__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-popup__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-popup__content img {
  width: auto;
  height: auto;
}

.c-room-slider {
  grid-column: full;
}
@media screen and (min-width: 961px) {
  .c-room-slider {
    display: grid;
    grid-template-columns: [full-start] minmax(min(2rem, 8.3333333333%), 1fr) [content-start] min(960px, 100% - min(2rem, 8.3333333333%) * 2) [content-end] minmax(min(2rem, 8.3333333333%), 1fr) [full-end];
  }
}
@media screen and (min-width: 961px) and (min-width: 640px) {
  .c-room-slider {
    grid-template-columns: [full-start] minmax(min(3rem, 5%), 1fr) [content-start] min(960px, 100% - min(3rem, 5%) * 2) [content-end] minmax(min(3rem, 5%), 1fr) [full-end];
  }
}
@media screen and (min-width: 961px) and (min-width: 961px) {
  .c-room-slider {
    grid-template-columns: [full-start] minmax(8.041958042%, 1fr) [content-start] min(960px, 83.9160839161%) [content-end] minmax(8.041958042%, 1fr) [full-end];
  }
}
@media screen and (min-width: 961px) {
  .c-room-slider > * {
    grid-column: content;
  }
}
@media screen and (min-width: 961px) {
  .c-room-slider > .is-side {
    grid-column: content;
  }
}
@media screen and (min-width: 961px) {
  .c-room-slider > .is-full {
    grid-column: full;
  }
}
.c-room-slider + .c-room-slider {
  margin-top: 3.875rem;
}
.c-room-slider__body {
  margin-top: 3rem;
}
@media screen and (min-width: 640px) {
  .c-room-slider__body {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 961px) {
  .c-room-slider__body {
    margin-top: 5.25rem;
  }
}
.c-room-slider__item {
  width: 15rem;
}
@media screen and (min-width: 640px) {
  .c-room-slider__item {
    width: 19.625rem;
  }
}
@media screen and (min-width: 961px) {
  .c-room-slider__item {
    width: 23rem;
  }
}
.c-room-slider__link {
  position: relative;
  display: block;
  padding-top: 1.5rem;
}
@media screen and (min-width: 640px) {
  .c-room-slider__link {
    padding-top: 1.75rem;
  }
}
@media screen and (min-width: 961px) {
  .c-room-slider__link {
    padding-top: 2rem;
  }
}
.c-room-slider__num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  background-color: var(--wlht-fifthColor);
  color: var(--wlht-tertiaryColor);
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 640px) {
  .c-room-slider__num {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 961px) {
  .c-room-slider__num {
    width: 4rem;
    height: 4rem;
    font-size: 1rem;
  }
}
.c-room-slider__img {
  width: 100%;
  height: 10rem;
  background-color: var(--wlht-fifthColor);
  overflow: hidden;
}
@media screen and (min-width: 640px) {
  .c-room-slider__img {
    height: 13.75rem;
  }
}
@media screen and (min-width: 961px) {
  .c-room-slider__img {
    height: 16rem;
  }
}
.c-room-slider__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-room-slider__img > img.is-noimage {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.c-room-slider__nav {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 640px) {
  .c-room-slider__nav {
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
  }
}
.c-room-slider__nav > span {
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  margin: 0 !important;
  border-radius: 100%;
  background-color: #ddd;
  opacity: 1;
}
@media screen and (min-width: 640px) {
  .c-room-slider__nav > span {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.c-room-slider__nav > span.swiper-pagination-bullet-active {
  background-color: var(--wlht-accentColor);
}
.c-room-slider .swiper {
  overflow: visible;
}
.c-room-slider .c-head {
  margin-inline: min(2rem, 8.3333333333%);
}
@media screen and (min-width: 640px) {
  .c-room-slider .c-head {
    margin-inline: min(3rem, 5%);
  }
}
@media screen and (min-width: 961px) {
  .c-room-slider .c-head {
    margin-inline: 0;
  }
}

.c-banner {
  padding-inline: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
@media screen and (min-width: 640px) {
  .c-banner {
    padding-inline: 33.333%;
    padding-bottom: 6rem;
  }
}
@media screen and (min-width: 961px) {
  .c-banner {
    padding-inline: 3.75rem;
  }
}
@media screen and (min-width: 1401px) {
  .c-banner {
    padding-inline: 0;
  }
}
.c-banner__slider {
  overflow: visible;
}
.c-banner__slider__item {
  width: 20rem;
  height: auto;
}
.c-banner__slider__item img {
  width: 100%;
  height: 8rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-banner__slider__link {
  display: block;
  height: 100%;
}
@media (any-hover: hover) {
  .c-banner__slider__link {
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .c-banner__slider__link:hover {
    opacity: 0.75;
  }
}
.c-banner__nav {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 640px) {
  .c-banner__nav {
    display: none;
  }
}
.c-banner__nav > span {
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 100%;
  background-color: #ddd;
  opacity: 1;
}
@media screen and (min-width: 640px) {
  .c-banner__nav > span {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.c-banner__nav > span.swiper-pagination-bullet-active {
  background-color: var(--wlht-accentColor);
}

.swiper-pagination-lock {
  display: none !important;
}

.c-head {
  padding-left: 0.9375rem;
  border-left: 0.0625rem solid var(--wlht-accentColor);
}
.c-head__en {
  font-family: "Poppins", sans-serif;
  font-size: 2.25rem;
  font-weight: 200;
  line-height: 0.7777777778;
}
.c-head__ja {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
}

.p-home-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-block: 2.6875rem;
  padding-inline: 2rem;
  background-color: var(--wlht-primaryColor);
}
@media screen and (min-width: 640px) {
  .p-home-nav {
    flex-direction: row;
    -moz-column-gap: 1.125rem;
         column-gap: 1.125rem;
    padding-block: 2.3125rem;
  }
}
@media screen and (min-width: 961px) {
  .p-home-nav {
    -moz-column-gap: 1.8125rem;
         column-gap: 1.8125rem;
  }
}
.p-home-nav__logo {
  width: 10.6875rem;
}
.p-home-nav__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin-top: 2.625rem;
  border-inline: 1px solid var(--wlht-fontColor);
}
@media screen and (min-width: 640px) {
  .p-home-nav__list {
    width: 18.1875rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 961px) {
  .p-home-nav__list {
    width: 25.1875rem;
  }
}
.p-home-nav__item + .p-home-nav__item {
  border-left: 1px solid var(--wlht-fontColor);
}
.p-home-nav__item > a {
  position: relative;
  display: block;
  height: 3rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.875rem;
  font-weight: 200;
  line-height: 1;
  text-align: center;
}
@media (any-hover: hover) {
  .p-home-nav__item > a {
    transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .p-home-nav__item > a:hover {
    color: var(--wlht-accentColor);
  }
}
.p-home-nav__item > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  border-inline: 0.40625rem solid transparent;
  border-top: 0.4375rem solid var(--wlht-accentColor);
}
.p-home-nav__text {
  margin-top: 1.75rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 640px) {
  .p-home-nav__text {
    margin-top: 0;
    line-height: 1.5714285714;
  }
}

.p-home-room {
  position: relative;
  background-color: var(--wlht-primaryColor);
  padding-bottom: 5rem;
}
@media screen and (min-width: 640px) {
  .p-home-room {
    padding-bottom: 7.5rem;
  }
}
@media screen and (min-width: 961px) {
  .p-home-room {
    padding-bottom: 7rem;
  }
}
.p-home-room__nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 1.5rem;
  padding-inline: 2rem;
  padding-bottom: 1.625rem;
  margin-inline: auto;
}
.p-home-room__nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
}
.p-home-room__nav__item {
  display: grid;
  grid-template-columns: 0.625rem 1fr;
  grid-column-gap: 0.25rem;
  align-items: center;
  font-weight: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 640px) {
  .p-home-room__nav__item {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.p-home-room__nav__item.is-active {
  color: var(--wlht-accentColor);
}
.p-home-room__nav__item::before {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 100%;
  background-color: var(--wlht-accentColor);
}
@media screen and (min-width: 640px) {
  .p-home-room__nav + .c-room-slider__body {
    margin-top: 0;
  }
}

.p-concept {
  display: grid;
  text-align: center;
}
.p-concept__bg {
  position: relative;
  grid-area: 1/-1;
  overflow: hidden;
}
.p-concept__bg > :is(img, video) {
  position: absolute;
  left: 0;
}
.p-concept__bg > img {
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-concept__bg > video {
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.p-concept__content {
  z-index: 1;
  grid-area: 1/-1;
  padding-block: 3.625rem;
  padding-inline: 2rem;
}
@media screen and (min-width: 640px) {
  .p-concept__content {
    padding-top: 2.5rem;
    padding-bottom: 2.375rem;
  }
}
@media screen and (min-width: 961px) {
  .p-concept__content {
    padding-top: 4.625rem;
    padding-bottom: 5.625rem;
  }
}
.p-concept__title {
  font-family: "Poppins", sans-serif;
  font-size: 1.875rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.1em;
}
.p-concept__text {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 640px) {
  .p-concept__text {
    font-size: 1rem;
    line-height: 1.75;
  }
}
@media screen and (min-width: 961px) {
  .p-concept__text {
    margin-top: 2.5rem;
  }
}

.p-home-news {
  padding-block: 5rem;
}
@media screen and (min-width: 640px) {
  .p-home-news {
    padding-top: 9rem;
  }
}
@media screen and (min-width: 961px) {
  .p-home-news {
    padding-top: 5rem;
  }
}
.p-home-news__item {
  padding-top: 1rem;
  padding-bottom: 0.75rem;
  border-top: 0.0625rem solid var(--wlht-quaternaryColor);
}
.p-home-news__item:last-of-type {
  border-bottom: 0.0625rem solid var(--wlht-quaternaryColor);
}
@media screen and (min-width: 640px) {
  .p-home-news__item {
    padding-top: 0.75rem;
  }
}
.p-home-news__item:first-of-type {
  margin-top: 2rem;
}
@media screen and (min-width: 961px) {
  .p-home-news__item:first-of-type {
    margin-top: 0;
  }
}
.p-home-news__link {
  position: relative;
  display: grid;
  grid-template-columns: 4rem 1fr;
  grid-template-rows: 1rem 1fr;
  grid-template-areas: "img head" "img txt";
  grid-column-gap: 1rem;
  grid-row-gap: 0.75rem;
}
@media screen and (min-width: 640px) {
  .p-home-news__link {
    grid-template-columns: 8.125rem 3rem 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "head img txt";
  }
}
.p-home-news__link::before, .p-home-news__link::after {
  content: "";
  position: absolute;
  display: block;
  top: 0.4375rem;
  height: 0.0625rem;
  background-color: var(--wlht-fontColor);
}
.p-home-news__link::before {
  right: 0;
  transform: rotate(45deg);
  transform-origin: 100% 0;
  width: 0.5rem;
}
.p-home-news__link::after {
  left: calc(100% - 1.1875rem);
  width: 1.1875rem;
}
@media screen and (min-width: 640px) {
  .p-home-news__link::before, .p-home-news__link::after {
    top: 1.4375rem;
  }
  .p-home-news__link::before {
    right: 0.3125rem;
  }
  .p-home-news__link::after {
    left: calc(100% - 1.5rem);
  }
}
@media (any-hover: hover) {
  .p-home-news__link {
    transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .p-home-news__link:hover {
    color: var(--wlht-accentColor);
  }
  .p-home-news__link::before, .p-home-news__link::after {
    transition-property: right, width, background-color;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .p-home-news__link:hover::before, .p-home-news__link:hover::after {
    background-color: var(--wlht-accentColor);
  }
  .p-home-news__link:hover::before {
    right: -0.3125rem;
  }
  .p-home-news__link:hover::after {
    right: -0.3125rem;
    width: 1.5rem;
  }
}
@media screen and (any-hover: hover) and (min-width: 640px) {
  .p-home-news__link:hover::before {
    right: 0;
  }
  .p-home-news__link:hover::after {
    right: 0;
  }
}
.p-home-news__head {
  grid-area: head;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
.p-home-news__date {
  font-size: 0.75rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
}
.p-home-news__new {
  display: block;
  width: 2.875rem;
  height: 1rem;
  border-radius: 0.125rem;
  background-color: var(--wlht-accentColor);
  color: var(--wlht-tertiaryColor);
  font-size: 0.75rem;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  text-align: center;
}
.p-home-news__thumbnail {
  grid-area: img;
  aspect-ratio: 1/1;
}
.p-home-news__thumbnail > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-news__title {
  grid-area: txt;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}
@media (any-hover: hover) {
  .p-home-news__title {
    transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .p-home-news__link:hover .p-home-news__title {
    color: var(--wlht-accentColor);
  }
}

.p-first-time {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 1.875rem;
  border-image-source: linear-gradient(var(--wlht-secondaryColor), var(--wlht-secondaryColor));
  border-image-slice: 0 fill;
  border-image-outset: 0 100vw;
}
@media screen and (min-width: 640px) {
  .p-first-time {
    padding-block: 1.125rem;
  }
}
@media screen and (min-width: 961px) {
  .p-first-time {
    padding-top: 1.5rem;
    padding-bottom: 1.875rem;
  }
}
.p-first-time__img {
  position: absolute;
  top: 1.5625rem;
  left: -0.1875rem;
  width: 9rem;
  height: 9rem;
  border-radius: 100%;
  overflow: hidden;
  pointer-events: none;
}
@media screen and (min-width: 640px) {
  .p-first-time__img {
    top: 50%;
    left: -1.1875rem;
    transform: translateY(-50%);
    width: 11rem;
    height: 11rem;
  }
}
@media screen and (min-width: 961px) {
  .p-first-time__img {
    left: -1.5rem;
  }
}
.p-first-time__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-first-time__link {
  position: relative;
  display: block;
}
@media screen and (min-width: 640px) {
  .p-first-time__link {
    padding-right: 2rem;
  }
  .p-first-time__link::before, .p-first-time__link::after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0.6875rem;
    height: 0.0625rem;
    background-color: var(--wlht-fontColor);
  }
  .p-first-time__link::before {
    right: 0.3125rem;
    transform: rotate(45deg);
    transform-origin: 100% 0;
    width: 0.5rem;
  }
  .p-first-time__link::after {
    left: calc(100% - 1.5rem);
    width: 1.1875rem;
  }
}
@media screen and (min-width: 640px) and (min-width: 961px) {
  .p-first-time__link::before, .p-first-time__link::after {
    bottom: 0.875rem;
  }
}
@media screen and (min-width: 640px) and (any-hover: hover) {
  .p-first-time__link {
    transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .p-first-time__link:hover {
    color: var(--wlht-accentColor);
  }
  .p-first-time__link::before, .p-first-time__link::after {
    transition-property: right, width, background-color;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .p-first-time__link:hover::before, .p-first-time__link:hover::after {
    background-color: var(--wlht-accentColor);
  }
  .p-first-time__link:hover::before {
    right: 0;
  }
  .p-first-time__link:hover::after {
    right: 0;
    width: 1.5rem;
  }
}
@media screen and (min-width: 640px) {
  .p-first-time__img + .p-first-time__link {
    padding-left: 11.625rem;
  }
}
@media screen and (min-width: 961px) {
  .p-first-time__img + .p-first-time__link {
    padding-left: 11rem;
  }
}
.p-first-time__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.3846153846;
  letter-spacing: 0.05em;
}
.p-first-time__title::before, .p-first-time__title::after {
  content: "";
  display: block;
  height: 0.0625rem;
  margin-top: 1rem;
  background-color: var(--wlht-fontColor);
}
.p-first-time__title::before {
  position: relative;
  transform: rotate(45deg);
  transform-origin: 100% 0;
  width: 0.5rem;
  margin-left: 0.6875rem;
}
.p-first-time__title::after {
  width: 1.1875rem;
}
@media screen and (min-width: 640px) {
  .p-first-time__title::before, .p-first-time__title::after {
    display: none;
  }
}
.p-first-time__img + .p-first-time__link .p-first-time__title {
  padding-left: 9.625rem;
}
@media screen and (min-width: 640px) {
  .p-first-time__img + .p-first-time__link .p-first-time__title {
    padding-left: 0;
  }
}
.p-first-time__text {
  margin-top: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.8571428571;
}
@media screen and (min-width: 640px) {
  .p-first-time__text {
    margin-top: 0.625rem;
  }
}
@media screen and (min-width: 961px) {
  .p-first-time__text {
    margin-top: 1.125rem;
  }
}

.p-video {
  padding-top: 4rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 640px) {
  .p-video {
    padding-top: 5.875rem;
    padding-bottom: 9rem;
  }
}
@media screen and (min-width: 961px) {
  .p-video {
    padding-bottom: 9.4375rem;
  }
}
.p-video__container {
  position: relative;
  margin-top: 2rem;
}
@media screen and (min-width: 961px) {
  .p-video__container {
    margin-top: 0;
  }
}
.p-video__item {
  display: none;
}
.p-video__item.is-active {
  display: block;
}
@media screen and (min-width: 640px) {
  .p-video__thumbnail {
    display: grid;
    grid-template-columns: 22rem 1fr;
    grid-column-gap: 2rem;
  }
}
.p-video__thumbnail__img {
  aspect-ratio: 320/240;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
}
@media screen and (min-width: 640px) {
  .p-video__thumbnail__img {
    aspect-ratio: 352/256;
  }
}
.p-video__thumbnail__img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.875rem;
  height: 3.875rem;
  background-image: url(../images/icon/icon-play.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.p-video__thumbnail__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-video__thumbnail__details {
  margin-top: 1.6875rem;
}
@media screen and (min-width: 640px) {
  .p-video__thumbnail__details {
    margin-top: 0;
  }
}
.p-video__thumbnail__details__headline__title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.p-video__thumbnail__details__headline__date {
  margin-top: 0.5625rem;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
.p-video__thumbnail__details__profile {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
}
.p-video__thumbnail__details__profile > a {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.25rem;
  color: var(--wlht-accentColor);
  white-space: nowrap;
}
.p-video__thumbnail__details__profile > a::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.0625rem;
  background-image: url(../images/icon/icon-youtube.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.p-video__nav {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(3rem, 4rem));
  grid-gap: 1rem;
  margin-top: 1.8125rem;
}
@media screen and (min-width: 640px) {
  .p-video__nav {
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - 24rem);
  }
}
.p-video__nav__item {
  position: relative;
  width: 4rem;
  height: 4rem;
}
.p-video__nav__item.is-active {
  display: none;
}
.p-video__nav__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.375rem;
  height: 2.375rem;
  background-image: url(../images/icon/icon-play.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.p-video__nav__item > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-video__popup {
  position: fixed;
  inset: 0;
  display: none;
}
.p-video__popup[open] {
  display: block;
}
.p-video__popup::-webkit-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
.p-video__popup::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
.p-video__popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
}
.p-video__popup__close::before, .p-video__popup__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 0.0625rem;
  background-color: white;
}
.p-video__popup__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-video__popup__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-video__popup > iframe {
  aspect-ratio: 16/9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: min(92%, 60rem);
  height: auto;
}

.p-blocks {
  width: 100%;
  padding-bottom: 4rem;
}
@media screen and (min-width: 640px) {
  .p-blocks {
    padding-bottom: 6rem;
  }
}
.p-blocks__item + .p-blocks__item {
  margin-top: 4rem;
}
@media screen and (min-width: 640px) {
  .p-blocks__item {
    display: grid;
    grid-template-columns: 50% 50%;
  }
  .p-blocks__item + .p-blocks__item {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 961px) {
  .p-blocks__item + .p-blocks__item {
    margin-top: 4.625rem;
  }
}
@media screen and (min-width: 640px) {
  .p-blocks__item:nth-of-type(odd) {
    grid-template-areas: "img content";
  }
}
@media screen and (min-width: 640px) {
  .p-blocks__item:nth-of-type(even) {
    grid-template-areas: "content img";
  }
}
.p-blocks__img {
  position: relative;
  z-index: 1;
  width: min(22rem, 100% - 2rem);
  height: 15rem;
}
@media screen and (min-width: 640px) {
  .p-blocks__img {
    grid-area: img;
    width: 100%;
    height: 18.125rem;
  }
}
@media screen and (min-width: 961px) {
  .p-blocks__img {
    height: 20rem;
  }
}
.p-blocks__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-blocks__item:nth-of-type(odd) .p-blocks__img {
  margin-left: -2rem;
}
@media screen and (min-width: 640px) {
  .p-blocks__item:nth-of-type(odd) .p-blocks__img {
    margin-left: 0;
  }
}
.p-blocks__item:nth-of-type(even) .p-blocks__img {
  margin-right: -2rem;
}
@media screen and (min-width: 640px) {
  .p-blocks__item:nth-of-type(even) .p-blocks__img {
    margin-right: 0;
  }
}
.p-blocks__gallery {
  position: relative;
  z-index: 1;
  width: min(22rem, 100% - 2rem);
}
@media screen and (min-width: 640px) {
  .p-blocks__gallery {
    grid-area: img;
    width: 100%;
  }
}
.p-blocks__gallery__item {
  height: 12.5rem;
  overflow: hidden;
}
@media screen and (min-width: 640px) {
  .p-blocks__gallery__item {
    height: 14.375rem;
  }
}
@media screen and (min-width: 961px) {
  .p-blocks__gallery__item {
    height: 16rem;
  }
}
.p-blocks__gallery__item > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-blocks__gallery__nav {
  display: none;
}
@media screen and (min-width: 640px) {
  .p-blocks__gallery__nav {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
    margin-top: 1.5rem;
  }
}
.p-blocks__gallery__nav > span {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 !important;
  border-radius: 100%;
  background-color: #ddd;
  opacity: 1;
}
.p-blocks__gallery__nav > span.swiper-pagination-bullet-active {
  background-color: var(--wlht-accentColor);
}
.p-blocks__content {
  padding-top: 4rem;
  padding-bottom: 1.5625rem;
  margin-top: -2rem;
  background-color: var(--wlht-secondaryColor);
}
@media screen and (min-width: 640px) {
  .p-blocks__content {
    grid-area: content;
    min-height: 21rem;
    padding-top: 2rem;
    border-image-source: linear-gradient(var(--wlht-secondaryColor), var(--wlht-secondaryColor));
    border-image-slice: 0 fill;
  }
}
@media screen and (min-width: 961px) {
  .p-blocks__content {
    border-image-source: none;
  }
}
.p-blocks__item:nth-of-type(odd) .p-blocks__content {
  padding-right: min(2rem, 8.3333333333vw);
  padding-left: 2rem;
  margin-right: max(-2rem, -8.3333333333vw);
}
@media screen and (min-width: 640px) {
  .p-blocks__item:nth-of-type(odd) .p-blocks__content {
    padding-left: calc(37.037037037% + 2rem);
    margin-top: 1rem;
    margin-right: 0;
    margin-left: -37.037037037%;
    border-image-outset: 0 100vw 0 0;
  }
}
@media screen and (min-width: 961px) {
  .p-blocks__item:nth-of-type(odd) .p-blocks__content {
    padding-right: 2rem;
    padding-left: calc(33.333% + 2rem);
    margin-left: -33.333%;
  }
}
.p-blocks__item:nth-of-type(even) .p-blocks__content {
  padding-right: 2rem;
  padding-left: min(2rem, 8.3333333333vw);
  margin-left: max(-2rem, -8.3333333333vw);
}
@media screen and (min-width: 640px) {
  .p-blocks__item:nth-of-type(even) .p-blocks__content {
    padding-right: calc(37.037037037% + 2rem);
    margin-top: 1rem;
    margin-left: 0;
    margin-right: -37.037037037%;
    border-image-outset: 0 0 0 100vw;
  }
}
@media screen and (min-width: 961px) {
  .p-blocks__item:nth-of-type(even) .p-blocks__content {
    padding-left: 2rem;
    padding-right: calc(33.333% + 2rem);
    margin-right: -33.333%;
  }
}
.p-blocks__title__en {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 200;
  line-height: 1;
}
@media screen and (min-width: 640px) {
  .p-blocks__title__en {
    font-size: 2.25rem;
  }
}
.p-blocks__title__ja {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.p-blocks__item:nth-of-type(odd) .p-blocks__title {
  padding-left: 1rem;
  border-left: 0.0625rem solid var(--wlht-accentColor);
}
.p-blocks__item:nth-of-type(even) .p-blocks__title {
  padding-right: 1rem;
  border-right: 0.0625rem solid var(--wlht-accentColor);
  text-align: right;
}
@media screen and (min-width: 640px) {
  .p-blocks__item:nth-of-type(even) .p-blocks__title {
    padding-right: 0;
    padding-left: 1rem;
    border-right: none;
    border-left: 0.0625rem solid var(--wlht-accentColor);
    text-align: left;
  }
}
.p-blocks__details {
  margin-top: 1.25rem;
}
@media screen and (min-width: 640px) {
  .p-blocks__details {
    margin-top: 1.5rem;
  }
}
.p-blocks__details__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5555555556;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 640px) {
  .p-blocks__details__title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
.p-blocks__details__text {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 640px) {
  .p-blocks__details__text {
    margin-top: 1.5rem;
  }
}
.p-blocks__details__link {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 2.1875rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 640px) {
  .p-blocks__details__link {
    margin-top: 1.6875rem;
    margin-left: auto;
    font-weight: 400;
  }
}
.p-blocks__details__link::before, .p-blocks__details__link::after {
  content: "";
  position: absolute;
  display: block;
  top: 0.8125rem;
  height: 0.0625rem;
  background-color: var(--wlht-fontColor);
}
.p-blocks__details__link::before {
  right: 0.3125rem;
  transform: rotate(45deg);
  transform-origin: 100% 0;
  width: 0.5rem;
}
.p-blocks__details__link::after {
  left: calc(100% - 1.5rem);
  width: 1.1875rem;
}
@media (any-hover: hover) {
  .p-blocks__details__link {
    transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .p-blocks__details__link:hover {
    color: var(--wlht-accentColor);
    font-weight: 700;
  }
  .p-blocks__details__link::before, .p-blocks__details__link::after {
    transition-property: right, width, background-color;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .p-blocks__details__link:hover::before, .p-blocks__details__link:hover::after {
    background-color: var(--wlht-accentColor);
  }
  .p-blocks__details__link:hover::before {
    right: 0;
  }
  .p-blocks__details__link:hover::after {
    width: 1.5rem;
  }
}
.p-blocks__item:nth-of-type(even) .p-blocks__details__title {
  text-align: right;
}
@media screen and (min-width: 640px) {
  .p-blocks__item:nth-of-type(even) .p-blocks__details__title {
    text-align: left;
  }
}
.p-blocks__item:nth-of-type(even) .p-blocks__details__link {
  margin-left: auto;
}
.p-blocks__line {
  display: grid;
  grid-template-columns: 7rem 1fr;
  grid-template-areas: "ttl ttl" "img txt" "link link";
  grid-gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 0.75rem;
  border-top: 0.0625rem solid var(--wlht-quaternaryColor);
}
.p-blocks__line:last-of-type {
  border-bottom: 0.0625rem solid var(--wlht-quaternaryColor);
}
@media screen and (min-width: 640px) {
  .p-blocks__line {
    grid-template-columns: 10.625rem 7rem 1fr 6.25rem;
    grid-template-areas: "ttl img txt link";
    grid-column-gap: 2rem;
    align-items: center;
  }
}
@media screen and (min-width: 961px) {
  .p-blocks__line {
    grid-template-columns: 16rem 7rem 1fr 6.25rem;
  }
}
.p-blocks__line__title {
  grid-area: ttl;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  padding-left: 0.875rem;
  border-left: 0.0625rem solid var(--wlht-accentColor);
}
@media screen and (min-width: 640px) {
  .p-blocks__line__title {
    display: block;
    padding-left: 0.9375rem;
  }
}
@media screen and (min-width: 961px) {
  .p-blocks__line__title {
    display: grid;
    grid-template-columns: 8.5625rem 1fr;
    align-items: center;
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
    padding-left: 0;
    border-left: none;
  }
}
.p-blocks__line__title__en {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 200;
  line-height: 0.8125;
}
@media screen and (min-width: 640px) {
  .p-blocks__line__title__en {
    font-size: 1.625rem;
    line-height: 0.7692307692;
  }
}
@media screen and (min-width: 961px) {
  .p-blocks__line__title__en {
    padding-right: 0.875rem;
    border-right: 0.0625rem solid var(--wlht-accentColor);
    text-align: right;
  }
}
.p-blocks__line__title__ja {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 640px) {
  .p-blocks__line__title__ja {
    margin-top: 0.625rem;
  }
}
@media screen and (min-width: 961px) {
  .p-blocks__line__title__ja {
    margin-top: 0;
  }
}
.p-blocks__line__img {
  grid-area: img;
  width: 100%;
  height: 6rem;
}
@media screen and (min-width: 640px) {
  .p-blocks__line__img {
    height: 5rem;
  }
}
.p-blocks__line__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-blocks__line__text {
  grid-area: txt;
  font-size: 0.75rem;
  line-height: 1.8333333333;
}
@media screen and (min-width: 640px) {
  .p-blocks__line__text {
    line-height: 2;
  }
}
.p-blocks__line__link {
  grid-area: link;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 2.125rem;
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 640px) {
  .p-blocks__line__link {
    width: 100%;
    padding-right: 0;
  }
}
.p-blocks__line__link::before, .p-blocks__line__link::after {
  content: "";
  position: absolute;
  display: block;
  top: 0.8125rem;
  height: 0.0625rem;
  background-color: var(--wlht-fontColor);
}
.p-blocks__line__link::before {
  right: 0.3125rem;
  transform: rotate(45deg);
  transform-origin: 100% 0;
  width: 0.5rem;
}
.p-blocks__line__link::after {
  left: calc(100% - 1.5rem);
  width: 1.1875rem;
}
@media (any-hover: hover) {
  .p-blocks__line__link {
    transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .p-blocks__line__link:hover {
    color: var(--wlht-accentColor);
    font-weight: 700;
  }
  .p-blocks__line__link::before, .p-blocks__line__link::after {
    transition-property: right, width, background-color;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .p-blocks__line__link:hover::before, .p-blocks__line__link:hover::after {
    background-color: var(--wlht-accentColor);
  }
  .p-blocks__line__link:hover::before {
    right: 0;
  }
  .p-blocks__line__link:hover::after {
    width: 1.5rem;
  }
}
.p-blocks__item + .p-blocks__line {
  margin-top: 3rem;
}
@media screen and (min-width: 640px) {
  .p-blocks__item + .p-blocks__line {
    margin-top: 6rem;
  }
}

.p-home-sightseeing {
  grid-column: full;
  padding-top: 2rem;
  padding-bottom: 2.625rem;
}
@media screen and (min-width: 640px) {
  .p-home-sightseeing {
    padding-block: 3rem;
  }
}
.p-home-sightseeing__headline {
  position: relative;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  padding-left: 0.875rem;
  margin-bottom: 4.25rem;
  margin-inline: min(2rem, 8.3333333333%);
  border-left: 0.0625rem solid var(--wlht-accentColor);
}
@media screen and (min-width: 640px) {
  .p-home-sightseeing__headline {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.875rem;
         column-gap: 0.875rem;
    padding-block: 0.1875rem;
    margin-inline: min(3rem, 5%);
    margin-bottom: 2rem;
  }
}
.p-home-sightseeing__headline__en {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 200;
  line-height: 0.78125;
}
@media screen and (min-width: 640px) {
  .p-home-sightseeing__headline__en {
    font-size: 2.25rem;
    line-height: 0.7222222222;
  }
}
.p-home-sightseeing__headline__ja {
  margin-top: 0.6875rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 640px) {
  .p-home-sightseeing__headline__ja {
    margin-top: 0;
  }
}
.p-home-sightseeing__headline__link {
  position: absolute;
  right: -0.3125rem;
  bottom: -2.6875rem;
  display: block;
  padding-right: 2.1875rem;
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 640px) {
  .p-home-sightseeing__headline__link {
    top: 50%;
    bottom: auto;
    right: 0;
    transform: translateY(-50%);
  }
}
.p-home-sightseeing__headline__link::before, .p-home-sightseeing__headline__link::after {
  content: "";
  position: absolute;
  display: block;
  top: 0.8125rem;
  height: 0.0625rem;
  background-color: var(--wlht-fontColor);
}
.p-home-sightseeing__headline__link::before {
  right: 0.3125rem;
  transform: rotate(45deg);
  transform-origin: 100% 0;
  width: 0.5rem;
}
.p-home-sightseeing__headline__link::after {
  left: calc(100% - 1.5rem);
  width: 1.1875rem;
}
@media (any-hover: hover) {
  .p-home-sightseeing__headline__link {
    transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .p-home-sightseeing__headline__link:hover {
    color: var(--wlht-accentColor);
    font-weight: 700;
  }
  .p-home-sightseeing__headline__link::before, .p-home-sightseeing__headline__link::after {
    transition-property: right, width, background-color;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .p-home-sightseeing__headline__link:hover::before, .p-home-sightseeing__headline__link:hover::after {
    background-color: var(--wlht-accentColor);
  }
  .p-home-sightseeing__headline__link:hover::before {
    right: 0;
  }
  .p-home-sightseeing__headline__link:hover::after {
    width: 1.5rem;
  }
}
.p-home-sightseeing__content > .swiper {
  overflow: visible;
}
.p-home-sightseeing__slider__item {
  width: 15rem;
  height: auto;
}
.p-home-sightseeing__slider__link {
  display: block;
  height: 100%;
  padding: 1rem;
  background-color: var(--wlht-tertiaryColor);
}
@media (any-hover: hover) {
  .p-home-sightseeing__slider__link[href] {
    transition: background-color, filter 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .p-home-sightseeing__slider__link[href] img {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .p-home-sightseeing__slider__link[href]:hover {
    background-color: var(--wlht-primaryColor);
    filter: grayscale(1);
  }
  .p-home-sightseeing__slider__link[href]:hover img {
    transform: scale(1.1);
  }
}
.p-home-sightseeing__slider__img {
  aspect-ratio: 208/160;
  width: 100%;
  overflow: hidden;
}
.p-home-sightseeing__slider__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-sightseeing__slider__img > img.is-noimage {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.p-home-sightseeing__slider__content {
  margin-top: 0.625rem;
}
.p-home-sightseeing__slider__content__title {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.p-home-sightseeing__slider__content__tags {
  padding-top: 0.1875rem;
  margin-top: 0.25rem;
  border-top: 0.0625rem solid #666;
  font-size: 0.75rem;
  line-height: 2.1666666667;
  letter-spacing: 0.05em;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.p-home-sightseeing__slider__content__tags > span:not(:first-child)::before {
  content: " ";
}
.p-home-sightseeing__nav {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 640px) {
  .p-home-sightseeing__nav {
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
  }
}
@media screen and (min-width: 961px) {
  .p-home-sightseeing__nav {
    height: 0.5rem;
  }
}
.p-home-sightseeing__nav > span {
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  margin: 0 !important;
  border-radius: 100%;
  background-color: #ddd;
  opacity: 1;
}
@media screen and (min-width: 640px) {
  .p-home-sightseeing__nav > span {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.p-home-sightseeing__nav > span.swiper-pagination-bullet-active {
  background-color: var(--wlht-accentColor);
}

.p-home-access {
  padding-top: 3.25rem;
  padding-bottom: 2.25rem;
}
@media screen and (min-width: 640px) {
  .p-home-access {
    display: grid;
    grid-template-columns: 17rem 1fr;
    grid-template-rows: 2rem 1fr 1.5rem;
    grid-template-areas: "ttl ttl" "txt map" "link map";
    grid-column-gap: 1rem;
    grid-row-gap: 2rem;
    padding-top: 5rem;
    padding-bottom: 7rem;
  }
}
@media screen and (min-width: 961px) {
  .p-home-access {
    grid-template-columns: 23rem 1fr;
    grid-template-rows: 1.375rem 1fr 1.5rem;
    grid-template-areas: "ttl map" "txt map" "link map";
    grid-row-gap: 0.75rem;
    padding-bottom: 6.5625rem;
  }
}
@media screen and (min-width: 640px) {
  .p-home-access__headline {
    grid-area: ttl;
    display: flex;
    align-items: center;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
@media screen and (min-width: 961px) {
  .p-home-access__headline {
    display: grid;
    grid-template-columns: 8.5625rem 1fr;
    border-right: none;
  }
}
@media screen and (min-width: 961px) {
  .p-home-access__headline__en {
    padding-right: 0.875rem;
    border-right: 0.0625rem solid var(--wlht-accentColor);
    font-size: 1.875rem;
    line-height: 0.7333333333;
  }
}
@media screen and (min-width: 961px) {
  .p-home-access__headline__ja {
    margin-top: 0;
    text-align: left;
  }
}
.p-home-access__status {
  margin-top: 1.6875rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 640px) {
  .p-home-access__status {
    grid-area: txt;
    margin-top: 0;
  }
}
@media screen and (min-width: 961px) {
  .p-home-access__status {
    padding-left: 9.5625rem;
  }
}
.p-home-access__status__access {
  margin-top: 0.0625rem;
  color: var(--wlht-accentColor);
  font-weight: 500;
}
.p-home-access__map {
  height: 20rem;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 640px) {
  .p-home-access__map {
    grid-area: map;
    height: 16rem;
    margin-top: 0;
  }
}
.p-home-access__map > iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.p-home-access__link {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 2.1875rem;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 640px) {
  .p-home-access__link {
    grid-area: link;
    margin-top: 0;
    margin-left: auto;
  }
}
.p-home-access__link::before, .p-home-access__link::after {
  content: "";
  position: absolute;
  display: block;
  top: 0.8125rem;
  height: 0.0625rem;
  background-color: var(--wlht-fontColor);
}
.p-home-access__link::before {
  right: 0.3125rem;
  transform: rotate(45deg);
  transform-origin: 100% 0;
  width: 0.5rem;
}
.p-home-access__link::after {
  left: calc(100% - 1.5rem);
  width: 1.1875rem;
}
@media (any-hover: hover) {
  .p-home-access__link {
    transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .p-home-access__link:hover {
    color: var(--wlht-accentColor);
    font-weight: 700;
  }
  .p-home-access__link::before, .p-home-access__link::after {
    transition-property: right, width, background-color;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .p-home-access__link:hover::before, .p-home-access__link:hover::after {
    background-color: var(--wlht-accentColor);
  }
  .p-home-access__link:hover::before {
    right: 0;
  }
  .p-home-access__link:hover::after {
    width: 1.5rem;
  }
}

/* margin */
.u-m-4 {
  margin: 0.25rem;
}

.u-m-8 {
  margin: 0.5rem;
}

.u-m-12 {
  margin: 0.75rem;
}

.u-m-16 {
  margin: 1rem;
}

.u-m-32 {
  margin: 2rem;
}

.u-m-48 {
  margin: 3rem;
}

.u-m-64 {
  margin: 4rem;
}

.u-m-80 {
  margin: 5rem;
}

.u-m-96 {
  margin: 6rem;
}

.u-m-112 {
  margin: 7rem;
}

.u-m-128 {
  margin: 8rem;
}

.u-m-144 {
  margin: 9rem;
}

.u-m-160 {
  margin: 10rem;
}

.u-m-176 {
  margin: 11rem;
}

.u-m-192 {
  margin: 12rem;
}

.u-m-208 {
  margin: 13rem;
}

.u-m-224 {
  margin: 14rem;
}

.u-m-240 {
  margin: 15rem;
}

.u-m-256 {
  margin: 16rem;
}

.u-m-272 {
  margin: 17rem;
}

.u-m-288 {
  margin: 18rem;
}

.u-m-304 {
  margin: 19rem;
}

.u-m-320 {
  margin: 20rem;
}

/* margin-top */
.u-mt-4 {
  margin-top: 0.25rem;
}

.u-mt-8 {
  margin-top: 0.5rem;
}

.u-mt-12 {
  margin-top: 0.75rem;
}

.u-mt-16 {
  margin-top: 1rem;
}

.u-mt-32 {
  margin-top: 2rem;
}

.u-mt-48 {
  margin-top: 3rem;
}

.u-mt-64 {
  margin-top: 4rem;
}

.u-mt-80 {
  margin-top: 5rem;
}

.u-mt-96 {
  margin-top: 6rem;
}

.u-mt-112 {
  margin-top: 7rem;
}

.u-mt-128 {
  margin-top: 8rem;
}

.u-mt-144 {
  margin-top: 9rem;
}

.u-mt-160 {
  margin-top: 10rem;
}

.u-mt-176 {
  margin-top: 11rem;
}

.u-mt-192 {
  margin-top: 12rem;
}

.u-mt-208 {
  margin-top: 13rem;
}

.u-mt-224 {
  margin-top: 14rem;
}

.u-mt-240 {
  margin-top: 15rem;
}

.u-mt-256 {
  margin-top: 16rem;
}

.u-mt-272 {
  margin-top: 17rem;
}

.u-mt-288 {
  margin-top: 18rem;
}

.u-mt-304 {
  margin-top: 19rem;
}

.u-mt-320 {
  margin-top: 20rem;
}

/* margin-bottom */
.u-mb-4 {
  margin-bottom: 0.25rem;
}

.u-mb-8 {
  margin-bottom: 0.5rem;
}

.u-mb-12 {
  margin-bottom: 0.75rem;
}

.u-mb-16 {
  margin-bottom: 1rem;
}

.u-mb-32 {
  margin-bottom: 2rem;
}

.u-mb-48 {
  margin-bottom: 3rem;
}

.u-mb-64 {
  margin-bottom: 4rem;
}

.u-mb-80 {
  margin-bottom: 5rem;
}

.u-mb-96 {
  margin-bottom: 6rem;
}

.u-mb-112 {
  margin-bottom: 7rem;
}

.u-mb-128 {
  margin-bottom: 8rem;
}

.u-mb-144 {
  margin-bottom: 9rem;
}

.u-mb-160 {
  margin-bottom: 10rem;
}

.u-mb-176 {
  margin-bottom: 11rem;
}

.u-mb-192 {
  margin-bottom: 12rem;
}

.u-mb-208 {
  margin-bottom: 13rem;
}

.u-mb-224 {
  margin-bottom: 14rem;
}

.u-mb-240 {
  margin-bottom: 15rem;
}

.u-mb-256 {
  margin-bottom: 16rem;
}

.u-mb-272 {
  margin-bottom: 17rem;
}

.u-mb-288 {
  margin-bottom: 18rem;
}

.u-mb-304 {
  margin-bottom: 19rem;
}

.u-mb-320 {
  margin-bottom: 20rem;
}

/* margin-right */
.u-mr-4 {
  margin-right: 0.25rem;
}

.u-mr-8 {
  margin-right: 0.5rem;
}

.u-mr-12 {
  margin-right: 0.75rem;
}

.u-mr-16 {
  margin-right: 1rem;
}

.u-mr-32 {
  margin-right: 2rem;
}

.u-mr-48 {
  margin-right: 3rem;
}

.u-mr-64 {
  margin-right: 4rem;
}

.u-mr-80 {
  margin-right: 5rem;
}

.u-mr-96 {
  margin-right: 6rem;
}

.u-mr-112 {
  margin-right: 7rem;
}

.u-mr-128 {
  margin-right: 8rem;
}

.u-mr-144 {
  margin-right: 9rem;
}

.u-mr-160 {
  margin-right: 10rem;
}

.u-mr-176 {
  margin-right: 11rem;
}

.u-mr-192 {
  margin-right: 12rem;
}

.u-mr-208 {
  margin-right: 13rem;
}

.u-mr-224 {
  margin-right: 14rem;
}

.u-mr-240 {
  margin-right: 15rem;
}

.u-mr-256 {
  margin-right: 16rem;
}

.u-mr-272 {
  margin-right: 17rem;
}

.u-mr-288 {
  margin-right: 18rem;
}

.u-mr-304 {
  margin-right: 19rem;
}

.u-mr-320 {
  margin-right: 20rem;
}

/* margin-left */
.u-ml-4 {
  margin-left: 0.25rem;
}

.u-ml-8 {
  margin-left: 0.5rem;
}

.u-ml-12 {
  margin-left: 0.75rem;
}

.u-ml-16 {
  margin-left: 1rem;
}

.u-ml-32 {
  margin-left: 2rem;
}

.u-ml-48 {
  margin-left: 3rem;
}

.u-ml-64 {
  margin-left: 4rem;
}

.u-ml-80 {
  margin-left: 5rem;
}

.u-ml-96 {
  margin-left: 6rem;
}

.u-ml-112 {
  margin-left: 7rem;
}

.u-ml-128 {
  margin-left: 8rem;
}

.u-ml-144 {
  margin-left: 9rem;
}

.u-ml-160 {
  margin-left: 10rem;
}

.u-ml-176 {
  margin-left: 11rem;
}

.u-ml-192 {
  margin-left: 12rem;
}

.u-ml-208 {
  margin-left: 13rem;
}

.u-ml-224 {
  margin-left: 14rem;
}

.u-ml-240 {
  margin-left: 15rem;
}

.u-ml-256 {
  margin-left: 16rem;
}

.u-ml-272 {
  margin-left: 17rem;
}

.u-ml-288 {
  margin-left: 18rem;
}

.u-ml-304 {
  margin-left: 19rem;
}

.u-ml-320 {
  margin-left: 20rem;
}

/* margin-block */
.u-mtb-4 {
  margin-block: 0.25rem;
}

.u-mtb-8 {
  margin-block: 0.5rem;
}

.u-mtb-12 {
  margin-block: 0.75rem;
}

.u-mtb-16 {
  margin-block: 1rem;
}

.u-mtb-32 {
  margin-block: 2rem;
}

.u-mtb-48 {
  margin-block: 3rem;
}

.u-mtb-64 {
  margin-block: 4rem;
}

.u-mtb-80 {
  margin-block: 5rem;
}

.u-mtb-96 {
  margin-block: 6rem;
}

.u-mtb-112 {
  margin-block: 7rem;
}

.u-mtb-128 {
  margin-block: 8rem;
}

.u-mtb-144 {
  margin-block: 9rem;
}

.u-mtb-160 {
  margin-block: 10rem;
}

.u-mtb-176 {
  margin-block: 11rem;
}

.u-mtb-192 {
  margin-block: 12rem;
}

.u-mtb-208 {
  margin-block: 13rem;
}

.u-mtb-224 {
  margin-block: 14rem;
}

.u-mtb-240 {
  margin-block: 15rem;
}

.u-mtb-256 {
  margin-block: 16rem;
}

.u-mtb-272 {
  margin-block: 17rem;
}

.u-mtb-288 {
  margin-block: 18rem;
}

.u-mtb-304 {
  margin-block: 19rem;
}

.u-mtb-320 {
  margin-block: 20rem;
}

/* margin-inline */
.u-mrl-4 {
  margin-inline: 0.25rem;
}

.u-mrl-8 {
  margin-inline: 0.5rem;
}

.u-mrl-12 {
  margin-inline: 0.75rem;
}

.u-mrl-16 {
  margin-inline: 1rem;
}

.u-mrl-32 {
  margin-inline: 2rem;
}

.u-mrl-48 {
  margin-inline: 3rem;
}

.u-mrl-64 {
  margin-inline: 4rem;
}

.u-mrl-80 {
  margin-inline: 5rem;
}

.u-mrl-96 {
  margin-inline: 6rem;
}

.u-mrl-112 {
  margin-inline: 7rem;
}

.u-mrl-128 {
  margin-inline: 8rem;
}

.u-mrl-144 {
  margin-inline: 9rem;
}

.u-mrl-160 {
  margin-inline: 10rem;
}

.u-mrl-176 {
  margin-inline: 11rem;
}

.u-mrl-192 {
  margin-inline: 12rem;
}

.u-mrl-208 {
  margin-inline: 13rem;
}

.u-mrl-224 {
  margin-inline: 14rem;
}

.u-mrl-240 {
  margin-inline: 15rem;
}

.u-mrl-256 {
  margin-inline: 16rem;
}

.u-mrl-272 {
  margin-inline: 17rem;
}

.u-mrl-288 {
  margin-inline: 18rem;
}

.u-mrl-304 {
  margin-inline: 19rem;
}

.u-mrl-320 {
  margin-inline: 20rem;
}

/* padding */
.u-p-4 {
  padding: 0.25rem;
}

.u-p-8 {
  padding: 0.5rem;
}

.u-p-12 {
  padding: 0.75rem;
}

.u-p-16 {
  padding: 1rem;
}

.u-p-32 {
  padding: 2rem;
}

.u-p-48 {
  padding: 3rem;
}

.u-p-64 {
  padding: 4rem;
}

.u-p-80 {
  padding: 5rem;
}

.u-p-96 {
  padding: 6rem;
}

.u-p-112 {
  padding: 7rem;
}

.u-p-128 {
  padding: 8rem;
}

.u-p-144 {
  padding: 9rem;
}

.u-p-160 {
  padding: 10rem;
}

.u-p-176 {
  padding: 11rem;
}

.u-p-192 {
  padding: 12rem;
}

.u-p-208 {
  padding: 13rem;
}

.u-p-224 {
  padding: 14rem;
}

.u-p-240 {
  padding: 15rem;
}

.u-p-256 {
  padding: 16rem;
}

.u-p-272 {
  padding: 17rem;
}

.u-p-288 {
  padding: 18rem;
}

.u-p-304 {
  padding: 19rem;
}

.u-p-320 {
  padding: 20rem;
}

/* padding-top */
.u-pt-4 {
  padding-top: 0.25rem;
}

.u-pt-8 {
  padding-top: 0.5rem;
}

.u-pt-12 {
  padding-top: 0.75rem;
}

.u-pt-16 {
  padding-top: 1rem;
}

.u-pt-32 {
  padding-top: 2rem;
}

.u-pt-48 {
  padding-top: 3rem;
}

.u-pt-64 {
  padding-top: 4rem;
}

.u-pt-80 {
  padding-top: 5rem;
}

.u-pt-96 {
  padding-top: 6rem;
}

.u-pt-112 {
  padding-top: 7rem;
}

.u-pt-128 {
  padding-top: 8rem;
}

.u-pt-144 {
  padding-top: 9rem;
}

.u-pt-160 {
  padding-top: 10rem;
}

.u-pt-176 {
  padding-top: 11rem;
}

.u-pt-192 {
  padding-top: 12rem;
}

.u-pt-208 {
  padding-top: 13rem;
}

.u-pt-224 {
  padding-top: 14rem;
}

.u-pt-240 {
  padding-top: 15rem;
}

.u-pt-256 {
  padding-top: 16rem;
}

.u-pt-272 {
  padding-top: 17rem;
}

.u-pt-288 {
  padding-top: 18rem;
}

.u-pt-304 {
  padding-top: 19rem;
}

.u-pt-320 {
  padding-top: 20rem;
}

/* padding-bottom */
.u-pb-4 {
  padding-bottom: 0.25rem;
}

.u-pb-8 {
  padding-bottom: 0.5rem;
}

.u-pb-12 {
  padding-bottom: 0.75rem;
}

.u-pb-16 {
  padding-bottom: 1rem;
}

.u-pb-32 {
  padding-bottom: 2rem;
}

.u-pb-48 {
  padding-bottom: 3rem;
}

.u-pb-64 {
  padding-bottom: 4rem;
}

.u-pb-80 {
  padding-bottom: 5rem;
}

.u-pb-96 {
  padding-bottom: 6rem;
}

.u-pb-112 {
  padding-bottom: 7rem;
}

.u-pb-128 {
  padding-bottom: 8rem;
}

.u-pb-144 {
  padding-bottom: 9rem;
}

.u-pb-160 {
  padding-bottom: 10rem;
}

.u-pb-176 {
  padding-bottom: 11rem;
}

.u-pb-192 {
  padding-bottom: 12rem;
}

.u-pb-208 {
  padding-bottom: 13rem;
}

.u-pb-224 {
  padding-bottom: 14rem;
}

.u-pb-240 {
  padding-bottom: 15rem;
}

.u-pb-256 {
  padding-bottom: 16rem;
}

.u-pb-272 {
  padding-bottom: 17rem;
}

.u-pb-288 {
  padding-bottom: 18rem;
}

.u-pb-304 {
  padding-bottom: 19rem;
}

.u-pb-320 {
  padding-bottom: 20rem;
}

/* padding-right */
.u-pr-4 {
  padding-right: 0.25rem;
}

.u-pr-8 {
  padding-right: 0.5rem;
}

.u-pr-12 {
  padding-right: 0.75rem;
}

.u-pr-16 {
  padding-right: 1rem;
}

.u-pr-32 {
  padding-right: 2rem;
}

.u-pr-48 {
  padding-right: 3rem;
}

.u-pr-64 {
  padding-right: 4rem;
}

.u-pr-80 {
  padding-right: 5rem;
}

.u-pr-96 {
  padding-right: 6rem;
}

.u-pr-112 {
  padding-right: 7rem;
}

.u-pr-128 {
  padding-right: 8rem;
}

.u-pr-144 {
  padding-right: 9rem;
}

.u-pr-160 {
  padding-right: 10rem;
}

.u-pr-176 {
  padding-right: 11rem;
}

.u-pr-192 {
  padding-right: 12rem;
}

.u-pr-208 {
  padding-right: 13rem;
}

.u-pr-224 {
  padding-right: 14rem;
}

.u-pr-240 {
  padding-right: 15rem;
}

.u-pr-256 {
  padding-right: 16rem;
}

.u-pr-272 {
  padding-right: 17rem;
}

.u-pr-288 {
  padding-right: 18rem;
}

.u-pr-304 {
  padding-right: 19rem;
}

.u-pr-320 {
  padding-right: 20rem;
}

/* padding-left */
.u-pl-4 {
  padding-left: 0.25rem;
}

.u-pl-8 {
  padding-left: 0.5rem;
}

.u-pl-12 {
  padding-left: 0.75rem;
}

.u-pl-16 {
  padding-left: 1rem;
}

.u-pl-32 {
  padding-left: 2rem;
}

.u-pl-48 {
  padding-left: 3rem;
}

.u-pl-64 {
  padding-left: 4rem;
}

.u-pl-80 {
  padding-left: 5rem;
}

.u-pl-96 {
  padding-left: 6rem;
}

.u-pl-112 {
  padding-left: 7rem;
}

.u-pl-128 {
  padding-left: 8rem;
}

.u-pl-144 {
  padding-left: 9rem;
}

.u-pl-160 {
  padding-left: 10rem;
}

.u-pl-176 {
  padding-left: 11rem;
}

.u-pl-192 {
  padding-left: 12rem;
}

.u-pl-208 {
  padding-left: 13rem;
}

.u-pl-224 {
  padding-left: 14rem;
}

.u-pl-240 {
  padding-left: 15rem;
}

.u-pl-256 {
  padding-left: 16rem;
}

.u-pl-272 {
  padding-left: 17rem;
}

.u-pl-288 {
  padding-left: 18rem;
}

.u-pl-304 {
  padding-left: 19rem;
}

.u-pl-320 {
  padding-left: 20rem;
}

/* padding-block */
.u-ptb-4 {
  padding-block: 0.25rem;
}

.u-ptb-8 {
  padding-block: 0.5rem;
}

.u-ptb-12 {
  padding-block: 0.75rem;
}

.u-ptb-16 {
  padding-block: 1rem;
}

.u-ptb-32 {
  padding-block: 2rem;
}

.u-ptb-48 {
  padding-block: 3rem;
}

.u-ptb-64 {
  padding-block: 4rem;
}

.u-ptb-80 {
  padding-block: 5rem;
}

.u-ptb-96 {
  padding-block: 6rem;
}

.u-ptb-112 {
  padding-block: 7rem;
}

.u-ptb-128 {
  padding-block: 8rem;
}

.u-ptb-144 {
  padding-block: 9rem;
}

.u-ptb-160 {
  padding-block: 10rem;
}

.u-ptb-176 {
  padding-block: 11rem;
}

.u-ptb-192 {
  padding-block: 12rem;
}

.u-ptb-208 {
  padding-block: 13rem;
}

.u-ptb-224 {
  padding-block: 14rem;
}

.u-ptb-240 {
  padding-block: 15rem;
}

.u-ptb-256 {
  padding-block: 16rem;
}

.u-ptb-272 {
  padding-block: 17rem;
}

.u-ptb-288 {
  padding-block: 18rem;
}

.u-ptb-304 {
  padding-block: 19rem;
}

.u-ptb-320 {
  padding-block: 20rem;
}

/* padding-inline */
.u-prl-4 {
  padding-inline: 0.25rem;
}

.u-prl-8 {
  padding-inline: 0.5rem;
}

.u-prl-12 {
  padding-inline: 0.75rem;
}

.u-prl-16 {
  padding-inline: 1rem;
}

.u-prl-32 {
  padding-inline: 2rem;
}

.u-prl-48 {
  padding-inline: 3rem;
}

.u-prl-64 {
  padding-inline: 4rem;
}

.u-prl-80 {
  padding-inline: 5rem;
}

.u-prl-96 {
  padding-inline: 6rem;
}

.u-prl-112 {
  padding-inline: 7rem;
}

.u-prl-128 {
  padding-inline: 8rem;
}

.u-prl-144 {
  padding-inline: 9rem;
}

.u-prl-160 {
  padding-inline: 10rem;
}

.u-prl-176 {
  padding-inline: 11rem;
}

.u-prl-192 {
  padding-inline: 12rem;
}

.u-prl-208 {
  padding-inline: 13rem;
}

.u-prl-224 {
  padding-inline: 14rem;
}

.u-prl-240 {
  padding-inline: 15rem;
}

.u-prl-256 {
  padding-inline: 16rem;
}

.u-prl-272 {
  padding-inline: 17rem;
}

.u-prl-288 {
  padding-inline: 18rem;
}

.u-prl-304 {
  padding-inline: 19rem;
}

.u-prl-320 {
  padding-inline: 20rem;
}

/* other */
.u-underlayer-space {
  margin-top: 6rem;
}
@media screen and (min-width: 640px) {
  .u-underlayer-space {
    margin-top: 13rem;
  }
}

.w16 {
  width: 1rem;
}

.w32 {
  width: 2rem;
}

.w48 {
  width: 3rem;
}

.w64 {
  width: 4rem;
}

.w80 {
  width: 5rem;
}

.w96 {
  width: 6rem;
}

.w112 {
  width: 7rem;
}

.w128 {
  width: 8rem;
}

.w144 {
  width: 9rem;
}

.w160 {
  width: 10rem;
}

.w240 {
  width: 15rem;
}

.w320 {
  width: 20rem;
}

.w400 {
  width: 25rem;
}

.w480 {
  width: 30rem;
}

.w560 {
  width: 35rem;
}

.w640 {
  width: 40rem;
}

.w720 {
  width: 45rem;
}

.w800 {
  width: 50rem;
}

.w880 {
  width: 55rem;
}

.w960 {
  width: 60rem;
}

.w1040 {
  width: 65rem;
}

.w1120 {
  width: 70rem;
}

.w1200 {
  width: 75rem;
}

.w1280 {
  width: 80rem;
}

.font-12 {
  font-size: 0.75rem;
}

.font-16 {
  font-size: 1rem;
}

.font-20 {
  font-size: 1.25rem;
}

.font-24 {
  font-size: 1.5rem;
}

.font-28 {
  font-size: 1.75rem;
}

.font-32 {
  font-size: 2rem;
}

.font-36 {
  font-size: 2.25rem;
}

.font-40 {
  font-size: 2.5rem;
}

.font-44 {
  font-size: 2.75rem;
}

.font-48 {
  font-size: 3rem;
}

.font-52 {
  font-size: 3.25rem;
}

.font-56 {
  font-size: 3.5rem;
}

.font-60 {
  font-size: 3.75rem;
}

.font-64 {
  font-size: 4rem;
}

.weight-100 {
  font-weight: 100;
}

.weight-200 {
  font-weight: 200;
}

.weight-300 {
  font-weight: 300;
}

.weight-400 {
  font-weight: 400;
}

.weight-500 {
  font-weight: 500;
}

.weight-600 {
  font-weight: 600;
}

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

.weight-800 {
  font-weight: 800;
}

.weight-900 {
  font-weight: 900;
}

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

@media screen and (min-width: 961px) {
  .is-sp {
    display: none !important;
  }
}

@media screen and (max-width: 960px) {
  .is-pc {
    display: none !important;
  }
}
/*# sourceMappingURL=style.css.map */