@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  display: block;
}

picture {
  display: block;
}

body {
  font-family: "Noto Sans JP", "Noto Sans";
  color: #724000;
}
body p,
body a {
  font-weight: 400;
}
body.is-fixed {
  overflow: hidden;
}
body.is-loading {
  overflow: hidden;
  height: 100vh;
  pointer-events: none;
}

a {
  cursor: pointer;
}
a:hover {
  opacity: 0.5;
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

.hidden-pc {
  display: block;
}
@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.hidden-sp-text {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp-text {
    display: inline-block;
  }
}

.js-in-view {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px); /* 下から上にフェードイン */
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.js-fade-in-load {
  opacity: 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px); /* 下から上にフェードイン */
  -webkit-transition: opacity 1.5s ease-out, -webkit-transform 1.5s ease-out;
  transition: opacity 1.5s ease-out, -webkit-transform 1.5s ease-out;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out, -webkit-transform 1.5s ease-out;
}

.js-in-view.is-in-view,
.js-fade-in-load.is-faded-in-load {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes slidein-r {
  from {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slidein-r {
  from {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slidein-l {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slidein-l {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-news__cards.is-active .slidein-l {
  -webkit-animation: slidein-l 1.5s ease-out both;
          animation: slidein-l 1.5s ease-out both;
}

.p-news__cards.is-active .slidein-r {
  -webkit-animation: slidein-r 1.5s ease-out both;
          animation: slidein-r 1.5s ease-out both;
}

.p-news__cards {
  opacity: 0;
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out; /* ふわっと表示する */
}

.p-news__cards.is-active {
  opacity: 1;
}

/* 全画面ローディング用 */
#loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
}

/* ロゴのアニメーション */
@-webkit-keyframes expandFadeOut {
  0% {
    -webkit-transform: scale(0.1) rotate(0deg);
            transform: scale(0.1) rotate(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(60) rotate(240deg);
            transform: scale(60) rotate(240deg);
    opacity: 0;
  }
}
@keyframes expandFadeOut {
  0% {
    -webkit-transform: scale(0.1) rotate(0deg);
            transform: scale(0.1) rotate(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(60) rotate(240deg);
            transform: scale(60) rotate(240deg);
    opacity: 0;
  }
}
#loading-logo {
  width: 100px;
  -webkit-animation: expandFadeOut 5s ease-in-out forwards;
          animation: expandFadeOut 5s ease-in-out forwards;
}

.l-wrapper {
  background: url("../img/background_img.png") no-repeat center center;
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: auto;
  overflow: hidden;
  background-size: cover;
}

.l-inner {
  max-width: 1260px;
  padding-inline: clamp(1.25rem, 0.5357142857rem + 1.4880952381vw, 1.875rem);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.l-section {
  padding-block: clamp(4rem, 1.9642857143rem + 4.2410714286vw, 5.78125rem);
}

.l-container .l-wrapper {
  background: none;
  background-color: #eee7e2;
}
.l-container .l-header {
  background-color: #eee7e2;
}

.l-bg_wrapper {
  background: url("../img/background_img.png") center center;
  background-size: cover;
}

.l-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  font-family: "Sawarabi Gothic";
  -webkit-transition: visibility 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: visibility 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: visibility 0.3s ease, background-color 0.3s ease, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: visibility 0.3s ease, background-color 0.3s ease, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (min-width: 768px) {
  .l-header {
    background: #eee7e2;
  }
}
.l-header.l-header-follow {
  position: fixed;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: visibility 0.3s ease, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: visibility 0.3s ease, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.l-header.l-header-follow.is-show {
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  background: transparent;
}
@media screen and (min-width: 768px) {
  .l-header .l-drawer__open-wrapper {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .l-header-follow .l-drawer__open-wrapper {
    display: block;
  }
  .l-header-follow .l-header__nav {
    display: none;
  }
}
.l-header-follow .l-header__inner {
  padding-top: clamp(0.875rem, 0.1607142857rem + 1.4880952381vw, 1.5rem);
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: clamp(0.875rem, 0.1607142857rem + 1.4880952381vw, 1.5rem);
  padding-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

.l-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.625rem, -0.375rem + 2.0833333333vw, 1.5rem);
  margin-right: clamp(1.25rem, -0.1785714286rem + 2.9761904762vw, 2.5rem);
  font-size: clamp(0.625rem, 0.2678571429rem + 0.744047619vw, 0.9375rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}

.l-header__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: relative;
}
.l-header__nav-item a {
  position: relative;
}
.l-header__nav-item a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #724000;
  -webkit-transform: translateX(-50%) scaleX(0);
          transform: translateX(-50%) scaleX(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.l-header__nav-item a:hover::after {
  -webkit-transform: translateX(-50%) scaleX(1);
          transform: translateX(-50%) scaleX(1);
}

.l-header .service__nav-link:hover .service__item-link {
  opacity: 1;
  pointer-events: auto;
}

.l-header .service__item-link {
  opacity: 0;
  position: absolute;
  top: 97%;
  left: 0;
  width: 260px;
}

.l-header__nav-contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-header__nav-contact-item,
.l-drawer-contact__item {
  padding-top: 21px;
  padding-bottom: 21px;
  padding-left: clamp(1.25rem, -1.75rem + 6.25vw, 3.875rem);
  padding-right: clamp(1.25rem, -1.0357142857rem + 4.7619047619vw, 3.25rem);
  white-space: nowrap;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.l-header__nav-contact-item:nth-child(1),
.l-drawer-contact__item:nth-child(1) {
  background-color: #c2ae96;
}
.l-header__nav-contact-item:nth-child(1):hover,
.l-drawer-contact__item:nth-child(1):hover {
  background-color: #eee7e2;
}
.l-header__nav-contact-item:nth-child(2),
.l-drawer-contact__item:nth-child(2) {
  color: #fafafa;
  background-color: #724000;
  padding-top: 21px;
  padding-bottom: 21px;
  padding-left: clamp(1.25rem, -0.3214285714rem + 3.2738095238vw, 2.625rem);
  padding-right: clamp(1.25rem, -0.3214285714rem + 3.2738095238vw, 2.625rem);
}
.l-header__nav-contact-item:nth-child(2):hover,
.l-drawer-contact__item:nth-child(2):hover {
  color: #724000;
  background-color: #eee7e2;
}

.l-header__open {
  width: 24px;
  height: 16px;
  pointer-events: auto;
  position: relative;
}

.l-header__btn-line {
  width: 24px;
  height: 3px;
  position: absolute;
  left: 0;
  background: #724000;
  display: block;
  margin-left: auto;
  border-radius: 2px;
}
.l-header__btn-line:nth-child(1) {
  top: 0;
}
.l-header__btn-line:nth-child(2) {
  width: 20px;
  top: 8px;
  margin-left: 4px;
}
.l-header__btn-line:nth-child(3) {
  width: 16px;
  top: 16px;
  margin-left: 8px;
}

.l-drawer-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #eee7e2;
  background-attachment: fixed;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
  z-index: 900;
  padding-bottom: 40px;
  height: 92%;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .l-drawer-content {
    background: url("../img/background_img.png") no-repeat center center;
    padding-bottom: 120px;
  }
}
.l-drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media screen and (min-width: 768px) {
  .l-drawer-content__inner {
    margin-top: clamp(0.875rem, 0.1607142857rem + 1.4880952381vw, 1.5rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
}

.c-drawer-content__logo {
  padding-block: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-drawer-content__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-top: 40px;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .l-drawer-content__nav {
    margin-left: clamp(8.125rem, -6.1607142857rem + 29.7619047619vw, 20.625rem);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(1.875rem, -1.6964285714rem + 7.4404761905vw, 5rem);
  }
}

@media screen and (min-width: 768px) {
  .l-drawer-close__wrapper {
    position: relative;
    margin-left: auto;
  }
}

.l-drawer-contact__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  .l-drawer-contact__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.l-drawer-contact__item {
  padding-block: 12px;
  text-align: center;
}
.l-drawer-contact__item:nth-child(2) {
  margin-top: 12px;
  padding-block: 12px;
}
@media screen and (min-width: 768px) {
  .l-drawer-contact__item:nth-child(2) {
    margin-top: 0;
  }
}
.l-drawer-contact__item a {
  display: block;
  width: 100%;
  height: 100%;
}

.l-drawer-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .l-drawer-content__list {
    text-align: center;
    gap: 24px;
    position: relative;
  }
}

.l-drawer-content__link {
  padding-bottom: 16px;
  border-bottom: 1px solid #c2ae96;
}
@media screen and (min-width: 768px) {
  .l-drawer-content__link {
    border-bottom: none;
  }
}
.l-drawer-content__link a {
  font-size: clamp(0.9375rem, 0.8660714286rem + 0.1488095238vw, 1rem);
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .l-drawer-content__link a {
    font-weight: normal;
  }
}

.l-drawer__close {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 15px;
  right: 20px;
}
@media screen and (min-width: 768px) {
  .l-drawer__close {
    position: static;
  }
}

.l-drawer__close-line {
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  background: #724000;
}
.l-drawer__close-line:nth-child(1) {
  top: 19px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-drawer__close-line:nth-child(2) {
  top: 19px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.l-drawer__animation-item {
  position: absolute;
  top: 0;
  left: 50%;
  width: 80px;
  height: 80px;
  opacity: 0;
}
.l-drawer__animation-item.is-animated {
  opacity: 1;
  -webkit-animation: bird-animation 5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
          animation: bird-animation 5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
@-webkit-keyframes bird-animation {
  0% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  100% {
    -webkit-transform: translate(-1000%, 400%);
            transform: translate(-1000%, 400%);
  }
}
@keyframes bird-animation {
  0% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  100% {
    -webkit-transform: translate(-1000%, 400%);
            transform: translate(-1000%, 400%);
  }
}

.l-drawer__open-wrapper {
  z-index: 1000;
}

.l-drawer-content__link.service__nav-link {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-drawer-content__link.service__nav-link:hover .service__item-link {
    opacity: 1;
    pointer-events: auto;
  }
}
.l-drawer-content__link.service__nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 20px;
  background-image: url("../img/service-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-drawer-content__link.service__nav-link::after {
    display: none;
  }
}
.l-drawer-content__link.service__nav-link.is-open::after {
  -webkit-transform: translateY(-100%) rotate(180deg);
          transform: translateY(-100%) rotate(180deg);
}

.l-drawer-content .service__nav-link {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-drawer-content .service__nav-link:hover .service__item-link {
    opacity: 1;
    pointer-events: auto;
  }
}
.l-drawer-content .service__nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 20px;
  background-image: url("../img/service-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-drawer-content .service__nav-link::after {
    display: none;
  }
}
.l-drawer-content .service__nav-link.is-open::after {
  -webkit-transform: translateY(-100%) rotate(180deg);
          transform: translateY(-100%) rotate(180deg);
}
.service__item-link {
  background-color: #eee7e2;
  padding: 24px;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.l-header .service__item-link {
  opacity: 0;
  position: absolute;
  top: 97%;
  left: 0;
  width: 260px;
}

.l-drawer-content .service__item-link {
  display: none;
  border-bottom: 1px solid #c2ae96;
  margin-top: -24px;
}
@media screen and (min-width: 768px) {
  .l-drawer-content .service__item-link {
    display: block;
    opacity: 0;
    position: absolute;
    top: 20%;
    left: -337%;
    margin-top: 0;
  }
  .l-drawer-content .service__item-link.is-show {
    opacity: 1;
    pointer-events: auto;
  }
}

.service__item-link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  gap: 40px;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
@media screen and (min-width: 600px) {
  .service__item-link-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .service__item-link-wrapper {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.service-link__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.service-link__column a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  padding-left: 19px;
  position: relative;
  white-space: nowrap;
}
.service-link__column a::before {
  content: ">";
  position: absolute;
  left: 0;
  bottom: auto;
  height: auto;
  color: #724000;
}

.l-footer {
  background: #eee7e2;
  padding: 70px 0;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 80px 0;
  }
}

.l-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-footer__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.l-footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-footer__contents {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 12px;
  }
}

.l-footer__logo img {
  width: 189px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.l-footer__logo:hover img {
  opacity: 0.6;
}

.l-footer__sns {
  margin-top: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .l-footer__sns {
    margin-top: 36px;
  }
}

.l-footer__sns-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fafafa;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.l-footer__sns-link img {
  width: 22px;
}
.l-footer__sns-link:hover {
  opacity: 0.6;
}

.l-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: clamp(0.5625rem, -1.6517857143rem + 4.6130952381vw, 2.5rem);
  max-width: 70px;
  margin: 23px auto 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-list {
    margin: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: inherit;
  }
}

.l-footer__nav-item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-item {
    padding-top: 17px;
  }
}
.l-footer__nav-item a {
  display: inline-block;
  position: relative;
  padding-bottom: clamp(0rem, -0.2857142857rem + 0.5952380952vw, 0.25rem);
  text-decoration: none;
  font-size: clamp(0.875rem, 0.8035714286rem + 0.1488095238vw, 0.9375rem);
}
.l-footer__nav-item a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #724000;
  -webkit-transform: translateX(-50%) scaleX(0);
          transform: translateX(-50%) scaleX(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.l-footer__nav-item a:hover::after {
  -webkit-transform: translateX(-50%) scaleX(1);
          transform: translateX(-50%) scaleX(1);
}

.l-footer__bottom {
  margin-top: clamp(1.125rem, -1.0178571429rem + 4.4642857143vw, 3rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-footer__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.l-footer__bottom-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(0rem, -1.7142857143rem + 3.5714285714vw, 1.5rem);
}
@media screen and (min-width: 768px) {
  .l-footer__bottom-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.l-footer__bottom-item {
  position: relative;
}
.l-footer__bottom-item a {
  font-family: "Noto Sans JP";
  font-size: 12px;
  display: inline-block;
  position: relative;
  padding-bottom: clamp(0rem, -0.2857142857rem + 0.5952380952vw, 0.25rem);
  text-decoration: none;
}
.l-footer__bottom-item a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #724000;
  -webkit-transform: translateX(-50%) scaleX(0);
          transform: translateX(-50%) scaleX(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.l-footer__bottom-item a:hover::after {
  -webkit-transform: translateX(-50%) scaleX(1);
          transform: translateX(-50%) scaleX(1);
}

.l-footer__bottom-copylight {
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.6785714286rem + 0.1488095238vw, 0.8125rem);
}

.l-contact__head,
.l-contact__button {
  opacity: 0;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .l-contact__head,
  .l-contact__button {
    margin-top: 0;
  }
}

@-webkit-keyframes view-slidein-r {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes view-slidein-r {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes view-slidein-l {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes view-slidein-l {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* is-active クラスが付いたらアニメーションを実行 */
.l-contact.is-active .l-contact__head {
  -webkit-animation: view-slidein-l 0.8s ease-out both;
          animation: view-slidein-l 0.8s ease-out both;
}

.l-contact.is-active .l-contact__button {
  -webkit-animation: view-slidein-r 0.8s ease-out both;
          animation: view-slidein-r 0.8s ease-out both;
}

.l-contact {
  background: #afc3b2;
  padding-top: clamp(2.5rem, -0.3571428571rem + 5.9523809524vw, 5rem);
}

.l-contact__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10%;
}
@media screen and (min-width: 768px) {
  .l-contact__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(2.5rem, -9.5rem + 25vw, 13rem);
    margin-left: 4%;
  }
}

.l-contact__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
}
@media screen and (min-width: 768px) {
  .l-contact__head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.l-contact__head img {
  width: 40px;
  height: 40px;
}

.l-contact__head-text {
  color: #724000;
  text-align: left;
}

.l-contact__head-en {
  font-family: "Noto Sans";
  font-size: clamp(1.25rem, 0.3928571429rem + 1.7857142857vw, 2rem);
  font-weight: 500;
  letter-spacing: 1.28px;
}

.l-contact__head-ja {
  margin-top: 5px;
  font-size: clamp(1rem, 0.7142857143rem + 0.5952380952vw, 1.25rem);
  font-weight: 400;
  letter-spacing: clamp(0.04rem, 0.0285714286rem + 0.0238095238vw, 0.05rem);
}
@media screen and (min-width: 768px) {
  .l-contact__head-ja {
    margin-top: 9px;
  }
}

.l-contact__button {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.2976190476vw, 1rem);
  padding: 13px 48px 16px 49px;
}
@media screen and (min-width: 768px) {
  .l-contact__button {
    padding: 14px 52px 12px 44px;
  }
}
.l-contact__button:hover {
  color: #724000;
  background-color: transparent;
}
.l-contact__button:hover::after {
  background-color: #724000;
  left: 8px;
}

.l-contact__img {
  margin-top: clamp(3.9375rem, 3.1517857143rem + 1.6369047619vw, 4.625rem);
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.l-header {
  background: #eee7e2;
}

.l-head__heading {
  padding: clamp(0.5rem, 0.3571428571rem + 0.2976190476vw, 0.625rem) 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  font-family: "Sawarabi Gothic";
  font-size: clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem);
  font-style: normal;
  font-weight: 400;
  color: #724000;
  position: relative;
  z-index: 5;
}
.l-head__heading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100vw + 60px);
  height: 100%;
  background-color: #c2ae96;
  z-index: -1;
}
.l-head__heading img {
  width: 39px;
  height: 36px;
}

.c-header__logo,
.c-drawer-content__logo {
  font-size: clamp(1.5rem, 0.9285714286rem + 1.1904761905vw, 2rem);
  line-height: 1.5;
  letter-spacing: clamp(-0.0285rem, -0.0176428571rem - 0.0226190476vw, -0.038rem);
  font-family: "Poiret One";
  height: 100%;
}

.c-link__button {
  position: relative;
  display: inline-block;
  background-color: #724000;
  color: #fafafa;
  padding: 13px 48px 13px 83px;
  overflow: hidden;
  z-index: 101;
  -webkit-transition: width 0.78s cubic-bezier(0, 1.02, 0.91, 1.01), background-color 0.4s ease-in-out, color 0.4s ease-in-out;
  transition: width 0.78s cubic-bezier(0, 1.02, 0.91, 1.01), background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}
.c-link__button a {
  display: block;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c-link__button a:hover {
  opacity: 1;
}
.c-link__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #724000;
  z-index: -1;
  -webkit-transition: left 0.78s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease-in-out;
  transition: left 0.78s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease-in-out;
}
.c-link__button::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: #fafafa;
  -webkit-transition: background-color 0.3s ease-in-out, left 0.3s ease-out;
  transition: background-color 0.3s ease-in-out, left 0.3s ease-out;
}
.c-link__button:hover {
  color: #724000;
  background-color: transparent;
}
.c-link__button:hover::before {
  left: 100%;
  opacity: 0;
  -webkit-transition: left 0.78s cubic-bezier(0, 1.02, 0.91, 1.01), opacity 0.78s ease-in-out 0.1s;
  transition: left 0.78s cubic-bezier(0, 1.02, 0.91, 1.01), opacity 0.78s ease-in-out 0.1s;
}
.c-link__button:hover::after {
  background-color: #724000;
  left: 30px;
}
.c-link__button:not(:hover) {
  color: #fafafa;
  background-color: #724000;
  opacity: 1;
  -webkit-transition: background-color 0.78s ease;
  transition: background-color 0.78s ease;
}
.c-link__button:not(:hover)::before {
  left: 0;
  opacity: 1;
  -webkit-transition: left 0.78s cubic-bezier(0, 1.02, 0.91, 1.01), opacity 0.3s ease-in-out 0.1s;
  transition: left 0.78s cubic-bezier(0, 1.02, 0.91, 1.01), opacity 0.3s ease-in-out 0.1s;
}

.c-link__button {
  position: relative;
  display: inline-block;
  background-color: #724000;
  color: #fafafa;
  padding: 13px 48px 13px 83px;
  overflow: hidden;
  z-index: 101;
  -webkit-transition: width 0.78s cubic-bezier(0, 1.02, 0.91, 1.01), background-color 0.4s ease-in-out, color 0.4s ease-in-out;
  transition: width 0.78s cubic-bezier(0, 1.02, 0.91, 1.01), background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}
.c-link__button a {
  display: block;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c-link__button a:hover {
  opacity: 1;
}
.c-link__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #724000;
  z-index: -1;
  -webkit-transition: left 0.78s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease-in-out;
  transition: left 0.78s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease-in-out;
}
.c-link__button::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: #fafafa;
  -webkit-transition: background-color 0.3s ease-in-out, left 0.3s ease-out;
  transition: background-color 0.3s ease-in-out, left 0.3s ease-out;
}
.c-link__button:hover {
  color: #724000;
  background-color: transparent;
}
.c-link__button:hover::before {
  left: 100%;
  opacity: 0;
  -webkit-transition: left 0.78s cubic-bezier(0, 1.02, 0.91, 1.01), opacity 0.78s ease-in-out 0.1s;
  transition: left 0.78s cubic-bezier(0, 1.02, 0.91, 1.01), opacity 0.78s ease-in-out 0.1s;
}
.c-link__button:hover::after {
  background-color: #724000;
  left: 30px;
}
.c-link__button:not(:hover) {
  color: #fafafa;
  background-color: #724000;
  opacity: 1;
  -webkit-transition: background-color 0.78s ease;
  transition: background-color 0.78s ease;
}
.c-link__button:not(:hover)::before {
  left: 0;
  opacity: 1;
  -webkit-transition: left 0.78s cubic-bezier(0, 1.02, 0.91, 1.01), opacity 0.3s ease-in-out 0.1s;
  transition: left 0.78s cubic-bezier(0, 1.02, 0.91, 1.01), opacity 0.3s ease-in-out 0.1s;
}

.c-fv {
  position: relative;
  width: 100%;
}
.c-fv .swiper {
  position: relative;
  margin-top: 31px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 0;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fv-fadeIn-up 3s ease forwards;
          animation: fv-fadeIn-up 3s ease forwards;
}
@media screen and (min-width: 768px) {
  .c-fv .swiper {
    margin-top: 0;
    width: 96.3333333333%;
  }
}
@-webkit-keyframes fv-fadeIn-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fv-fadeIn-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.c-fv .swiper-pagination {
  display: none !important;
  position: absolute;
  bottom: 50% !important;
  left: 26px !important;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .c-fv .swiper-pagination {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.c-fv .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: #c2ae96 !important;
  opacity: 1 !important;
}
.c-fv .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #724000 !important;
}
.c-fv .swiper-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 768px) {
  .c-fv .swiper-slide img {
    height: 100%;
    aspect-ratio: 1151/709;
  }
}

.c-fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.c-fv-text__wrapper {
  position: absolute;
  top: 45%;
  right: 10.5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  z-index: 2;
}

.c-fv__heading {
  font-size: clamp(1rem, -0.7142857143rem + 3.5714285714vw, 2.5rem);
  line-height: 1.2;
  font-family: "Sawarabi Gothic";
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-animation: fv-fadeIn-down 3s ease forwards;
          animation: fv-fadeIn-down 3s ease forwards;
  text-wrap: nowrap;
}
@media screen and (min-width: 768px) {
  .c-fv__heading {
    letter-spacing: 8px;
  }
}

@-webkit-keyframes fv-fadeIn-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fv-fadeIn-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.c-fv__heading1 {
  display: block;
}

.c-fv__heading2 {
  display: block;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .c-fv__heading2 {
    margin-top: 231px;
    margin-right: 13px;
  }
}

.c-side-bar {
  display: none;
  position: fixed;
  right: 0;
  top: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  width: 49px;
}
@media screen and (min-width: 768px) {
  .c-side-bar {
    display: block;
    -webkit-transform: translateX(60px);
            transform: translateX(60px);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .c-side-bar.is-show {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.c-side-bar__inner {
  height: 100%;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-side-bar-contents__item {
  font-size: 12px;
  line-height: 1.2;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c-side-bar-contents__item:hover {
  opacity: 0.5;
}
.c-side-bar-contents__item a {
  color: #724000;
}

.c-side-bar__sns-wrapper {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-side-bar__sns-item {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c-side-bar__sns-item:hover {
  opacity: 0.5;
}
.c-side-bar__sns-item img {
  width: 24px;
  height: 24px;
}

.c-side-bar__contact-link {
  margin-top: 8px;
  position: relative;
  background-color: #724000;
  padding: 48px 22px 16px 16px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow: hidden; /* アニメーション中に内容が溢れないようにする */
  z-index: 1;
  display: inline-block;
  /* 初期状態の幅を設定 */
  width: 60px;
  height: auto; /* 高さは内容に合わせて自動調整 */
  color: #fafafa;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 2px;
}
.c-side-bar__contact-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #724000;
  z-index: -1;
  -webkit-transition: left 0.3s ease-out, opacity 0.1s ease-out 0.2s;
  transition: left 0.3s ease-out, opacity 0.1s ease-out 0.2s;
}
.c-side-bar__contact-link:hover {
  background-color: transparent;
  width: 60px; /* ホバー時に横に広がる */
  opacity: 1;
  color: #724000;
}
.c-side-bar__contact-link:hover::before {
  left: 100%;
  opacity: 0;
}
.c-side-bar__contact-link:hover::after {
  -webkit-transform: translate(3px, -3px);
          transform: translate(3px, -3px);
  background-image: url("../img/contact-link_plane-hover.png");
}
.c-side-bar__contact-link::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 18px;
  width: 24px;
  height: 24px;
  background: url("../img/contact-link_plane.png") no-repeat center center;
  background-size: contain;
}

/* ローディング追加 */
#loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
}

.loading-swiper {
  visibility: hidden;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}
.loading-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.loading-swiper .swiper-slide {
  width: 80px !important;
  margin-right: 8px !important;
}
@media screen and (min-width: 768px) {
  .loading-swiper .swiper-slide {
    width: 250px !important;
    margin-right: 10px !important;
  }
}

#loading-slider {
  -webkit-animation: sliderFadeOut 7s ease-in-out forwards;
          animation: sliderFadeOut 7s ease-in-out forwards;
  z-index: 2;
}

@-webkit-keyframes sliderFadeOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

@keyframes sliderFadeOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}
@keyframes expandFadeOut {
  0% {
    -webkit-transform: scale(0.1) rotate(0deg);
            transform: scale(0.1) rotate(0deg);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(10) rotate(180deg);
            transform: scale(10) rotate(180deg);
    opacity: 1;
  }
  85% {
    -webkit-transform: scale(0) rotate(0deg);
            transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(40) rotate(240deg);
            transform: scale(40) rotate(240deg);
    opacity: 0;
  }
}
@-webkit-keyframes expandFadeOut-md {
  0% {
    -webkit-transform: scale(0.1) rotate(0deg);
            transform: scale(0.1) rotate(0deg);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(20) rotate(180deg);
            transform: scale(20) rotate(180deg);
    opacity: 1;
  }
  85% {
    -webkit-transform: scale(0) rotate(0deg);
            transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(60) rotate(240deg);
            transform: scale(60) rotate(240deg);
    opacity: 0;
  }
}
@keyframes expandFadeOut-md {
  0% {
    -webkit-transform: scale(0.1) rotate(0deg);
            transform: scale(0.1) rotate(0deg);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(20) rotate(180deg);
            transform: scale(20) rotate(180deg);
    opacity: 1;
  }
  85% {
    -webkit-transform: scale(0) rotate(0deg);
            transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(60) rotate(240deg);
            transform: scale(60) rotate(240deg);
    opacity: 0;
  }
}
#loading-logo {
  width: 100px;
  opacity: 0;
  -webkit-animation: expandFadeOut 3s ease-in-out forwards;
          animation: expandFadeOut 3s ease-in-out forwards;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
  position: absolute;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  #loading-logo {
    width: 100px;
    opacity: 0;
    -webkit-animation: expandFadeOut-md 3s ease-in-out forwards;
            animation: expandFadeOut-md 3s ease-in-out forwards;
    -webkit-animation-delay: 7s;
            animation-delay: 7s;
    position: absolute;
    z-index: 3;
  }
}

#fv-loading {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out;
}

.p-top-animation-item {
  position: absolute;
}

.p-top-heading__title {
  font-size: clamp(1rem, -0.7142857143rem + 3.5714285714vw, 2.5rem);
  font-family: "Sawarabi Gothic";
  position: relative;
  z-index: 0;
  text-align: center;
  display: inline-block;
}

.p-top-heading__title-en {
  font-family: "Dawning of a New Day";
  font-size: clamp(2.5rem, -1.7857142857rem + 8.9285714286vw, 6.25rem);
  line-height: 2;
  position: absolute;
  top: -110%;
  left: 4%;
  z-index: -1;
  color: #c2ae96;
}
@media screen and (min-width: 768px) {
  .p-top-heading__title-en {
    top: auto;
    left: auto;
    bottom: -128%;
    right: -60%;
  }
}

.p-top-wave-item {
  height: clamp(0.40625rem, -1.09375rem + 3.125vw, 1.71875rem);
  width: 100%;
  position: relative;
  z-index: 1;
}

.p-top-concept__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-top-concept__animation-item--1 {
  top: -5%;
  right: -70px; /* 初期位置を画面の外（右端）にする */
  -webkit-transform: translateX(0);
          transform: translateX(0);
  will-change: transform;
}
.p-top-concept__animation-item--1.is-animated {
  -webkit-animation: fly 4s linear forwards 1;
          animation: fly 4s linear forwards 1;
}
.p-top-concept__animation-item--1 img {
  width: 38px;
  height: 17px;
  -webkit-transform: rotate(18.326deg);
          transform: rotate(18.326deg);
  aspect-ratio: 38/17;
}
@media screen and (min-width: 768px) {
  .p-top-concept__animation-item--1 img {
    width: 116.3px;
    height: 53.81px;
    -webkit-transform: rotate(18.326deg);
            transform: rotate(18.326deg);
    aspect-ratio: 116.3/53.81;
  }
}

.p-top-concept__animation-item--2 {
  top: 50%;
  right: 20%;
}
.p-top-concept__animation-item--2.is-animated {
  -webkit-animation: floating-2_sp 4s linear forwards;
          animation: floating-2_sp 4s linear forwards;
}
@media screen and (min-width: 768px) {
  .p-top-concept__animation-item--2.is-animated {
    -webkit-animation: floating-2 4s linear forwards;
            animation: floating-2 4s linear forwards;
  }
}
.p-top-concept__animation-item--2 img {
  width: 33px;
  height: 15px;
  aspect-ratio: 33/15;
}
@media screen and (min-width: 768px) {
  .p-top-concept__animation-item--2 img {
    width: 111.933px;
    height: 46px;
    aspect-ratio: 111.93/46;
  }
}

.p-top-concept__animation-item--3 {
  top: 25%;
  left: 20%;
}
@media screen and (min-width: 768px) {
  .p-top-concept__animation-item--3 {
    left: 25%;
  }
}
.p-top-concept__animation-item--3.is-animated {
  -webkit-animation: floating-1_sp 4s linear forwards;
          animation: floating-1_sp 4s linear forwards;
}
@media screen and (min-width: 768px) {
  .p-top-concept__animation-item--3.is-animated {
    -webkit-animation: floating-1 4s linear forwards;
            animation: floating-1 4s linear forwards;
  }
}
.p-top-concept__animation-item--3 img {
  width: 28px;
  height: 20px;
  aspect-ratio: 28/20;
}
@media screen and (min-width: 768px) {
  .p-top-concept__animation-item--3 img {
    width: 65px;
    height: 61px;
    aspect-ratio: 65/61;
  }
}

.p-top-concept__animation-item--4 {
  top: 55%;
  left: 30%;
}
@media screen and (min-width: 768px) {
  .p-top-concept__animation-item--4 {
    top: 70%;
  }
}
.p-top-concept__animation-item--4.is-animated {
  -webkit-animation: floating-3 4s linear forwards;
          animation: floating-3 4s linear forwards;
}
.p-top-concept__animation-item--4 img {
  width: 28px;
  height: 14px;
  aspect-ratio: 28/14;
}
@media screen and (min-width: 768px) {
  .p-top-concept__animation-item--4 img {
    width: 70px;
    height: 36px;
    aspect-ratio: 70/36;
  }
}

@-webkit-keyframes floating-1 {
  0% {
    -webkit-transform: translateX(0) translateY(0) rotate(0deg);
            transform: translateX(0) translateY(0) rotate(0deg);
  }
  10% {
    -webkit-transform: translateX(-45px) translateY(120px) rotate(-10deg);
            transform: translateX(-45px) translateY(120px) rotate(-10deg);
  }
  40% {
    -webkit-transform: translateX(45px) translateY(240px) rotate(10deg);
            transform: translateX(45px) translateY(240px) rotate(10deg);
  }
  75% {
    -webkit-transform: translateX(-45px) translateY(360px) rotate(-10deg);
            transform: translateX(-45px) translateY(360px) rotate(-10deg);
  }
  100% {
    -webkit-transform: translateX(0) translateY(400px) rotate(0deg);
            transform: translateX(0) translateY(400px) rotate(0deg);
  }
}

@keyframes floating-1 {
  0% {
    -webkit-transform: translateX(0) translateY(0) rotate(0deg);
            transform: translateX(0) translateY(0) rotate(0deg);
  }
  10% {
    -webkit-transform: translateX(-45px) translateY(120px) rotate(-10deg);
            transform: translateX(-45px) translateY(120px) rotate(-10deg);
  }
  40% {
    -webkit-transform: translateX(45px) translateY(240px) rotate(10deg);
            transform: translateX(45px) translateY(240px) rotate(10deg);
  }
  75% {
    -webkit-transform: translateX(-45px) translateY(360px) rotate(-10deg);
            transform: translateX(-45px) translateY(360px) rotate(-10deg);
  }
  100% {
    -webkit-transform: translateX(0) translateY(400px) rotate(0deg);
            transform: translateX(0) translateY(400px) rotate(0deg);
  }
}
@-webkit-keyframes floating-1_sp {
  0% {
    -webkit-transform: translateX(0) translateY(100px) rotate(0deg);
            transform: translateX(0) translateY(100px) rotate(0deg);
  }
  10% {
    -webkit-transform: translateX(-45px) translateY(140px) rotate(-10deg);
            transform: translateX(-45px) translateY(140px) rotate(-10deg);
  }
  40% {
    -webkit-transform: translateX(45px) translateY(200px) rotate(10deg);
            transform: translateX(45px) translateY(200px) rotate(10deg);
  }
  75% {
    -webkit-transform: translateX(-45px) translateY(260px) rotate(-10deg);
            transform: translateX(-45px) translateY(260px) rotate(-10deg);
  }
  100% {
    -webkit-transform: translateX(0) translateY(320px) rotate(0deg);
            transform: translateX(0) translateY(320px) rotate(0deg);
  }
}
@keyframes floating-1_sp {
  0% {
    -webkit-transform: translateX(0) translateY(100px) rotate(0deg);
            transform: translateX(0) translateY(100px) rotate(0deg);
  }
  10% {
    -webkit-transform: translateX(-45px) translateY(140px) rotate(-10deg);
            transform: translateX(-45px) translateY(140px) rotate(-10deg);
  }
  40% {
    -webkit-transform: translateX(45px) translateY(200px) rotate(10deg);
            transform: translateX(45px) translateY(200px) rotate(10deg);
  }
  75% {
    -webkit-transform: translateX(-45px) translateY(260px) rotate(-10deg);
            transform: translateX(-45px) translateY(260px) rotate(-10deg);
  }
  100% {
    -webkit-transform: translateX(0) translateY(320px) rotate(0deg);
            transform: translateX(0) translateY(320px) rotate(0deg);
  }
}
@-webkit-keyframes floating-2 {
  0% {
    -webkit-transform: translateX(0) translateY(0) rotate(0deg);
            transform: translateX(0) translateY(0) rotate(0deg);
  }
  10% {
    -webkit-transform: translateX(-45px) translateY(60px) rotate(-10deg);
            transform: translateX(-45px) translateY(60px) rotate(-10deg);
  }
  40% {
    -webkit-transform: translateX(45px) translateY(120px) rotate(10deg);
            transform: translateX(45px) translateY(120px) rotate(10deg);
  }
  80% {
    -webkit-transform: translateX(-45px) translateY(180px) rotate(-10deg);
            transform: translateX(-45px) translateY(180px) rotate(-10deg);
  }
  100% {
    -webkit-transform: translateX(0) translateY(300px) rotate(0deg);
            transform: translateX(0) translateY(300px) rotate(0deg);
  }
}
@keyframes floating-2 {
  0% {
    -webkit-transform: translateX(0) translateY(0) rotate(0deg);
            transform: translateX(0) translateY(0) rotate(0deg);
  }
  10% {
    -webkit-transform: translateX(-45px) translateY(60px) rotate(-10deg);
            transform: translateX(-45px) translateY(60px) rotate(-10deg);
  }
  40% {
    -webkit-transform: translateX(45px) translateY(120px) rotate(10deg);
            transform: translateX(45px) translateY(120px) rotate(10deg);
  }
  80% {
    -webkit-transform: translateX(-45px) translateY(180px) rotate(-10deg);
            transform: translateX(-45px) translateY(180px) rotate(-10deg);
  }
  100% {
    -webkit-transform: translateX(0) translateY(300px) rotate(0deg);
            transform: translateX(0) translateY(300px) rotate(0deg);
  }
}
@-webkit-keyframes floating-2_sp {
  0% {
    -webkit-transform: translateX(0) translateY(0) rotate(0deg);
            transform: translateX(0) translateY(0) rotate(0deg);
  }
  10% {
    -webkit-transform: translateX(-45px) translateY(30px) rotate(-10deg);
            transform: translateX(-45px) translateY(30px) rotate(-10deg);
  }
  40% {
    -webkit-transform: translateX(45px) translateY(90px) rotate(10deg);
            transform: translateX(45px) translateY(90px) rotate(10deg);
  }
  80% {
    -webkit-transform: translateX(-45px) translateY(140px) rotate(-10deg);
            transform: translateX(-45px) translateY(140px) rotate(-10deg);
  }
  100% {
    -webkit-transform: translateX(0) translateY(180px) rotate(0deg);
            transform: translateX(0) translateY(180px) rotate(0deg);
  }
}
@keyframes floating-2_sp {
  0% {
    -webkit-transform: translateX(0) translateY(0) rotate(0deg);
            transform: translateX(0) translateY(0) rotate(0deg);
  }
  10% {
    -webkit-transform: translateX(-45px) translateY(30px) rotate(-10deg);
            transform: translateX(-45px) translateY(30px) rotate(-10deg);
  }
  40% {
    -webkit-transform: translateX(45px) translateY(90px) rotate(10deg);
            transform: translateX(45px) translateY(90px) rotate(10deg);
  }
  80% {
    -webkit-transform: translateX(-45px) translateY(140px) rotate(-10deg);
            transform: translateX(-45px) translateY(140px) rotate(-10deg);
  }
  100% {
    -webkit-transform: translateX(0) translateY(180px) rotate(0deg);
            transform: translateX(0) translateY(180px) rotate(0deg);
  }
}
@-webkit-keyframes floating-3 {
  0% {
    -webkit-transform: translateX(0) translateY(0) rotate(0deg);
            transform: translateX(0) translateY(0) rotate(0deg);
  }
  10% {
    -webkit-transform: translateX(-45px) translateY(60px) rotate(-10deg);
            transform: translateX(-45px) translateY(60px) rotate(-10deg);
  }
  40% {
    -webkit-transform: translateX(45px) translateY(120px) rotate(10deg);
            transform: translateX(45px) translateY(120px) rotate(10deg);
  }
  80% {
    -webkit-transform: translateX(-45px) translateY(180px) rotate(-10deg);
            transform: translateX(-45px) translateY(180px) rotate(-10deg);
  }
  100% {
    -webkit-transform: translateX(0) translateY(220px) rotate(0deg);
            transform: translateX(0) translateY(220px) rotate(0deg);
  }
}
@keyframes floating-3 {
  0% {
    -webkit-transform: translateX(0) translateY(0) rotate(0deg);
            transform: translateX(0) translateY(0) rotate(0deg);
  }
  10% {
    -webkit-transform: translateX(-45px) translateY(60px) rotate(-10deg);
            transform: translateX(-45px) translateY(60px) rotate(-10deg);
  }
  40% {
    -webkit-transform: translateX(45px) translateY(120px) rotate(10deg);
            transform: translateX(45px) translateY(120px) rotate(10deg);
  }
  80% {
    -webkit-transform: translateX(-45px) translateY(180px) rotate(-10deg);
            transform: translateX(-45px) translateY(180px) rotate(-10deg);
  }
  100% {
    -webkit-transform: translateX(0) translateY(220px) rotate(0deg);
            transform: translateX(0) translateY(220px) rotate(0deg);
  }
}
@-webkit-keyframes floating-3_sp {
  0% {
    -webkit-transform: translateX(0) translateY(0) rotate(0deg);
            transform: translateX(0) translateY(0) rotate(0deg);
  }
  10% {
    -webkit-transform: translateX(-45px) translateY(60px) rotate(-10deg);
            transform: translateX(-45px) translateY(60px) rotate(-10deg);
  }
  40% {
    -webkit-transform: translateX(45px) translateY(120px) rotate(10deg);
            transform: translateX(45px) translateY(120px) rotate(10deg);
  }
  80% {
    -webkit-transform: translateX(-45px) translateY(180px) rotate(-10deg);
            transform: translateX(-45px) translateY(180px) rotate(-10deg);
  }
  100% {
    -webkit-transform: translateX(0) translateY(220px) rotate(0deg);
            transform: translateX(0) translateY(220px) rotate(0deg);
  }
}
@keyframes floating-3_sp {
  0% {
    -webkit-transform: translateX(0) translateY(0) rotate(0deg);
            transform: translateX(0) translateY(0) rotate(0deg);
  }
  10% {
    -webkit-transform: translateX(-45px) translateY(60px) rotate(-10deg);
            transform: translateX(-45px) translateY(60px) rotate(-10deg);
  }
  40% {
    -webkit-transform: translateX(45px) translateY(120px) rotate(10deg);
            transform: translateX(45px) translateY(120px) rotate(10deg);
  }
  80% {
    -webkit-transform: translateX(-45px) translateY(180px) rotate(-10deg);
            transform: translateX(-45px) translateY(180px) rotate(-10deg);
  }
  100% {
    -webkit-transform: translateX(0) translateY(220px) rotate(0deg);
            transform: translateX(0) translateY(220px) rotate(0deg);
  }
}
@-webkit-keyframes fly {
  0% {
    -webkit-transform: translateX(0vw) translateY(0px) rotate(0deg);
            transform: translateX(0vw) translateY(0px) rotate(0deg);
  }
  2% {
    -webkit-transform: translateX(-2.2vw) translateY(20px) rotate(4deg);
            transform: translateX(-2.2vw) translateY(20px) rotate(4deg);
  }
  4% {
    -webkit-transform: translateX(-4.5vw) translateY(40px) rotate(8deg);
            transform: translateX(-4.5vw) translateY(40px) rotate(8deg);
  }
  6% {
    -webkit-transform: translateX(-6.8vw) translateY(70px) rotate(14deg);
            transform: translateX(-6.8vw) translateY(70px) rotate(14deg);
  }
  8% {
    -webkit-transform: translateX(-9vw) translateY(90px) rotate(18deg);
            transform: translateX(-9vw) translateY(90px) rotate(18deg);
  }
  10% {
    -webkit-transform: translateX(-10vw) translateY(100px) rotate(20deg);
            transform: translateX(-10vw) translateY(100px) rotate(20deg);
  }
  12% {
    -webkit-transform: translateX(-12vw) translateY(90px) rotate(16deg);
            transform: translateX(-12vw) translateY(90px) rotate(16deg);
  }
  14% {
    -webkit-transform: translateX(-14vw) translateY(80px) rotate(12deg);
            transform: translateX(-14vw) translateY(80px) rotate(12deg);
  }
  16% {
    -webkit-transform: translateX(-16vw) translateY(70px) rotate(8deg);
            transform: translateX(-16vw) translateY(70px) rotate(8deg);
  }
  18% {
    -webkit-transform: translateX(-18vw) translateY(60px) rotate(5deg);
            transform: translateX(-18vw) translateY(60px) rotate(5deg);
  }
  20% {
    -webkit-transform: translateX(-20vw) translateY(55px) rotate(2deg);
            transform: translateX(-20vw) translateY(55px) rotate(2deg);
  }
  22% {
    -webkit-transform: translateX(-22vw) translateY(45px) rotate(-1deg);
            transform: translateX(-22vw) translateY(45px) rotate(-1deg);
  }
  24% {
    -webkit-transform: translateX(-24vw) translateY(35px) rotate(-3deg);
            transform: translateX(-24vw) translateY(35px) rotate(-3deg);
  }
  26% {
    -webkit-transform: translateX(-26vw) translateY(30px) rotate(-5deg);
            transform: translateX(-26vw) translateY(30px) rotate(-5deg);
  }
  28% {
    -webkit-transform: translateX(-28vw) translateY(25px) rotate(-6deg);
            transform: translateX(-28vw) translateY(25px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(-30vw) translateY(20px) rotate(-6deg);
            transform: translateX(-30vw) translateY(20px) rotate(-6deg);
  }
  32% {
    -webkit-transform: translateX(-32vw) translateY(10px) rotate(-7deg);
            transform: translateX(-32vw) translateY(10px) rotate(-7deg);
  }
  34% {
    -webkit-transform: translateX(-34vw) translateY(0px) rotate(-8deg);
            transform: translateX(-34vw) translateY(0px) rotate(-8deg);
  }
  36% {
    -webkit-transform: translateX(-36vw) translateY(-10px) rotate(-8.5deg);
            transform: translateX(-36vw) translateY(-10px) rotate(-8.5deg);
  }
  38% {
    -webkit-transform: translateX(-38vw) translateY(-18px) rotate(-9deg);
            transform: translateX(-38vw) translateY(-18px) rotate(-9deg);
  }
  40% {
    -webkit-transform: translateX(-40vw) translateY(-20px) rotate(-9deg);
            transform: translateX(-40vw) translateY(-20px) rotate(-9deg);
  }
  42% {
    -webkit-transform: translateX(-42vw) translateY(-23px) rotate(-9.3deg);
            transform: translateX(-42vw) translateY(-23px) rotate(-9.3deg);
  }
  44% {
    -webkit-transform: translateX(-44vw) translateY(-26px) rotate(-9.6deg);
            transform: translateX(-44vw) translateY(-26px) rotate(-9.6deg);
  }
  46% {
    -webkit-transform: translateX(-46vw) translateY(-28px) rotate(-9.8deg);
            transform: translateX(-46vw) translateY(-28px) rotate(-9.8deg);
  }
  48% {
    -webkit-transform: translateX(-48vw) translateY(-29px) rotate(-10deg);
            transform: translateX(-48vw) translateY(-29px) rotate(-10deg);
  }
  50% {
    -webkit-transform: translateX(-50vw) translateY(-30px) rotate(-10deg);
            transform: translateX(-50vw) translateY(-30px) rotate(-10deg);
  }
  52% {
    -webkit-transform: translateX(-52vw) translateY(-10px) rotate(-11deg);
            transform: translateX(-52vw) translateY(-10px) rotate(-11deg);
  }
  54% {
    -webkit-transform: translateX(-54vw) translateY(10px) rotate(-12deg);
            transform: translateX(-54vw) translateY(10px) rotate(-12deg);
  }
  56% {
    -webkit-transform: translateX(-56vw) translateY(25px) rotate(-13deg);
            transform: translateX(-56vw) translateY(25px) rotate(-13deg);
  }
  58% {
    -webkit-transform: translateX(-58vw) translateY(35px) rotate(-14deg);
            transform: translateX(-58vw) translateY(35px) rotate(-14deg);
  }
  60% {
    -webkit-transform: translateX(-60vw) translateY(40px) rotate(-15deg);
            transform: translateX(-60vw) translateY(40px) rotate(-15deg);
  }
  62% {
    -webkit-transform: translateX(-62vw) translateY(38px) rotate(-16deg);
            transform: translateX(-62vw) translateY(38px) rotate(-16deg);
  }
  64% {
    -webkit-transform: translateX(-64vw) translateY(36px) rotate(-17deg);
            transform: translateX(-64vw) translateY(36px) rotate(-17deg);
  }
  66% {
    -webkit-transform: translateX(-66vw) translateY(33px) rotate(-18deg);
            transform: translateX(-66vw) translateY(33px) rotate(-18deg);
  }
  68% {
    -webkit-transform: translateX(-68vw) translateY(30px) rotate(-19deg);
            transform: translateX(-68vw) translateY(30px) rotate(-19deg);
  }
  70% {
    -webkit-transform: translateX(-70vw) translateY(28px) rotate(-22deg);
            transform: translateX(-70vw) translateY(28px) rotate(-22deg);
  }
  72% {
    -webkit-transform: translateX(-72vw) translateY(26px) rotate(-25deg);
            transform: translateX(-72vw) translateY(26px) rotate(-25deg);
  }
  74% {
    -webkit-transform: translateX(-74vw) translateY(22px) rotate(-28deg);
            transform: translateX(-74vw) translateY(22px) rotate(-28deg);
  }
  76% {
    -webkit-transform: translateX(-76vw) translateY(20px) rotate(-30deg);
            transform: translateX(-76vw) translateY(20px) rotate(-30deg);
  }
  78% {
    -webkit-transform: translateX(-78vw) translateY(15px) rotate(-28deg);
            transform: translateX(-78vw) translateY(15px) rotate(-28deg);
  }
  80% {
    -webkit-transform: translateX(-80vw) translateY(10px) rotate(-25deg);
            transform: translateX(-80vw) translateY(10px) rotate(-25deg);
  }
  82% {
    -webkit-transform: translateX(-82vw) translateY(5px) rotate(-23deg);
            transform: translateX(-82vw) translateY(5px) rotate(-23deg);
  }
  84% {
    -webkit-transform: translateX(-84vw) translateY(-2px) rotate(-21deg);
            transform: translateX(-84vw) translateY(-2px) rotate(-21deg);
  }
  86% {
    -webkit-transform: translateX(-86vw) translateY(-8px) rotate(-19deg);
            transform: translateX(-86vw) translateY(-8px) rotate(-19deg);
  }
  88% {
    -webkit-transform: translateX(-88vw) translateY(-15px) rotate(-17deg);
            transform: translateX(-88vw) translateY(-15px) rotate(-17deg);
  }
  90% {
    -webkit-transform: translateX(-90vw) translateY(-20px) rotate(-15deg);
            transform: translateX(-90vw) translateY(-20px) rotate(-15deg);
  }
  92% {
    -webkit-transform: translateX(-94vw) translateY(-28px) rotate(-14deg);
            transform: translateX(-94vw) translateY(-28px) rotate(-14deg);
  }
  94% {
    -webkit-transform: translateX(-97vw) translateY(-35px) rotate(-13deg);
            transform: translateX(-97vw) translateY(-35px) rotate(-13deg);
  }
  96% {
    -webkit-transform: translateX(-100vw) translateY(-42px) rotate(-12deg);
            transform: translateX(-100vw) translateY(-42px) rotate(-12deg);
  }
  98% {
    -webkit-transform: translateX(-105vw) translateY(-48px) rotate(-11deg);
            transform: translateX(-105vw) translateY(-48px) rotate(-11deg);
  }
  100% {
    -webkit-transform: translateX(-110vw) translateY(-50px) rotate(-10deg);
            transform: translateX(-110vw) translateY(-50px) rotate(-10deg);
  }
}
@keyframes fly {
  0% {
    -webkit-transform: translateX(0vw) translateY(0px) rotate(0deg);
            transform: translateX(0vw) translateY(0px) rotate(0deg);
  }
  2% {
    -webkit-transform: translateX(-2.2vw) translateY(20px) rotate(4deg);
            transform: translateX(-2.2vw) translateY(20px) rotate(4deg);
  }
  4% {
    -webkit-transform: translateX(-4.5vw) translateY(40px) rotate(8deg);
            transform: translateX(-4.5vw) translateY(40px) rotate(8deg);
  }
  6% {
    -webkit-transform: translateX(-6.8vw) translateY(70px) rotate(14deg);
            transform: translateX(-6.8vw) translateY(70px) rotate(14deg);
  }
  8% {
    -webkit-transform: translateX(-9vw) translateY(90px) rotate(18deg);
            transform: translateX(-9vw) translateY(90px) rotate(18deg);
  }
  10% {
    -webkit-transform: translateX(-10vw) translateY(100px) rotate(20deg);
            transform: translateX(-10vw) translateY(100px) rotate(20deg);
  }
  12% {
    -webkit-transform: translateX(-12vw) translateY(90px) rotate(16deg);
            transform: translateX(-12vw) translateY(90px) rotate(16deg);
  }
  14% {
    -webkit-transform: translateX(-14vw) translateY(80px) rotate(12deg);
            transform: translateX(-14vw) translateY(80px) rotate(12deg);
  }
  16% {
    -webkit-transform: translateX(-16vw) translateY(70px) rotate(8deg);
            transform: translateX(-16vw) translateY(70px) rotate(8deg);
  }
  18% {
    -webkit-transform: translateX(-18vw) translateY(60px) rotate(5deg);
            transform: translateX(-18vw) translateY(60px) rotate(5deg);
  }
  20% {
    -webkit-transform: translateX(-20vw) translateY(55px) rotate(2deg);
            transform: translateX(-20vw) translateY(55px) rotate(2deg);
  }
  22% {
    -webkit-transform: translateX(-22vw) translateY(45px) rotate(-1deg);
            transform: translateX(-22vw) translateY(45px) rotate(-1deg);
  }
  24% {
    -webkit-transform: translateX(-24vw) translateY(35px) rotate(-3deg);
            transform: translateX(-24vw) translateY(35px) rotate(-3deg);
  }
  26% {
    -webkit-transform: translateX(-26vw) translateY(30px) rotate(-5deg);
            transform: translateX(-26vw) translateY(30px) rotate(-5deg);
  }
  28% {
    -webkit-transform: translateX(-28vw) translateY(25px) rotate(-6deg);
            transform: translateX(-28vw) translateY(25px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(-30vw) translateY(20px) rotate(-6deg);
            transform: translateX(-30vw) translateY(20px) rotate(-6deg);
  }
  32% {
    -webkit-transform: translateX(-32vw) translateY(10px) rotate(-7deg);
            transform: translateX(-32vw) translateY(10px) rotate(-7deg);
  }
  34% {
    -webkit-transform: translateX(-34vw) translateY(0px) rotate(-8deg);
            transform: translateX(-34vw) translateY(0px) rotate(-8deg);
  }
  36% {
    -webkit-transform: translateX(-36vw) translateY(-10px) rotate(-8.5deg);
            transform: translateX(-36vw) translateY(-10px) rotate(-8.5deg);
  }
  38% {
    -webkit-transform: translateX(-38vw) translateY(-18px) rotate(-9deg);
            transform: translateX(-38vw) translateY(-18px) rotate(-9deg);
  }
  40% {
    -webkit-transform: translateX(-40vw) translateY(-20px) rotate(-9deg);
            transform: translateX(-40vw) translateY(-20px) rotate(-9deg);
  }
  42% {
    -webkit-transform: translateX(-42vw) translateY(-23px) rotate(-9.3deg);
            transform: translateX(-42vw) translateY(-23px) rotate(-9.3deg);
  }
  44% {
    -webkit-transform: translateX(-44vw) translateY(-26px) rotate(-9.6deg);
            transform: translateX(-44vw) translateY(-26px) rotate(-9.6deg);
  }
  46% {
    -webkit-transform: translateX(-46vw) translateY(-28px) rotate(-9.8deg);
            transform: translateX(-46vw) translateY(-28px) rotate(-9.8deg);
  }
  48% {
    -webkit-transform: translateX(-48vw) translateY(-29px) rotate(-10deg);
            transform: translateX(-48vw) translateY(-29px) rotate(-10deg);
  }
  50% {
    -webkit-transform: translateX(-50vw) translateY(-30px) rotate(-10deg);
            transform: translateX(-50vw) translateY(-30px) rotate(-10deg);
  }
  52% {
    -webkit-transform: translateX(-52vw) translateY(-10px) rotate(-11deg);
            transform: translateX(-52vw) translateY(-10px) rotate(-11deg);
  }
  54% {
    -webkit-transform: translateX(-54vw) translateY(10px) rotate(-12deg);
            transform: translateX(-54vw) translateY(10px) rotate(-12deg);
  }
  56% {
    -webkit-transform: translateX(-56vw) translateY(25px) rotate(-13deg);
            transform: translateX(-56vw) translateY(25px) rotate(-13deg);
  }
  58% {
    -webkit-transform: translateX(-58vw) translateY(35px) rotate(-14deg);
            transform: translateX(-58vw) translateY(35px) rotate(-14deg);
  }
  60% {
    -webkit-transform: translateX(-60vw) translateY(40px) rotate(-15deg);
            transform: translateX(-60vw) translateY(40px) rotate(-15deg);
  }
  62% {
    -webkit-transform: translateX(-62vw) translateY(38px) rotate(-16deg);
            transform: translateX(-62vw) translateY(38px) rotate(-16deg);
  }
  64% {
    -webkit-transform: translateX(-64vw) translateY(36px) rotate(-17deg);
            transform: translateX(-64vw) translateY(36px) rotate(-17deg);
  }
  66% {
    -webkit-transform: translateX(-66vw) translateY(33px) rotate(-18deg);
            transform: translateX(-66vw) translateY(33px) rotate(-18deg);
  }
  68% {
    -webkit-transform: translateX(-68vw) translateY(30px) rotate(-19deg);
            transform: translateX(-68vw) translateY(30px) rotate(-19deg);
  }
  70% {
    -webkit-transform: translateX(-70vw) translateY(28px) rotate(-22deg);
            transform: translateX(-70vw) translateY(28px) rotate(-22deg);
  }
  72% {
    -webkit-transform: translateX(-72vw) translateY(26px) rotate(-25deg);
            transform: translateX(-72vw) translateY(26px) rotate(-25deg);
  }
  74% {
    -webkit-transform: translateX(-74vw) translateY(22px) rotate(-28deg);
            transform: translateX(-74vw) translateY(22px) rotate(-28deg);
  }
  76% {
    -webkit-transform: translateX(-76vw) translateY(20px) rotate(-30deg);
            transform: translateX(-76vw) translateY(20px) rotate(-30deg);
  }
  78% {
    -webkit-transform: translateX(-78vw) translateY(15px) rotate(-28deg);
            transform: translateX(-78vw) translateY(15px) rotate(-28deg);
  }
  80% {
    -webkit-transform: translateX(-80vw) translateY(10px) rotate(-25deg);
            transform: translateX(-80vw) translateY(10px) rotate(-25deg);
  }
  82% {
    -webkit-transform: translateX(-82vw) translateY(5px) rotate(-23deg);
            transform: translateX(-82vw) translateY(5px) rotate(-23deg);
  }
  84% {
    -webkit-transform: translateX(-84vw) translateY(-2px) rotate(-21deg);
            transform: translateX(-84vw) translateY(-2px) rotate(-21deg);
  }
  86% {
    -webkit-transform: translateX(-86vw) translateY(-8px) rotate(-19deg);
            transform: translateX(-86vw) translateY(-8px) rotate(-19deg);
  }
  88% {
    -webkit-transform: translateX(-88vw) translateY(-15px) rotate(-17deg);
            transform: translateX(-88vw) translateY(-15px) rotate(-17deg);
  }
  90% {
    -webkit-transform: translateX(-90vw) translateY(-20px) rotate(-15deg);
            transform: translateX(-90vw) translateY(-20px) rotate(-15deg);
  }
  92% {
    -webkit-transform: translateX(-94vw) translateY(-28px) rotate(-14deg);
            transform: translateX(-94vw) translateY(-28px) rotate(-14deg);
  }
  94% {
    -webkit-transform: translateX(-97vw) translateY(-35px) rotate(-13deg);
            transform: translateX(-97vw) translateY(-35px) rotate(-13deg);
  }
  96% {
    -webkit-transform: translateX(-100vw) translateY(-42px) rotate(-12deg);
            transform: translateX(-100vw) translateY(-42px) rotate(-12deg);
  }
  98% {
    -webkit-transform: translateX(-105vw) translateY(-48px) rotate(-11deg);
            transform: translateX(-105vw) translateY(-48px) rotate(-11deg);
  }
  100% {
    -webkit-transform: translateX(-110vw) translateY(-50px) rotate(-10deg);
            transform: translateX(-110vw) translateY(-50px) rotate(-10deg);
  }
}
.p-top-concept__heading-message {
  font-size: clamp(0.875rem, 0.4464285714rem + 0.8928571429vw, 1.25rem);
  line-height: 2;
  text-align: center;
  white-space: nowrap;
}

.p-top-concept__img {
  max-width: 473px;
}

.p-top-news {
  min-height: 375px;
}
@media screen and (min-width: 768px) {
  .p-top-news {
    min-height: 300px;
  }
}

.p-top-news__inner {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-news__inner {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-news__inner {
    padding-bottom: 0;
  }
}

.p-top-news-content__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.5rem, -1.0714285714rem + 5.3571428571vw, 3.75rem);
}
@media screen and (min-width: 768px) {
  .p-top-news-content__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .p-top-news__heading {
    text-align: left;
  }
}

.p-top-heading__title-en.p-top-news__heading-en {
  left: 40%;
}
@media screen and (min-width: 768px) {
  .p-top-heading__title-en.p-top-news__heading-en {
    top: auto;
    bottom: 35%;
    right: -25%;
    left: auto;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-heading__title-en.p-top-news__heading-en {
    bottom: -35%;
  }
}

.p-top-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -moz-text-align-last: left;
       text-align-last: left;
}

.p-top-news__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-top-news__item a {
    gap: 52px;
  }
}

.p-top-news__date {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.2976190476vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 768px) {
  .p-top-news__date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-top-news__title {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.2976190476vw, 1rem);
  line-height: 180%;
}

.p-top-news__link-button {
  margin-top: 16px;
  padding: 13px 34px 13px 45px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top-news__link-button {
    margin-right: 56px;
    padding: 13px 48px 13px 83px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

.p-top-service {
  background-color: #eee7e2;
  position: relative;
  padding-top: 0;
}

.p-top-service__decoration {
  position: absolute;
  bottom: 5%;
  left: -29%;
  min-width: 120px;
  z-index: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
}
.p-top-service__decoration img {
  min-width: 120px;
  width: 50.1388888889%;
  height: 100%;
}
.p-top-service__decoration.is-checked {
  -webkit-animation: slideIn 1s ease forwards;
          animation: slideIn 1s ease forwards;
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.p-top-service__inner {
  max-width: 860px;
  text-align: center;
}

.p-top-service__animation-item--1 {
  bottom: 10%;
  right: 5%;
}
.p-top-service__animation-item--1.is-animated {
  -webkit-animation: floating-1 4s linear forwards 1;
          animation: floating-1 4s linear forwards 1;
}
.p-top-service__animation-item--1 img {
  width: 22px;
  height: 20px;
  -webkit-transform: rotate(18.326deg);
          transform: rotate(18.326deg);
  aspect-ratio: 22/20;
}
@media screen and (min-width: 768px) {
  .p-top-service__animation-item--1 img {
    width: 66px;
    height: 61px;
    aspect-ratio: 66/61;
  }
}

.p-top-service__animation-item--2 {
  bottom: 50%;
  left: 5%;
}
.p-top-service__animation-item--2.is-animated {
  -webkit-animation: floating-2 4s linear forwards 1;
          animation: floating-2 4s linear forwards 1;
}
.p-top-service__animation-item--2 img {
  width: 34px;
  height: 20px;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  aspect-ratio: 34/20;
}
@media screen and (min-width: 768px) {
  .p-top-service__animation-item--2 img {
    width: 111px;
    height: 60px;
    aspect-ratio: 111/60;
  }
}

.p-top-heading__title-en.p-top-service__heading-en {
  bottom: -124%;
  right: -79%;
}

.p-top-service__content-wrapper {
  margin-top: clamp(3.125rem, -1.2321428571rem + 9.0773809524vw, 6.9375rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(3.125rem, -0.9464285714rem + 8.4821428571vw, 6.6875rem);
}
@media screen and (min-width: 768px) {
  .p-top-service__content-wrapper {
    padding-inline: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-service__content-wrapper {
    padding-inline: 0;
  }
}

.p-top-service__content-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-top-service__content-item .p-top-service__content-img {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.p-top-service__content-item .p-top-service__content-img img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
}
.p-top-service__content-item .p-top-service__content-img:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 0.7;
}
.p-top-service__content-item .p-top-service__content-img:hover ~ .p-top-service__link {
  opacity: 0.7;
}
.p-top-service__content-item .p-top-service__content-img a:hover {
  opacity: 1;
}

.p-top-service__content-item.odd {
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.p-top-service__content-item.odd.is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.p-top-service__content-item.odd .p-top-service__content-img {
  margin-left: auto;
}

.p-top-service__content-item.even {
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.p-top-service__content-item.even.is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.p-top-service__content-item.even .p-top-service__content-img {
  margin-right: auto;
}
.p-top-service__content-item.even .p-top-service__content-title {
  right: auto;
  left: 0;
}
.p-top-service__content-item.even .p-top-service__link {
  left: 2%;
}

.p-top-service__content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-shadow: 0px 0px 10px #f5f5f5;
  position: absolute;
  top: -12%;
  right: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-top-service__content-title {
    top: -51px;
  }
}

.p-top-service__content-title-number {
  font-size: 30px;
}
@media screen and (min-width: 600px) {
  .p-top-service__content-title-number {
    font-size: 70px;
  }
}
@media screen and (min-width: 768px) {
  .p-top-service__content-title-number {
    font-size: 70px;
  }
}

.p-top-service__content-title-ja {
  font-size: 20px;
  line-height: 1.16;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 2px;
}
@media screen and (min-width: 600px) {
  .p-top-service__content-title-ja {
    font-size: 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-top-service__content-title-ja {
    font-size: 50px;
  }
}

.p-top-service__content-img {
  width: 79.75%;
}
.p-top-service__content-img img {
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-top-service__content-img img {
    height: 425px;
  }
}

.p-top-service__link {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 2%;
  bottom: 2%;
  background-image: url("../img/arrow-icon.png");
  background-size: contain;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-top-service__link {
    width: 54px;
    height: 54px;
  }
}

.p-top-service__link-button {
  margin-top: clamp(2rem, -1.9285714286rem + 8.1845238095vw, 5.4375rem);
}

.p-top-service__wave {
  background-color: #ededed;
}
.p-top-service__wave::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/background-wave-service.png");
  background-size: contain;
}

.p-top-gallery {
  position: relative;
  background-color: #ededed;
}

.p-top-heading__title-en.p-top-gallery__heading-en {
  bottom: -123%;
  right: -59%;
}

.p-top-gallery__slider {
  overflow: visible;
  margin-inline: calc(50% - 50vw);
  margin-top: clamp(1.5rem, -6.9285714286rem + 17.5595238095vw, 8.875rem);
}
.p-top-gallery__slider .swiper {
  width: 100%;
  height: auto;
}
.p-top-gallery__slider .swiper-slide.even {
  margin-top: clamp(1.125rem, -0.7321428571rem + 3.869047619vw, 2.75rem);
}
.p-top-gallery__slider img {
  height: auto;
}

.p-top-gallery__sns-link {
  margin-top: clamp(1.5rem, -4.3571428571rem + 12.2023809524vw, 6.625rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.p-top-gallery__sns-link-text {
  font-size: clamp(1rem, 0.7142857143rem + 0.5952380952vw, 1.25rem);
  line-height: 1.2;
}

.p-top-gallery__sns-link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.p-top-gallery__sns-link-icon {
  width: clamp(2rem, 0.8571428571rem + 2.380952381vw, 3rem);
  height: clamp(2rem, 0.8571428571rem + 2.380952381vw, 3rem);
}

.p-top-gallery__wave {
  background-color: #afc3b2;
}
.p-top-gallery__wave::before {
  content: "";
  position: absolute;
  bottom: 0.5px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/background-wave-gallery.png");
  background-size: contain;
}

.p-top-staff {
  padding-top: 52.5px;
  background-color: #afc3b2;
  padding-bottom: 65px;
}

.p-top-staff__heading-message {
  margin-top: clamp(1.5rem, -2.5rem + 8.3333333333vw, 5rem);
  text-align: center;
}

.p-top-staff-content__wrapper {
  margin-top: clamp(1.5rem, -2.5rem + 8.3333333333vw, 5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.5rem, -1.7142857143rem + 6.6964285714vw, 4.3125rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-top-staff-content__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-top-staff-content__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 74.0298507463%;
}
@media screen and (min-width: 768px) {
  .p-top-staff-content__item {
    width: auto;
  }
}

.p-top-staff__wave {
  background-color: #ededed;
}
.p-top-staff__wave::before {
  content: "";
  position: absolute;
  bottom: 0.5px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/background-wave-staff.png");
  background-size: contain;
}

.p-top-access {
  background-color: #ededed;
}

.p-top-heading__title-en.p-top-access__heading-en {
  bottom: -120%;
  right: -74%;
}

.p-top-access-content__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: clamp(1.5rem, -8.7857142857rem + 21.4285714286vw, 10.5rem);
  text-align: left;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .p-top-access-content__wrapper {
    max-width: 74.0298507463%;
  }
}
@media screen and (min-width: 768px) {
  .p-top-access-content__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(1.5rem, -1.3571428571rem + 5.9523809524vw, 4rem);
    max-width: 90%;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-access-content__wrapper {
    max-width: 1015px;
  }
}

.p-top-access-content__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.5rem, 1.0714285714rem + 0.8928571429vw, 1.875rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top-access-content__left {
    width: 51.4%;
  }
}

.p-top-access-content__logo {
  font-size: 32px;
  font-family: "Poiret One";
  line-height: 1.5;
  letter-spacing: -0.608px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-access-content__logo {
    text-align: left;
  }
}

.p-top-access-content__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  font-size: clamp(0.9375rem, 0.7232142857rem + 0.4464285714vw, 1.125rem);
  line-height: 1.4;
}

.p-top-access-content__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-top-access-content__info-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(0.625rem, -1.1607142857rem + 3.7202380952vw, 2.1875rem);
  }
}
.p-top-access-content__info-item dt {
  width: clamp(6.5625rem, 5.0625rem + 3.125vw, 7.875rem);
}

.p-top-access-content__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.5rem, 1.0714285714rem + 0.8928571429vw, 1.875rem);
}
@media screen and (min-width: 768px) {
  .p-top-access-content__right {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .p-top-access-content__map img {
    height: 298px;
  }
}

.p-top-access-content__map-text {
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
  margin-top: 8px;
}

.p-top-access-content__text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  padding-inline: 20px;
}

@media screen and (min-width: 768px) {
  .p-top-access-content__photo-image img {
    height: 298px;
  }
}

.p-top-access-content__text {
  letter-spacing: 0.6px;
  font-size: clamp(0.875rem, 0.5892857143rem + 0.5952380952vw, 1.125rem);
  line-height: 1.8;
}

.p-contact__reservation-message {
  margin: 67px 0 24px;
  text-align: center;
  font-size: clamp(0.875rem, 0.1607142857rem + 1.4880952381vw, 1.5rem);
  line-height: 180%;
}
@media screen and (min-width: 768px) {
  .p-contact__reservation-message {
    margin: 75px 0 80px;
    line-height: 1.25;
  }
}

.p-contact__reservation-inner {
  padding-inline: clamp(1.25rem, 0.5357142857rem + 1.4880952381vw, 1.875rem);
}

.p-contact__reservation-form {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 800px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 63px;
  padding: 32px 16px;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .p-contact__reservation-form {
    border-radius: 8px;
    border: 1px solid #724000;
    padding: 48px 0;
    margin: 0 auto 90px;
  }
}

.p-contact__reservation-fields {
  max-width: 584px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(2.0625rem, 1.4910714286rem + 1.1904761905vw, 2.5625rem);
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 8.5px;
}

.form-field__label {
  font-size: 14px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.56px;
}

.form-field__tag {
  padding: 2px 10px;
  border-radius: 5px;
  background: #5f9f66;
  color: #fafafa;
  font-size: 12px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.48px;
}

.form-field__item input,
.form-field__item select,
.form-field__item textarea {
  width: 100%;
}
.form-field__item.is-error {
  border-color: #ce2073;
  background: #fff0f7;
}

.form-select-wrapper {
  position: relative;
}
.form-select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 43px;
  height: 100%;
  background: var(--brown_gradation, linear-gradient(180deg, #c7832b 0%, #724000 100%));
  border-radius: 0 5px 5px 0;
  pointer-events: none;
}
.form-select-wrapper::before {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 12px;
  color: #fafafa;
  pointer-events: none;
  z-index: 5;
}

.form-select_day {
  margin: clamp(0.625rem, 0.4821428571rem + 0.2976190476vw, 0.75rem) 0;
}

.form-select {
  width: 100%;
  padding: 5px 40px 5px 12px;
  font-size: 14px;
  color: #c2ae96;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#dcdcdc));
  background: linear-gradient(180deg, #f9f9f9 0%, #dcdcdc 100%);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.form-select::-ms-expand {
  appearance: none;
}
@media screen and (min-width: 768px) {
  .form-select {
    padding: 4px 40px 4px 12px;
  }
}
.form-select.is-error {
  border-color: #ce2073;
  background: #fff0f7;
}

.form-select option {
  color: #724000;
}

.form-select:focus,
.form-select option:checked {
  color: #724000;
  border: 2px solid #724000;
  outline: none;
}

.form-text,
.form-textarea {
  border-radius: 5px;
  border: 1px solid #c2ae96;
  padding: 8px 16px;
}
@media screen and (min-width: 768px) {
  .form-text,
  .form-textarea {
    padding: 10px 16px;
  }
}
.form-text::-webkit-input-placeholder, .form-textarea::-webkit-input-placeholder {
  color: #c2ae96;
}
.form-text::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #c2ae96;
}
.form-text:-ms-input-placeholder, .form-textarea:-ms-input-placeholder {
  color: #c2ae96;
}
.form-text::-ms-input-placeholder, .form-textarea::-ms-input-placeholder {
  color: #c2ae96;
}
.form-text::placeholder,
.form-textarea::placeholder {
  color: #c2ae96;
}
.form-text:focus,
.form-textarea:focus {
  border: 1px solid #724000;
  outline: none;
}
.form-text.is-error,
.form-textarea.is-error {
  border-color: #ce2073;
  background: #fff0f7;
}

.form-textarea {
  height: 214px;
}

.p-contact__reservation-privacy {
  margin-top: 36px;
  max-width: 584px;
  width: 100%;
}

.form-checkbox:hover .form-checkbox__text::before {
  border: 2px solid #724000;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  border: 1px solid #724000;
}
.form-checkbox__input.is-error + .form-checkbox__text::before {
  background-color: #fff0f7;
  border: 1px solid #ce2073;
}

.form-checkbox__text {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 500;
  color: #724000;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 15px;
  height: 15px;
  border-radius: 1px;
  border: 1px solid #c2ae96;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-checkbox__text::after {
  content: "✓";
  width: 20px;
  height: 20px;
  left: -2px;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration: underline;
  font-weight: 500;
  font-size: 14px;
  color: #0075c2;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.form-checkbox__text a:hover {
  color: #724000;
}
.form-checkbox__text a:focus {
  border: 1px solid #724000;
  outline: none;
}

.p-contact__reservation-button {
  margin-top: 62px;
  max-width: 584px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact__reservation-button {
    margin-top: 64px;
  }
}

.submit-button {
  width: 100%;
  padding: 20px 0;
  border-radius: 4px;
  background: #724000;
  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.6px;
  color: #fafafa;
}
@media screen and (min-width: 768px) {
  .submit-button {
    padding: 16px 0;
  }
}
.submit-button:hover {
  opacity: 0.9;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.p-404-page__body {
  margin: clamp(5rem, 2.1428571429rem + 5.9523809524vw, 7.5rem) auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1.25rem, -0.1785714286rem + 2.9761904762vw, 2.5rem);
}

.p-404-page__body-404 {
  font-size: clamp(2.5rem, -0.3571428571rem + 5.9523809524vw, 5rem);
  font-weight: 400;
}

.p-404-page__body-text {
  font-family: Inter;
  font-size: clamp(1.25rem, 0.3928571429rem + 1.7857142857vw, 2rem);
  font-weight: 400;
}

.p-news {
  margin-bottom: 82px;
}

.p-news__cards {
  max-width: 560px;
  width: 100%;
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.5rem, 0.5714285714rem + 1.9345238095vw, 2.3125rem);
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-news__cards {
    margin-top: 77px;
    max-width: inherit;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(4.5rem, 3.9285714286rem + 1.1904761905vw, 5rem) clamp(2rem, 0.9285714286rem + 2.2321428571vw, 2.9375rem);
  }
}

.p-news__cards-2 {
  margin: clamp(1.5rem, 0.2857142857rem + 2.5297619048vw, 2.5625rem) auto;
}

.p-news__card {
  color: #724000;
}

.p-news__card-link {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.p-news__card-link img {
  border-radius: 8px;
  margin-bottom: 12px;
}

.p-news__card-date {
  font-family: "Noto Sans JP";
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.64px;
}

.p-news__card-title {
  margin-top: 8px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}

.l-pager {
  margin-top: clamp(3.1875rem, 0.5446428571rem + 5.505952381vw, 5.5rem);
}

.p-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
.p-pager a {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #c2ae96;
}
.p-pager a:hover {
  background: #724000;
  border: 1px solid #724000;
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Sans JP";
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  background: #724000;
  color: #fafafa;
}

.p-news-page__card {
  max-width: 560px;
  width: 100%;
  padding: 40px 0 44px;
  margin: 0 auto;
  text-align: left;
  font-size: clamp(1rem, 0.7142857143rem + 0.5952380952vw, 1.25rem);
}
@media screen and (min-width: 768px) {
  .p-news-page__card {
    max-width: inherit;
    padding: 77px 0 80px;
  }
}
.p-news-page__card img {
  margin-bottom: clamp(0.8125rem, 0.5982142857rem + 0.4464285714vw, 1rem);
}
@media screen and (min-width: 768px) {
  .p-news-page__card img {
    max-width: 913px;
    width: 100%;
  }
}

.p-news-page__card-date {
  font-weight: 700;
  letter-spacing: 0.64px;
}

.p-news-page__card-title {
  font-weight: 700;
  line-height: 180%; /* 28.8px */
  margin: 6px 0 24px;
}
@media screen and (min-width: 768px) {
  .p-news-page__card-title {
    margin: 8px 0 16px;
  }
}

.p-news-page__card-text {
  font-weight: 400;
  line-height: 180%;
}
@media screen and (min-width: 768px) {
  .p-news-page__card-text {
    line-height: 200%; /* 32px */
  }
}

.p-news-page__card-prev {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.p-news-page__card-prev img {
  width: 28px;
  margin: 0;
}
.p-news-page__card-prev:hover {
  opacity: 0.7;
}

.p-reserve-info__head-text {
  color: #724000;
}

.p-reserve-info__title {
  margin-top: clamp(2.5rem, -0.3571428571rem + 5.9523809524vw, 5rem);
  text-align: center;
  font-size: clamp(1rem, -0.7142857143rem + 3.5714285714vw, 2.5rem);
}

.p-reserve-info-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: clamp(2.5rem, -0.3571428571rem + 5.9523809524vw, 5rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-reserve-info-contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-reserve-info-contents__item {
  background: #fafafa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  aspect-ratio: 1/1;
  position: relative;
  width: 260px;
  height: 260px;
}
@media screen and (min-width: 768px) {
  .p-reserve-info-contents__item {
    width: clamp(10rem, 2.7857142857rem + 15.0297619048vw, 16.3125rem);
    height: clamp(10rem, 2.7857142857rem + 15.0297619048vw, 16.3125rem);
    gap: clamp(0.375rem, -0.9107142857rem + 2.6785714286vw, 1.5rem);
  }
}
.p-reserve-info-contents__item::after {
  content: "";
  position: absolute;
  bottom: -21px;
  width: 8px;
  height: 22px;
  background-color: #eee7e2;
}
@media screen and (min-width: 768px) {
  .p-reserve-info-contents__item::after {
    bottom: auto;
    right: -22px;
    width: 22px;
    height: 8px;
  }
}
.p-reserve-info-contents__item:last-child::after {
  display: none;
}

.p-reserve-info-contents__item-title {
  font-size: clamp(1rem, 0.7142857143rem + 0.5952380952vw, 1.25rem);
}

.p-reserve-info-contents__item-icon {
  width: 48px;
  height: 48px;
}
@media screen and (min-width: 768px) {
  .p-reserve-info-contents__item-icon {
    width: clamp(1.5rem, -0.2142857143rem + 3.5714285714vw, 3rem);
    height: clamp(1.5rem, -0.2142857143rem + 3.5714285714vw, 3rem);
  }
}

.p-reserve-info-contents__item-text {
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-reserve-info-contents__item-text {
    font-size: clamp(0.625rem, 0.4821428571rem + 0.2976190476vw, 0.75rem);
  }
}

.p-reserve__contact-contents {
  margin-block: 80px;
  padding-block: 40px;
  padding-inline: clamp(1.25rem, -0.1785714286rem + 2.9761904762vw, 2.5rem);
  border: 1px solid #724000;
  border-radius: 8px;
  max-width: 400px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-reserve__contact-contents {
    width: 85%;
    max-width: 800px;
  }
}
@media screen and (min-width: 1200px) {
  .p-reserve__contact-contents {
    width: auto;
  }
}
.p-reserve__contact-contents .p-reserve-info__title {
  margin-top: 0;
}

.p-reserve-info__contact-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #724000;
  width: 261px;
  padding-bottom: 31px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-reserve-info__contact-line {
    gap: clamp(0.75rem, -0.1071428571rem + 1.7857142857vw, 1.5rem);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: auto;
    padding-bottom: 0;
    border-bottom: none;
  }
}

.p-reserve-info__contact-line-icon {
  width: 115px;
  height: 115px;
}

.p-reserve-info__contact-line-text {
  font-size: clamp(1rem, 0.7142857143rem + 0.5952380952vw, 1.25rem);
}
@media screen and (min-width: 768px) {
  .p-reserve-info__contact-line-text {
    text-align: left;
  }
}

.p-reserve-info__contact-bottom-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: clamp(2.5rem, -0.3571428571rem + 5.9523809524vw, 5rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-reserve-info__contact-bottom-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-reserve-info__contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
}

.p-reserve-info__contact-info-term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-reserve-info__contact-info-term {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(0.625rem, -1.1607142857rem + 3.7202380952vw, 2.1875rem);
  }
}
.p-reserve-info__contact-info-term dt {
  width: 126px;
}

.p-reserve-info__contact-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.p-service__box {
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.p-service__box.view-slideup {
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}

.p-service__box.view-slidein-r {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}

.p-service__box.is-active {
  opacity: 1;
  -webkit-transform: translateX(0) translateY(0);
          transform: translateX(0) translateY(0);
}

/* 表示されたとき */
.p-service__box.on {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.p-news__cards {
  opacity: 0;
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out; /* ふわっと表示する */
}

.p-news__cards.is-active {
  opacity: 1;
}

.p-service__inner {
  max-width: clamp(40rem, -4.2857142857rem + 92.2619047619vw, 78.75rem);
}

.p-service__link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 394px;
  margin: 36px auto;
}
@media screen and (min-width: 768px) {
  .p-service__link {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: clamp(1rem, -3.5714285714rem + 9.5238095238vw, 5rem);
    margin: 80px 0 75px;
    max-width: initial;
  }
}

.p-service__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.25rem, -0.6071428571rem + 1.7857142857vw, 1rem);
}

.p-service__box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-service__box-content img {
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 768px) {
  .p-service__box-content img {
    width: clamp(1.125rem, 0.6964285714rem + 0.8928571429vw, 1.5rem);
    height: clamp(1.125rem, 0.6964285714rem + 0.8928571429vw, 1.5rem);
  }
}

.p-service__box-content-text {
  color: #724000;
  font-family: "Noto Sans JP", "Noto Sans";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 768px) {
  .p-service__box-content-text {
    font-size: clamp(0.75rem, 0.4642857143rem + 0.5952380952vw, 1rem);
  }
}

.p-service__price {
  margin: 0 auto;
  padding: 41px 0 0;
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-service__price {
    padding: 40px 0 0;
  }
}

.p-service__price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: clamp(1.5rem, 0.3571428571rem + 2.380952381vw, 2.5rem) clamp(1.53125rem, 0.4241071429rem + 2.306547619vw, 2.5rem);
  gap: 25px;
  border-radius: 8px;
  border: 1px solid #724000;
  max-width: 394px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-service__price-box {
    max-width: initial;
  }
}

.p-service__price-box-head {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 5px 24px;
  background: #724000;
  font-size: clamp(1rem, -0.4285714286rem + 2.9761904762vw, 2.25rem);
  color: #fafafa;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .p-service__price-box-head {
    padding: 2px 24px;
  }
}

.p-service__price-box-img {
  padding: 15px 0px;
  gap: 11px 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .p-service__price-box-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
  }
  .p-service__price-box-img img {
    width: clamp(8.125rem, 4.9821428571rem + 6.5476190476vw, 10.875rem);
  }
}

.p-service__price-box-ac {
  width: 100%;
}

.p-service__price-box-ac-one.is-open .p-service__price-box-ac-head::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-service__price-box-ac-head {
  padding: clamp(0.4375rem, -0.2053571429rem + 1.3392857143vw, 1rem);
  width: 100%;
  border: 1px solid #724000;
  color: #724000;
  text-align: center;
  font-family: "Noto Sans JP", "Noto Sans";
  font-size: clamp(1rem, 0.7142857143rem + 0.5952380952vw, 1.25rem);
  font-weight: 400;
  position: relative;
}
.p-service__price-box-ac-head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
  width: 24px;
  height: 24px;
  background: url(../img/ac-arrow.png) no-repeat center center/contain;
}

.p-service__price-box-ac-detail {
  display: none;
  background: #eee7e2;
}

.p-service__price-box-ac-detail-content {
  padding: 13px 0 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .p-service__price-box-ac-detail-content {
    padding: 11px 0 18px;
    gap: 11px;
  }
}

.p-service__price-box-ac-detail-head {
  font-size: clamp(1.25rem, 0.1071428571rem + 2.380952381vw, 2.25rem);
}

.ac-detail-head-yen {
  font-size: clamp(0.875rem, -0.125rem + 2.0833333333vw, 1.75rem);
}

.ac-detail-head-text {
  font-size: clamp(0.875rem, 0.4464285714rem + 0.8928571429vw, 1.25rem);
}

.p-service__price-box-ac-detail-menu {
  width: 100%;
  padding: 16px 0 6px;
  border-top: 1px solid #724000;
}
@media screen and (min-width: 768px) {
  .p-service__price-box-ac-detail-menu {
    padding: 16px 0 0;
  }
}

.p-service__price-box-ac-detail-menu-head {
  font-size: clamp(1rem, 0.7142857143rem + 0.5952380952vw, 1.25rem);
  line-height: 200%; /* 40px */
  text-align: center;
}

.p-service__price-box-ac-detail-menu-list {
  margin: 25px 0 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(0.25rem, -0.6071428571rem + 1.7857142857vw, 1rem);
}
@media screen and (min-width: 768px) {
  .p-service__price-box-ac-detail-menu-list {
    margin: 24px 0 13px;
  }
}

.p-service__price-box-ac-detail-menu-item {
  max-width: 90px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-service__price-box-ac-detail-menu-item {
    max-width: 108px;
    width: 100%;
  }
}
.p-service__price-box-ac-detail-menu-item p {
  margin-top: 15px;
  font-size: 12px;
  line-height: 150%; /* 18px */
  text-align: center;
}

@media (max-width: 768px) {
  .service__price-grid_sp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 190px;
    margin: 0 auto;
  }
  .service__price-grid_sp .p-service__price-box-ac-detail-menu-item {
    width: 93px;
  }
}

.p-service__price-box-ac-detail-menu-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fafafa;
  border-radius: 50%;
  width: clamp(4.375rem, 2.2321428571rem + 4.4642857143vw, 6.25rem);
  height: clamp(4.375rem, 2.2321428571rem + 4.4642857143vw, 6.25rem);
  margin-left: auto;
  margin-right: auto;
}
.p-service__price-box-ac-detail-menu-icon img {
  width: 48px;
}

.p-service__option {
  margin: 41px auto 20px;
  padding: clamp(1.5rem, 0.3571428571rem + 2.380952381vw, 2.5rem) clamp(0.4375rem, -1.9196428571rem + 4.9107142857vw, 2.5rem);
  max-width: 800px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-service__option {
    margin: 24px auto 58px;
  }
}

.p-service__option-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  border: 1px solid #724000;
  font-size: clamp(1rem, -0.4285714286rem + 2.9761904762vw, 2.25rem);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-service__option-head {
    padding: 3px 24px;
  }
}

.p-service__option-message {
  max-width: clamp(16.5625rem, -5.3660714286rem + 45.6845238095vw, 35.75rem);
  width: 100%;
  font-size: clamp(0.875rem, 0.4464285714rem + 0.8928571429vw, 1.25rem);
  font-weight: 400;
  line-height: 180%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-service__option-message {
    line-height: 200%; /* 40px */
    padding-top: 16px;
  }
}

.p-service__option-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px 11px;
  margin: 0;
}
@media screen and (min-width: 1200px) {
  .p-service__option-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 16px;
  }
}

.p-service__option-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 90px;
}
@media screen and (min-width: 1200px) {
  .p-service__option-item {
    max-width: 100px;
    width: 100%;
  }
}

.p-service__option-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  line-height: 1.2 !important;
}
@media screen and (min-width: 1200px) {
  .p-service__option-text {
    line-height: 150%;
    max-width: 100px;
    width: 100%;
  }
}

.p-service__option-item-price {
  font-size: 16px !important;
  text-align: center;
}

.p-service__option-icon {
  background: #eee7e2;
}

.p-service__price-box-ac-detail-menu-text {
  max-width: clamp(16.5625rem, -5.3660714286rem + 45.6845238095vw, 35.75rem);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: clamp(0.875rem, 0.4464285714rem + 0.8928571429vw, 1.25rem);
  font-weight: 400;
  line-height: 200%;
}