@charset "UTF-8";
.p-reservation {
  padding-top: 77px;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  background: #f4fbf8;
}

.p-reservation .l-container {
  width: min(1200px, 100% - 48px);
}

.p-reservation__head {
  position: relative;
  margin-bottom: 51px;
  text-align: center;
}

.p-reservation__enLabel {
  display: inline-block;
  padding-top: 0;
  padding-right: 9px;
  padding-bottom: 0;
  padding-left: 9px;
  background: var(--color-base-soft);
}

.p-reservation__jaLabel {
  margin-top: 4px;
}

.p-reservation__cardTitle {
  padding-bottom: 35px;
}

.p-reservation__head::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-mint-mid);
  z-index: -1;
}

.p-reservation__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.p-reservation__card {
  width: 100%;
  min-height: 221px;
  display: grid;
  grid-template-columns: 1fr 180px;
  align-items: center;
  min-height: 166px;
  padding-block: 48px 34px;
  padding-inline: 51px 34px;
  border-radius: 10px;
}

.p-reservation__card--mint {
  background: linear-gradient(90deg, #fd8a71 0%, #fdbc71 100%);
}

.p-reservation__card--orange {
  background: linear-gradient(90deg, #4cc5ad 0%, #87dba3 100%);
}

.p-reservation__cardBody {
  padding-right: 28px;
}

.p-reservation__cardCta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 46px;
  align-items: center;
  gap: 10px;
  padding-left: 53px;
}

.p-reservation__cardCta::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  width: 1px;
  background: rgba(255, 255, 255, 0.45);
  top: -64px;
  bottom: -54px;
}

.p-reservation__cardCtaIcon {
  width: 40px;
  height: 40px;
  position: relative;
}

.p-reservation__cardCtaIcon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center/contain no-repeat;
  pointer-events: none;
}

.p-reservation__card--mint .p-reservation__cardCtaIcon::before {
  background-image: url("../images/icon_top-arrow-right-orange.svg");
}

.p-reservation__card--orange .p-reservation__cardCtaIcon::before {
  background-image: url("../images/icon_top-arrow-right-mint.svg");
}

@media (hover: hover) and (pointer: fine) {
  .p-reservation__card {
    transform-origin: center;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
    will-change: transform;
    border: 1px solid transparent;
  }
  .p-reservation__card:hover {
    transform: scale(1.015);
  }
  .p-reservation__card--mint:hover {
    background: var(--color-paper);
    border-color: #fd8a71;
  }
  .p-reservation__card--orange:hover {
    background: var(--color-paper);
    border-color: #4cc5ad;
  }
  .p-reservation__card--mint:hover .p-reservation__cardCta::before {
    background: rgba(253, 138, 113, 0.45);
  }
  .p-reservation__card--orange:hover .p-reservation__cardCta::before {
    background: rgba(76, 197, 173, 0.45);
  }
  .p-reservation__card:hover p {
    color: inherit;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-reservation__card {
    transition: none;
    transform: none;
  }
  .p-reservation__card:hover {
    transform: none;
  }
}
@media screen and (max-width: 1200px) {
  .p-reservation__card {
    grid-template-columns: 1fr 160px;
    padding-block: 36px 30px;
    padding-inline: 36px 26px;
  }
  .p-reservation__cardBody {
    padding-right: 18px;
  }
  .p-reservation__cardCta {
    padding-left: 28px; /* CTA文字列の幅を確保し「予約をする」を1行に収める */
  }
  .p-reservation__cardCta::before {
    left: 14px;
  }
}
@media screen and (max-width: 900px) {
  .p-reservation__cards {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .p-reservation__card {
    grid-template-columns: 1fr 160px;
    padding-top: 30px;
    padding-right: 28px;
    padding-bottom: 30px;
    padding-left: 28px;
  }
}
@media screen and (max-width: 768px) {
  .p-reservation {
    padding-top: 56px;
    padding-right: 0;
    padding-bottom: 64px;
    padding-left: 0;
  }
  .p-reservation__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/* 500px以下は左右→上下（body の下に CTA を積む） */
@media screen and (max-width: 500px) {
  .p-reservation__card {
    grid-template-columns: 1fr;
    padding-top: 28px;
    padding-right: 24px;
    padding-bottom: 30px;
    padding-left: 24px;
  }
  .p-reservation__cardBody {
    padding-right: 0;
  }
  .p-reservation__cardCta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    padding-left: 0;
    padding-top: 16px;
  }
  /* 縦の区切り線 → CTA上端の横線に */
  .p-reservation__cardCta::before {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }
  /* 横幅が広がるのでCTA文言は1行にする（PC用の<br>を無効化） */
  .p-reservation__cardCtaText br {
    display: none;
  }
}
.p-footer {
  padding-top: 80px;
  padding-right: 0;
  padding-bottom: 54px;
  padding-left: 0;
  background: #f4fbf8;
}

.p-footer__inner {
  width: min(1200px, 100% - 48px);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0 67px;
  padding-top: 103px;
  border-top: 1px solid var(--color-mint-mid);
}

.p-footer__profileLogo {
  display: inline-flex;
}

.p-footer__profileLogo img {
  width: auto;
  height: 50px;
}

.p-footer__address {
  margin-top: 18px;
}

.p-footer__tel {
  margin-top: 4px;
}

.p-footer__links {
  margin-top: -2px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.p-footer__groupTitle,
.p-footer__singleLink p {
  padding-bottom: 6px;
  border-bottom: 1px solid #173b35;
}

.p-footer__groupTitle + .p-footer__link,
.p-footer__group .p-footer__link + .p-footer__link {
  margin-top: 15px;
}

.p-footer__group--single .p-footer__singleLink + .p-footer__singleLink {
  margin-top: 31px;
}

.p-footer__link {
  display: block;
}

.p-footer__singleLink {
  display: block;
}

.p-footer__link p {
  cursor: pointer;
}

.p-footer__singleLink p {
  cursor: pointer;
}

.p-footer__external {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 0%;
  border-bottom: 1px solid #173b35;
}

.p-footer__external p {
  position: relative;
  display: inline-block;
  padding-bottom: 0;
  padding-right: 18px;
  border-bottom: 0;
}

.p-footer__external p::after {
  position: absolute;
  top: 5px;
  right: 0;
  width: 10px;
  height: 10px;
  background: #173b35;
  content: "";
  opacity: 0.5;
  mask-image: url("../images/icon_com-external-link.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("../images/icon_com-external-link.svg");
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}

.p-footer__bottom {
  width: min(1200px, 100% - 48px);
  margin-top: 120px;
  padding-top: 27px;
  border-top: 1px solid rgba(80, 168, 196, 0.3);
}

@media (hover: hover) and (pointer: fine) {
  .p-footer__profileLogo,
  .p-footer__tel a,
  .p-footer__link,
  .p-footer__singleLink {
    transform-origin: center;
    transition: transform 0.25s ease, color 0.25s ease, opacity 0.25s ease;
    will-change: transform;
  }
  .p-footer__profileLogo:hover,
  .p-footer__tel a:hover,
  .p-footer__link:hover,
  .p-footer__singleLink:hover {
    transform: scale(1.05);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-footer__profileLogo,
  .p-footer__tel a,
  .p-footer__link,
  .p-footer__singleLink {
    transition: none;
    transform: none;
  }
  .p-footer__profileLogo:hover,
  .p-footer__tel a:hover,
  .p-footer__link:hover,
  .p-footer__singleLink:hover {
    transform: none;
  }
}
@media screen and (max-width: 1200px) {
  .p-footer__inner {
    grid-template-columns: 220px 1fr;
    gap: 0 40px;
    padding-top: 72px;
  }
  .p-footer__links {
    gap: 24px;
  }
  .p-footer__bottom {
    margin-top: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .p-footer {
    padding-top: 72px;
  }
  .p-footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 56px;
  }
  /* 1カラム化したらロゴ・住所ブロックを中央揃え */
  .p-footer__profile {
    text-align: center;
  }
  .p-footer__profileLogo img {
    height: 46px;
    margin-inline: auto;
  }
  .p-footer__bottom {
    margin-top: 64px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 56px;
    padding-right: 0;
    padding-bottom: 32px;
    padding-left: 0;
  }
  .p-footer__bottom {
    margin-top: 46px;
  }
}
@media screen and (max-width: 400px) {
  .p-footer__links {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media screen and (max-width: 414px) {
  .p-footer__profileLogo img {
    height: 42px;
  }
  .p-footer__inner {
    gap: 40px;
    padding-top: 44px;
  }
  .p-footer__links {
    gap: 24px;
  }
  .p-footer__groupTitle,
  .p-footer__singleLink p {
    padding-bottom: 10px;
  }
  .p-footer__groupTitle + .p-footer__link,
  .p-footer__group .p-footer__link + .p-footer__link {
    margin-top: 12px;
  }
  .p-footer__group--single .p-footer__singleLink + .p-footer__singleLink {
    margin-top: 24px;
  }
  .p-footer__link p {
    padding-block: 4px;
  }
  .p-footer__bottom {
    margin-top: 40px;
  }
}
@media screen and (max-width: 375px) {
  .p-footer__profileLogo img {
    height: 40px;
  }
  .p-footer__inner,
  .p-footer__bottom {
    width: calc(100% - 40px);
  }
  .p-footer__links {
    gap: 22px;
  }
  .p-footer__groupTitle + .p-footer__link,
  .p-footer__group .p-footer__link + .p-footer__link {
    margin-top: 10px;
  }
}
