@layer global {

:root {
  --bp-xxs: 375;
  --bp-xs: 475;
  --bp-sm: 640;
  --bp-md: 768;
  --bp-lg: 1024;
  --bp-xl: 1280;
  --bp-xxl: 1536;
  --bp-xxxl: 1920;

  --color-back: #fff;
  --color-text: #000;
  --color-primary: #5cabb8;
  --color-secondary: #a00b1a;

  --color-black: #000000;
  --color-blue: #1b00a2;
  --color-red: #a00b1a;
  --color-yellow: #edbf00;
  --color-error: #f15a24;
  --fontFamily-default: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
    sans-serif;
  --fontFamily-maru: "Zen Maru Gothic", "游ゴシック体", YuGothic, "游ゴシック",
    "Yu Gothic", sans-serif;

  --height-header: 48;
  --height-header-sp: 48;
  --line-clamp: 2;

  --width-inner-lg: 1420;
  --width-inner: 1200;
  --width-inner-sm: 1000;

  --zIndex-sticky-bottom: 30;
  --zIndex-header: 40;
  --zIndex-spmenu: 41;
  --zIndex-toggle: 42;
  --zIndex-splash: 50;

  --leading-trim: calc((1em - 1lh) / 2);
  --gutter: 20px;
  --gutter-inner: 20px;

  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);

  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);

  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);

  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* @font-face {
  font-family: "xxxxxxxx";
  src: url(../fonts/xxxxxxxx.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
} */
}

@layer reset {

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */

/* Reset box-model and set borders */
/* ============================================ */

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */

/**
 * Remove the gray background on active links in IE 10.
 */

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */

/**
 * Prevent vertical alignment issues.
 */

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */

/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */

option {
  padding: 0;
}

/**
 * Reset to invisible
 */

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */

[type="search"] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type="number"] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */

label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */

/**
1. Correct table border color inheritance in all Chrome and Safari.
*/

table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}
}

@layer base {

/* base style */

html {
  scroll-padding-top: calc(var(--scroll-padding-top) * 1px);
}

body {
  background: var(--color-back);
  color: var(--color-text);
  font-family: var(--fontFamily-default);
  overflow-wrap: break-word;
  /* word-break: break-all; */
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
  text-decoration-skip-ink: auto;
}

code,
pre {
  font-family: var(--fontFamily-default);
  white-space: pre-wrap;
}

img,
picture > img,
picture > source,
figure {
  max-width: 100%;
}

img {
  height: auto;
  image-rendering: optimize-contrast;
  display: block;
}

picture {
  display: contents;
}

iframe {
  border: 0;
}

li,
summary {
  list-style: none;
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
  touch-action: manipulation;
  font-size: 1rem;
}

:where(
    :any-link,
    button,
    [type="button"],
    [type="reset"],
    [type="submit"],
    label[for],
    select,
    summary,
    [role="tab"],
    [role="button"]
  ) {
  cursor: pointer;
}

:focus:not(:focus-visible) {
  outline: none;
}

main {
  display: block;
}

dt {
  font-weight: 400;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
:where(dialog) {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
color: unset; 
  background-color: unset;
  border: unset;
  overflow: unset;
  outline: unset;
}

input,
textarea,
select {
  min-width: 0;
  font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline-offset: -2px;
  outline: 2px solid var(--color-primary);
}

textarea {
  resize: vertical;
}

optgroup {
  font-size: 1rem;
}

/* label: iOS対応のためにポインター指定 */
label {
  cursor: pointer;
}

/* プレースホルダー色調整 */
::placeholder {
  color: #ccc;
}

/* スピンボタン非表示 (Chrome / Safari) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type="month"]::-webkit-outer-spin-button,
input[type="month"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-outer-spin-button,
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="week"]::-webkit-outer-spin-button,
input[type="week"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-outer-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button,
input[type="date"]::-webkit-inner-spin-button {
  appearance: none;
  display: none;
  margin: 0;
}

/* スピンボタン非表示 (FireFox) */
input[type="number"],
input[type="month"],
input[type="datetime-local"],
input[type="week"],
input[type="time"],
input[type="date"] {
  appearance: textfield;
}

/* クリアボタン非表示 */
input[type="date"]::-webkit-clear-button,
input[type="month"]::-webkit-clear-button,
input[type="datetime-local"]::-webkit-clear-button,
input[type="time"]::-webkit-clear-button,
input[type="week"]::-webkit-clear-button {
  appearance: none;
}

/* セレクトボックス */
.select-wrap {
  position: relative;
}

.select-wrap > select {
  width: 100%;
}

.select-wrap::after {
  border-bottom: 2px solid;
  border-right: 2px solid;
  bottom: 0;
  content: "";
  display: block;
  height: 10px;
  margin: auto;
  position: absolute;
  right: 20px;
  top: 0;
  transform: rotate(45deg);
  width: 10px;
}

select::-ms-expand {
  display: none;
}

option:disabled {
  color: #ccc;
  opacity: 1;
}

/* 共通スタイル */
input[type="number"],
input[type="range"] {
  font-size: 1rem;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
}

/* type="number" 専用 */
input[type="number"]:focus {
  border-color: var(--color-primary);
  outline: none;
}

/* type="range" 専用 */
input[type="range"] {
  appearance: none;
  height: 4px;
  background: #ddd;
  margin: 0.5em 0;
}

/* スライダーのつまみ部分（WebKitブラウザ） */
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px; /* スライダートラックと垂直中央に合わせる */
}

/* スライダーのつまみ部分（Firefox） */
input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
}

/* スライダートラック（Firefox） */
input[type="range"]::-moz-range-track {
  height: 4px;
  background: #ddd;
}

/* ラジオボタン、チェックボックス */
input[type="radio"],
input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

input[type="radio"] + span,
input[type="checkbox"] + span {
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  padding: 0.3em 0.3em 0.3em 2em;
  position: relative;
  vertical-align: middle;
}

input[type="radio"]:focus-visible + span,
input[type="checkbox"]:focus-visible + span {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

/* ラジオボタンスタイル */
input[type="radio"] + span::before {
  background: #fff;
  outline-offset: -2px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  content: "";
  height: calc(23 / 16 * 1em);
  left: 0;
  line-height: 1;
  position: absolute;
  top: 1px;
  width: calc(23 / 16 * 1em);
}

/* ラジオボタンチェック印（未選択） */
input[type="radio"] + span::after {
  content: "";
  display: none;
}

/* ラジオボタンチェック印（選択） */
input[type="radio"]:checked + span::after {
  background: var(--color-primary);
  border-radius: 50%;
  display: block;
  height: calc(13 / 16 * 1em);
  left: calc(5 / 16 * 1em);
  line-height: 1;
  margin: 0;
  padding: 0;
  position: absolute;
  top: calc(6 / 16 * 1em);
  width: calc(13 / 16 * 1em);
}

/* チェックボックス */
input[type="checkbox"] + span::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  content: "";
  width: calc(20 / 16 * 1em);
  height: calc(20 / 16 * 1em);
  border: 1px solid var(--color-primary);
  background: #fff;
  line-height: 1;
  vertical-align: middle;
}

/* チェックボックス未チェック時 */
input[type="checkbox"] + span::after {
  content: "";
  display: none;
}

/* チェックボックスチェック時 */
input[type="checkbox"]:checked + span::after {
  display: block;
  position: absolute;
  top: 0.1em;
  left: 0.4em;
  width: 0.5em;
  height: 1em;
  content: "";
  border-bottom: 3px solid var(--color-primary);
  border-right: 3px solid var(--color-primary);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
}

@layer layout {

.l-main {
}

.l-main._page {
  padding-top: calc(var(--height-header) * 1px);
}

@media screen and (max-width: 768px) {
  .l-main._page {
    padding-top: calc(var(--height-header-sp) * 1px);
  }
}

.l-col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.l-inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.l-inner-sm {
  max-width: calc(var(--width-inner-sm) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.l-inner-lg {
  max-width: calc(var(--width-inner-lg) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.l-top-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* 左サイドエリア（PCのみ表示） */
.l-top-wrap__left {
  padding-top: calc(80 / 768 * 100dvh);
  position: fixed;
  top: 0;
  left: 0;
  width: calc((100vw - 470px) / 2);
  height: 100%;
  z-index: 0;
  /* padding-top: calc(185 / 750 * 100vh); */
  /* padding-left: max(
    45px,
    calc(45px + (345 - 45) * (100vw - 880px) / (1920 - 880))
  ); */
  padding-left: calc(2 * var(--gutter));
  padding-right: calc(2 * var(--gutter));
  display: grid;
  overflow-y: hidden;
  justify-items: center;
  padding-bottom: 45px;
}

@media screen and (max-width: 1200px) {
  .l-top-wrap__left {
    padding-left: calc(1.5 * var(--gutter));
    padding-right: calc(1.5 * var(--gutter));
  }
}

@media screen and (max-width: 1024px) {
  .l-top-wrap__left {
    display: none;
  }
}

/* 右サイドエリア（PCのみ表示） */
.l-top-wrap__right {
  position: fixed;
  top: 0;
  right: 0;
  /* width: max(100px, calc(100vw - 470px - (470 / 1410 * 100vw))); */
  width: calc((100vw - 470px) / 2);
  height: 100%;
  padding-bottom: 45px;
  padding-left: calc(2 * var(--gutter));
  padding-right: calc(2 * var(--gutter));
  display: grid;
  justify-items: center;
  padding-top: calc(240 / 768 * 100dvh);
  overflow-y: auto;
}

@media screen and (max-width: 1200px) {
  .l-top-wrap__right {
    padding-top: calc(180 / 768 * 100dvh);
    padding-left: calc(1.5 * var(--gutter));
    padding-right: calc(1.5 * var(--gutter));
  }
}

@media screen and (max-width: 1024px) {
  .l-top-wrap__right {
    display: none;
  }
}

/* メインコンテンツエリア */
.l-top-wrap__main {
  position: relative;
  max-width: 470px;
  width: 100%;
  /* margin: 0 max(100px, calc(100vw - 470px - (470 / 1410 * 100vw))) 0 auto; */
  margin-top: -20px;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
  overflow: hidden;
}

.l-top-wrap {
  background: #36a6ce;
  background: linear-gradient(
    180deg,
    rgba(54, 166, 206, 1) 0%,
    rgba(209, 184, 115, 1) 50%,
    rgba(141, 76, 80, 1) 75%,
    rgba(0, 38, 65, 1) 100%
  );
}
.l-top-main {
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 200dvh,
    white 200dvh,
    white 100%
  );
  border-radius: 30px;
  color: #555555;
}

.l-top-wrap__bubble {
  position: absolute;
  bottom: 0;
  pointer-events: none;
}

.l-top-wrap__bubble._left {
  left: 0;
  bottom: 0;
  width: 575px;
  translate: -30% 25%;
}
.l-top-wrap__bubble._right {
  right: 0;
  translate: 39% -20%;
  width: 620px;
}

.l-top-wrap__copyright {
  font-size: 11px;
  font-weight: 700;
  padding-top: 20px;
  padding-bottom: 20px;
  color: white;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .l-top-wrap__copyright {
    padding-bottom: 80px;
  }
}
.l-top-wrap__chara {
  position: fixed;
  right: calc((100vw - 470px) / 2);
  bottom: 0;
  translate: 88%;
  z-index: -1;
  opacity: 0;
}

@media screen and (max-width: 1024px) {
  .l-top-wrap__chara {
    position: absolute;
    left: 0;
    top: min(calc(430 / 360 * 100vw), 560px);
    translate: -18%;
    z-index: 2;
    bottom: unset;
    right: unset;
  }
}
}

@layer components {

.c-button-cta-tel {
  background-color: var(--color-yellow);
  border-radius: 40px;
  min-height: 67px;
  width: min(100%, 270px);
  font-family: var(--fontFamily-maru);
  color: white;
  display: grid;
  place-items: center;
  transition: opacity 0.4s;
}

.c-button-cta-tel:hover {
  opacity: 0.7;
}

.c-button-cta-tel__upper {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
}
.c-button-cta-tel__name {
  /* 12 - 20 */
  /* font-size: clamp(0.75rem, -0.886rem + 7.27vw, 1.25rem); */
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.c-button-cta-tel__business {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.c-button-cta-tel__tel {
  /* 19 - 24 */
  font-size: clamp(1.188rem, 0.165rem + 4.55vw, 1.5rem);
  font-weight: 700;
  line-height: 1;
}

.c-button-cta-tel__lower {
  margin-top: 5px;
  display: flex;
  justify-content: center;
  column-gap: 8px;
  align-items: center;
}

.c-button-cta-web {
  background-color: #36a6ce;
  border-radius: 40px;
  min-height: 67px;
  width: min(100%, 270px);
  font-family: var(--fontFamily-maru);
  color: white;
  display: grid;
  place-items: center;
  position: relative;
  padding-bottom: 3px;
  transition: opacity 0.4s;
}

.c-button-cta-web:hover {
  opacity: 0.7;
}

.c-button-cta-web__upper {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
}
.c-button-cta-web__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.c-button-cta-web__text {
  font-size: 13px;
  line-height: 1;
}

.c-button-cta-web__lower {
  margin-top: 5px;
  display: flex;
  justify-content: center;
  column-gap: 8px;
  align-items: center;
}

.c-button-cta-web__arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  translate: 0 -50%;
}
.c-button-reserved {
  color: #3aa7cd;
  border-radius: 34px;
  border: 1px solid currentColor;
  display: flex;
  justify-content: space-between;
  padding-left: 23px;
  padding-right: 14px;
  min-height: 44px;
  align-items: center;
  transition: opacity 0.4s;
}

.c-button-reserved:hover {
  opacity: 0.7;
}

.c-button-reserved__text {
  font-family: var(--fontFamily-maru);
  font-weight: 700;
  font-size: min(22px, calc(22 / 470 * 100vw));
  line-height: calc(32 / 22);
}
.c-button-cta-web-sp,
.c-button-cta-tel-sp {
  border-radius: 34px;
  min-height: 67px;
  width: min(100%, 356px);
  font-family: var(--fontFamily-maru);
  color: white;
  display: grid;
  place-items: center;
  position: relative;
  padding-left: 20px;
  padding-right: 35px;
  transition: opacity 0.4s;
}

.c-button-cta-web-sp:hover,
.c-button-cta-tel-sp:hover {
  opacity: 0.7;
}

.c-button-cta-web-sp {
  background-color: #36a6ce;
}

.c-button-cta-tel-sp {
  background-color: #edbf00;
}

.c-button-cta-web-sp__wrap,
.c-button-cta-tel-sp__wrap {
  display: grid;
  grid-template-columns: 20px auto 1fr;
  column-gap: 12px;
  align-items: center;
  width: 100%;
}

.c-button-cta-web-sp__name,
.c-button-cta-tel-sp__name {
  font-size: min(22px, calc(22 / 470 * 100vw));
  font-weight: 700;
}

.c-button-cta-web-sp__text,
.c-button-cta-tel-sp__text {
  font-weight: 700;
  display: block;
}

.c-button-cta-web-sp__text[data-size="12"],
.c-button-cta-tel-sp__text[data-size="12"] {
  font-size: 12px;
}

.c-button-cta-web-sp__text[data-size="13"],
.c-button-cta-tel-sp__text[data-size="13"] {
  font-size: 13px;
}

.c-button-cta-web-sp__text[data-size="15"],
.c-button-cta-tel-sp__text[data-size="15"] {
  font-size: 15px;
}

.c-button-cta-web-sp__text[data-size="20"],
.c-button-cta-tel-sp__text[data-size="20"] {
  font-size: min(20px, calc(20 / 470 * 100vw));
}

.c-button-cta-web-sp__arrow,
.c-button-cta-tel-sp__arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  translate: 0 -50%;
}
}

@layer components {
.c-heading-main[data-color="green"] {
  color: #499a8d;
}
.c-heading-main[data-color="brown"] {
  color: #a37b3a;
}
.c-heading-main[data-color="map"] {
  color: #955954;
}
.c-heading-main[data-color="faq"] {
  color: #5c3f4b;
}
.c-heading-main[data-color="access"] {
  color: #303346;
}
.c-heading-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  font-family: var(--fontFamily-maru);
  text-align: center;
}

.c-heading-main__text {
  /* 27 - 30 */
  font-size: clamp(1.688rem, 1.074rem + 2.73vw, 1.875rem);
  line-height: calc(35 / 30);
  font-weight: 700;
}

.c-heading-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  font-family: var(--fontFamily-maru);
  text-align: center;
}

.c-heading-sub__text {
  font-weight: 700;
  font-size: clamp(1.188rem, -0.244rem + 6.36vw, 1.625rem);
  line-height: calc(36 / 26);
}
}

@layer components {
@media screen and (max-width: 768px) {
  .c-logo-header__img {
    width: 115px;
  }
  .c-logo-footer__img {
    width: 115px;
  }
}
}

@layer components {
.c-top-news {
  position: relative;
  padding-right: 30px;
}
.c-top-news__link {
  padding-bottom: 10px;
  padding-top: 20px;
  display: block;
}

.c-top-news__body {
  transition: translate var(--ease-in-out-quad) 0.3s;
}
.c-top-news__link:hover .c-top-news__body {
  translate: 20px;
}
.c-top-news__date {
  color: #6eadae;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
}

.c-top-news__arrow {
  position: absolute;
  top: 50%;
  translate: 0 30%;
  right: 0;
}

.c-top-news__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 2px;
}
}

@layer components {
.c-accordion-parent {
  user-select: none;
}
.c-accordion-parent__head {
  background-color: #5c3f4b;
  color: white;
  font-size: 16px;
  min-height: 47px;
  padding-left: var(--gutter);
  padding-right: calc(2 * var(--gutter));
  font-weight: 700;
  display: grid;
  grid-template-columns: 11px 1fr;
  column-gap: 10px;
  padding-top: 15px;
  border-radius: 24px;
  padding-bottom: 15px;
  position: relative;
  /* transition: border-radius 0.4s var(--ease-in-out-quad); */
}

.c-accordion-parent[open] .c-accordion-parent__head {
  border-radius: 0;
}

.c-accordion-parent__head::before {
  content: "";
  right: var(--gutter);
  top: 50%;
  translate: 0 -50%;
  position: absolute;
  width: 15px;
  height: 3px;
  background-color: white;
}
.c-accordion-parent__head::after {
  content: "";
  right: var(--gutter);
  top: 50%;
  translate: 0 -50%;
  position: absolute;
  width: 15px;
  height: 3px;
  background-color: white;
  transform: rotate(90deg);
  transition: transform 0.4s var(--ease-in-out-quad);
}

.c-accordion-parent[open] .c-accordion-parent__head::after {
  transform: rotate(0deg);
}

.c-accordion-parent__child {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.c-accordion-child {
  user-select: none;
}

.c-accordion-child__head {
  border-radius: 24px;
  background-color: #e2d0d7;
  color: #5c3f4b;
  font-size: 14px;
  line-height: calc(25 / 14);
  min-height: 47px;
  padding-left: var(--gutter);
  padding-right: calc(2 * var(--gutter));
  font-weight: 700;
  display: grid;
  padding-top: 15px;
  padding-bottom: 15px;
  /* transition: border-radius 0.4s var(--ease-in-out-quad); */
  position: relative;
}
.c-accordion-child[open] .c-accordion-child__head {
  border-radius: 0;
  background-color: white;
}
.c-accordion-child__head::before {
  content: "";
  right: var(--gutter);
  top: 50%;
  translate: 0 -50%;
  position: absolute;
  width: 15px;
  height: 3px;
  background-color: #5c3f4b;
}
.c-accordion-child__head::after {
  content: "";
  right: var(--gutter);
  top: 50%;
  translate: 0 -50%;
  position: absolute;
  width: 15px;
  height: 3px;
  background-color: #5c3f4b;
  transform: rotate(90deg);
  transition: transform 0.4s var(--ease-in-out-quad);
}

.c-accordion-child[open] .c-accordion-child__head::after {
  transform: rotate(0deg);
}

.c-accordion-child__body {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background-color: white;
  font-size: 14px;
  line-height: calc(25 / 14);
  font-weight: 500;
}

.c-accordion-child__body a {
  text-decoration: underline;
}
}

@layer site {

.s-header {
  background-color: #39a6cd;
  height: calc(var(--height-header) * 1px);
  border-bottom: 1px solid white;
  padding-right: 17px;
  padding-left: 17px;
  display: none;
}

@media screen and (max-width: 1024px) {
  .s-header {
    display: revert;
  }
}

@media screen and (max-width: 768px) {
  .s-header {
    height: calc(var(--height-header-sp) * 1px);
  }
}

.s-header._fixed {
  left: 50%;
  translate: -50% -100%;
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
  transition: translate 0.4s var(--ease-in-out-quad);
  z-index: var(--zIndex-header);
}

.js-header._active {
  translate: -50% 0;
}

.s-header__inner {
  height: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 30px;
}

.s-header__spmenu {
  height: 100vh;
  height: 100svh;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: 0.3s;
  width: 100vw;
  z-index: var(--zIndex-spmenu);
}

.s-header__toggle {
  position: relative;
  z-index: var(--zIndex-toggle);
}

.s-header-nav__list {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.s-header-nav__item {
  flex-grow: 1;
  position: relative;
}

.s-header-nav__link {
  color: white;
  font-size: 12px;
  font-family: var(--fontFamily-maru);
  font-weight: 700;
}
}

@layer site {
.s-spmenu {
  position: relative;
  max-height: 95dvh;
  z-index: var(--zIndex-spmenu);
}
.s-spmenu__wrap {
  max-height: 95dvh;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 50px;
  padding-left: 9.5%;
  padding-right: 9.5%;
}

.s-spmenu__inner {
  height: 100%;
  display: grid;
  place-items: center;
}

.s-spmenu__inner .s-footer-nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2em;
}

.s-spmenu__heading {
  padding-top: calc(6 / 16 * 1em);
  padding-bottom: calc(6 / 16 * 1em);
  padding-left: 0.5em;
  padding-right: 0.5em;
  color: #3aa7cd;
  text-align: center;
  border-radius: 30px;
  border: 1px solid currentColor;
  width: min(100%, 126px);
  margin-left: auto;
  margin-right: auto;
}

.s-spmenu__heading .-text {
  font-size: 16px;
  line-height: calc(24 / 16);
  font-weight: 700;
}

.s-spmenu__list {
  margin-top: 15px;
}

.s-spmenu__term {
  font-size: 16px;
  line-height: calc(24 / 16);
  font-weight: 700;
  color: #3aa7cd;
  text-align: center;
}

.s-spmenu__term:not(:first-of-type) {
  margin-top: 20px;
}
.s-spmenu__description {
  margin-top: 2px;
  font-size: 14px;
  line-height: calc(22 / 14);
  color: #3aa7cd;
  text-align: center;
}

.s-spmenu__buttons {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-top: 20px;
  align-items: center;
}

.s-spmenu__business {
  display: block;
  margin-top: 20px;
  font-weight: 700;
  font-size: 14px;
  line-height: calc(21.8 / 14);
  color: #3aa7cd;
  text-align: center;
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.s-spmenu__business .-arrow {
  position: absolute;
  bottom: 8px;
  right: 0;
}

.s-spmenu__reserved {
  margin-top: 20px;
}

.s-spmenu__sns {
  margin-top: 30px;
}

.s-spmenu__nav {
  margin-top: 25px;
}

.s-spmenu-nav__list {
  display: flex;
  flex-direction: column;
  color: #3aa7cd;
}

.s-spmenu-nav__item:not(:last-of-type) {
  border-bottom: 1px solid currentColor;
}

.s-spmenu-nav__link {
  display: block;
  padding-top: 1em;
  padding-bottom: 1em;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--fontFamily-maru);
  position: relative;
}

.s-spmenu-nav__arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  translate: 0 -50%;
}
.s-spmenu-nav__sub-list {
  display: flex;
  flex-direction: column;
  padding-left: 45px;
  padding-bottom: 1em;
}

.s-spmenu-nav__sub-link {
  position: relative;
  display: block;
  font-size: 12px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-weight: 700;
  font-family: var(--fontFamily-maru);
}
.s-spmenu-nav__sub-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  translate: 0 -50%;
}

.s-spmenu-tel {
  position: relative;
  max-height: 95dvh;
  font-family: var(--fontFamily-maru);
  z-index: var(--zIndex-spmenu);
}
.s-spmenu-tel__wrap {
  max-height: 95dvh;
  overflow-y: auto;
  padding-left: 13.5%;
  padding-right: 13.5%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.s-spmenu-tel__inner {
  height: 100%;
  display: grid;
  place-items: center;
}

.s-spmenu-tel__heading {
  display: grid;
  grid-template-columns: 26px auto;
  color: #3aa7cd;
  column-gap: 12px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.s-spmenu-tel__heading .-text {
  font-size: 22px;
  line-height: calc(32 / 22);
  font-weight: 700;
}

.s-spmenu-tel__lead {
  margin-top: 20px;
  color: #3aa7cd;
  font-size: 14px;
  font-weight: 700;
  line-height: calc(21.8 / 14);
  text-align: center;
}

.s-spmenu-tel__buttons {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.c-button-tel {
  border-radius: 34px;
  min-height: 92px;
  position: relative;
  width: min(315px, 100%);
  color: #3aa7cd;
  border: 1px solid currentColor;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c-button-tel__text {
  display: block;
  font-weight: 700;
  text-align: center;
}

.c-button-tel__text[data-size="16"] {
  font-size: 16px;
  line-height: 1.5;
}
.c-button-tel__text[data-size="14"] {
  font-size: 14px;
  line-height: 1.5;
}
.c-button-tel__text[data-size="21"] {
  font-size: 21px;
  line-height: 1.2;
}
.c-button-tel__text[data-size="30"] {
  font-size: 30px;
  line-height: 1.1;
}

.c-button-tel__icon {
  position: absolute;
  right: 0;
  top: 50%;
  translate: 50% -50%;
}
}

@layer site {

.s-footer {
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.s-footer__logo {
  margin-top: 20px;
  display: grid;
  place-items: center;
}

.s-footer__privacy {
  margin-top: 25px;
  text-align: center;
  font-size: 16px;
  line-height: calc(20 / 16);
  font-weight: 700;
  color: #003e92;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
}

@layer site {

.s-aside-left {
  max-width: 341px;
  color: white;
}

.s-aside-left__buttons {
  display: grid;
  grid-template-columns: 170fr 154fr;
  grid-template-rows: auto auto;
  width: fit-content;
  column-gap: 12px;
  row-gap: 17px;
  margin-top: 30px;
}

.s-aside-left__buttons > *:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
}
.s-aside-left__buttons > *:nth-child(2) {
  grid-area: 1 / 2 / 3 / 3;
}
.s-aside-left__buttons > *:nth-child(3) {
  grid-area: 2 / 1 / 3 / 2;
}
/* @media screen and (max-width: 1200px) {
  .s-aside-left__buttons {
    grid-template-columns: 1fr;
  }
  .s-aside-left__buttons > *:nth-child(1) {
    grid-area: auto;
  }
  .s-aside-left__buttons > *:nth-child(2) {
    grid-area: auto;
  }
  .s-aside-left__buttons > *:nth-child(3) {
    grid-area: auto;
  }
} */
.s-aside-left__button {
  border-radius: 15%;
  display: inline-block;
  overflow: hidden;
  position: relative;
}

/* @media screen and (max-width: 1200px) {
  .s-aside-left__button img {
    width: 100%;
  }
} */

.s-aside-left__button[data-type="web"] {
  border-radius: 17%;
}
.s-aside-left__button[data-type="tel"] {
  border-radius: 15%;
}
.s-aside-left__button[data-type="reserved"] {
  border-radius: 28px;
}

.s-aside-left__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: color-mix(in srgb, white 30%, transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-in-out-quad);
  z-index: 1;
}

.s-aside-left__button[href]:hover::before {
  opacity: 1;
}

.s-aside-left__button > img {
  position: relative;
  z-index: 2;
}
.s-aside-left-plan__heading {
  margin-top: 40px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.s-aside-left-plan__heading .-text {
  font-size: 14px;
  line-height: calc(34 / 14);
  border-radius: 30px;
  min-width: 126px;
  padding-left: 1.2em;
  padding-right: 1.2em;
  border: 1px solid currentColor;
  font-weight: 700;
  text-align: center;
}
.s-aside-left-plan__heading::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: currentColor;
  flex: 1;
}
.s-aside-left-plan__heading::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: currentColor;
  flex: 1;
}

.s-aside-left-plan__term {
  font-size: 16px;
  font-weight: 700;
  line-height: calc(24 / 16);
  margin-top: 15px;
}
.s-aside-left-plan__description {
  font-size: 14px;
  font-weight: 500;
  line-height: calc(22 / 14);
}

.s-aside-right {
  font-family: var(--fontFamily-maru);
  color: white;
}

.s-aside-nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 3.5dvh;
}
.s-aside-nav__link {
  position: relative;
  transition: padding-left var(--ease-in-out-quad) 0.15s;
  display: flex;
  align-items: center;
  column-gap: 10px;
  width: fit-content;
}

.s-aside-nav__link:hover {
  padding-left: 40px;
}
.s-aside-nav__link[aria-current="page"] {
  padding-left: 40px;
}

.s-aside-nav__link::before {
  transition: width var(--ease-in-out-quad) 0.35s;
  position: absolute;
  left: 0;
  background-image: url("../images/site/aside_nav_wave.svg");
  width: 27px;
  height: 5px;
  transform: translate3d(0, -50%, 0);
  top: 50%;
  content: "";
  display: inline-block;
  width: 0;
  background-repeat: no-repeat;
}
.s-aside-nav__link[aria-current="page"]::before {
  width: 27px;
}
.s-aside-nav__link:hover::before {
  width: 27px;
}
.s-aside-nav__num {
  font-size: 10px;
  font-weight: 700;
  line-height: calc(16.8 / 10);
  flex-shrink: 0;
}

.s-aside-nav__text {
  font-size: 14px;
  font-weight: 700;
  line-height: calc(16.8 / 14);
}

.s-aside-nav__sub-list {
  padding-left: 40px;
  margin-top: 1.7dvh;
  display: flex;
  flex-direction: column;
  row-gap: 0.5dvh;
}

.s-aside-nav__sub-text {
  font-size: 12px;
  font-weight: 700;
  line-height: calc(16.8 / 12);
}
}

@layer site {
.s-modal-tel {
  margin: auto;
  background-color: color-mix(in srgb, #39a6cd, transparent 70%);
  box-shadow: 0 0 0 100vmax color-mix(in srgb, #39a6cd, transparent 70%);
  transition: opacity 0.5s, scale 0.5s;
  position: fixed;
  padding: unset;
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
  place-items: center;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  display: none;
}
@media screen and (max-width: 1024px) {
  .s-modal-tel {
    display: grid;
  }
}
.s-modal-tel__inner {
  max-width: 431px;
  width: 100%;
  border-radius: 75px;
  background-color: white;
  position: relative;
}
.s-modal-tel:not([data-active="true"]) {
  opacity: 0;
  scale: 0.95;
}

.s-modal-tel::backdrop {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 0.5s;
}

.s-modal-tel:not([data-active="true"])::backdrop {
  opacity: 0;
}

.s-modal-tel__close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
}

.s-modal-spmenu {
  margin: auto;
  background-color: color-mix(in srgb, #39a6cd, transparent 70%);
  box-shadow: 0 0 0 100vmax color-mix(in srgb, #39a6cd, transparent 70%);
  transition: opacity 0.5s, scale 0.5s;
  position: fixed;
  padding: unset;
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
  place-items: center;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  display: none;
}

@media screen and (max-width: 1024px) {
  .s-modal-spmenu {
    display: grid;
  }
}

.s-spmenu__wrap {
  position: relative;
}
.s-modal-spmenu__inner {
  width: 100%;
  max-width: 431px;
  border-radius: 75px;
  background-color: white;
}
.s-modal-spmenu:not([data-active="true"]) {
  opacity: 0;
  scale: 0.95;
}
.s-modal-spmenu::backdrop {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 0.5s;
}

.s-modal-spmenu:not([data-active="true"])::backdrop {
  opacity: 0;
}

.s-modal-spmenu__close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
}
}

@layer site {

.s-nav-sns__list {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
}

.s-nav-sns__link {
  transition: opacity 0.4s;
}

.s-nav-sns__link:hover {
  opacity: 0.7;
}
}

@layer site {

.s-sticky-bottom {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: var(--zIndex-sticky-bottom);
  color: #38a6cd;
  font-family: var(--fontFamily-maru);
  display: none;
}

@media screen and (max-width: 1024px) {
  .s-sticky-bottom {
    display: revert;
  }
}

.s-sticky-bottom__inner {
  padding-top: 15px;
  padding-bottom: 10px;
  height: 60px;
  background-color: white;
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.s-sticky-bottom__layout {
  display: flex;
  justify-content: space-around;
}

.s-sticky-bottom__layout > * {
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.s-sticky-bottom__layout > *:not(:first-child) {
  border-left: 1px solid currentColor;
}

.s-sticky-bottom__top {
  position: absolute;
  right: 2%;
  top: 0;
  translate: 0 -96%;
}

.s-sticky-bottom__web {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 5px;
  row-gap: 5px;
}

.s-sticky-bottom__tel .-icon {
  width: min(14px, calc(14 / 470 * 100vw));
}

.s-sticky-bottom__web > *:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
  justify-self: flex-end;
  align-self: flex-end;
}

.s-sticky-bottom__web > *:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: flex-start;
}

.s-sticky-bottom__web > *:nth-child(3) {
  grid-area: 2 / 1 / 3 / 3;
}

.s-sticky-bottom__web .-name {
  font-size: min(17px, calc(17 / 470 * 100vw));
  line-height: 1;
  font-weight: 700;
}

.s-sticky-bottom__web .-text {
  white-space: nowrap;
  font-size: clamp(10px, calc(12 / 470 * 100vw), 12px);
}

.s-sticky-bottom__tel {
  display: grid;
  grid-template-columns: min(14px, calc(14 / 470 * 100vw)) auto;
  column-gap: min(7px, calc(7 / 470 * 100vw));
  align-items: center;
  outline: none;
}

.s-sticky-bottom__tel:focus-visible {
  outline: none;
}

.s-sticky-bottom__tel .-name {
  font-size: min(17px, calc(17 / 470 * 100vw));
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.s-sticky-bottom__reserved {
  display: grid;
  place-items: center;
}

.s-sticky-bottom__reserved .-name {
  font-size: min(16px, calc(16 / 470 * 100vw));
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}
}

@layer page {

.p-top-mv__wrap {
  display: grid;
  position: relative;
}

/* .p-top-mv__beer {
  clip-path: polygon(0 100%, 100% 100%, 100% 120%, 0 110%);

  animation-name: beer-animation;
  animation-duration: 1.2s;
  animation-delay: 1.2s;
  animation-timing-function: var(--ease-in-out-quad);
  animation-fill-mode: forwards;
}

@keyframes beer-animation {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 120%, 0 110%);
  }

  100% {
    clip-path: polygon(0 100%, 100% 100%, 100% 0%, 0 10%);
  }
} */

.p-top-mv__grass {
  grid-area: 1 / -1;
  position: relative;
  z-index: 2;
}
.p-top-mv__beer {
  grid-area: 1 / -1;
  position: relative;
  z-index: 2;
}

.p-top-mv__foam {
  grid-area: 1 / -1;
  display: grid;
  align-items: flex-start;
  translate: 0 -5px;
  position: relative;
  z-index: 2;
}
.p-top-mv__ship {
  grid-area: 1 / -1;
  display: grid;
  /* padding-top: 55px; */
  padding-top: 65px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.p-top-mv__logo {
  grid-area: 1 / -1;
  display: grid;
  place-items: center;
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
  padding-left: calc(2 * var(--gutter));
  padding-right: calc(2 * var(--gutter));
}

@media screen and (max-width: 1024px) {
  .p-top-mv__logo {
    padding-left: calc(1.5 * var(--gutter));
    padding-right: calc(1.5 * var(--gutter));
  }
}
.p-top-mv__banner {
  grid-area: 1 / -1;
  display: grid;
  align-items: flex-end;
  justify-items: center;
  padding-bottom: 22%;
  padding-left: 7%;
  padding-right: 4%;
  position: relative;
  z-index: 2;
}

/* for GSAP */

.p-top-mv__beer {
  clip-path: polygon(0 100%, 100% 100%, 100% 150%, 0 100%);
}

.p-top-mv__logo,
.p-top-mv__foam,
.p-top-mv__ship {
  opacity: 0;
  transform: translateY(25px);
}

/* about */

.p-top-about {
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 7%,
    #f8f4e9 7%,
    #f8f4e9 100%
  );
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  margin-top: -18%;
  padding-bottom: 32%;
  overflow: hidden;
}

.p-top-about__wave {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1;
}

.p-top-about__wave._upper {
  top: -20px;
  z-index: 3;
  width: 104%;
  max-width: 104%;
  translate: -2% 3.5%;
}

.p-top-about__inner {
  padding-top: 155px;
  position: relative;
  z-index: 2;
}

.p-top-about__heading {
  display: grid;
  place-items: center;
}

.p-top-about__catch {
  margin-top: 20px;
  color: var(--color-primary);
  font-size: min(38px, calc(38 / 470 * 100vw));
  line-height: calc(56 / 38);
  text-align: center;
  font-weight: 700;
  font-family: var(--fontFamily-maru);
}

.p-top-about__pic {
  margin-top: 35px;
}

.p-top-about__text {
  margin-top: 20px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  color: var(--color-primary);
  text-decoration: underline dotted;
  font-size: min(20px, calc(20 / 470 * 100vw));
  line-height: calc(39 / 20);
  font-family: var(--fontFamily-maru);
  font-weight: 700;
  text-underline-offset: 0.35em;
  text-decoration-color: #c8dde2;
}

.p-top-about__news {
  margin-top: 35px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.p-top-news__heading {
  width: fit-content;
  padding-top: 20px;
  position: relative;
  z-index: 2;
}

.p-top-news__list {
  padding-top: 5px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: white;
  filter: drop-shadow(0 3px 6px color-mix(in srgb, #000000 16%, transparent));
  padding-bottom: 30px;
}

.p-top-news__item {
  border-bottom: 1px solid #f8f4e9;
}

.p-top-price {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  z-index: 3;
  margin-top: 1%;
  background-color: white;
}

.p-top-price__wave {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1;
}

.p-top-price__wave._upper {
  top: -110px;
  z-index: 1;
}

.p-top-price__inner {
  padding-top: 7%;
  position: relative;
  z-index: 2;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 1024px) {
  .p-top-price__inner {
    padding-left: unset;
    padding-right: unset;
  }
}
.p-top-price__radius {
  border-radius: min(86px, calc(86 / 470 * 100vw));
  margin-top: 50px;
}

.p-top-price__radius[data-color="standard"] {
  background-image: linear-gradient(
    to bottom,
    color-mix(in srgb, #7daea5 20%, transparent),
    color-mix(in srgb, #8ab09d 20%, transparent)
  );
}
.p-top-price__radius[data-color="restaurant"] {
  background-color: #dfe5d2;
}
.p-top-price__radius[data-color="western"] {
  background-color: #efebdb;
}

.p-top-plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 25px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  --color-top-plan: var(--color-primary);
  padding-bottom: 20px;
}

.p-top-plan[data-color="standard"] {
  --color-top-plan: #699f84;
}
.p-top-plan[data-color="reserved"] {
  --color-top-plan: #87a088;
}
.p-top-plan[data-color="restaurant"] {
  --color-top-plan: #5e9556;
}
.p-top-plan[data-color="western"] {
  --color-top-plan: #cba71f;
}
.p-top-plan[data-type="reserved"] {
  padding-top: 70px;
  padding-bottom: 0px;
}

.p-top-plan__heading {
  margin-top: 20px;
  font-size: min(26px, calc(26 / 470 * 100vw));
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: var(--fontFamily-maru);
  color: var(--color-top-plan);
}
.p-top-plan__label {
  background-color: var(--color-top-plan);
  color: white;
  font-weight: 700;
  font-size: min(18px, calc(18 / 470 * 100vw));
  line-height: calc(28 / 18);
  min-width: 110px;
  letter-spacing: 0.05em;
  text-align: center;
  padding-left: 0.75em;
  padding-right: 0.75em;
  font-family: var(--fontFamily-maru);
  border-radius: 14px;
  margin-top: 15px;
}

.p-top-plan__text {
  margin-top: 10px;
  font-size: min(18px, calc(18 / 470 * 100vw));
  line-height: calc(26 / 18);
  font-weight: 700;
  color: var(--color-top-plan);
  text-align: center;
}

.p-top-plan__subtext {
  margin-top: 10px;
  font-size: min(16px, calc(16 / 470 * 100vw));
  line-height: calc(24 / 16);
  font-weight: 700;
  color: var(--color-top-plan);
  text-align: center;
}

.p-top-plan__price {
  margin-top: 25px;
  font-weight: 700;
  font-size: min(24px, calc(24 / 470 * 100vw));
  line-height: calc(36 / 24);
}

.p-top-plan__price .-upper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  column-gap: 0.25em;
}

.p-top-plan__price .-num {
  font-size: calc(36 / 24 * 100%);
  line-height: 1;
}
.p-top-plan__price .-note {
  font-size: calc(18 / 24 * 100%);
}
.p-top-plan__price .-lower {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 5px;
}
.p-top-plan__note {
  font-size: 14px;
  line-height: calc(22 / 14);
  font-weight: 500;
  margin-top: 10px;
  padding-left: 1em;
  width: 100%;
}

.p-top-plan__note .-item {
  padding-left: 1em;
  display: block;
  text-indent: -1em;
}

.p-top-plan__note._list {
  margin-top: 7px;
}

.p-top-plan__pic {
  margin-top: 30px;
}

.p-top-plan__pic .-heading {
  color: var(--color-top-plan);
  font-size: min(18px, calc(18 / 470 * 100vw));
  line-height: calc(29 / 18);
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-weight: 700;
}
.p-top-plan__pic .-heading:not(:first-of-type) {
  margin-top: 20px;
}
.p-top-plan__pic .-figure {
  margin-top: 10px;
}

.p-top-plan__pic .-img {
  border-radius: 30px;
}

@media screen and (max-width: 1024px) {
  .p-top-plan__pic .-img {
    width: 100%;
  }
}
.p-top-plan__pic .-figcaption {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: calc(22 / 14);
}
.p-top-plan__radius {
  margin-top: 25px;
  width: 100%;
}

.p-top-plan__anchor {
  margin-top: 30px;
  color: var(--color-top-plan);
  font-size: 14px;
  font-weight: 700;
  line-height: calc(22 / 14);
  display: flex;
  column-gap: 3px;
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
}

.p-top-cta-radius {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  background-color: white;
  border-radius: min(68px, calc(68 / 470 * 100vw));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  color: #555555;
}

.p-top-cta-radius__lead {
  font-size: 12px;
  font-weight: 500;
  line-height: calc(18 / 12);
  text-align: center;
}
.p-top-cta-radius__period {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: calc(23 / 14);
}

.p-top-cta-radius__buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-top: 10px;
  align-items: center;
}

.p-top-menu {
  position: relative;
  background-color: white;
  margin-top: 24%;
  color: #a37b3a;
}

.p-top-menu__arch {
  position: absolute;
  top: -115px;
  left: 50%;
  translate: -50%;
  width: 100%;
  z-index: 1;
  width: calc(500 / 470 * 100%);
  max-width: calc(500 / 470 * 100%);
}

.p-top-menu__inner {
  position: relative;
  z-index: 2;
}

.p-top-menu__radius {
  padding-top: 60px;
  border-top-left-radius: 235px;
  border-top-right-radius: 235px;
  background-color: #f8f4e9;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 45px;
}

.p-top-menu__subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-top: 35px;
}

@media screen and (max-width: 1024px) {
  .p-top-menu__subheading {
    padding-left: unset;
    padding-right: unset;
  }
}
.p-top-menu__subheading[data-type="freedrink"] {
  margin-top: 55px;
}
.p-top-menu__subheading[data-type="reserved-drink"] {
  margin-top: 20px;
}
.p-top-menu__subheading[data-type="reserved-food"] {
  margin-top: 30px;
}

.p-top-menu__frame {
  margin-top: 45px;
  position: relative;
  border: 1px solid currentColor;
  border-radius: 20px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 15px;
  padding-bottom: 40px;
}

.p-top-menu__subheading[data-type="frame"] {
  position: absolute;
  margin-top: unset;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
}

.p-top-menu__subheading[data-type="frame"] > .-text {
  background-color: #f8f4e9;
}

.p-top-menu__subheading[data-type="frame"]::before {
  content: none;
}
.p-top-menu__subheading[data-type="frame"]::after {
  content: none;
}

.p-top-menu__subheading .-text {
  font-size: min(18px, calc(18 / 470 * 100vw));
  line-height: calc(32 / 18);
  border-radius: min(32px, calc(32 / 470 * 100vw));
  padding-left: 1.2em;
  padding-right: 1.2em;
  border: 1px solid currentColor;
  font-weight: 700;
}
.p-top-menu__subheading::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: currentColor;
  flex: 1;
}
.p-top-menu__subheading::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: currentColor;
  flex: 1;
}

.p-top-menu__list {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 1024px) {
  .p-top-menu__list {
    padding-left: unset;
    padding-right: unset;
  }
}

.p-top-menu__list[data-menu="freedrink"] {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 4%;
  row-gap: 10px;
  text-align: center;
}

.p-top-menu__list[data-menu="freedrink"] .p-top-menu__item {
  font-size: 14px;
  font-weight: 500;
  line-height: calc(27 / 14);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

@media screen and (max-width: 1024px) {
  .p-top-menu__list[data-menu="freedrink"] .p-top-menu__item {
    font-size: 12px;
  }
}
.p-top-menu__list[data-menu="food"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4%;
  row-gap: 2px;
  margin-top: 15px;
}

.p-top-menu__list[data-menu="food"] .p-top-menu__item {
  padding-top: 3px;
  font-size: 14px;
  font-weight: 500;
  line-height: calc(21 / 14);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.p-top-menu__list[data-menu="food"] .p-top-menu__item .-variation,
.p-top-menu__list[data-menu="food"] .p-top-menu__item .-price {
  font-size: 12px;
  line-height: 1.4;
  display: block;
}
.p-top-menu__list[data-menu="food"] .p-top-menu__item .-price {
  margin-top: 0.3em;
  padding-bottom: 2px;
}
.p-top-menu__list[data-menu="reserved"] {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
  margin-top: 10px;
}

.p-top-menu__list[data-menu="reserved"] .p-top-menu__item {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  padding-top: 1px;
}

.p-top-menu__list[data-menu="reserved"] .p-top-menu__item .-row {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  column-gap: 10px;
}

.p-top-menu__list[data-menu="reserved"] .p-top-menu__item .-num {
  font-size: 14px;
  font-weight: 700;
  line-height: calc(20 / 14);
  align-self: flex-start;
}
.p-top-menu__list[data-menu="reserved"] .p-top-menu__item .-name {
  font-size: 14px;
  font-weight: 500;
  line-height: calc(20 / 14);
}
.p-top-menu__list[data-menu="reserved"] .p-top-menu__item .-price {
  font-size: 14px;
  font-weight: 500;
  line-height: calc(20 / 14);
  align-self: flex-end;
  justify-self: flex-end;
}
.p-top-menu__list[data-menu="reserved"] .p-top-menu__item .-detail {
  font-size: 14px;
  font-weight: 500;
  line-height: calc(20 / 14);
  margin-top: 10px;
}
.p-top-menu__list[data-menu="reserved"] .p-top-menu__item .-note {
  font-size: 12px;
  margin-top: 10px;
  font-weight: 500;
  line-height: calc(20 / 12);
  margin-bottom: 5px;
}

.p-top-menu__figures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  margin-top: 20px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 1024px) {
  .p-top-menu__figures {
    padding-left: unset;
    padding-right: unset;
  }

  .p-top-menu__figures img {
    width: 100%;
  }
}

.p-top-menu__figures .-img {
  border-radius: 20px;
}

.p-top-menu__figures .-figcaption {
  font-size: 14px;
  font-weight: 500;
  line-height: calc(17 / 14);
  margin-top: 5px;
}

.p-top-menu__cta {
  margin-top: 30px;
}

.p-top-menu__note {
  margin-top: 5px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  font-size: 12px;
  line-height: calc(22 / 12);
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  .p-top-menu__note {
    padding-left: unset;
    padding-right: unset;
  }
}

.p-top-menu__slider {
  margin-top: 25px;
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc(var(--gutter) * -1);
}

.p-top-menu__slider .splide__slide .-img {
  border-radius: 30px;
  border: 1px solid #a37b3a;
  aspect-ratio: 321 / 195;
  height: auto;
  object-fit: cover;
}

.p-top-menu__lead {
  font-size: 16px;
  line-height: calc(23 / 16);
  font-weight: 700;
  text-align: center;
  margin-top: 25px;
}

.p-top-map {
  color: #955954;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.p-top-map__annotation {
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
}

.p-top-map__annotation .-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 15px;
}

.p-top-map__annotation .-item {
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.p-top-map__annotation .-text {
  font-size: 12px;
  line-height: calc(20 / 12);
}

.p-top-map__text {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  font-size: 16px;
  line-height: calc(22 / 16);
  font-weight: 700;
  margin-top: 15px;
  margin-inline: auto;
  max-inline-size: max-content;
}

.p-top-map__subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
}

.p-top-map__subheading[data-type="7f"] {
  margin-top: 15px;
}
.p-top-map__subheading[data-type="6f"] {
  margin-top: 30px;
}
.p-top-map__subheading[data-type="5f"] {
  margin-top: 30px;
}

.p-top-map__subheading::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentColor;
  flex: 1;
}
.p-top-map__subheading::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentColor;
  flex: 1;
}

.p-top-map__floor {
  display: grid;
  place-items: center;
  margin-top: 15px;
}

.p-top-faq {
  background-color: #f4ecef;
  position: relative;
  margin-top: 50px;
}

.p-top-faq__wave {
  position: absolute;
  left: 0;
  width: 100%;
}

.p-top-faq__wave._upper {
  top: -50px;
  z-index: 1;
}
.p-top-faq__inner {
  position: relative;
  z-index: 3;
  padding-top: 30px;
  padding-bottom: 120px;
}

.p-top-faq__body {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-top: 30px;
}

.p-top-access {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background-color: #d7cfdd;
  position: relative;
  margin-top: 10px;
  margin-bottom: 50px;
}

.p-top-access__wave {
  position: absolute;
  left: 0;
  width: 100%;
}

.p-top-access__wave._upper {
  top: -50px;
  z-index: 1;
}
.p-top-access__wave._lower {
  z-index: 2;
  bottom: -50px;
}
.p-top-access__inner {
  position: relative;
  z-index: 3;
  padding-top: 25px;
  padding-bottom: 15px;
}

.p-top-access__summary {
  padding-left: calc(var(--gutter));
  padding-right: calc(var(--gutter));
}

.p-top-access__address {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  font-size: 14px;
  line-height: calc(17 / 14);
  font-weight: 500;
  margin-top: 15px;
}

.p-top-access__heading {
  display: grid;
  place-items: center;
  text-align: center;
}

.p-top-access__body {
  margin-top: 30px;
}

.p-top-access__subheading {
  font-size: 18px;
  font-weight: 700;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
}
.p-top-access__list {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  font-size: 14px;
  line-height: calc(17 / 14);
  font-weight: 500;
  margin-top: 5px;
}

.p-top-access__item[data-type="mt"] {
  margin-top: 10px;
}

.p-top-access__item .-text {
  font-size: 14px;
  line-height: calc(30 / 14);
  display: block;
  font-weight: 500;
}

.p-top-access__item .-link {
  width: fit-content;
  color: var(--color-blue);
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 1em;
  margin-top: 5px;
  transition: opacity 0.4s;
  flex-wrap: wrap;
  padding-right: 15px;
}

.p-top-access__item .-link:hover {
  opacity: 0.7;
}

.p-top-access__item .-link::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: currentColor;
}

.p-top-access__item .-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}

.p-top-access__map {
  margin-top: 35px;
}

.p-top-access__map iframe {
  max-width: 100%;
}

.p-top-attention {
  color: var(--color-red);
  padding-left: var(--gutter);
  padding-right: var(--gutter);

  padding-top: 30px;
  padding-bottom: 30px;
}

.p-top-attention__heading {
  font-weight: 700;
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: calc(25 / 16);
}

.p-top-attention__radius {
  background-color: #f0f0f0;
  border-radius: min(30px, calc(30 / 470 * 100vw));
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.p-top-attention__list {
  margin-top: 35px;
  row-gap: 25px;
  column-gap: 5px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  padding-left: 5px;
}
.p-top-attention__item {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 5px;
}

.p-top-attention__icon {
  align-self: center;
  justify-self: center;
}
.p-top-attention__text {
  font-size: 14px;
  font-weight: 500;
  line-height: calc(21 / 14);
}
}

@layer javascript {
.js-animation._top-fade {
  opacity: 0;
}
.js-animation._top-fade._active {
  animation-name: top-fade;
  animation-duration: 1.2s;
  animation-delay: 0.7s;
  animation-fill-mode: forwards;
}

@keyframes top-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
}

@layer utility {

.u-visually-hidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.u-ib {
  display: inline-block;
}

.u-hidden {
  display: none !important;
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-clamp-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--line-clamp);
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-clear-fix::after {
  clear: both;
  content: "";
  display: table;
}

@media screen and (max-width: 768px) {
  .u-md-hidden {
    display: none;
  }
}
.u-md-visible {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-md-visible {
    display: revert;
  }
}
@media screen and (max-width: 1024px) {
  .u-lg-hidden {
    display: none;
  }
}
.u-lg-visible {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-lg-visible {
    display: revert;
  }
}

@media screen and (max-width: 1280px) {
  .u-xl-hidden {
    display: none;
  }
}
.u-xl-visible {
  display: none;
}
@media screen and (max-width: 1280px) {
  .u-xl-visible {
    display: revert;
  }
}

.u-uppercase {
  text-transform: uppercase;
}

.u-mt-10 {
  margin-top: 10px;
}
.u-mb-10 {
  margin-bottom: 10px;
}
}
