@charset "UTF-8";
:root {
  --viewport-width: min(100vw, 550px);
  --b: calc(var(--viewport-width) / 55);
}

html {
  background: #fff;
}

body {
  position: relative;
  z-index: 0;
  min-height: 100svh;
  box-shadow: 0 0 99px rgba(0, 0, 0, 0.15);
}

main {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

* {
  color: #1d363e;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: max(2.2rem, 18px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
}

a > *,
button > * {
  pointer-events: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

a,
button {
  display: block;
}

span {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

span.attention {
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

span.attention > * {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
span.attention > * > * {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.btn__icon {
  width: max(5rem, 50px);
  margin: 0 auto;
  margin-bottom: max(0.4rem, 4px);
}
.btn__text {
  display: grid;
  align-items: center;
  grid-template-columns: auto 4%;
  width: 85%;
  max-width: 300px;
  margin: 0 auto;
  padding: max(1rem, 7px);
  overflow: hidden;
  border-bottom: max(0.2rem, 2px) solid #000000;
}
.btn__text--text {
  color: #000;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
}
.btn__text--text span {
  font-size: max(1.9rem, 19px);
}
.btn__text--arrow {
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
}
.btn__text--arrow svg {
  min-width: max(1rem, 10px);
}

.footer__logo {
  text-align: center;
  background: linear-gradient(0deg, #1d363e 50%, #F4F4F4 50%);
}
.footer__logo img {
  width: 26%;
}

.footer {
  background: #1d363e;
}
.footer__wrapper {
  padding-top: max(5.6rem, 56px);
  padding-bottom: max(1.7rem, 17px);
}
.footer h2 {
  color: #7ABCAA;
  font-size: max(2.4rem, 24px);
  text-align: center;
  line-height: 1.5;
  margin-bottom: max(2.7rem, 27px);
}
.footer h2 span {
  font-size: max(1.5rem, 15px);
  display: block;
}
.footer p {
  font-size: max(1.4rem, 14px);
  color: #fff;
  font-weight: 500;
  margin-bottom: max(1rem, 10px);
  text-align: center;
}
.footer__copyright {
  text-align: center;
  margin-top: max(6.3rem, 63px);
}
.footer__copyright small {
  color: #B2B2B2;
  font-size: max(1.3rem, 12px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.fixedBanner {
  --fs: max(2.5rem, 20px);
  --lh: 1.5;
  --ls: 0;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  gap: max(1rem, 10px);
  top: 0;
  left: 50%;
  right: 0;
  width: min(100%, 550px);
  height: 100vh;
  pointer-events: none;
  z-index: 100;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  transform: translateX(-50%);
}
.fixedBanner.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.fixedBanner__top {
  position: absolute;
  width: 15%;
  top: max(1rem, 9px);
  left: max(1rem, 9px);
  pointer-events: auto;
}
.fixedBanner__bottom {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: auto;
  margin: 0 max(0.8rem, 8px) max(1.5rem, 15px);
  gap: max(0.5rem, 5px);
}
.fixedBanner__bottom__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  padding: max(1.5rem, 10px) 0;
  background: linear-gradient(45deg, #FFB100, #FF9300);
  border-radius: 50px;
  border: max(0.3rem, 3px) solid #FFC860;
}
.fixedBanner__bottom__button:not(:first-of-type) {
  border-left: max(0.2rem, 2px) solid #fff;
}
.fixedBanner__bottom__text {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: max(1rem, 5px);
}
.fixedBanner__bottom__text .imgBox {
  align-self: end;
  flex-shrink: 0;
  width: auto;
  height: 1lh;
}
.fixedBanner__bottom__text .imgBox img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
.fixedBanner__bottom__text span {
  color: #fff;
  font-size: var(--fs);
  font-weight: var(--fw);
  line-height: var(--lh);
  letter-spacing: var(--ls);
}
.fixedBanner__bottom__arrow {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: auto;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  padding: max(1.5rem, 5px);
}
.fixedBanner__bottom__arrow svg {
  width: 60%;
  height: auto;
}

.popup {
  display: none;
  /* 最初は非表示 */
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 550px;
  height: 100%;
  background: rgba(244, 244, 244, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 200;
}
.popup-content {
  background: #fff;
  border-radius: 8px;
  width: 90%;
  text-align: center;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  position: absolute;
  border-radius: max(2rem, 20px);
}
.popup-content .title {
  background-color: #03B188;
  color: #fff;
  font-size: max(3.3rem, 25px);
  font-weight: 700;
  padding: max(1.5rem, 15px);
  border-radius: max(2rem, 20px) max(2rem, 20px) 0 0;
}
.popup-content .popupText {
  display: none;
  margin-top: max(4rem, 20px);
}
.popup-content .popupText.active {
  display: block;
}
.popup-content .popupText .text {
  font-size: max(1.9rem, 14px);
  font-weight: 800;
  margin-bottom: max(2.4rem, 20px);
}
.popup-content .popupText .text .green {
  color: #019874;
}
.popup-content .popupText .text a {
  font-size: inherit;
  font-weight: inherit;
  display: inline;
  border-bottom: 1px solid #000;
}
.popup-content .abox {
  display: flex;
  gap: max(0.6rem, 6px);
  justify-content: center;
  width: 90%;
  margin: 0 auto;
  padding-bottom: max(5.4rem, 50px);
}
.popup-content .abox > * {
  width: 100%;
  border-radius: 100px;
  border: max(0.2rem, 2px) solid #00B188;
  padding: max(1rem, 5px) 0;
}
.popup-content .abox p {
  color: #00B188;
}
.popup-content .abox a {
  background-color: #00B188;
  color: #fff;
}
.popup-content .close {
  cursor: pointer;
  float: right;
  font-size: 20px;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  background: #5BC3A3;
  transform: translate(50%, -50%);
  width: max(4.7rem, 47px);
  aspect-ratio: 1/1;
  background: #5BC3A3;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transform: translate(40%, -40%);
}

.hero__bg {
  position: absolute;
  z-index: -1;
  top: max(6.75rem, 67.5px);
}
.hero__wrapper {
  padding-top: max(3rem, 30px);
}
.hero__title {
  position: relative;
  text-align: center;
  font-size: max(2.1rem, 21px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: max(2.1rem, 21px);
  color: #FFFFFF;
}
.hero__logo {
  width: 54%;
  margin: 0 auto;
}

.handy__wrapper {
  padding-bottom: max(6.5rem, 50px);
}
.handy__title {
  position: relative;
  font-size: max(3.2rem, 24px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-left: 5%;
}
.handy__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: max(1rem, 8px);
  height: 100%;
  background: #1d363e;
}
.handy__list {
  display: grid;
  gap: max(1.4rem, 14px);
  margin-top: max(2.6rem, 26px);
}
.handy__item {
  display: flex;
  text-align: center;
  padding: max(3rem, 20px) max(2rem, 10px);
  border-radius: max(2rem, 15px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  gap: max(1.6rem, 16px);
  background: linear-gradient(0deg, #D0D0D0, #FFFFFF 30%);
  border: max(0.3rem, 3px) solid #fff;
}
.handy__item.green {
  --baseColor: #00B188;
}
.handy__item h3 {
  display: inline-block;
  width: max(80%, 300px);
  padding: max(1.3rem, 10px) 5%;
  margin-bottom: min(-2rem, -20px);
  background: var(--baseColor);
  border-radius: max(2rem, 20px);
  color: #fff;
  font-size: max(3rem, 22px);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  overflow: hidden;
  transform: translateY(-55%);
}
.handy__item__img {
  width: 30%;
  display: flex;
  align-items: center;
}
.handy__item__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.handy__item__link {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 17.5%;
  width: 100%;
  gap: max(1rem, 10px);
}
.handy__item__link:not(:first-of-type) {
  position: relative;
  margin-top: max(3rem, 10px);
}
.handy__item__link__text {
  display: grid;
  align-items: center;
  gap: max(1rem, 15px);
}
.handy__item__link__text .imgBox {
  width: auto;
  height: 2lh;
}
.handy__item__link__text .imgBox img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
.handy__item__link__text hgroup {
  text-align: left;
}
.handy__item__link__text hgroup h4 {
  font-size: max(2.8rem, 19px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.handy__item__link__text hgroup p {
  color: #748388;
  font-size: max(1.8rem, 14px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
.handy__item__link__arrow {
  display: grid;
  place-items: center;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--baseColor);
  overflow: hidden;
}
.handy__item__link__arrow svg {
  width: 30%;
  height: auto;
  margin-top: 7%;
  transform: rotate(90deg);
}

.preface {
  position: relative;
}
.preface__wrapper {
  position: relative;
  margin-top: max(17rem, 35px);
  margin-bottom: max(5rem, 50px);
}
.preface__band {
  color: #fff;
  font-size: max(3.6rem, 24px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  padding: max(2.5rem, 20px) 5%;
  background: #1d363e;
}
.preface__title {
  display: grid;
  text-align: center;
  gap: max(1.5rem, 10px);
  margin-bottom: max(2.4rem, 24px);
  position: relative;
}
.preface__title p {
  font-size: max(1.6rem, 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.preface__title h2 {
  color: #00B188;
  font-size: max(4.6rem, 46px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.preface__title--bg {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.preface__text {
  text-align: center;
}
.preface__text h3 {
  font-size: max(2.8rem, 28px);
  color: #00B188;
  line-height: 1.54;
}
.preface__text p {
  margin-top: max(4.5rem, 40px);
  font-size: max(1.6rem, 16px);
}
.preface__text p .green {
  color: #00B188;
}
.preface__accordion {
  text-align: center;
  margin-top: max(4rem, 20px);
}
.preface__accordion .accordion__header {
  background-color: #00B188;
  color: #fff;
  padding: max(1.3rem, 8px) 5%;
  border-radius: max(5rem, 50px);
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  line-height: 1;
  gap: max(1rem, 10px);
  align-items: center;
  font-size: max(1.8rem, 14px);
}
.preface__accordion .accordion__header .arrow {
  line-height: 0.9;
}
.preface__accordion .accordion__header .arrow svg {
  transform: rotate(90deg);
}
.preface__accordion .accordion__inner {
  display: none;
}
.preface__accordion .accordion__inner p {
  text-align: center;
  margin-top: max(4rem, 20px);
}
.preface__bgbox * {
  position: absolute;
}
.preface__bgbox--bg1 {
  width: 24%;
  top: 17%;
  left: 0;
}
.preface__bgbox--bg2 {
  width: 14%;
  top: 50%;
  right: 0;
}
.preface__bgbox--bg3 {
  width: 15%;
  top: 76%;
  left: 0;
}

.online {
  background-color: #F4F4F4;
}
.online__wrapper {
  position: relative;
  padding-top: max(3rem, 30px);
  padding-bottom: max(11.1rem, 100px);
}
.online__title {
  display: grid;
  gap: max(1rem, 10px);
}
.online__title h2 {
  position: relative;
  font-size: max(3.2rem, 24px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.online__title p {
  font-size: max(2rem, 18px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.online__accordion {
  text-align: center;
  margin-top: max(1.2rem, 12px);
}
.online__accordion .accordion__header {
  background: linear-gradient(0deg, #E2E2E2, #FFFFFF 50%);
  padding: max(1.3rem, 8px) 5%;
  border-radius: 100px;
  border: max(0.4rem, 3px) solid #fff;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  line-height: 1;
  gap: max(1rem, 10px);
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.online__accordion .accordion__header__box {
  display: inline-flex;
  align-items: center;
  gap: max(0.8rem, 8px);
}
.online__accordion .accordion__header .icon {
  width: max(4rem, 10px);
  display: flex;
}
.online__accordion .accordion__header h3 {
  font-size: max(1.9rem, 19px);
  font-weight: 500;
}
.online__accordion .accordion__header .arrow {
  line-height: 0.9;
}
.online__accordion .accordion__header .arrow svg {
  transform: rotate(90deg);
}
.online__accordion .accordion__inner {
  display: none;
  padding: max(1rem, 5px) 5% max(2rem, 10px);
}
.online__accordion .accordion__inner h4 {
  font-size: max(1.8rem, 18px);
  padding: max(0.5rem, 8px) 0;
  color: #00B188;
}
.online__accordion .accordion__inner a {
  display: flex;
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  text-align: start;
  justify-content: space-between;
  align-items: center;
  margin-bottom: max(0.5rem, 5px);
  padding: max(1rem, 8px) max(0.5rem, 4px) max(1rem, 8px) max(1.3rem, 13px);
  border-radius: max(5rem, 50px);
  line-height: 1.5;
}
.online__accordion .accordion__inner a:nth-child(even) {
  background: #FFFFFF;
}
.online__accordion .accordion__inner a:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.03);
}
.online__accordion .accordion__inner a .arrow {
  width: max(3.4rem, 34px);
  height: 100%;
  min-width: 35px;
  aspect-ratio: 1/1;
  background: #00B188;
  border-radius: 50%;
  display: flex;
  justify-content: center;
}
.online__accordion .accordion__inner a .arrow svg {
  width: 30%;
  margin-left: 5%;
}
.online__button {
  margin-top: max(5rem, 40px);
}
.online__button.reservation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 80%;
  margin: max(5rem, 40px) auto 0;
  padding: max(1.5rem, 10px) 0;
  background: #00B188;
  border-radius: 50px;
  border: max(0.3rem, 3px) solid #20a98a;
}

.convenience {
  background-color: #F4F4F4;
}
.convenience__wrapper {
  padding-bottom: max(11.1rem, 100px);
}
.convenience__tag {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: max(0.5rem, 5px);
}
.convenience__tag__item {
  display: grid;
  place-items: center;
  padding: max(1rem, 10px);
  background: #fff;
  border-radius: 50px;
  border: max(0.4rem, 3px) solid #00B188;
  overflow: hidden;
}
.convenience__tag__item span {
  font-size: max(1.8rem, 12px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.convenience__list {
  display: grid;
  gap: max(1.1rem, 11px);
  padding: max(4.5rem, 45px) 5%;
  margin-top: max(3.5rem, 25px);
  background: #fff;
  border-radius: max(2rem, 20px);
  overflow: hidden;
  position: relative;
}
.convenience__list h3 {
  color: #00B188;
  font-size: max(1.9rem, 19px);
  text-align: center;
}
.convenience__item {
  position: relative;
  display: grid;
  align-items: baseline;
  grid-template-columns: auto 1fr;
  gap: max(1rem, 5px);
}
.convenience__item::before {
  content: "";
  position: relative;
  display: inline-block;
  width: max(1.4rem, 14px);
  height: auto;
  aspect-ratio: 1/1;
  background: #4E4E4E;
  border-radius: max(0.4rem, 4px);
}
.convenience__item p {
  font-size: max(1.6rem, 16px);
}
.convenience__list2 {
  margin-top: max(2.9rem, 29px);
}
.convenience__list2 h2 {
  font-size: max(1.8rem, 18px);
  border: max(0.1rem, 1px) solid #000;
  text-align: center;
  border-radius: 100px;
  margin-bottom: max(1.6rem, 16px);
}
.convenience__item2 {
  position: relative;
  display: grid;
  align-items: baseline;
  grid-template-columns: auto 1fr;
  gap: max(1rem, 5px);
}
.convenience__item2::before {
  content: "";
  position: relative;
  display: inline-block;
  width: max(0.6rem, 6px);
  height: auto;
  aspect-ratio: 1/1;
  background: #838383;
  border-radius: 50%;
}
.convenience__item2 p {
  font-size: max(1.4rem, 14px);
  font-weight: 500;
}
.convenience__kome {
  margin-top: max(2.2rem, 22px);
}
.convenience__kome p {
  font-size: max(1.4rem, 14px);
  font-weight: 500;
  color: #4E4E4E;
}
.convenience__deco {
  position: absolute;
  right: 0;
  bottom: 0;
}
.convenience__button {
  margin-top: max(6.5rem, 65px);
}
.convenience__button .btn__text {
  max-width: 190px;
}