:root {
  --blue: #165e83;
  --orange: #ee7800;
  --ink: #222222;
  --white: #ffffff;
  --ph: #d9d9d9;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 64px;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

body {
  font-family: "Noto Serif JP", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  color: #222222;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: #ffffff;
}

.br-sp {
  display: none;
}
@media (max-width: 767px) {
  .br-sp {
    display: inline;
  }
}

.inner {
  width: min(1152px, 100% - 48px);
  margin-inline: auto;
}

.section {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
}
.section .inner::after,
.section .sub-inner::after {
  content: "";
  display: block;
  clear: both;
}

.sechead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .sechead {
    gap: 10px;
    margin-bottom: 48px;
  }
}
.sechead__jp {
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  color: #222222;
}
@media (max-width: 767px) {
  .sechead__jp {
    font-size: 22px;
  }
}
.sechead__en {
  font-family: "Moon Dance", cursive;
  font-weight: 400;
  font-size: 18px;
  color: #ee7800;
  line-height: 1;
}
.sechead--left {
  align-items: flex-start;
  text-align: left;
}
.sechead--onblue .sechead__jp {
  color: #ffffff;
}

.viewmore {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  float: right;
  margin-left: auto;
  margin-top: 64px;
}
@media (max-width: 767px) {
  .viewmore {
    margin-top: 40px;
  }
}
.viewmore {
  min-width: 119px;
  white-space: nowrap;
  padding-left: 8px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid #222222;
  margin-bottom: -0.5px;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0.7px;
  color: #222222;
  transition: color 0.3s, border-bottom-color 0.3s;
}
.viewmore:hover {
  color: #ee7800;
  border-bottom-color: #ee7800;
}
.viewmore:hover .viewmore__tri {
  transform: translateX(8px);
}
.viewmore__tri {
  width: 0;
  height: 0;
  flex-shrink: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #ee7800;
  transition: transform 0.3s;
}

.tag {
  display: inline-block;
  align-self: flex-start;
  padding: 2px 8px;
  background: #ffffff;
  outline: 1px solid #165e83;
  outline-offset: -1px;
  font-weight: 500;
  font-size: 12px;
  color: #165e83;
  line-height: normal;
}

.pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 40px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
}
.pill--blue {
  background: #165e83;
  transition: background 0.3s, color 0.3s;
}
.pill--blue:hover {
  background: #ffffff;
  color: #165e83;
}

.cards--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 767px) {
  .cards--3 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.card__thumb {
  aspect-ratio: 16/9;
  background: #d9d9d9;
}
.card--event .card__thumb {
  aspect-ratio: 1/1;
}
.card__body {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.card__lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card__title {
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #222222;
}
.card__text {
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  line-height: 1.75;
}
.card__text--clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__text--sen {
  line-height: 21px;
  color: rgba(34, 34, 34, 0.6);
}
.card__meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  line-height: normal;
}
.card__meta span {
  opacity: 0.6;
}
.card__meta--pin {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 1.75;
  opacity: 1;
}
.card__tagrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.card__label {
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  color: rgba(34, 34, 34, 0.6);
}
.card__date {
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
  color: #222222;
}
.card__quote {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #222222;
}

.ico-pin {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #ee7800;
}

.noposts {
  grid-column: 1/-1;
  width: 100%;
  padding: 56px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  color: rgba(34, 34, 34, 0.5);
  text-align: center;
}
@media (max-width: 767px) {
  .noposts {
    padding: 40px 0;
    font-size: 13px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.8);
}
@media (prefers-reduced-motion: reduce) {
  .header {
    transition: none;
  }
}
.header__inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
}
@media (max-width: 1000px) {
  .header__inner {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .header__inner {
    height: 64px;
    padding: 0 24px;
  }
}
.header__logo {
  display: block;
  flex-shrink: 0;
}
.header__logo img {
  display: block;
  width: 160px;
  height: auto;
}
@media (max-width: 767px) {
  .header__logo img {
    width: 140px;
  }
}

.hamburger {
  width: 56px;
  height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 9px;
}
.hamburger span {
  display: block;
  height: 2px;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.hamburger span:nth-child(1) {
  width: 40px;
  background: #165e83;
}
.hamburger span:nth-child(2) {
  width: 32px;
  background: #ee7800;
}
.hamburger.is-open span {
  width: 40px;
  background: #ee7800;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  transform: translateY(-5.5px) rotate(-45deg);
}
@media (prefers-reduced-motion: reduce) {
  .hamburger span {
    transition: none;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal[hidden] {
  display: none;
}
.modal.is-open {
  opacity: 1;
}
.modal__panel {
  background: #165e83;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  padding: 12px 64px 40px;
  transform: translateY(-12px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal.is-open .modal__panel {
  transform: translateY(0);
}
@media (max-width: 1000px) {
  .modal__panel {
    padding: 12px 32px 32px;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .modal__panel {
    padding: 4px 24px 32px;
    gap: 24px;
  }
}
.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.modal__logo {
  display: block;
  flex-shrink: 0;
}
.modal__logo img {
  display: block;
  width: 160px;
  height: auto;
}
@media (max-width: 767px) {
  .modal__logo img {
    width: 120px;
  }
}
.modal__close {
  flex-shrink: 0;
}
.modal__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  width: min(1312px, 100%);
  padding-inline: 24px;
}
@media (max-width: 1000px) {
  .modal__body {
    flex-direction: column;
    padding-inline: 0;
  }
}
@media (max-width: 767px) {
  .modal__body {
    gap: 40px;
    width: 100%;
    padding-inline: 11px;
  }
}
.modal__nav {
  display: flex;
  gap: 64px;
}
@media (max-width: 1000px) {
  .modal__nav {
    flex-wrap: wrap;
    gap: 24px 40px;
  }
}
@media (max-width: 767px) {
  .modal__nav {
    display: grid;
    grid-template-columns: 184px 100px;
    column-gap: 36px;
    row-gap: 32px;
    width: 320px;
  }
  .modal__nav .fcol:nth-child(1) {
    grid-area: 1/1;
  }
  .modal__nav .fcol:nth-child(2) {
    grid-area: 2/1;
  }
  .modal__nav .fcol:nth-child(3) {
    grid-area: 3/1;
  }
  .modal__nav .fcol:nth-child(4) {
    grid-area: 1/2;
  }
  .modal__nav .fcol:nth-child(5) {
    grid-area: 2/2;
  }
}
.modal .fcol__head,
.modal .fcol__list a,
.modal .fcol__flat a {
  color: #ffffff;
}
.modal .fcol__list li::before {
  background: #ffffff;
}
.modal .fcol__flat li {
  font-size: 14px;
}
.modal__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  flex-shrink: 0;
}
@media (max-width: 1000px) {
  .modal__side {
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .modal__side {
    align-items: stretch;
    gap: 40px;
    width: 100%;
  }
}
.modal__cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal__ctabtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 240px;
  height: 45px;
  padding: 10px 40px;
}
@media (max-width: 767px) {
  .modal__ctabtn {
    width: 100%;
    height: 50px;
  }
}
.modal__ctabtn {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.modal__ctabtn:hover {
  opacity: 0.85;
}
.modal__ctabtn--reserve {
  background: #ee7800;
  border: 1px solid #ee7800;
}
.modal__ctabtn--doc {
  background: #222222;
  border: 1px solid #222222;
}
.modal__ctabtn-tri {
  width: 0;
  height: 0;
  flex-shrink: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7.5px solid #ffffff;
}
.modal__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 16px;
  flex-shrink: 0;
}
@media (max-width: 1000px) {
  .modal__brand {
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .modal__brand {
    align-items: center;
    text-align: center;
    gap: 16px;
  }
}
.modal__addr {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.6px;
  color: #ffffff;
}
.modal__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0.9px;
  color: #ee7800;
  opacity: 0.8;
}
.modal__tel svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.modal__sns {
  display: flex;
  align-items: center;
  gap: 16px;
}
.modal__sns a {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__sns img {
  display: block;
}
@media (max-width: 767px) {
  .modal__sns {
    justify-content: center;
    gap: 20px;
  }
  .modal__sns a {
    width: 48px;
    height: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .modal {
    transition: none;
  }
  .modal__panel {
    transition: none;
    transform: none;
  }
}

.sub-inner {
  width: min(960px, 100% - 48px);
  margin-inline: auto;
}

.section--tight {
  padding: 72px 0;
}
@media (max-width: 767px) {
  .section--tight {
    padding: 40px 0;
  }
}

.subheader {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #165e83;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}
.subheader__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 0 64px;
}
@media (max-width: 1000px) {
  .subheader__inner {
    padding: 0 0 0 32px;
  }
}
@media (max-width: 767px) {
  .subheader__inner {
    min-height: 64px;
    padding: 0 24px;
  }
}
.subheader__logo {
  display: block;
  flex-shrink: 0;
}
.subheader__logo img {
  display: block;
  width: 120px;
  height: auto;
}
@media (max-width: 767px) {
  .subheader__logo img {
    width: 110px;
  }
}
.subheader__right {
  display: flex;
  align-items: center;
  gap: 32px;
  align-self: stretch;
}
@media (max-width: 767px) {
  .subheader__right {
    gap: 16px;
    padding-block: 4px;
  }
}
.subheader__nav {
  display: flex;
  align-items: stretch;
}
.subheader__nav a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-weight: 600;
  font-size: 13px;
  line-height: normal;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.subheader__nav a:hover {
  opacity: 0.7;
}
@media (max-width: 1000px) {
  .subheader__nav {
    display: none;
  }
}
.subheader__cta {
  display: flex;
  align-items: stretch;
  align-self: stretch;
}
.subheader__cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #ffffff;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.subheader__cta a:hover {
  opacity: 0.85;
}
.subheader__cta-reserve {
  background: #ee7800;
}
.subheader__cta-doc {
  background: #222222;
}
@media (max-width: 767px) {
  .subheader__cta {
    display: none;
  }
}
.subheader__menu {
  display: none;
}
@media (max-width: 1000px) {
  .subheader__menu {
    display: flex;
  }
}

.hamburger--light span:nth-child(1),
.hamburger--light span:nth-child(2) {
  background: #ee7800;
}

.pagehead {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .pagehead {
    padding-top: 24px;
  }
}
.pagehead__crumb {
  font-size: 13px;
  line-height: normal;
  color: #222222;
  margin-bottom: 80px;
}
.pagehead__crumb a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .pagehead__crumb {
    margin-bottom: 40px;
  }
}
.pagehead__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pagehead__en {
  font-family: "Moon Dance", cursive;
  font-size: 120px;
  line-height: 120px;
  color: #ee7800;
  opacity: 0.2;
  margin-left: -32px;
  margin-bottom: -44px;
}
@media (max-width: 767px) {
  .pagehead__en {
    font-size: 80px;
    line-height: 80px;
    margin-left: -8px;
    margin-bottom: -34px;
  }
}
.pagehead__jp {
  padding-bottom: 4px;
  font-weight: 500;
  font-size: 28px;
  line-height: normal;
  color: #222222;
}
@media (max-width: 767px) {
  .pagehead__jp {
    font-size: 24px;
    line-height: 34px;
    padding-bottom: 0;
    margin-left: 8px;
  }
}

.sec-head {
  width: 100%;
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .sec-head {
    margin-bottom: 40px;
  }
}
.sec-head__ttl {
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  color: #222222;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .sec-head__ttl {
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 12px;
  }
}
.sec-head::after {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: -1px;
  background: rgba(34, 34, 34, 0.18);
}

.footer {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
.footer::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 400px;
  z-index: 0;
  background: url("../img/footer-bg.jpg") center 46%/cover no-repeat;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 35%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 35%);
}
@media (max-width: 1000px) {
  .footer::after {
    height: 280px;
  }
}
@media (max-width: 767px) {
  .footer::after {
    height: 400px;
  }
}
.footer::before {
  z-index: 1;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(238, 120, 0, 0) 0%, rgba(238, 120, 0, 0.2) 50%, rgba(238, 120, 0, 0.7) 100%);
}
.footer__inner {
  position: relative;
  z-index: 2;
  min-height: 739px;
  padding: 104px 144px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
@media (max-width: 1000px) {
  .footer__inner {
    min-height: 0;
    padding: 80px 40px 24px;
  }
}
@media (max-width: 767px) {
  .footer__inner {
    min-height: 1211px;
    padding: 80px 35px 16px;
  }
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  max-width: 1152px;
}
@media (max-width: 1000px) {
  .footer__top {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .footer__top {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.footer__nav {
  display: flex;
  gap: 64px;
}
@media (max-width: 1000px) {
  .footer__nav {
    flex-wrap: wrap;
    gap: 32px 48px;
  }
}
@media (max-width: 767px) {
  .footer__nav {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(3, max-content);
    grid-template-columns: 184px 100px;
    gap: 32px 24px;
    justify-content: start;
    margin-left: 6px;
  }
}
.footer__brand {
  width: 196px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
@media (max-width: 767px) {
  .footer__brand {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
.footer__logo {
  display: block;
  margin-bottom: 4px;
}
.footer__logo img {
  display: block;
  width: 160px;
  height: auto;
}
@media (max-width: 767px) {
  .footer__logo img {
    width: 140px;
  }
}
.footer__company {
  font-weight: 500;
  font-size: 13px;
  line-height: normal;
  letter-spacing: 0.65px;
  color: #222222;
  margin: 0 0 16px;
}
@media (max-width: 767px) {
  .footer__company {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}
.footer__addr {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.6px;
  line-height: 1.8;
  color: #222222;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .footer__addr {
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    margin-bottom: 16px;
    text-align: left;
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 22px;
  }
}
.footer__tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0.9px;
  color: #ee7800;
  opacity: 0.8;
}
.footer__tel svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 767px) {
  .footer__tel {
    justify-content: center;
    font-size: 22px;
    letter-spacing: 1.1px;
  }
}
.footer__policy {
  align-self: flex-start;
  width: 100%;
  max-width: 1152px;
  margin-inline: auto;
  margin-top: 24px;
  font-size: 10px;
  line-height: normal;
  letter-spacing: 0.5px;
  color: #222222;
  opacity: 0.8;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer__policy {
    max-width: none;
    margin: 40px 0 0 6px;
    font-size: 14px;
  }
}
.footer__sns {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .footer__sns {
    gap: 20px;
    margin-top: 40px;
  }
}
.footer__sns a {
  width: 56px;
  height: 56px;
  border-radius: 100px;
  background: rgba(238, 120, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer__sns a {
    width: 48px;
    height: 48px;
  }
}
.footer__sns img {
  display: block;
}
.footer__copy {
  margin-top: auto;
  padding-top: 48px;
  font-weight: 600;
  font-size: 12px;
  line-height: normal;
  letter-spacing: 0.6px;
  color: #ffffff;
}

.fcol__head {
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0.7px;
  color: #222222;
  margin-bottom: 10px;
}
.fcol__head a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .fcol__head {
    font-size: 16px;
    letter-spacing: 0.8px;
    white-space: nowrap;
  }
}
.fcol__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fcol__list li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fcol__list li::before {
  content: "";
  width: 8px;
  height: 1px;
  background: #222222;
  flex-shrink: 0;
}
.fcol__list a {
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
  letter-spacing: 0.6px;
  color: #222222;
}
@media (max-width: 767px) {
  .fcol__list a {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}
.fcol__flat {
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: normal;
}
.fcol__flat a {
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0.7px;
  color: #222222;
}
@media (max-width: 767px) {
  .fcol__flat a {
    font-size: 16px;
    letter-spacing: 0.8px;
    white-space: nowrap;
  }
}
.fcol__flat--tight {
  gap: 10px;
}

.reserve {
  padding-bottom: 64px;
}
@media (max-width: 767px) {
  .reserve {
    padding-bottom: 0;
  }
}
.reserve__band {
  position: relative;
  height: 320px;
  overflow: hidden;
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .reserve__band {
    height: 200px;
    margin-bottom: 40px;
  }
}
.reserve__band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.5);
  transition: background 0.3s;
}
.reserve__band:has(.reserve__pill:hover)::after {
  background: rgba(238, 120, 0, 0.8);
}
.reserve__photos {
  position: absolute;
  inset: 0;
  background: url("../img/res-cta.jpg") center/cover no-repeat;
}
@media (max-width: 767px) {
  .reserve__photos {
    background-image: url("../img/res-sp.jpg");
  }
}
.reserve__lead {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
.reserve__ttl {
  font-weight: 500;
  font-size: 32px;
  line-height: normal;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .reserve__ttl {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
.reserve__sub {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.7px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .reserve__sub {
    line-height: 21px;
    margin-bottom: 16px;
  }
}
.reserve__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  gap: 10px;
  width: 400px;
  height: 49px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
  transition: background 0.3s, color 0.3s;
}
@media (max-width: 767px) {
  .reserve__pill {
    width: min(320px, 100%);
    height: 50px;
    gap: 16px;
    font-size: 18px;
    line-height: 18px;
    border: 0;
    outline: 1px solid #ffffff;
    outline-offset: -1px;
  }
}
.reserve__pill:hover {
  background: #ffffff;
  color: #ee7800;
}
.reserve__pill:hover .reserve__pill-tri {
  border-left-color: #ee7800;
}
.reserve__pill-tri {
  width: 0;
  height: 0;
  flex-shrink: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #ffffff;
  transition: border-left-color 0.3s;
}

.tel {
  padding-bottom: 24px;
  border-bottom: 1px solid #165e83;
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .tel {
    margin-bottom: 40px;
  }
}
.tel__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .tel__row {
    gap: 16px;
  }
}
.tel__rule {
  flex: 1;
  max-width: 404px;
  height: 1px;
  background: #165e83;
  align-self: flex-start;
  margin-top: 17px;
}
@media (max-width: 767px) {
  .tel__rule {
    flex: 0 1 56px;
    max-width: 56px;
    margin-top: 13px;
  }
}
.tel__center {
  text-align: center;
  color: #165e83;
}
.tel__label {
  font-weight: 500;
  font-size: 24px;
  line-height: normal;
}
@media (max-width: 767px) {
  .tel__label {
    font-size: 18px;
  }
}
.tel__num {
  font-weight: 500;
  font-size: 40px;
  line-height: normal;
  margin: 16px 0 8px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .tel__num {
    font-size: 32px;
  }
}
.tel__hours {
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
}

.contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  max-width: 1081px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .contacts {
    grid-template-columns: 1fr;
    gap: 56px;
    max-width: 320px;
  }
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
@media (max-width: 767px) {
  .contact {
    gap: 16px;
  }
}
.contact__ico {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__ico img, .contact__ico svg {
  width: 120px;
  height: 80px;
}
.contact__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  width: 100%;
}
@media (max-width: 767px) {
  .contact__text {
    gap: 8px;
    flex: none;
  }
}
.contact__ttl {
  font-weight: 500;
  font-size: 24px;
  line-height: normal;
  color: #222222;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .contact__ttl {
    font-size: 20px;
    margin-bottom: 0;
  }
}
.contact__desc {
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0.7px;
  color: #222222;
  white-space: nowrap;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 240px;
  height: 45px;
  padding: 10px 24px;
  white-space: nowrap;
  background: #165e83;
  border: 1px solid #165e83;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}
@media (max-width: 767px) {
  .btn-contact {
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 16px;
    font-size: 18px;
    line-height: 18px;
    border: 0;
    outline: 2px solid #165e83;
    outline-offset: -2px;
  }
}
.btn-contact:hover {
  background: #ffffff;
  color: #165e83;
}
.btn-contact:hover .btn-contact__tri {
  border-left-color: #165e83;
}
.btn-contact__tri {
  width: 0;
  height: 0;
  flex-shrink: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #ffffff;
  transition: border-left-color 0.3s;
}

.linkbanners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 1000px) {
  .linkbanners {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .linkbanners {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.lbanner {
  position: relative;
  height: 240px;
}
@media (max-width: 767px) {
  .lbanner {
    height: 200px;
  }
}
.lbanner {
  overflow: hidden;
  background: #d9d9d9 center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  text-align: center;
  transition: opacity 0.2s;
}
.lbanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 94, 131, 0.3);
}
.lbanner:hover {
  opacity: 0.85;
}
.lbanner__jp, .lbanner__en {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.lbanner__jp {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 1px;
}
.lbanner__en {
  font-family: "Moon Dance", cursive;
  font-size: 24px;
  line-height: 24px;
}

.barhead {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .barhead {
    margin-bottom: 40px;
  }
}
.barhead::before {
  content: "";
  width: 4px;
  height: 28px;
  background: #165e83;
  flex-shrink: 0;
}
.barhead h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  color: #222222;
}

.staff-grid + .barhead {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .staff-grid + .barhead {
    margin-top: 56px;
  }
}

.entry-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: min(640px, 100%);
  margin: 0 auto;
  padding: 24px 16px;
  outline: 2px solid #ee7800;
  outline-offset: -2px;
  background: #ee7800;
  color: #ffffff;
  font-weight: 500;
  font-size: 26px;
  line-height: 26px;
  transition: background 0.2s, color 0.2s;
}
.entry-btn::after {
  content: "";
  width: 0;
  height: 0;
  flex-shrink: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #ffffff;
  transition: border-left-color 0.2s;
}
.entry-btn:hover {
  background: #ffffff;
  color: #ee7800;
}
.entry-btn:hover::after {
  border-left-color: #ee7800;
}
@media (max-width: 767px) {
  .entry-btn {
    width: 320px;
    font-size: 18px;
    line-height: 18px;
    padding: 16px;
    gap: 16px;
  }
  .entry-btn::after {
    border-top-width: 4px;
    border-bottom-width: 4px;
    border-left-width: 6px;
  }
}
.entry-btn--slim {
  width: min(400px, 100%);
  padding: 10px 40px;
  gap: 16px;
  outline-width: 1px;
  outline-offset: -1px;
  font-size: 20px;
  line-height: 29px;
}
.entry-btn--slim::after {
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-width: 7.5px;
}
@media (max-width: 767px) {
  .entry-btn--slim {
    width: min(320px, 100%);
    padding: 10px 24px;
    font-size: 16px;
    line-height: 24px;
  }
  .entry-btn--slim::after {
    border-top-width: 4px;
    border-bottom-width: 4px;
    border-left-width: 6px;
  }
}

.spectable {
  width: 560px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .spectable {
    width: 100%;
  }
}
.spectable__row {
  display: flex;
  border-bottom: 1px solid rgba(34, 34, 34, 0.12);
}
.spectable__row dt {
  width: 160px;
  flex-shrink: 0;
  padding: 16px 8px;
  font-weight: 500;
  font-size: 16px;
  color: #222222;
}
.spectable__row dd {
  flex: 1;
  padding: 16px 8px;
  font-weight: 400;
  font-size: 16px;
  color: #222222;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 64px;
  row-gap: 64px;
}
@media (max-width: 1000px) {
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 22px;
    row-gap: 22px;
  }
}

.scard-p__photo {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #ffffff;
  outline: 1px solid #165e83;
  outline-offset: -1px;
  margin-bottom: 16px;
}
.scard-p__photo > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.scard-p__icon {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
  background: rgba(238, 120, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scard-p__icon img {
  position: static;
  width: 16px;
  height: 16px;
}
.scard-p__role {
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 1.68px;
  color: #165e83;
  margin-bottom: 8px;
}
.scard-p__name {
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 1.92px;
  color: #222222;
}
.scard-p__roma {
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
  letter-spacing: 0.48px;
  color: rgba(34, 34, 34, 0.5);
  margin-top: 4px;
}
