/*—————————————————————————————————
Reset
—————————————————————————————————*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
}
main {
  display: block;
}
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}
pre {
  font-family: monospace, monospace;
  font-size: inherit;
}
address {
  font-style: inherit;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
abbr[title] {
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}
button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}
:-moz-focusring {
  outline: auto;
}
select:disabled {
  opacity: inherit;
}
option {
  padding: 0;
}
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}
legend {
  padding: 0;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
label[for] {
  cursor: pointer;
}
details {
  display: block;
}
summary {
  display: list-item;
}
[contenteditable]:focus {
  outline: auto;
}
table {
  border-color: inherit;
  border-collapse: collapse;
}
caption {
  text-align: left;
}
td,
th {
  vertical-align: top;
  padding: 0;
}
th {
  text-align: left;
  font-weight: bold;
}
/*—————————————————————————————————
General Style
—————————————————————————————————*/
:root {
  --green: #104847;
  --white: #e9f2f7;
  --light-green: #4a827e;
  --primary-bg: var(--green);
  --button: var(--red);
  --root-font-size: 16;
  --main-text-color: #555;
  --en-font: "marcellus", serif;
  --jp-font: "ryo-gothic-plusn", sans-serif;
  --jp-mincho: "shippori-mincho", serif;
}
@font-face {
  font-family: marcellus;
  src: url("../fonts/MarcellusSC-Regular.ttf") format("truetype");
}
html {
  font-family: var(--jp-font);
  color: var(--main-text-color);
  scroll-behavior: smooth;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.05em;
}
h1,
h2 {
  letter-spacing: 0.1em;
}
p {
  font-size: calc(18 / var(--root-font-size) * 1rem);
}
a {
  display: block;
  color: currentColor;
}
button {
  color: currentColor;
}
img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
br.sm {
  display: block;
}
br.md {
  display: none;
}
br.lg {
  display: none;
}
@media screen and (min-width: 599px) {
  br.sm {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  br.md {
    display: block;
  }
}
@media screen and (min-width: 961px) {
  br.lg {
    display: block;
  }
}
.visuallyHidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-active {
  opacity: 1;
  transform: translateY(0);
}
.en {
  font-family: var(--en-font);
}
body.no-scroll {
  overflow: hidden;
}
.inner {
  width: min(80%, 1200px);
  margin: auto;
}
.main-contents {
  position: relative;
  z-index: 2;
  background-color: #fff;
  overflow: hidden;
}
.text_scroll {
  font-family: var(--en-font);
  color: rgba(58, 142, 114, 0.2);
  font-size: clamp(7.5rem, 6.136rem + 6.82vw, 11.25rem);
}
.text_bg {
  display: flex;
  overflow: hidden;
}
.text_scroll {
  white-space: nowrap;
  animation: scrollText 70s infinite linear 0.5s both;
}
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.dot {
  display: inline-block;
  vertical-align: middle;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}
.btn__link {
  position: relative;
  width: 100%;
  height: clamp(3.125rem, 2.898rem + 1.14vw, 3.75rem);
  margin-top: 2rem;
  border-radius: 40px;
  background-color: var(--green);
  text-align: center;
  color: var(--white);
  font-size: clamp(0.875rem, 0.708rem + 0.83vw, 1.375rem);
  cursor: pointer;
}
.btn__link::before,
.btn__link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -35%);
  width: 1rem;
  height: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.btn__link::before {
  left: 2%;
}
.btn__link::after {
  right: 2%;
  background-image: url(../images/icon/arrow-white.svg);
}
.js-txt-anim {
  transform: translate3d(0, calc(100% + 0.25em), 0);
  clip-path: inset(0 0 100% 0);
  transition: transform 1.8s cubic-bezier(0.1, 1, 0.3, 1),
    clip-path 1s cubic-bezier(0.1, 1, 0.3, 1);
}
.js-txt-anim.is-active {
  transform: translate3d(0, 0, 0);
  clip-path: inset(0 0 0% 0);
}
@media (min-width: 768px) {
  .btn__link {
    max-width: 500px;
  }
}

.header {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(1.875rem, 1.193rem + 3.41vw, 3.75rem)
    clamp(1.5rem, 0.682rem + 4.09vw, 3.75rem);
  z-index: 100;
}
.header__logo .image {
  width: clamp(7.25rem, 5.341rem + 9.55vw, 12.5rem);
}
.header__logo {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.header__logo_hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.header__toggle {
  position: fixed;
  right: clamp(1.5rem, 0.682rem + 4.09vw, 3.75rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: clamp(6.875rem, 5.966rem + 4.55vw, 9.375rem);
  height: clamp(2.813rem, 2.472rem + 1.7vw, 3.75rem);
  border: 1px solid var(--white);
  cursor: pointer;
  border-radius: 40px;
  background-color: var(--primary-bg);
  z-index: 102;
}
.header__toggle.is-active .header__toggle__line {
  background-color: transparent;
}
.header__toggle.is-active .header__toggle__line::before {
  top: 0;
  transform: rotate(45deg);
}
.header__toggle.is-active .header__toggle__line::after {
  top: 0;
  transform: rotate(-45deg);
}
.header__toggle__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 15%;
  width: 0.875rem;
  background-color: #fff;
  transition: 0.4s;
}
.header__toggle__line:before,
.header__toggle__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: #fff;
  transition: inherit;
}
.header__toggle__line:before {
  top: -6px;
}
.header__toggle__line:after {
  top: 6px;
}
.header__toggle__text {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  color: #fff;
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}
.header__toggle__text::before {
  content: "メニュー";
  display: block;
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.header__toggle.is-active .header__toggle__text::before {
  content: "閉じる";
  opacity: 1;
}
.header__toggle.is-active .header__toggle__text {
  opacity: 1;
}
.drawer {
  position: fixed;
  top: 0;
  max-width: 600px;
  width: 100%;
  height: 100%;
  transition: left 0.3s ease;
  z-index: 101;
  background: linear-gradient(
    to bottom right,
    #5b736f 0%,
    #295b5a 34%,
    #104847 100%
  );
  border-radius: 40px 0 0 40px;
  opacity: 0;
  pointer-events: none;
  right: -100%;
  transition: right 0.6s cubic-bezier(0.2, 0.5, 0.4, 1), opacity 0.6s linear;
}
.drawer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg-noise.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.drawer.is-active {
  opacity: 1;
  pointer-events: all;
  right: 0;
  overflow-y: scroll;
}
.drawer__inner {
  height: 100%;
  padding: clamp(5rem, 3.909rem + 5.45vw, 8rem)
    clamp(2.5rem, 1.955rem + 2.73vw, 4rem) 160px;
}
.drawer__logo {
  width: clamp(10rem, 9.091rem + 4.55vw, 12.5rem);
}
.drawer__nav__list {
  padding-top: 2rem;
}
.drawer__nav__item {
  padding-top: 0.75rem;
  font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
  color: var(--white);
}
.drawer__content {
  padding-top: 2rem;
}
.drawer__content__heading {
  color: var(--white);
}
.drawer__content__heading .dot {
  background-color: var(--white);
}
.drawer__content__heading .en {
  letter-spacing: 0.03em;
  margin-left: 0.5rem;
}
.drawer__content_tel {
  line-height: 1.5;
  color: var(--white);
}
.drawer__content_tel .num {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.drawer__content .en {
  font-weight: 600;
}
.drawer__content .jp {
  display: block;
  font-family: var(--jp-mincho);
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}
.btn__link.drawer__btn {
  border: 1px solid #e9f2f7;
  background: none;
}
.drawer__content .btn__link.drawer__btn::before {
  left: 5%;
  width: clamp(1.438rem, 1.119rem + 1.59vw, 2.313rem);
  height: clamp(1.438rem, 1.119rem + 1.59vw, 2.313rem);
  background-image: url(../images/icon/line.svg);
  transform: translateY(-50%);
}
.btn__link.drawer__btn::before {
  left: 10%;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(../images/icon/insta-white.svg);
  transform: translateY(-50%);
}
.drawer__btn--insta {
  margin-top: 1rem;
  max-width: 240px;
  height: 50px;
  font-size: clamp(1.125rem, 0.839rem + 1.43vw, 1.375rem);
}
.drawer_btn__link {
  font-size: clamp(1.125rem, 0.839rem + 1.43vw, 1.375rem);
}
@media (min-width: 768px) {
  .header__toggle__line {
    width: 1.125rem;
  }
  .drawer__nav__list {
    padding-top: 4rem;
  }
  .drawer__content {
    padding-top: 4rem;
  }
  .drawer__nav__item {
    padding-top: 1rem;
  }
  .drawer__btn--insta {
    margin-top: 3rem;
  }
}

/*—————————————————————————————————
tab-menu
—————————————————————————————————*/
.tab-menu_hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.tab-menu_is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.tab-menu {
  position: fixed;
  bottom: 0;
  width: 100%;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  background: linear-gradient(
    to bottom right,
    #5b736f 0%,
    #295b5a 34%,
    #104847 100%
  );
  z-index: 99;
}
.tab-menu__trigger {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  color: var(--white);
  cursor: pointer;
}
.tab-menu__trigger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg-noise.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.tab-menu__trigger_text {
  display: flex;
  align-items: center;
}
.tab-menu__trigger_text .jp {
  font-size: 1rem;
}
.tab-menu__trigger_text .en {
  position: relative;
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
}
.tab-menu__trigger_text .en::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25%;
  transform: translateY(-50%);
  background-image: url(../images/icon/calendar-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  height: 100%;
}
.tab-menu__trigger_text .sep {
  display: block;
  margin: 0 16px;
  height: 20px;
  width: 1px;
  background: var(--white);
}
.tab-menu__inner {
  padding: 2.5rem 2.5rem 1rem 2.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: transform 0.3s ease-in-out;
  transform: translateY(100%);
  background: linear-gradient(
    to bottom right,
    #5b736f 0%,
    #295b5a 34%,
    #104847 100%
  );
  z-index: 100;
  border-radius: 40px 40px 0 0;
}
.tab-menu__inner.is-active {
  transform: translateY(0);
}
.tab-menu__inner.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg-noise.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.tab-menu__list__item:nth-of-type(2) {
  padding-top: 0.875rem;
}
.tab-menu__list__item .reserve__list__heading {
  color: var(--white);
}
.tab-menu__list__item:first-of-type .reserve__list__heading {
  padding-top: 0;
}
.tab-menu__list__item .reserve__list__heading__content {
  padding-top: 0.5rem;
}
.tab-menu__list__item .reserve__list__heading .en {
  font-size: clamp(1.375rem, 1.239rem + 0.68vw, 1.75rem);
}
.tab-menu__list__item .btn__link.reserve__btn {
  height: 55px;
}
.tab-menu__list__item .btn__link--reserve {
  font-size: 1.25rem;
}
.tab-menu__close-btn {
  width: 100%;
  margin-top: 2.5rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--white);
}
.tab-menu__close-btn .text {
  color: var(--white);
}
.tab-menu__close-btn svg {
  margin-right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--white);
}
@media (min-width: 1024px) {
  .tab-menu {
    max-height: 300px;
  }
  .tab-menu__list__item .reserve__list__heading {
    padding-top: 0;
    width: 30%;
    text-align: left;
  }
  .tab-menu__list {
    display: flex;
    align-items: stretch;
    max-width: 1200px;
    margin: auto;
    gap: 3rem;
  }
  .tab-menu__list__item {
    display: flex;
    align-items: stretch;
    flex: 1;
    gap: 1rem;
  }
  .tab-menu__list__item .btn__link.reserve__btn {
    height: 55px;
    margin-top: 0;
    width: 100%;
    max-width: 360px;
  }
  .tab-menu__list__item:nth-of-type(2) {
    padding-top: 0;
  }
  .tab-menu__list__item .reserve__list__heading__content {
    padding-top: 0;
    flex-direction: column;
    width: 70%;
    gap: 1.25rem;
  }
  .tab-menu__trigger_text .jp {
    font-size: 1.25rem;
  }
  .tab-menu__trigger_text .sep {
    margin: 0 24px;
    height: 30px;
  }
  .tab-menu__trigger {
    height: 70px;
  }
}

/*—————————————————————————————————
mv
—————————————————————————————————*/
.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/mv-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.mv__category {
  position: absolute;
  top: 18%;
  right: 5%;
  z-index: 10;
  line-height: 1;
}
.mv__category_text {
  font-size: clamp(4.5rem, 3.409rem + 5.45vw, 7.5rem);
  color: rgba(58, 142, 114, 0.2);
}
.js-mv-category {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
.js-mv-category > * {
  display: block;
  opacity: 0;
  transform: translateX(-3rem);
  transition: all 1s ease;
}
.js-mv-category.is-show > * {
  opacity: 1;
  transform: translateX(0);
}
.js-mv-category.is-show > :nth-child(1) {
  transition-delay: 0s;
}
.js-mv-category.is-show > :nth-child(2) {
  transition-delay: 0.04s;
}
.js-mv-category.is-show > :nth-child(3) {
  transition-delay: 0.08s;
}
.js-mv-category.is-show > :nth-child(4) {
  transition-delay: 0.12s;
}
.js-mv-category.is-show > :nth-child(5) {
  transition-delay: 0.16s;
}

.mv__category--01.is-hide,
.mv__category--02.is-hide,
.mv__category--03.is-hide,
.mv__category--04.is-hide {
  opacity: 0;
}
.mv__category--04.mv__category {
  flex-direction: column;
}
.mv__category_text.-sm {
  font-size: 3rem;
}
.mv__cont {
  width: 80%;
  height: auto;
  aspect-ratio: 3 / 4;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
}
.mv__cont__inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0 0 0 0 round 45% 45% 0 0);
}
.mv__cont.show .mv__cont__inner:before {
  width: 0;
}
.mv__cont__item {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  opacity: 0;
  transition: 1s ease-in-out;
}
.mv__cont__item.show {
  opacity: 1;
}
.mv__cont__item.pre {
  z-index: 20;
}
.mv__photo_out {
  position: relative;
  width: 100vw;
  height: 100%;
}
.mv__photo_area {
  width: 30%;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: 1s cubic-bezier(0.65, 0, 0.35, 1);
}
.mv__cont__item.show .mv__photo_area {
  width: 100%;
}
.mv__photo {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-1.5%) scale(1.05);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  transition: 6.5s cubic-bezier(0.65, 1, 0.85, 1);
}
.mv__cont__item.show .mv__photo {
  transform: translateX(1.5%) scale(1.05);
}
.mv__cont--01 .mv__photo {
  background-image: url(../images/mv-01.png);
}
.mv__cont--02 .mv__photo {
  background-image: url(../images/mv-02.png);
}
.mv__cont--03 .mv__photo {
  background-image: url(../images/mv-03.png);
}
.mv__cont--04 .mv__photo {
  background-image: url(../images/mv-04.png);
}
.mv__catch {
  position: relative;
  transform: translate(5%, -25%);
  z-index: 20;
}
.mv__catch_text {
  display: block;
  font-size: clamp(2rem, 1.31rem + 3.45vw, 4.5rem);
  font-family: var(--jp-mincho);
  color: var(--main-text-color);
  line-height: 1.3;
  z-index: 200;
  opacity: 0;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  -webkit-transform: translateY(50px) translateZ(0);
  transform: translateY(50px) translateZ(0);
  will-change: opacity, transform, filter;
  transition: opacity 1s ease-in-out 1s, filter 1s ease-in-out 1s,
    transform 1s ease-in-out 1s;
}
.mv__catch_text.is-visible {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transform: translateY(0) translateZ(0);
  transform: translateY(0) translateZ(0);
}
.mv__catch_sub {
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
  font-family: var(--jp-font);
  line-height: 1.75;
}
@media (min-width: 599px) {
  .mv__cont {
    width: clamp(400px, 60vw, 550px);
  }
  .mv__photo_out {
    width: clamp(400px, 80vw, 550px);
  }
}
@media (min-width: 768px) {
  .mv__cont {
    width: clamp(400px, 60vw, 550px);
  }
  .js-mv-category > * {
    transform: translateX(-2rem);
  }
}
@media (min-width: 1024px) {
  .mv__cont {
    width: clamp(400px, 40vw, 550px);
    top: 45%;
    left: 40%;
  }
  .mv__catch {
    position: absolute;
    width: 100%;
    bottom: 50%;
    transform: translateY(50%);
    left: 90%;
  }
  .mv__catch_sub {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
  .mv__category {
    top: 60%;
    right: 55%;
  }
  .mv__category--01.mv__category,
  .mv__category--02.mv__category {
    right: 75%;
  }
  .mv__photo_out {
    width: clamp(400px, 80vw, 550px);
    height: 100%;
  }
}

/*—————————————————————————————————
about
—————————————————————————————————*/
.about__inner {
  position: relative;
  max-width: 1000px;
  padding-top: 4rem;
  z-index: 1;
}
.about__heading {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--light-green);
  font-size: clamp(1.5rem, 1.409rem + 0.45vw, 1.75rem);
  font-weight: 400;
}
.about__heading .dot {
  background-color: var(--light-green);
}
.about__catch {
  padding-top: 1rem;
  font-size: clamp(2rem, 1.773rem + 1.14vw, 2.625rem);
  line-height: 1.5;
  font-family: var(--jp-mincho);
  font-weight: 600;
}
.about__text {
  position: relative;
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  z-index: 1;
}
.about__text .spacer {
  display: block;
  padding-top: 2rem;
}
.about__photo {
  margin-top: 2rem;
  border-radius: 20px;
}
.about__text_bg {
  position: relative;
  z-index: 0;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .about__inner {
    padding-top: 10rem;
  }
  .about__text_bg {
    transform: translateY(-25%);
  }
  .about__text .spacer {
    padding-top: 2.5rem;
  }
  .about .about__photo {
    position: absolute;
    max-width: 565px;
    bottom: -10%;
    right: -5%;
  }
}

/*—————————————————————————————————
target
—————————————————————————————————*/
.target {
  background-image: url(../images/message-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.target__inner {
  max-width: 800px;
  padding: 7rem 0;
}
.target__heading {
  padding: 1rem 0;
  text-align: center;
  font-size: clamp(1.75rem, 1.614rem + 0.68vw, 2.125rem);
  font-family: var(--jp-mincho);
  border-top: 1px solid var(--green);
  border-bottom: 1px solid var(--green);
  line-height: 1.5;
}
.target__list {
  padding-top: 3rem;
}
.target__list__item {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
.target__list__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.target__list__item:nth-of-type(n + 2) {
  padding-top: 2rem;
}
.target__list__item::before {
  content: "";
  background-image: url(../images/icon/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
  height: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
}
.target__list__item_text {
  padding-left: 1rem;
  line-height: 1.5;
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
}
.target__heading--circle {
  position: relative;
}
.target__heading--circle::after {
  content: "";
  position: absolute;
  left: -8%;
  transform: translateY(-8%);
  width: 100%;
  height: 100px;
  background-image: url(../images/icon/handdrawn-circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.target__heading--line {
  position: relative;
}
.target__heading--line::after {
  display: inline-block;
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-image: url(../images/icon/handdrawn-uline.svg);
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .target__heading {
    padding: 2rem 0;
  }
}

/*—————————————————————————————————
point
—————————————————————————————————*/
.inner.point__inner {
  position: relative;
  width: min(95%, 1200px);
  margin: 6rem auto 0;
}
.point__scroll {
  position: absolute;
  top: -6%;
  left: 50%;
}
.point__scroll--line {
  height: clamp(12.5rem, 10.682rem + 9.09vw, 17.5rem);
  z-index: 3;
}
.point__scroll--line:before {
  -webkit-animation: scrollBorder 3s infinite;
  animation: scrollBorder 3s infinite;
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 1px;
  background: var(--light-green);
  z-index: 2;
}
.point__scroll--line:after {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 1px;
  background: #d6b473;
}
@keyframes scrollBorder {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
.point__scroll--star {
  position: absolute;
  margin-top: 2.5rem;
  transform: translateX(calc(-50% + 1px));
  background-image: url(../images/icon/point-star.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5rem;
  height: 1.5rem;
}
.point__wrap {
  border: 1px solid var(--green);
  border-radius: clamp(12.5rem, 3.409rem + 45.45vw, 37.5rem);
  background: linear-gradient(
    15deg,
    rgba(127, 186, 170, 0.15) 0%,
    rgba(216, 243, 239, 0.15) 100%
  );
}
.point__list {
  position: relative;
  padding: 10rem clamp(1.75rem, -0.341rem + 10.45vw, 7.5rem);
}
.point__list__item {
  display: flex;
  flex-direction: column;
}
.point__list__item:nth-child(n + 2) {
  padding-top: 6rem;
}
.point__list__item:nth-child(2n) .point__photo {
  margin-left: auto;
}
.point__list__item__desc {
  position: relative;
}
.point__list__item__image {
  position: relative;
}
.point__photo {
  width: 70%;
}
.point__list__item__content {
  display: flex;
  flex-direction: column;
}
.point__heading {
  position: absolute;
  top: -10rem;
  right: 0;
  line-height: 1.5;
}
.point__list__item:nth-child(n + 2) .point__heading {
  bottom: -30%;
}
.point__num {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10%;
  color: var(--green);
  line-height: 1;
}
.point__list__item:nth-child(2n) .point__num {
  justify-content: flex-start;
  padding-left: 10%;
}
.point__heading .en {
  writing-mode: vertical-rl;
  font-size: 1.5rem;
  font-family: var(--jp-font);
  font-weight: 100;
  letter-spacing: 0.1em;
}
.point__heading .num {
  font-size: 6rem;
  font-weight: 100;
}
.point__title {
  margin-top: 1rem;
  font-size: clamp(1.375rem, 1.102rem + 1.36vw, 2.125rem);
  font-family: var(--jp-mincho);
}
.point__text {
  padding-top: 3rem;
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
}
.point__list__item:nth-child(n + 2) .point__text {
  padding-top: 7rem;
}
.point__list__item:last-of-type .btn__link.point__btn:before {
  left: 10%;
  width: clamp(1.375rem, 1.239rem + 0.68vw, 1.75rem);
  height: clamp(1.375rem, 1.239rem + 0.68vw, 1.75rem);
  transform: translate(-50%, -50%);
  background-image: url(../images/icon/calendar-white.svg);
}
.point__message {
  width: clamp(10rem, 5.455rem + 22.73vw, 22.5rem);
  margin: auto;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .inner.point__inner {
    margin: 7rem auto 0;
  }
  .point__list {
    padding-top: 20rem;
    padding-bottom: 12rem;
  }
  .point__list__item {
    align-items: center;
  }
  .point__list__item:nth-child(n + 2) {
    padding-top: 7rem;
  }
  .point__list__item:nth-of-type(2) .point__list__item__content {
    gap: 5rem;
  }
  .point__list__item__content {
    flex-direction: row-reverse;
    align-items: center;
    gap: 2rem;
  }
  .point__list__item:nth-of-type(2) .point__list__item__content {
    flex-direction: row;
  }
  .point__list__item__image {
    width: 45%;
  }
  .point__photo {
    width: 100%;
    max-width: 400px;
  }
  .point__list__item:nth-child(2n) .point__photo {
    margin-left: 0;
  }
  .point__list__item__desc {
    width: 55%;
  }
  .point__heading {
    position: static;
  }
  .point__num {
    justify-content: flex-start;
  }
  .point__list__item:nth-child(2n) .point__num {
    padding-left: 0;
  }
  .point__title {
    margin-top: 2rem;
  }
  .point__text {
    padding-top: 2rem;
  }
  .point__list__item:nth-child(n + 2) .point__text {
    padding-top: 2rem;
  }
  .point__btn {
    margin: 80px auto 0;
  }
}

/*—————————————————————————————————
info
—————————————————————————————————*/
.info__contents {
  position: relative;
  padding-top: 6rem;
}
.info__bgslide {
  display: flex;
  overflow: hidden;
}
.info__bgslide__item {
  display: flex;
  animation: infoSlider 40s infinite linear 0.5s both;
}
.info__bgslide__item__box {
  width: clamp(12.5rem, 5.682rem + 34.09vw, 31.25rem);
  margin-left: 1.25rem;
}
.info__bgslide__item .image {
  border-radius: 10px;
  aspect-ratio: 1 / 1;
}
@keyframes infoSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.info__desc {
  width: 80%;
  margin: 2rem auto 0;
}
.info__desc__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0;
  background: #fff;
}
.info__heading {
  line-height: 1;
  color: var(--light-green);
}
.info__heading .en {
  font-size: clamp(3rem, 2.682rem + 1.59vw, 3.875rem);
  font-weight: 400;
}
.info__heading .jp {
  padding-top: 0.5rem;
  display: block;
  font-size: 1rem;
  color: var(--main-text-color);
}
.info__heading .txt_lg {
  font-size: 3rem;
}
.info__text {
  padding-top: 2rem;
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
}
.info__video {
  width: min(80%, 1100px);
  margin: auto;
  padding-top: 4rem;
}
.info__heading_sub {
  position: relative;
  text-align: center;
}
.info__heading_sub .text {
  padding: 0 clamp(1rem, 0.273rem + 3.64vw, 3rem);
  font-size: clamp(1.25rem, 0.886rem + 1.82vw, 2.25rem);
  font-weight: normal;
}
.info__heading_sub::before,
.info__heading_sub::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 60%;
  width: 1px;
  background-color: var(--main-text-color);
}
.info__heading_sub::before {
  transform: translateY(-50%) rotate(-30deg);
}
.info__heading_sub::after {
  transform: translateY(-50%) rotate(30deg);
}
.info__video_iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
}
@media (min-width: 1024px) {
  .info__desc {
    position: absolute;
    top: 0;
    left: 10%;
    width: 100%;
    height: 100%;
  }
  .info__desc__wrap {
    max-width: 540px;
    padding: 2.5rem;
    text-align: center;
  }
  .info__video {
    padding-top: 8rem;
  }
}

/*—————————————————————————————————
reserve
—————————————————————————————————*/
.reserve {
  position: relative;
  color: var(--white);
  border-radius: 40px;
  background: linear-gradient(
    to bottom right,
    #5b736f 0%,
    #295b5a 34%,
    #104847 100%
  );
}
.reserve::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg-noise.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.reserve__inner {
  max-width: 900px;
  margin-top: 15rem;
}
.reserve__photo {
  position: absolute;
  right: 0;
  width: min(70%, 700px);
  transform: translateY(-50%);
  z-index: 1;
}
.reserve__photo .image {
  border: 1px solid var(--green);
  border-right: none;
  border-radius: 200px 0 0 200px;
}
.reserve .inner {
  padding: 240px 0 120px;
}
.reserve__text_bg {
  position: absolute;
  top: 1%;
}
.reserve__text_scroll {
  font-weight: 100;
  font-size: clamp(7.5rem, 6.136rem + 6.82vw, 11.25rem);
  color: rgba(233, 242, 247, 0.3);
}
.reserve__list__heading__content {
  padding-top: 1rem;
}
.reserve__heading {
  font-weight: normal;
}
.reserve__heading .en {
  letter-spacing: 0.03em;
  margin-left: 0.5rem;
}
.reserve__heading .dot {
  background-color: #e9f2f7;
}
.reserve__heading .jp {
  display: block;
  font-family: var(--jp-mincho);
  font-size: 1.75rem;
}
.reserve__text {
  padding-top: 7%;
}
.reserve__list__heading {
  padding-top: 10%;
  line-height: 1;
  font-weight: 400;
}
.reserve__list__heading .en {
  font-size: clamp(2rem, 1.273rem + 3.64vw, 4rem);
}
.reserve__list__heading .jp {
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
}
.reserve__text {
  font-size: 18px;
}
.btn__link.reserve__btn {
  margin-top: 1rem;
  color: var(--green);
  background-color: #ece3d9;
}
.btn__link.reserve__btn::before {
  left: 10%;
}
.btn__link.reserve__btn:first-of-type:before {
  width: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
  height: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
  background-image: url(../images/icon/coupon.svg);
}
.btn__link.reserve__btn:last-of-type:before {
  width: clamp(1.375rem, 1.239rem + 0.68vw, 1.75rem);
  height: clamp(1.375rem, 1.239rem + 0.68vw, 1.75rem);
  transform: translate(-50%, -50%);
  background-image: url(../images/icon/calendar-green.svg);
}
.btn__link.reserve__btn::after {
  background-image: url(../images/icon/arrow-green.svg);
}
.btn__link--reserve {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  font-weight: 500;
}
.btn__link--reserve .txt_lg {
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
}
@media (min-width: 1024px) {
  .reserve {
    margin-top: 20rem;
  }
  .reserve__desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .reserve__list__heading {
    text-align: center;
  }
  .reserve__list__heading__content {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
  }
}

/*—————————————————————————————————
footer
—————————————————————————————————*/
.footer {
  position: sticky;
  bottom: 0;
  z-index: 1;
  background-image: url(../images/footer-bg-sm.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.footer__inner {
  padding: 4rem 0 1rem;
  width: min(90%, 1100px);
}
.footer__content {
  position: relative;
}
.footer_logo {
  display: block;
  margin: auto;
  width: clamp(10rem, 7.5rem + 12.5vw, 17.5rem);
}
.footer__top_catch {
  margin-top: 1rem;
  text-align: center;
  font-size: clamp(0.875rem, 0.708rem + 0.83vw, 1.375rem);
  line-height: 1.5;
}
.footer__contact {
  width: 100%;
  max-width: 600px;
  margin: 1.5rem auto 0;
  padding: 1rem 1.5rem 1.5rem;
  border: 1px solid var(--light-green);
  background-color: rgba(74, 130, 126, 0.05);
  border-radius: 16px;
}
.footer__contact__heading {
  line-height: 1;
  color: var(--light-green);
}
.footer__contact__heading .dot {
  background-color: var(--light-green);
}
.footer__contact__heading .en {
  margin-left: 0.5rem;
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  letter-spacing: 0.03em;
}
.footer__contact_text {
  margin-top: 0.5rem;
  font-size: clamp(0.875rem, 0.739rem + 0.68vw, 1.25rem);
  line-height: 1.5;
}
.footer__contact_tel {
  margin-top: 0.5rem;
  line-height: 1.5;
}
.footer__contact_tel .num {
  display: inline-block;
  color: var(--light-green);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.footer__contact_tel .en {
  color: var(--light-green);
  font-weight: 600;
}
.footer__contact_tel .jp {
  display: block;
  font-family: var(--jp-mincho);
  color: var(--main-text-color);
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}
.footer__link {
  padding-top: 2rem;
}
.btn__link.contact__btn {
  margin-top: 1rem;
  color: var(--white);
  background-color: var(--green);
}
.btn__link.contact__btn:first-of-type:before {
  left: 6%;
  width: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
  height: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
  background-image: url(../images/icon/line.svg);
}
.btn__link.contact__btn::before {
  left: 10%;
  width: clamp(1.438rem, 1.119rem + 1.59vw, 2.313rem);
  background-image: url(../images/icon/line.svg);
  transform: translateY(-50%);
}
.btn__link--contact {
  font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
}
.btn__link.footer_btn {
  display: block;
  margin: 0 auto;
  height: 40px;
  color: var(--green);
  background-color: transparent;
  border: 1px solid var(--light-green);
  width: clamp(12.5rem, 11.591rem + 4.55vw, 15rem);
}
.btn__link.footer_btn::before {
  left: 7%;
  width: clamp(1.438rem, 1.119rem + 1.59vw, 2.313rem);
  background-image: url(../images/icon/insta-green.svg);
  transform: translateY(-50%);
}
.btn__link.footer_btn:nth-of-type(2) {
  margin-top: 0.75rem;
}
.btn__link.footer_btn:nth-of-type(2):before {
  background-image: none;
}
.btn__link.footer_btn::after {
  background-image: url(../images/icon/arrow-green-diagonal.svg);
  transform: translateY(-50%);
}
.footer_btn__link {
  font-size: clamp(0.938rem, 0.869rem + 0.34vw, 1.125rem);
}
.footer_btn__link::after {
  right: 7%;
}
.backtoptop {
  display: block;
  margin: 2rem auto 0;
  width: clamp(5.75rem, 5.114rem + 3.18vw, 7.5rem);
  cursor: pointer;
}
.copyright {
  display: block;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.625rem;
}
@media (min-width: 768px) {
  .footer {
    background-image: url(../images/footer-bg-lg.png);
    background-repeat: right;
  }
  .footer__contact_text {
    margin-top: 1rem;
  }
}
@media (min-width: 1024px) {
  .footer__inner {
    padding-bottom: 8rem;
  }
  .footer__content__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 4rem;
  }
  .footer__contact {
    padding: 2.5rem 2rem;
    margin: 1.5rem 0 0 auto;
  }
  .footer__contact_tel {
    margin-top: 1rem;
  }
  .btn__link.contact__btn {
    margin-top: 2rem;
  }
  .footer__top_catch {
    text-align: left;
  }
  .footer__link {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .backtoptop {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 4rem auto 0;
  }
  .copyright {
    margin: 4rem auto 0;
    font-size: 1rem;
  }
}
