[data-js-anchor=on] [id] {
  scroll-margin-top: var(--header-h);
}

body {
  color: rgb(5.1, 0, 0);
  margin: 0;
  letter-spacing: normal;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: .5s ease;
  overflow-y: visible;
  overflow-anchor: none;
  line-height: 1.5;
  font-family: "Yu Gothic", "Yu Gothic Medium", "YuGothic", "Noto Sans", "Noto Sans JP", "Noto Sans CJK JP", "Meiryo UI", "メイリオ", Meiryo, "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
  font-size: clamp(12px, 14px/375px*100vw, 16.0533333333px);
}

.b-visuallyHidden {
  position: fixed !important;
  top: 0px !important;
  left: 0px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  visibility: visible !important;
}

.stage {
  --sec-w: min(100svw, 430px);
  --gap: 0px;
  --frame-left-center: calc((100svw - var(--sec-w)) / 2);
  min-height: 100dvh;
  padding: var(--gap);
  display: flex;
  align-items: flex-start;
  position: relative;
}

.stage.is-center {
  justify-content: center;
  --frame-left: var(--frame-left-center);
}

.stage.is-right {
  --offset-right: 0px;
  justify-content: center;
  padding-right: 0;
  --frame-left: var(--frame-left-center);
}

@media screen and (min-width: 1101px) {
  .stage.is-right {
    --offset-right: min(8.67vw, 250px);
    justify-content: flex-end;
    padding-right: calc(var(--gap) + var(--offset-right));
    --frame-left: calc(100svw - var(--sec-w) - var(--gap) - var(--offset-right));
  }
}

.stage__bg {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 0;
  background: #fff;
}

@media screen and (min-width: 431px) {
  .stage__bg {
    display: block;
  }
}

.stage__left {
  display: none;
}

@media screen and (min-width: 1101px) {
  .stage__left {
    position: fixed;
    block-size: 100%;
    inset-inline-start: 0;
    margin-block-start: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    inline-size: var(--frame-left);
  }
}

.stage__pic {
  display: block;
  width: 33.72vw;
  margin-top: 16px;
}

.frame {
  position: relative;
  top: 65.72px;
  z-index: 1;
  width: var(--sec-w);
  transform: translateZ(0);
}

@media screen and (min-width: 1101px) {
  .frame {
    box-shadow: 0px 0px 16px rgba(0, 0, 0, .16);
  }
}

.frame__content {
  position: relative;
  background: #fff;
}

.b-inner {
  width: 100%;
  padding-inline: clamp(25.6px, 30px/375px*100vw, 34.4px);
  margin-inline: auto;
}

@font-face {
  font-family: "Noto Sans";
  src: url("../font/NotoSans-VariableFont_wdth,wght.woff2") format("woff2");
  font-optical-sizing: auto;
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

*[class*=b-en-] {
  font-family: "uddigikyokasho-pro", "UD Digi Kyokasho Pro", "UD Digi Kyokasho", "Tsukushi A Round Gothic", "TsukuARdGothicStd", "Yu Gothic", "YuGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
}

*[class*=b-min-] {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝体", "游明朝", "MS P明朝", "MS 明朝", serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
}

*[class*=b-yugo-] {
  font-family: "Noto Sans", "Yu Gothic", "Yu Gothic Medium", "YuGothic", "Noto Sans JP", "Noto Sans CJK JP", "Meiryo UI", "メイリオ", Meiryo, "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
}

.b-min-300, .b-yugo-300, .b-en-300 { font-weight: 300; }
.b-min-400, .b-yugo-400, .b-en-400 { font-weight: 400; }
.b-min-500, .b-yugo-500, .b-en-500 { font-weight: 500; }
.b-min-600, .b-yugo-600, .b-en-600 { font-weight: 600; }
.b-min-700, .b-yugo-700, .b-en-700 { font-weight: 700; }

:root {
  --reveal-dist: 24px;
  --reveal-dur: 0.8s;
  --reveal-ease: cubic-bezier(0.23, 1, 0.32, 1);
  --blur-delay: 0.12s;
  --blur-dur: 0.9s;
}

.reveal {
  opacity: 0;
  --tx: 0;
  --ty: 0;
  --scale: 1;
  filter: blur(var(--blur, 0));
  transform: translate3d(var(--tx), var(--ty), 0) scale(var(--scale));
  transition: opacity var(--dur, var(--reveal-dur)) var(--ease, var(--reveal-ease)) var(--delay, 0s),
    transform var(--dur, var(--reveal-dur)) var(--ease, var(--reveal-ease)) var(--delay, 0s),
    filter var(--blur-dur, var(--reveal-dur)) var(--ease, var(--reveal-ease)) calc(var(--delay, 0s) + var(--blur-delay, 0s));
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal.-up { --ty: var(--reveal-dist); }
.reveal.-down { --ty: calc(-1 * var(--reveal-dist)); }
.reveal.-left { --tx: calc(-1 * var(--reveal-dist)); }
.reveal.-right { --tx: var(--reveal-dist); }
.reveal.-zoom { --scale: 0.94; }
.reveal.-blur { --blur: 10px; }
.reveal.-blur-sm { --blur: 6px; }
.reveal.-blur-lg { --blur: 16px; }
.reveal.-blur-slow { --blur-dur: 1.2s; }
.reveal.-blur-later { --blur-delay: 0.24s; }

@media screen and (max-width: 768px) {
  .reveal.-blur {
    --blur-delay: 0.08s;
    --blur-dur: 0.7s;
  }
}

@media(prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

.reveal-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path var(--dur, 0.9s) var(--ease, var(--reveal-ease));
  transition-delay: var(--delay, 0s);
}

.reveal-clip.is-visible {
  clip-path: inset(0 0 0 0);
}

.reveal-underline {
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size .5s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-underline.is-visible {
  background-size: 100% 100%;
}

@media(prefers-reduced-motion: reduce) {
  .reveal, .reveal-clip, .reveal-underline {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    clip-path: none !important;
    background-size: 100% 100% !important;
  }
}

.l-header {
  /* width: 429.98px; */
  background: #fff;
  padding-block: .625rem;
  position: fixed;
  z-index: 999999;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, .16);
}
.l-header img{
  margin-right: 49px;
}

.l-header__inner {
  padding-inline: .625rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  /* padding: 0 10px; */
}

.l-header__logo {
  margin-block: 0;
}

.l-header__logo img {
  width: clamp(133.12px, 156px/375px*100vw, 178.88px);
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.l-header__btns {
  gap: .625rem;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  flex-wrap: nowrap;
}

.l-header__btn {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding-block: .675em;
  letter-spacing: 0;
}

.l-header__btn.--reserve {
  background: rgb(5.1, 0, 0);
  padding-inline: .85em;
}

.l-header__btn.--map {
  background: #DD74A4;
  padding-inline: 1.35em;
}
@media screen and (max-width: 429px) {
  .l-header {
    width: 100vw;
  }
  .l-header img{
  margin-right: 0px;
}
}

.l-footer {
  background: hsl(210, 61%, 45%);
  color: #fff;
  padding-block-start: clamp(34.1333333333px, 40px/375px*100vw, 45.8666666667px);
  padding-block-end: clamp(15.36px, 18px/375px*100vw, 20.64px);
}

.l-footer__ofc {
  margin-block-start: 1.5em;
  font-weight: 600;
  line-height: 1.6666666667;
}

.l-footer__ofc>span {
  display: block;
}

.l-footer__tel>a {
  color: inherit;
  text-decoration: none;
}

.l-footer__lic {
  font-weight: 600;
  font-size: .75rem;
  line-height: 1.6666666667;
}

.l-footer__copy {
  display: block;
  margin-block-start: clamp(47.7866666667px, 56px/375px*100vw, 64.2133333333px);
  font-size: .625rem;
  text-align: center;
  line-height: 1;
}

.c-ttl {
  color: #DD74A4;
  font-size: clamp(22.1866666667px, 26px/375px*100vw, 29.8133333333px);
  letter-spacing: .05em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  font-weight: normal;
}

.c-ttl::before, .c-ttl::after {
  content: "";
  display: block;
  background: #DD74A4;
  width: clamp(68.2666666667px, 80px/375px*100vw, 91.7333333333px);
  height: 1px;
}

.c-pic img {
  width: 100%;
  height: auto;
}

.c-sns {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto 0;
}

.c-sns__ttl {
  font-size: clamp(14px, 16px/375px*100vw, 18.3466666667px);
  text-transform: uppercase;
  font-weight: 600;
  margin-block-start: 1.5em;
  margin-block-end: .5em;
}

.c-sns__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

.c-sns__link.--ig {
  justify-self: end;
}