:root {
  --serif: "Shippori Mincho", serif;
  --sans-serif: "Noto Sans JP", sans-serif;
  --color: #222324;
  --bgcolor: #fff;
  --navy: #2d5469;
  --alphabet: "Waterfall", cursive;
  --clamp128: clamp(96px, 10vw, 128px);
  --clamp96: clamp(82px, 8vw, 96px);
  --clamp72: clamp(68px, 6vw, 72px);
  --clamp64: clamp(56px, 5.3vw, 64px);
  --clamp48: clamp(40px, 4vw, 48px);
  --clamp32: clamp(28px, 2.6vw, 32px);
  --clamp28: clamp(24px, 2.3vw, 28px);
  --clamp24: clamp(20px, 2vw, 24px);
  --clamp20: clamp(18px, 1.66vw, 20px);
  --clamp18: clamp(16px, 1.5vw, 18px);
  --clamp16: clamp(15px, 1.4vw, 16px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  font-size: 16px;
  line-height: 160%;
  color: var(--color);
  background-color: transparent;
  font-family: var(--sans-serif);
  overflow: auto;
}

a {
  transition: all ease 0.3s;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: normal;
  line-height: 140%;
}

img {
  vertical-align: top;
  width: 100%;
  height: auto;
}

.wbr {
  display: inline-block;
}

@media (width < 768px) {
  .sp {
    display: inherit;
  }

  .pc {
    display: none;
  }

  .tb {
    display: none;
  }
}

@media (768px <=width <=1024px) {
  .sp {
    display: none;
  }

  .tb {
    display: inherit;
  }

  .pc {
    display: none;
  }
}

@media (width < 1024px) {
  .sp {
    display: none;
  }

  .tb {
    display: none;
  }

  .pc {
    display: inherit;
  }
}

.w-1280 {
  max-width: 1280px;
  margin: auto;
  width: 100%;
}

.w-1024 {
  max-width: 1024px;
  margin: auto;
  width: 100%;
}

.w-960 {
  max-width: 960px;
  margin: auto;
  width: 100%;
}

.container {
  width: 100%;
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s, transform 1s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

.mv {
  background-size: cover;
  background-position: center;
  height: 300px;
  position: relative;
  display: grid;
  place-content: center;
  padding: 24px;
  position: relative;
  z-index: 0;
  color: white;
}

.mv::before {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  content: "";
  position: absolute;
  z-index: 1;
}

.mv>* {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  text-align: center;
}

.wp-block-lazyblock-textarea {
  font-family: var(--serif);
  font-size: var(--clamp20);
}

.header_clm {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (width < 768px) {
  .header_clm {
    flex-direction: column;
  }
}

.header_clm_left {
  flex-basis: 50%;
  padding: 16px 0;
}

.header_clm_left img {
  max-width: 480px;
}

.header_clm_right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 0;
  gap: var(--clamp18);
}

@media (width < 768px) {
  .header_clm_left {
    flex-basis: 100%;
    padding-bottom: 0;
  }

  .header_clm_right {
    flex-basis: 100%;
  }
}

@media (max-width: 1280px) {
  .logo {
    max-width: 400px;
    top: 50px;
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 300px;
    top: 50px;
  }
}

.menu {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 24px;
  border-bottom: 1px solid #eee;
  z-index: 10;
}

@media (width < 768px) {
  .menu {
    padding: 0;
    overflow: auto;
  }
}

.menu_clm {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  flex-shrink: 1;
  justify-content: flex-start;
  align-items: center;
  padding: 24px auto;
  max-width: 1280px;
  margin: auto;
}

@media (width < 768px) {
  .menu_clm {
    min-width: 424px;
  }
}

.menu_clm>a {
  padding: 4px 12px;
  border-left: 1px solid #ccc;
  color: var(--color);
  font-size: 17px;
  font-weight: 600;
  flex-basis: 200px;
  display: grid;
  place-content: center;
  white-space: nowrap;
}

@media (width < 768px) {
  .menu_clm>a {
    padding: 16px 12px;
  }
}



.menu_clm>a:nth-last-child(2) {
  border-right: 1px solid #ccc;

}

.u-inner {
  padding: 0 var(--clamp32);
}

.u-left {
  text-align: left;
}

.u-right {
  text-align: right;
}

.u-center {
  text-align: center;
}

.page_title {
  font-family: var(--serif);
  z-index: 2;
  position: relative;
  text-align: center;
  font-size: var(--clamp24);
  margin: 128px auto 0 auto;
}

.page_title::before {
  border-bottom: 1px solid var(--color);
  transform: rotate(90deg);
  content: "";
  width: 18px;
  margin: auto;
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}

.page_title::after {
  border-bottom: 1px solid var(--color);
  transform: rotate(90deg);
  content: "";
  width: 18px;
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}

.access_clm {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.access_clm>* {
  flex-basis: 50%;
  flex-grow: 1;
  flex-shrink: 1;
}

@media (max-width: 860px) {
  .access_clm {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }

  .access_clm>* {
    flex-basis: 300px;
  }
}

.access {
  position: relative;
  padding-bottom: 128px;
}

@media (width < 768px) {
  .access {
    padding-bottom: 0;
  }
}

.access h2 {
  background-color: #1d1e29;
  font-size: var(--clamp24);
  color: white;
  padding: 18px 42px;
  text-align: center;
  width: fit-content;
  margin: auto;
  position: absolute;
  top: -24px;
  left: 0%;
  right: 0%;
  z-index: 5;
}

.footer {
  background-color: #efefef;
  color: #333435;
  color: var(--color);
  padding: 24px 0 128px 0;
}

.footer p {
  margin: 8px auto;
  font-size: 15px;
}

@media (width < 768px) {
  .footer p {
    text-align: center;
  }
}

.footer h2 {
  margin-bottom: 32px;
}

.footer_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--clamp28);
  width: 100%;
}

@media (width < 768px) {
  .footer_head {
    flex-direction: column;
  }

  .footer_head>* {
    flex-basis: 100%;
  }
}

.footer_head_right {
  display: flex;
  gap: var(--clamp18);
}

@media (width < 768px) {
  .footer_head_right {
    display: flex;
    gap: 10px;
  }
}

.footer_clm {
  display: flex;
  list-style: none;
  justify-content: space-between;
  align-items: flex-start;
  margin: auto;
  width: 100%;
}

@media (width < 768px) {
  .footer_clm {
    flex-direction: column;
    align-items: stretch;

    justify-content: space-between;
  }
}

.footer_clm>li {
  text-align: left;
}

@media (width < 768px) {
  .footer_clm>li {
    flex-basis: 100%;
  }
}

.footer_clm_left {
  flex-basis: 50%;
  padding-top: 32px;
}

.footer_clm_right {
  flex-basis: 50%;
  padding-top: 32px;
}

.footer_clm_right h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.footer_clm_right h3 span {
  font-size: 15px;
}

.footer_tel {
  margin-bottom: 48px;
}

.footer_tel img {
  width: 100%;
  max-width: 280px;
}

@media (width < 768px) {
  .footer_tel {
    text-align: center;
  }
}

a.contact_btn {
  display: grid;
  place-content: center;
  color: white;
  background-color: #2d5469;
  padding: 12px var(--clamp32);
  border-radius: 999px;
  white-space: nowrap;
}

a.reserve_btn {
  display: grid;
  place-content: center;
  color: white;
  background-color: #be5c07;
  padding: 12px var(--clamp32);
  border-radius: 999px;
  white-space: nowrap;
}

@media (width < 768px) {
  a.contact_btn {
    padding: 12px var(--clamp32);
    max-width: 320px;
  }

  a.reserve_btn {
    padding: 12px var(--clamp32);
    max-width: 320px;
  }
}

.instagram_link {
  position: fixed;
  left: 0;
  bottom: 16px;
}

.instagram_link img {
  width: 70px;
  height: 70px;
  vertical-align: top;
}

.dr-timetable {
  border-collapse: collapse;
  border: 1px solid #efefef;
  width: 100%;
  font-size: 15px;
  background-color: white;
}

.dr-timetable td {
  padding: 8px;
  border: 1px solid #efefef;
}

.dr-timetable td:nth-child(1) {
  width: 60px;
  text-align: center;
}