@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #453D34;
  --color_link: #F4999E;
  --color_border: #E3E0DC;
  --color_primary: #F4999E;
  --color_secondary: #F4F0E9;
  --color_accent: #A79C90;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
  --color_red: #e73656;
  --color_pink: #EB7C81;
  --color_brown: #8d7e6e;
}

/* ====================================================
【アニメーション】
==================================================== */
:root {
  --ease: cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* ====================================================
【サイト全体の設定】
==================================================== */
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP"), local("Noto Sans CJK JP Regular");
}

:root {
  --font_base:
    "Local Noto Sans JP",
    "Noto Sans JP",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    sans-serif;
  --font_jp: "Noto Sans JP", serif;
  --font_en: "Montserrat Alternates", serif;
  --font_weight: 500;
  --font_size: 1rem;
  --line_height: 2.0;
  --letter_spacing: .05em;
}

@media (max-width: 800px) {
  :root {
    --font_size: 0.9375rem;
    --line_height: 1.8;
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

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

:where(button) {
  all: unset;
  box-sizing: border-box;
}

:where(a, input, button, textarea, select) {
  touch-action: manipulation;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

textarea {
  resize: block;
}

:where(button, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:focus-visible) {
  outline: 2px solid #2e2c29;
  outline-offset: 2px;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(ul, ol, li) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(em, dfn) {
  font-style: inherit;
}

sup {
  vertical-align: text-top;
  line-height: 1;
}

sub {
  vertical-align: text-bottom;
  line-height: 1;
}

hr {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

::-moz-selection {
  background: #d4dcd6;
}

::selection {
  background: #d4dcd6;
}

mark {
  background: transparent;
  font-style: normal;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
body {
  background-color: var(--color_base);
  color: var(--color_text);
  font-family: var(--font_base);
  font-size: var(--font_size);
  font-weight: var(--font_weight);
  letter-spacing: var(--letter_spacing);
  line-height: var(--line_height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font_jp);
  font-weight: 500;
  letter-spacing: 0.05em;
}

[lang=en] {
  font-family: var(--font_en);
}

th,
dt {
  font-weight: 500;
}

.link {
  display: inline-block;
  text-decoration: underline;
  word-break: break-all;
  position: relative;
  text-wrap: pretty;
}

.link[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  margin-left: 5px;
}

.link:is(:hover, :focus) {
  text-decoration: none;
}

.no-link {
  pointer-events: none;
}

a[href^=tel] {
  cursor: default;
}

:target {
  scroll-margin-top: 50px;
}

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 50px;
  }
}

.container {
  margin: 0 auto;
  max-width: 1400px;
  width: 90%;
}

.container.wide {
  max-width: 1600px;
}

.container.ultra-wide {
  max-width: 1800px;
}

.container.narrow {
  max-width: 1024px;
}

.u-contents .container {
  max-width: 1200px;
}

/*-----------------------------------------------------------
診療時間
-----------------------------------------------------------*/
.time-table {
  border-top: 1px solid var(--color_border);
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.time-table tr {
  border-bottom: 1px solid var(--color_border);
}

.time-table th,
.time-table td {
  text-align: center;
  padding: 15px 0;
  line-height: 1.2;
}

@media (max-width: 800px) {

  .time-table th,
  .time-table td {
    padding: 10px 0;
  }
}

.time-table th:first-child {
  width: 30%;
}

@media (max-width: 800px) {
  .time-table th:first-child {
    width: 90px;
  }
}

.time-table img {
  margin-inline: auto;
}

.time-table .small {
  display: block;
  font-size: 0.75rem;
  margin-top: 8px;
}

.time-table-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 10px;
}

.time-table-note img {
  margin-top: 4px;
}

/*ボタン*/
.btn-out {
  padding-right: 15px;
  position: relative;
}

.btn-out::before {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 0.2em;
  right: 0;
}

.btn-out::after {
  content: "";
  transition: background-size 0.3s;
  background: linear-gradient(to top, currentColor 0px, currentColor 1.1px, transparent 1px) no-repeat right bottom;
  background-size: 0% auto;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 100%;
}

@media (any-hover: hover) {
  .btn-out:hover::after {
    background-position: left bottom;
    background-size: 100% auto;
  }
}

.btn-more {
  display: inline-block;
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  font-size: 0.9375rem;
  line-height: 1.2;
  margin-right: 30px;
  position: relative;
}

.btn-more::after {
  content: "";
  background: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .btn-more:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-wrap.center {
  justify-content: center;
}

.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3125rem;
  font-family: var(--font_en);
  line-height: 1;
}

.btn-tel img {
  filter: brightness(0) invert(0);
  width: 18px;
}

.btn-map {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_en);
  border-radius: 50px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-map::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_pin.svg) no-repeat center/contain;
  mask: url(../images/share/icon_pin.svg) no-repeat center/contain;
  width: 15px;
  height: 15px;
}

@media (any-hover: hover) {
  .btn-map:hover {
    background-color: #EB7C81;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  font-size: 1.0625rem;
  line-height: 1;
  margin-bottom: 17px;
}

/*カテゴリーリスト*/
.list-category-links {
  display: grid;
  gap: 5px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.list-category-links>li {
  position: relative;
  padding-left: 15px;
}

.list-category-links>li::before {
  content: "";
  border-top: 1px solid var(--color_black);
  border-right: 1px solid var(--color_black);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 9px;
  left: 0;
  rotate: 45deg;
}

.list-category-links ul {
  margin-top: 5px;
}

.list-category-links ul li {
  position: relative;
  padding-left: 15px;
}

.list-category-links ul li::before {
  content: "└";
  position: absolute;
  top: 5px;
  left: 0;
  color: #888;
  font-size: 0.625rem;
}

.list-category-links ul ul {
  margin-top: 5px;
  margin-bottom: 5px;
}

.list-category-links a {
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
}

@media (any-hover: hover) {
  .list-category-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

/*ブログ*/
.post-under-blog {
  border-top: 1px solid var(--color_border);
  margin-bottom: 50px;
}

.post-under-blog a {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 15px;
  padding: 10px 70px 10px 10px;
  position: relative;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .post-under-blog a:hover {
    background-color: var(--color_gray_light);
  }
}

.post-under-blog a::before {
  content: "";
  background: url(../images/share/post_arrow.svg) no-repeat center/contain;
  width: 15px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1;
}

.post-under-blog .post-img img {
  border: 1px solid #eee;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 7/5;
}

.post-under-blog .post-data {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.post-under-blog time {
  display: block;
  font-size: 0.875rem;
  line-height: 1;
}

.post-under-blog .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.post-under-blog .category {
  display: inline-block;
  border: 1px solid var(--color_border);
  background-color: var(--color_gray_light);
  border-radius: 100px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 1px 5px;
  text-align: center;
}

.post-under-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.post-under-blog .no-post {
  padding: 25px 0;
}

@media (max-width: 800px) {
  .post-under-blog {
    margin-bottom: 30px;
  }

  .post-under-blog a {
    grid-template-columns: 120px 1fr;
    gap: 10px;
    padding: 10px 0;
  }

  .post-under-blog a::before {
    display: none;
  }

  .post-under-blog .post-img img {
    aspect-ratio: 7/5;
  }

  .post-under-blog .post-data {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
  }

  .post-under-blog time {
    flex-shrink: 0;
    font-size: 0.6875rem;
  }

  .post-under-blog .category {
    font-size: 0.5rem;
    padding: 0 4px;
  }

  .post-under-blog .post-ttl {
    -webkit-line-clamp: 3;
    font-size: 0.8125rem;
  }

  .post-under-blog .no-post {
    padding: 25px 0;
  }
}

/*お知らせ*/
.post-under-news {
  border-top: 1px solid var(--color_border);
  margin-bottom: 50px;
}

.post-under-news a {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 80px 100px 1fr;
  gap: 30px;
  align-items: center;
  padding: 20px 70px 20px 10px;
  position: relative;
  transition: background-color 0.3s;
}

@media (max-width: 800px) {
  .post-under-news a {
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
    padding: 16px 40px 16px 10px;
  }
}

@media (any-hover: hover) {
  .post-under-news a:hover {
    background-color: var(--color_gray_light);
  }
}

.post-under-news a::before {
  content: "";
  background: url(../images/share/post_arrow.svg) no-repeat center/contain;
  width: 10px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1;
}

.post-under-news time {
  display: block;
  font-size: 0.8125rem;
  line-height: 1;
}

.post-under-news .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.post-under-news .category {
  display: block;
  border: 1px solid var(--color_border);
  background-color: var(--color_gray_light);
  border-radius: 100px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 2px 5px;
  text-align: center;
  width: 100%;
}

@media (max-width: 800px) {
  .post-under-news .category {
    width: auto;
  }
}

.post-under-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .post-under-news .post-ttl {
    grid-column: 1/-1;
  }
}

@media (max-width: 800px) {
  .post-under-news {
    margin-bottom: 30px;
  }

  .post-under-news a {
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
    padding: 16px 40px 16px 0;
  }

  .post-under-news .category {
    width: auto;
  }

  .post-under-news .post-ttl {
    grid-column: 1/-1;
  }
}

/*詳細ページ*/
body:has(.layout-single-post) {
  position: relative;
  padding-top: 150px;
}

@media (max-width: 800px) {
  body:has(.layout-single-post) {
    padding-top: 100px;
  }
}

body:has(.layout-single-post)::before {
  content: "";
  background-color: var(--color_secondary);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  z-index: -1;
}

.layout-single-post {
  box-shadow: 0 3px 6px oklch(from #1E4B90 l c h/0.3);
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 60px 50px 40px;
  margin: 0 auto 0;
  width: min(90%, 1024px);
  position: relative;
  text-align: justify;
  z-index: 0;
}

@media (max-width: 800px) {
  .layout-single-post {
    padding: 50px 15px 20px;
  }
}

.layout-single-post::before {
  content: "";
  background-color: var(--color_primary);
  height: 5px;
  position: absolute;
  top: 15px;
  left: 50px;
  right: 50px;
  border-radius: 10px;
}

@media (max-width: 800px) {
  .layout-single-post::before {
    left: 15px;
    right: 15px;
  }
}

.layout-single-post .post-data {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.layout-single-post time {
  flex-shrink: 0;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5;
}

.layout-single-post .category-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.layout-single-post .category {
  display: inline-block;
  border: 1px solid var(--color_border);
  background-color: var(--color_gray_light);
  border-radius: 100px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 2px 8px;
  text-align: center;
}

.layout-single-post .l-ttl {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .layout-single-post .l-ttl {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}

/*ページャー*/
.post-number {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}

.post-number span,
.post-number a {
  display: inline-block;
  color: #c8c8c8;
  font-size: 1rem;
  line-height: 1;
  position: relative;
  transition: color 0.3s;
}

.post-number span:hover,
.post-number a:hover {
  color: #333;
}

.post-number .current {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 15px;
}

.post-number .prev,
.post-number .next {
  width: 10px;
  height: 10px;
  margin-top: 5px;
}

.post-number .prev {
  margin-right: 10px;
}

.post-number .next {
  margin-left: 10px;
}

.post-number .prev::before,
.post-number .next::before {
  content: "";
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}

.post-number .prev::before {
  -webkit-mask: url(../images/share/post_prev.svg) no-repeat center/contain;
  mask: url(../images/share/post_prev.svg) no-repeat center/contain;
}

.post-number .next::before {
  -webkit-mask: url(../images/share/post_next.svg) no-repeat center/contain;
  mask: url(../images/share/post_next.svg) no-repeat center/contain;
}

@media (max-width: 800px) {
  .post-number {
    gap: 15px;
    margin-top: 30px;
  }
}

.post-number-single {
  border-top: 1px solid var(--color_border);
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  text-align: center;
  margin-top: 5rem;
  padding-top: 5rem;
}

.post-number-single a {
  display: inline-block;
}

.post-number-single .all {
  background: var(--color_black);
  color: var(--color_white);
  border: 1px solid var(--color_black);
  font-size: 0.8125rem;
  font-family: var(--font_en);
  line-height: 28px;
  max-width: 200px;
  height: 30px;
  width: 100%;
  transition: background-color 0.3s, color 0.3s;
}

.post-number-single .all:hover {
  background: var(--color_base);
  color: var(--color_black);
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_black);
  width: 30px;
  height: 30px;
  position: relative;
  transition: background-color 0.3s;
}

.post-number-single .prev::before,
.post-number-single .next::before {
  content: "";
  background-color: var(--color_black);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: background-color 0.3s;
  width: 10px;
  height: 10px;
}

.post-number-single .prev::before {
  right: 8px;
}

.post-number-single .next::before {
  left: 8px;
}

.post-number-single .prev:hover,
.post-number-single .next:hover {
  background-color: var(--color_black);
}

.post-number-single .prev:hover::before,
.post-number-single .next:hover::before {
  background-color: var(--color_white);
}

.post-number-single .prev::before {
  -webkit-mask: url(../images/share/post_next.svg) no-repeat center/contain;
  mask: url(../images/share/post_next.svg) no-repeat center/contain;
}

.post-number-single .next::before {
  -webkit-mask: url(../images/share/post_prev.svg) no-repeat center/contain;
  mask: url(../images/share/post_prev.svg) no-repeat center/contain;
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 2.5% 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

@media (max-width: 800px) {
  .header {
    gap: 15px;
    padding: 10px 2.5%;
  }
}

@media (max-width: 800px) {
  .h-logo {
    max-width: 150px;
  }
}

.h-utility {
  display: flex;
  align-items: center;
  gap: 30px;
  position: fixed;
  right: 1.5%;
  z-index: 105;
}

.h-btns {
  display: flex;
  gap: 10px;
}

@media (max-width: 800px) {
  .h-btns {
    display: none;
  }
}

/*------------
Gnavi Drawer
--------------*/
html.is-open {
  height: 100%;
  overflow: hidden;
}

.gnavi-menu-btn {
  cursor: pointer;
  border: 1px solid var(--color_accent);
  background-color: var(--color_white);
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100px;
  height: 46px;
  padding: 0 15px;
  position: relative;
  z-index: 110;
}

.gnavi-menu-btn-line {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 12px;
}

.gnavi-menu-btn-line span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color_black);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.gnavi-menu-btn-line span:nth-child(1) {
  top: 0;
}

.gnavi-menu-btn-line span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.gnavi-menu-btn-line span:nth-child(3) {
  top: auto;
  bottom: 0;
}

.gnavi-menu-btn-txt {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font_en);
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: bold;
  text-align: center;
}

.gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(35deg);
}

.gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}

.gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-35deg);
}

.gnavi-drawer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  will-change: opacity;
  z-index: 100;
}

.gnavi-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}

.gnavi-drawer-container {
  background-color: #F5F5F5;
  display: grid;
  grid-template-columns: 1fr 42%;
  height: 100%;
  overflow-y: auto;
}

@media (max-width: 800px) {
  .gnavi-drawer-container {
    grid-template-columns: 1fr;
  }
}

.gnavi-drawer-left {
  padding: 40px 8% 100px;
}

@media (max-width: 800px) {
  .gnavi-drawer-left {
    padding: 35px 5% 50px;
  }
}

.gnavi-wrap {
  margin-bottom: 35px;
}

.gnavi-wrap .logo {
  margin-bottom: 20px;
}

.gnavi-wrap .info {
  display: flex;
  align-items: center;
  gap: 15px;
  line-height: 1.5;
}

.gnavi-wrap .info a {
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .gnavi-wrap {
    flex-direction: column;
    align-items: normal;
    gap: 20px;
    margin-bottom: 40px;
  }

  .gnavi-wrap .logo {
    max-width: 200px;
  }

  .gnavi-wrap .info {
    gap: 25px;
  }
}

.drawer-links-wrap {
  display: grid;
  gap: 50px;
}

.drawer-links-wrap .ttl {
  font-size: 0.9375rem;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .drawer-links-wrap {
    gap: 25px;
  }

  .drawer-links-wrap .ttl {
    font-weight: bold;
    margin-bottom: 10px;
  }
}

.drawer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 50px;
  line-height: 1.5;
  font-size: 0.875rem;
}

.drawer-links li {
  border-top: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
}

.drawer-links li+li {
  margin-top: -1px;
}

.drawer-links a {
  display: block;
  padding: 15px 0;
  position: relative;
}

.drawer-links a::before {
  content: "";
  background-color: var(--color_accent);
  -webkit-mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.drawer-links a::after {
  content: "";
  width: 100%;
  height: 1px;
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  position: absolute;
  bottom: -1px;
  left: 0;
}

@media (any-hover: hover) {
  .drawer-links a:hover::after {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

@media (max-width: 800px) {
  .drawer-links {
    gap: 0 25px;
  }

  .drawer-links a {
    padding: 10px 15px 10px 0;
  }
}

.gnavi-drawer-right {
  background: url(../images/share/gnavi-drawer-bg.jpg) no-repeat center center/cover;
  padding: 150px 8%;
  color: var(--color_white);
}

.gnavi-drawer-right .time-table-wrap {
  max-width: 400px;
  margin-inline: auto;
}

.gnavi-drawer-right .time-table img {
  filter: brightness(0) invert(1);
}

@media (max-width: 800px) {
  .gnavi-drawer-right {
    padding: 50px 5% 100px;
  }

  .gnavi-drawer-right .time-table-wrap {
    max-width: 100%;
  }
}

.gnavi-btns {
  display: grid;
  gap: 20px;
  margin-top: 50px;
  margin: 50px auto 0;
  width: 100%;
  max-width: 400px;
}

.gnavi-btns .item {
  background-color: #EB7C81;
  color: var(--color_white);
  border-radius: 6px;
  padding: 25px 50px;
  text-align: center;
}

.gnavi-btns .item02 {
  background-color: #F4999E;
}

.gnavi-btns .btn-ttl {
  font-size: 0.875rem;
  line-height: 1;
}

.gnavi-btns .btn-ttl::after {
  content: "";
  display: block;
  background-color: var(--color_white);
  width: 30px;
  height: 1px;
  margin: 15px auto 12px;
}

.gnavi-btns .tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font_en);
  font-size: 1.5rem;
  line-height: 1;
}

.gnavi-btns .reservation {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  line-height: 1;
}

.gnavi-bnrs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

@media (max-width: 800px) {
  .gnavi-bnrs {
    gap: 15px;
    margin-top: 40px;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  margin-top: auto;
  position: relative;
  padding: 100px 0 25px;
}

.f-contents {
  display: grid;
  grid-template-columns: 1fr 35%;
  gap: 5%;
  padding: 0 60px;
  margin-inline: auto;
}

.f-contents .wrap {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 5%;
}


.f-logo {
  margin-bottom: 25px;
}


.f-txt {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

.f-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3125rem;
  font-family: var(--font_en);
  line-height: 1;
}

.f-tel img {
  filter: brightness(0) invert(0);
  width: 18px;
}

.site-map {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 35px;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 70px;
}

.site-map .ttl {
  border-bottom: 1px solid var(--color_border);
  color: var(--color_accent);
  font-size: 0.9375rem;
  padding-bottom: 10px;
  margin-bottom: 20px;
}


.f-links {
  display: grid;
  grid-gap: 5px;
  line-height: 1.5;
}

.f-links a {
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  padding-bottom: 0.02rem;
}

@media (any-hover: hover) {
  .f-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.f-map iframe {
  width: 100%;
  height: 100%;
  min-height: 710px;
}

.f-bottom {
  display: grid;
  gap: 5px;
  padding: 0 60px;
  margin-top: 15px;
}

.f-bottom-links {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  line-height: 1;
}

.f-bottom-links li+li::before {
  content: "|";
  margin: 0 15px;
}

.f-bottom-links a {
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  padding-bottom: 0.02rem;
}

@media (any-hover: hover) {
  .f-bottom-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.copyright {
  color: var(--color_accent);
  font-size: 0.8125rem;
}

.pagetop {
  position: absolute;
  top: 100px;
  right: 20px;
}


@media (max-width: 1200px) {
  .footer {
    padding: 50px 0 80px;
  }

  .f-contents {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 5%;
  }

  .f-contents .wrap {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .f-logo {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 25px;
  }

  .site-map {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .f-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .f-map iframe {
    min-height: 300px;
    border-radius: 6px;
  }

  .f-bottom {
    padding: 0 5%;
    margin-top: 50px;
  }

  .pagetop {
    display: none;
  }
}

.fixed-btns {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 100;
}

.fixed-btns a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
}

.fixed-btns .tel {
  background-color: #EB7C81;
  border-radius: 26px;
  width: 60px;
  height: 45px;
}

.fixed-btns .reservation {
  background-color: #F4999E;
  border-radius: 25px;
  color: var(--color_white);
  height: 45px;
  padding: 0 20px;
}

.fixed-btns .pre-consultation {
  background-color: var(--color_white);
  border: 1px solid #ED7E84;
  color: #ED7E84;
  border-radius: 26px;
  padding: 0 20px;
  height: 45px;
}

@media (max-width: 800px) {
  .fixed-btns {
    bottom: 20px;
    right: 5%;
  }

  .fixed-btns .tel {
    width: 50px;
    height: 35px;
  }

  .fixed-btns .tel img {
    width: 20px;
  }

  .fixed-btns .reservation {
    height: 35px;
    padding: 0 15px;
  }

  .fixed-btns .pre-consultation {
    padding: 0 15px;
    height: 35px;
  }
}

.layout-sidebar {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-areas: "sidebar body";
  gap: 5rem;
  align-items: flex-start;
  margin-inline: auto;
  width: min(90%, 1024px);
}

.layout-sidebar .l-sidebar {
  grid-area: sidebar;
  position: sticky;
  top: 50px;
}

.layout-sidebar .l-label {
  border-bottom: 1px solid var(--color_border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  line-height: 1;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.layout-sidebar .l-label [lang=en] {
  font-size: 1.0625rem;
}

.layout-sidebar .l-label .jp {
  font-size: 0.625rem;
}

.layout-sidebar .l-body {
  grid-area: body;
}

@media (max-width: 800px) {
  .layout-sidebar {
    grid-template-columns: 1fr;
    grid-template-areas: "body" "sidebar";
    gap: 5rem;
  }

  .layout-sidebar .l-sidebar {
    position: static;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  display: grid;
  grid-template-columns: 1fr min(350px, 40%);
  background-color: var(--color_secondary);
  position: relative;
  min-height: 100vh;
}

.hero-left {
  position: relative;
}

.hero-right {
  display: grid;
  align-content: end;
  padding-bottom: 120px;
}

.hero-right .inner {
  display: grid;
  gap: 2em;
  font-size: 0.9375rem;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.hero-img {
  display: block;
  position: relative;
}

.hero-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100vh;
  width: 100%;
}

.hero-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: oklch(from #453B31 l c h/0.45);
  z-index: 5;
}

.hero-video {
  display: block;
  position: relative;
}

.hero-video video {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100vh;
  width: 100%;
}

.hero-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: oklch(from #453B31 l c h/0.45);
  z-index: 5;
}

.hero-catch {
  color: var(--color_white);
  line-height: 1.5;
  position: absolute;
  left: 5%;
  bottom: 5%;
  z-index: 5;
}

.hero-catch .text01 {
  font-size: 2.5rem;
  margin-bottom: 1em;
}

.hero-catch .text02 {
  font-size: 1.125rem;
}

@media (max-width: 800px) {
  .hero {
    display: block;
    height: auto;
    min-height: 0;
  }

  .hero-right {
    padding: 50px 5%;
  }

  .hero-right .inner {
    gap: 2em;
    font-size: 0.9375rem;
    width: 100%;
  }

  .hero-img img {
    height: 100svh;
  }

  .hero-video video {
    height: 100svh;
  }

  .hero-catch {
    left: 5%;
    bottom: 100px;
  }

  .hero-catch .text01 {
    font-size: 1.875rem;
    margin-bottom: 0.5em;
  }

  .hero-catch .text02 {
    font-size: 0.9375rem;
  }
}

/*------------
Components
--------------*/
.t-h2 {
  margin-bottom: 50px;
}

.t-h2 [lang=en] {
  color: var(--color_accent);
  font-size: 0.875rem;
  line-height: 1;
  margin-bottom: 15px;
}

.t-h2 .jp {
  font-size: 1.75rem;
  line-height: 1.7142857143;
}

@media (max-width: 800px) {
  .t-h2 {
    margin-bottom: 30px;
  }

  .t-h2 [lang=en] {
    margin-bottom: 10px;
  }

  .t-h2 .jp {
    font-size: 1.5625rem;
  }
}

/*------------
Section
--------------*/
.sec01 {
  margin-top: 160px;
}

@media (max-width: 800px) {
  .sec01 {
    margin-top: 100px;
  }
}

.t-news-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 0;
  margin-bottom: 40px;
}

.t-news-layout .l-ttl {
  line-height: 1;
}

.t-news-layout .l-ttl [lang=en] {
  color: var(--color_accent);
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.t-news-layout .l-ttl .jp {
  font-size: 1.3125rem;
}

@media (max-width: 800px) {
  .t-news-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.post-top-news {
  display: grid;
  border-top: 1px solid var(--color_border);
}

.post-top-news a {
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--color_border);
  padding: 25px 0;
}

.post-top-news time {
  display: inline-block;
  white-space: nowrap;
  color: var(--color_accent);
  font-size: 0.8125rem;
  font-family: var(--font_en);
}

.post-top-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

@media (any-hover: hover) {
  .post-top-news a:hover .post-ttl {
    text-decoration: underline;
  }
}

@media (max-width: 800px) {
  .post-top-news a {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }

  .post-top-news time {
    font-size: 0.875rem;
  }

  .post-top-news .post-ttl {
    -webkit-line-clamp: 2;
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}

.sec02 {
  margin-top: 160px;
}

@media (max-width: 800px) {
  .sec02 {
    margin-top: 100px;
  }
}

.sec02-layout {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 8%;
  padding-bottom: 150px;
  padding-right: 5%;
  position: relative;
  z-index: 0;
}

.sec02-layout::before {
  content: "";
  background-color: var(--color_secondary);
  position: absolute;
  inset: 170px 0 0 5%;
  z-index: -1;
}

.sec02-layout .l-img img {
  width: 100%;
  min-height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
}

.sec02-layout .l-desc {
  padding-top: 70px;
}

.sec02-layout .inner {
  max-width: 630px;
  text-align: justify;
}

.sec02-layout .l-btn {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  margin-top: 70px;
}

@media (max-width: 800px) {
  .sec02-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 0 5% 50px;
  }

  .sec02-layout::before {
    inset: 170px 0 0 0;
    z-index: -1;
  }

  .sec02-layout .l-img img {
    min-height: 0;
    border-radius: 6px;
  }

  .sec02-layout .l-desc {
    padding: 0;
  }

  .sec02-layout .l-btn {
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    margin-top: 30px;
  }
}

.sec03 {
  margin-top: 160px;
}

@media (max-width: 800px) {
  .sec03 {
    margin-top: 100px;
  }
}

.sec03-layout {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 8%;
  text-align: justify;
}

.sec03-layout p+p {
  margin-top: 1.5em;
}

.sec03-layout .l-btn {
  text-align: right;
  margin-top: 50px;
}

@media (max-width: 800px) {
  .sec03-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.sec04 {
  margin-top: 160px;
}

@media (max-width: 800px) {
  .sec04 {
    margin-top: 100px;
  }
}

.sec04-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.sec04-menu .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--color_white);
  gap: 25px;
  position: relative;
  font-size: 0.9375rem;
  border-radius: 6px;
  overflow: hidden;
  padding: 30px;
  aspect-ratio: 329/590;
}

.sec04-menu .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.sec04-menu .bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: oklch(from #453B31 l c h/0.45);
}

.sec04-menu .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sec04-menu .ttl {
  position: relative;
  z-index: 1;
  writing-mode: vertical-rl;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  font-feature-settings: normal;
}

.sec04-menu .ttl [lang=en] {
  font-size: 0.75rem;
  margin-left: 10px;
}

.sec04-menu .ttl .jp {
  font-size: 1.4375rem;
}

@media (max-width: 800px) {
  .sec04-menu {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sec04-menu .col {
    aspect-ratio: 300/440;
  }
}

.sec04-menu-links {
  display: flex;
  flex-direction: column;
}

.sec04-menu-links li {
  border-bottom: 1px solid var(--color_border);
}

.sec04-menu-links a {
  display: block;
  padding: 10px 0;
  line-height: 1;
  transition: color 0.3s;
  position: relative;
}

.sec04-menu-links a::before {
  content: "";
  -webkit-mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  transition: background-color 0.3s;
}

.sec04-menu-links a::after {
  content: "";
  width: 100%;
  height: 1px;
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  position: absolute;
  bottom: -1px;
  left: 0;
}

@media (any-hover: hover) {
  .sec04-menu-links a:hover {
    color: var(--color_pink);
  }

  .sec04-menu-links a:hover::after {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.sec05 {
  margin-top: 160px;
}

@media (max-width: 800px) {
  .sec05 {
    margin-top: 100px;
  }
}

.sec05-layout {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 8%;
  text-align: justify;
}

.sec05-layout p+p {
  margin-top: 1.5em;
}

.sec05-layout .l-btn {
  text-align: right;
  margin-top: 50px;
}

@media (max-width: 800px) {
  .sec05-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.sec06 {
  margin-top: 120px;
}

@media (max-width: 800px) {
  .sec06 {
    margin-top: 100px;
  }
}

.sec06-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.sec06-card .item {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  padding: 60px 60px 50px;
  border-radius: 6px;
}

.sec06-card .card-ttl {
  margin-bottom: 40px;
  line-height: 1;
}

.sec06-card .card-ttl [lang=en] {
  color: var(--color_accent);
  font-size: 0.75rem;
  margin-bottom: 15px;
}

.sec06-card .card-ttl .jp {
  font-size: 1.375rem;
}

.sec06-card .card-btn {
  text-align: right;
  margin-top: 40px;
}

@media (max-width: 800px) {
  .sec06-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sec06-card .item {
    padding: 30px 30px 25px;
  }

  .sec06-card .card-ttl {
    margin-bottom: 20px;
  }

  .sec06-card .card-btn {
    text-align: right;
    margin-top: 40px;
  }
}

.sec04-sec06 {
  position: relative;
  z-index: 0;
}

.sec04-sec06::before {
  content: "";
  background-color: var(--color_secondary);
  position: absolute;
  inset: 150px 0 90px 0;
  z-index: -1;
}

.sec07 {
  margin-top: 160px;
}

@media (max-width: 800px) {
  .sec07 {
    margin-top: 100px;
  }
}

.post-top-blog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 15px;
}

.post-top-blog .post-img {
  border: 1px solid var(--color_border);
  overflow: hidden;
  margin-bottom: 10px;
}

.post-top-blog .post-img img {
  aspect-ratio: 7/5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: scale 0.3s;
}

.post-top-blog time {
  display: inline-block;
  color: var(--color_accent);
  font-family: var(--font_en);
  font-size: 0.8125rem;
  line-height: 1;
  margin-bottom: 10px;
}

.post-top-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.post-top-blog .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.post-top-blog .category {
  text-box: trim-both cap alphabetic;
  border: 1px solid var(--color_border);
  display: inline-block;
  border-radius: 100px;
  font-size: 0.6875rem;
  line-height: 1;
  padding: 5px 8px;
}

@media (any-hover: hover) {
  .post-top-blog .post-img img:hover {
    scale: 1.1;
  }
}

@media (max-width: 800px) {
  .post-top-blog {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--color_border);
  }

  .post-top-blog a {
    border-bottom: 1px solid var(--color_border);
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    align-items: flex-start;
    padding: 10px 0;
  }

  .post-top-blog .post-img {
    margin-bottom: 0;
  }

  .post-top-blog .post-img img {
    aspect-ratio: 7/5;
  }

  .post-top-blog .post-desc {
    line-height: 1;
  }

  .post-top-blog time {
    text-box: trim-both cap alphabetic;
    font-size: 0.6875rem;
    margin-bottom: 5px;
  }

  .post-top-blog .post-ttl {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }

  .post-top-blog .category {
    font-size: 0.625rem;
    padding: 3px 6px;
  }
}

.sec08 {
  margin-top: 160px;
}

@media (max-width: 800px) {
  .sec08 {
    margin-top: 100px;
  }
}

.sec08-layout {
  display: grid;
  grid-template-columns: 1fr 55%;
  grid-template-areas: "body img";
}

.sec08-layout .l-img {
  grid-area: img;
}

.sec08-layout .l-img img {
  width: 100%;
  border-radius: 6px;
}

.sec08-layout .l-body {
  display: grid;
  grid-area: body;
}

.sec08-layout .l-ttl {
  position: relative;
  z-index: 1;
  writing-mode: vertical-rl;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  font-feature-settings: normal;
  margin-left: 35px;
}

.sec08-layout .l-ttl [lang=en] {
  color: var(--color_accent);
  font-size: 0.75rem;
  margin-left: 10px;
}

.sec08-layout .l-ttl .jp {
  font-size: 1.4375rem;
}

.sec08-layout .l-read {
  background-color: var(--color_white);
  padding: 80px 70px 0 150px;
  margin-top: auto;
  margin-right: -70px;
  text-align: justify;
}

.sec08-layout .l-bottom {
  text-align: right;
  margin-top: 50px;
  line-height: 1;
}

.sec08-layout .job {
  font-size: 0.8125rem;
  margin-bottom: 10px;
}

.sec08-layout .name {
  font-size: 1.5rem;
}

@media (max-width: 800px) {
  .sec08-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "body";
    gap: 35px;
  }

  .sec08-layout .l-body {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-area: body;
  }

  .sec08-layout .l-ttl {
    margin-left: 0;
    margin-top: 5px;
  }

  .sec08-layout .l-read {
    padding: 0;
    margin-right: 0;
  }

  .sec08-layout .l-bottom {
    margin-top: 40px;
  }
}

.sec09 {
  color: var(--color_white);
  background: url(../images/sec09_bg.jpg) no-repeat center/cover;
  padding: 160px 0;
  margin-top: 160px;
}

.sec09 .t-h2 [lang=en] {
  color: var(--color_white);
}

@media (max-width: 800px) {
  .sec09 {
    padding: 100px 0;
    margin-top: 100px;
  }
}

.sec09-btn {
  margin-top: 60px;
}

.sec10 {
  background-color: var(--color_secondary);
  padding: 160px 0;
  overflow: hidden;
}

.sec10 .container {
  max-width: 1200px;
}

@media (max-width: 800px) {
  .sec10 {
    padding: 100px 0;
  }
}

.sec10-layout {
  display: grid;
  grid-template-columns: 1fr 83%;
}

.sec10-layout .l-ttl {
  z-index: 1;
  writing-mode: vertical-rl;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  font-feature-settings: normal;
  position: relative;
}

.sec10-layout .l-ttl::before {
  content: "";
  background-color: var(--color_accent);
  position: absolute;
  top: -160px;
  left: 12px;
  height: 140px;
  width: 1px;
}

.sec10-layout .l-ttl [lang=en] {
  color: var(--color_accent);
  font-size: 0.75rem;
  margin-left: 10px;
}

.sec10-layout .l-ttl .jp {
  font-size: 1.4375rem;
}

@media (max-width: 800px) {
  .sec10-layout {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0;
    padding-right: 5%;
  }

  .sec10-layout .l-ttl {
    z-index: 1;
    writing-mode: vertical-rl;
    line-height: 1;
    width: -moz-fit-content;
    width: fit-content;
    font-feature-settings: normal;
  }

  .sec10-layout .l-ttl [lang=en] {
    color: var(--color_accent);
    font-size: 0.75rem;
    margin-left: 10px;
  }

  .sec10-layout .l-ttl .jp {
    font-size: 1.4375rem;
  }
}

.sec10-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}

.sec10-card .item {
  position: relative;
  z-index: 1;
}

.sec10-card .card-img img {
  border-radius: 6px;
  width: 100%;
}

.sec10-card .card-desc {
  background-color: #EB7C81;
  color: var(--color_white);
  border-radius: 6px;
  padding: 25px 50px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: -40px;
  right: -40px;
}

.sec10-card .item02 .card-desc {
  background-color: #F4999E;
}

.sec10-card .card-ttl {
  font-size: 0.875rem;
  line-height: 1;
}

.sec10-card .card-ttl::after {
  content: "";
  display: block;
  background-color: var(--color_white);
  width: 30px;
  height: 1px;
  margin: 15px auto 12px;
}

.sec10-card .tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font_en);
  font-size: 1.5rem;
  line-height: 1;
}

.sec10-card .reservation {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  line-height: 1;
}

@media (max-width: 800px) {
  .sec10-card {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sec10-card .item {
    position: relative;
    z-index: 1;
  }

  .sec10-card .card-img img {
    border-radius: 6px;
    width: 100%;
  }

  .sec10-card .card-desc {
    padding: 15px;
    bottom: -40px;
    right: -8%;
  }

  .sec10-card .card-ttl {
    font-size: 0.75rem;
  }

  .sec10-card .tel {
    gap: 10px;
    font-size: 1.375rem;
  }

  .sec10-card .tel img {
    width: 18px;
  }

  .sec10-card .reservation {
    font-size: 1.125rem;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  display: grid;
  align-items: center;
  padding: 120px 2.5% 0;
  margin-bottom: 100px;
  position: relative;
  z-index: 0;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0 0 100px;
  background-color: var(--color_secondary);
  z-index: -1;
}

.page-ttl {
  line-height: 1.5;
  margin: 50px 0 45px;
}

.page-ttl [lang=en] {
  text-transform: capitalize;
  color: var(--color_accent);
  font-size: 0.9375rem;
  margin-bottom: 5px;
}

.page-ttl .jp {
  font-size: 2.5rem;
}

.breadcrumb {
  border-bottom: 1px solid var(--color_border);
  z-index: 1;
  padding-bottom: 5px;
  text-align: right;
  position: relative;
}

.breadcrumb::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 10px;
  height: 3px;
  background-color: var(--color_primary);
}

.breadcrumb ul {
  font-size: 0.75rem;
}

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  background-color: var(--color_primary);
  width: 5px;
  height: 5px;
  margin: 0 10px 0 5px;
  vertical-align: 2px;
}

.breadcrumb a {
  opacity: 0.5;
}

.page-mv img {
  border-radius: 6px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 400px;
}

.u-contents {
  padding-bottom: 100px;
}

.u-contents p+p {
  margin-top: 1.5em;
}

@media (max-width: 800px) {
  .page-header {
    padding: 70px 5% 0;
    margin-bottom: 50px;
  }

  .page-ttl {
    margin: 30px 0 25px;
  }

  .page-ttl .jp {
    font-size: 1.875rem;
  }

  .breadcrumb {
    padding-bottom: 2px;
  }

  .breadcrumb ul {
    font-size: 0.625rem;
  }

  .page-mv img {
    height: 200px;
  }

  .u-contents {
    padding-bottom: 50px;
  }
}

.u-h2 {
  margin-bottom: 50px;
  line-height: 1;
}

.u-h2 [lang=en] {
  color: var(--color_accent);
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.u-h2 .jp {
  font-size: 1.625rem;
  line-height: 1.5;
}

.u-h2 .sub {
  opacity: 0.5;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 15px;
}

.u-h3 {
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  display: grid;
  align-items: center;
  border-radius: 3px;
  grid-template-columns: auto 1fr;
  background-color: var(--color_secondary);
  padding: 10px 17px;
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.u-h3::before {
  content: "";
  display: inline-block;
  background-color: var(--color_primary);
  height: 80%;
  width: 3px;
}

.u-h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.u-h4:before {
  content: "●";
  color: #EB7C81;
  font-size: 0.625rem;
}

.u-catch {
  font-weight: bold;
  font-size: 1.5625rem;
  letter-spacing: 0.1em;
}

.u-catch .top-dot::before {
  background-position: 3px 0;
}

@media (max-width: 800px) {
  .u-catch {
    font-size: 1.25rem;
  }
}

@media (max-width: 800px) {
  .u-h2 {
    margin-bottom: 30px;
  }

  .u-h2 .jp {
    font-size: 1.4375rem;
  }

  .u-h3 {
    font-size: 1.125rem;
    margin-bottom: 20px;
  }

  .u-h4 {
    font-size: 1.0625rem;
    margin-bottom: 10px;
  }
}

.tall+.tall {
  margin-top: 120px;
}

.bg-tall {
  background-color: var(--color_secondary);
  padding: 100px 0;
}

@media (max-width: 800px) {
  .bg-tall {
    padding: 60px 0;
  }
}

.short+.short {
  margin-top: 60px;
}

.x-short+.x-short {
  margin-top: 40px;
}

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall+.tall {
    margin-top: 60px;
  }

  .short+.short {
    margin-top: 50px;
  }

  .x-short+.x-short {
    margin-top: 15px;
  }
}

.list-disc {
  display: grid;
  grid-gap: 5px;
}

.list-disc li {
  list-style: disc;
  margin-left: 1.5em;
  line-height: 1.5;
}

.list-disc li::marker {
  color: var(--color_black);
  font-size: 0.9375rem;
}

.list-disc.center {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.list-check {
  display: grid;
  grid-gap: 5px;
}

.list-check li {
  position: relative;
  padding-left: 30px;
}

.list-check li::before {
  content: "";
  background: url(../images/share/icon_check.svg) no-repeat center/contain;
  position: absolute;
  top: 7px;
  left: 0;
  width: 18px;
  height: 18px;
}

.list-check02 {
  display: grid;
  gap: 15px 50px;
}

.list-check02 li {
  border-bottom: 1px dashed var(--color_border);
  font-size: 1.125rem;
  line-height: 1.8;
  position: relative;
  padding-left: 35px;
  padding-bottom: 15px;
}

.list-check02 li::before {
  content: "";
  background: url(../images/share/icon_check.svg) no-repeat center/contain;
  position: absolute;
  top: 6px;
  left: 0;
  width: 22px;
  height: 22px;
}

@media (max-width: 800px) {
  .list-check02 {
    gap: 15px 50px;
  }

  .list-check02 li {
    font-size: 1rem;
  }

  .list-check02 li::before {
    top: 4px;
  }
}

.list-num {
  counter-reset: number;
  display: grid;
  grid-gap: 5px;
}

.list-num>li {
  padding-left: 30px;
  position: relative;
}

.list-num>li:before {
  background-color: var(--color_primary);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 0.6875rem;
  position: absolute;
  top: 6px;
  left: 0;
  line-height: 20px;
  text-align: center;
  width: 20px;
  height: 20px;
}

.table-style01 th,
.table-style01 td {
  border: 1px solid #c9c9c9;
  padding: 15px;
  vertical-align: middle;
}

.table-style01 th {
  background-color: #e2e2e2;
}

.table-style01 .bg01 {
  background-color: #f5f5f5;
}

.table-scroll-txt {
  display: none;
}

@media (max-width: 800px) {

  .table-style01 th,
  .table-style01 td {
    padding: 10px;
    line-height: 1.5;
  }

  .table-scroll-txt {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .table-scroll-txt::before {
    content: "";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat center/contain;
    width: 30px;
    height: 24.5px;
    margin-right: 10px;
  }

  .table-scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }

  .table-scroll::-webkit-scrollbar {
    height: 5px;
  }

  .table-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }

  .table-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }

  .table-scroll table {
    margin-bottom: 10px !important;
    width: 150%;
  }
}

.under-slider01 .splide {
  margin: 0 auto;
}

.under-slider01 .splide__track {
  overflow: visible;
}

.under-slider01 .splide__slide:not(.is-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
}

.under-slider01 .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.under-slider01 .splide__arrow--prev {
  background: url(../images/share/splide_prev.svg) no-repeat center/auto 25px;
  left: calc((100% - 875px) / 2);
}

.under-slider01 .splide__arrow--next {
  background: url(../images/share/splide_next.svg) no-repeat center/auto 25px;
  right: calc((100% - 875px) / 2);
}

.under-slider01 .splide__slide img {
  width: 100%;
}

.under-slider01 .item-desc {
  margin-top: 15px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.under-slider01 .item-ttl {
  font-size: 1rem;
  margin-bottom: 5px;
}

.under-slider02 .item-img {
  position: relative;
}

.under-slider02 figcaption {
  background: #fff;
  font-size: 0.6875rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  padding: 3px 5px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.under-slider02 .splide__pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.youtube iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}

.google-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 450px;
}

@media (max-width: 800px) {
  .google-map iframe {
    height: 300px;
  }
}

/*------------
レイアウト
--------------*/
.l-imgR,
.l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
}

.l-imgR .l-img,
.l-imgL .l-img {
  width: 40%;
}

.l-imgR .l-img.small,
.l-imgL .l-img.small {
  width: 30%;
}

.l-imgR .l-desc,
.l-imgL .l-desc {
  flex: 1;
}

.l-imgR figcaption,
.l-imgL figcaption {
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  margin-top: 10px;
}

.l-imgR {
  flex-direction: row-reverse;
}

.fl-wrap {
  display: flow-root;
}

.fl-imgR,
.fl-imgL {
  width: 40%;
}

.fl-imgR.small,
.fl-imgL.small {
  width: 30%;
}

.fl-imgR {
  float: right;
  margin: 0 0 15px 35px;
}

.fl-imgL {
  float: left;
  margin: 0 35px 15px 0;
}

@media (max-width: 800px) {

  .l-imgR,
  .l-imgL {
    flex-direction: column;
    gap: 15px;
  }

  .l-imgR .l-img,
  .l-imgL .l-img {
    text-align: center;
    width: 100%;
  }

  .l-imgR .l-img.small,
  .l-imgL .l-img.small {
    width: 100%;
  }

  .l-imgR.sp-reverse,
  .l-imgL.sp-reverse {
    flex-direction: column-reverse;
  }

  .fl-imgR,
  .fl-imgL {
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }

  .fl-imgR.small,
  .fl-imgL.small {
    width: 100%;
  }
}

/*------------
Add
--------------*/
.clinic-layout {
  display: grid;
  grid-template-columns: 1fr 65%;
  gap: 3%;
  position: relative;
}

.clinic-layout .l-img {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 3%;
  align-items: end;
}

.clinic-layout .l-img .img02 {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.clinic-layout .l-desc {
  flex: 1;
  text-align: justify;
}

@media (max-width: 800px) {
  .clinic-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

.layout-style01 {
  display: grid;
  grid-template-columns: 1fr 65%;
  gap: 3%;
}

.layout-style01 .l-body {
  flex: 1;
  text-align: justify;
}

@media (max-width: 800px) {
  .layout-style01 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.layout-style02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "img body";
  gap: 5%;
}

.layout-style02.reverse {
  grid-template-areas: "body img";
}

.layout-style02 .l-img {
  grid-area: img;
}

.layout-style02 .l-img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.layout-style02 .l-img img.right {
  -o-object-position: right;
  object-position: right;
}

.layout-style02 .l-body {
  grid-area: body;
  flex: 1;
}

.layout-style02 .l-ttl {
  margin-bottom: 30px;
}

.layout-style02 .l-ttl [lang=en] {
  color: var(--color_accent);
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.layout-style02 .l-ttl .jp {
  font-size: 1.4375rem;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1.5px;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.layout-style02 .l-catch {
  font-size: 1.4375rem;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1.5px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .layout-style02 {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "body";
    gap: 35px;
  }

  .layout-style02.reverse {
    grid-template-areas: "img" "body";
  }

  .layout-style02 .l-img img {
    aspect-ratio: 7/5;
    height: 200px;
  }

  .layout-style02 .l-ttl {
    margin-bottom: 30px;
  }

  .layout-style02 .l-ttl [lang=en] {
    color: var(--color_accent);
    font-size: 0.75rem;
    margin-bottom: 10px;
  }

  .layout-style02 .l-ttl .jp {
    font-size: 1.4375rem;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1.5px;
    line-height: 1.7;
    letter-spacing: 0.1em;
  }

  .layout-style02 .l-catch {
    font-size: 1.375rem;
  }
}

.dl-overview {
  border-bottom: 1px solid var(--color_border);
}

.dl-overview .item {
  border-top: 1px solid var(--color_border);
  padding: 30px 0;
  display: grid;
  grid-template-columns: 25% 1fr;
  line-height: 1.5;
  font-size: 0.9375rem;
}

.dl-overview .item dt {
  font-weight: bold;
}

@media (max-width: 800px) {
  .dl-overview .item {
    padding: 15px 0;
    grid-template-columns: 80px 1fr;
  }
}

.u-map iframe {
  width: 100%;
  height: 450px;
}

@media (max-width: 800px) {
  .u-map iframe {
    height: 300px;
  }
}

.u-map-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .u-map-info {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
}

.icon-ttl {
  border-bottom: 1px solid var(--color_border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
  line-height: 1.5;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.layout-facility {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 3%;
  padding-left: calc((90% - 1200px) / 2);
  margin-left: 5%;
  position: relative;
}

.layout-facility .splide {
  position: static;
}

.layout-facility .item-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.layout-facility .item-img figcaption {
  font-size: 0.875rem;
  line-height: 1;
  margin-top: 10px;
}

.layout-facility .splide__arrows {
  display: flex;
  gap: 10px;
  position: absolute;
  bottom: 0;
  left: calc((95% - 1200px) / 2);

  @media (max-width: 1340px) {
    left: 0;
  }
}

.layout-facility .splide__arrow {
  border-radius: 50px;
  background: var(--color_primary);
  width: 60px;
  height: 25px;
  transition: 0.3s;
  position: relative;
  left: 0;
  bottom: 0;
}

@media (any-hover: hover) {
  .layout-facility .splide__arrow:hover {
    background-color: #EB7C81;
  }
}

.layout-facility .splide__arrow.prev::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}

.layout-facility .splide__arrow.next::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
}

@media (max-width: 800px) {
  .layout-facility {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 50px;
  }
}

.dl-facility-standards {
  border-top: 1px solid var(--color_border);
}

.dl-facility-standards .item {
  border-bottom: 1px solid var(--color_border);
  padding: 30px 0;
}

.dl-facility-standards dt {
  font-weight: bold;
  line-height: 1;
  margin-bottom: 25px;
}

.dl-facility-standards dd {
  font-size: 0.9375rem;
  text-align: justify;
}

.dl-facility-standards .box {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 6px;
}

.list-equipment {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.list-features {
  border-top: 1px solid var(--color_border);
}

.list-features>li {
  display: grid;
  grid-template-columns: 1fr 30%;
  grid-template-areas: "desc img";
  gap: 15%;
  padding: 30px 0;
  border-bottom: 1px solid var(--color_border);
}

.list-features .list-img {
  grid-area: img;
}

.list-features .list-img img {
  aspect-ratio: 5/7;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.list-features .list-desc {
  grid-area: desc;
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: justify;
}

.list-features .list-ttl {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .list-features>li {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "desc";
    gap: 25px;
    padding: 25px 0;
  }

  .list-features .list-img img {
    aspect-ratio: 7/5;
  }

  .list-features .list-ttl {
    margin-bottom: 15px;
  }
}

.list-belongings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.list-belongings li {
  border: 1px solid var(--color_border);
  padding: 15px;
  border-radius: 6px;
  text-align: center;
}

.list-belongings figcaption {
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 800px) {
  .list-belongings {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .list-belongings li {
    padding: 10px;
  }

  .list-belongings figcaption {
    font-size: 0.8125rem;
  }
}

.cash-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 10px;
}

.cash-list li {
  background: #fff;
  border: 1px solid #f5f5f5;
  border-radius: 2px;
  display: grid;
  place-items: center;
  padding: 5px 10px;
}

.cash-list img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 50px;
}

.layout-cta {
  background: var(--color_secondary);
  border-radius: 6px;
  padding: 50px;
  margin: 0 auto;
}

.layout-cta .l-ttl {
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 35px;
  width: -moz-fit-content;
  width: fit-content;
}

.layout-cta .l-ttl [lang=en] {
  color: var(--color_accent);
  font-size: 0.75rem;
  margin-bottom: 5px;
}

.layout-cta .l-ttl .jp {
  font-size: 1.5625rem;
}

.layout-cta .wrap {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  grid-gap: 120px;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.layout-cta .wrap .col {
  text-align: center;
}

.layout-cta .wrap .col+.col {
  position: relative;
}

.layout-cta .wrap .col+.col::before {
  content: "";
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #333 2px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 8px);
  background-repeat: repeat-y;
  background-size: 2px 9px;
  position: absolute;
  top: 0;
  left: -60px;
}

.layout-cta .col-ttl {
  text-align: center;
  margin-bottom: 10px;
}

.layout-cta .l-tel {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-family: var(--font_en);
  font-size: 2.1875rem;
  line-height: 1;
  margin: 0 auto;
}

.layout-cta .l-tel::before {
  content: "";
  background-color: var(--color_black);
  -webkit-mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  width: 28px;
  height: 28px;
}

.layout-cta .l-btn {
  border-radius: 50px;
  background: var(--color_primary);
  color: var(--color_white);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding: 10px;
  min-height: 70px;
  transition: all 0.3s ease-out;
}

.layout-cta .l-time {
  display: grid;
  grid-gap: 5px;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 20px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}

.layout-cta .l-time .item {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  grid-gap: 10px;
  text-align: left;
}

.layout-cta .l-time dt {
  border: 1px solid var(--color_black);
  text-align: center;
  font-weight: bold;
  border-radius: 50px;
  font-size: 0.625rem;
  display: grid;
  place-content: center;
  padding: 2px;
  margin-top: 1px;
}

@media (max-width: 1024px) {
  .layout-cta {
    padding: 35px 25px;
  }

  .layout-cta .l-ttl {
    margin: 0 auto 25px;
  }

  .layout-cta .l-ttl .en {
    font-size: 12px;
  }

  .layout-cta .l-ttl .jp {
    font-size: 25px;
  }

  .layout-cta .wrap {
    grid-template-columns: 1fr;
    grid-gap: 60px;
  }

  .layout-cta .wrap .col+.col::before {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #333 2px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 8px);
    background-repeat: repeat-x;
    background-size: 10px 2px;
    top: -30px;
    left: 0;
  }

  .layout-cta .l-tel {
    font-size: 30px;
  }

  .layout-cta .l-tel img {
    width: 25px;
  }

  .layout-cta .l-btn {
    font-size: 18px;
    min-height: 60px;
    min-width: 0;
  }

  .layout-cta .l-btn img {
    width: 25px;
  }
}

.box-attention {
  border: 2px solid var(--color_red);
  background-color: oklch(from var(--color_red) l c h/0.05);
  padding: 30px;
  border-radius: 6px;
}

.box-attention .box-ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color_red);
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.box-attention .box-ttl img {
  flex-shrink: 0;
}

.box-attention .box-ttl02 {
  color: var(--color_red);
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

.box-attention .inner-box {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  font-size: 0.875rem;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 15px;
}

.box-attention .list-disc li::marker {
  color: var(--color_red);
}

.box-attention hr {
  border-color: var(--color_border);
}

@media (max-width: 800px) {
  .box-attention {
    padding: 20px;
  }

  .box-attention hr {
    margin: 25px 0;
  }
}

.dl-attention {
  display: grid;
  gap: 15px;
}

.dl-attention .item {
  display: grid;
  gap: 5px;
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  padding: 15px;
  border-radius: 6px;
  font-size: 0.875rem;
  line-height: 1.8;
}

.dl-attention dt {
  font-weight: bold;
  font-size: 0.9375rem;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.dl-attention dt:before {
  content: "●";
  color: var(--color_red);
  font-size: 0.625rem;
  position: absolute;
  left: 0;
  top: 5px;
}

.flow-style01 {
  border-top: 1px dashed var(--color_border);
}

.flow-style01>li {
  display: grid;
  grid-template-columns: 15% 1fr;
  border-bottom: 1px dashed var(--color_border);
  padding: 10px 0;
  gap: 30px;
  position: relative;
}

.flow-style01 .flow-no {
  display: grid;
  place-content: center;
  background-color: var(--color_secondary);
  border-radius: 3px;
  font-size: 1.875rem;
  line-height: 1;
  text-align: center;
  z-index: 0;
}

.flow-style01 .flow-no span {
  display: block;
  font-size: 0.75rem;
}

.flow-style01 .flow-ttl {
  font-size: 1.0625rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 5px;
}

.flow-style01 .flow-body {
  display: grid;
  grid-template-columns: 1fr 30%;
  gap: 3%;
  font-size: 0.9375rem;
  line-height: 1.8;
  padding: 20px 0;
}

@media (max-width: 800px) {
  .flow-style01 {
    border-top: 1px dashed var(--color_border);
  }

  .flow-style01>li {
    display: grid;
    grid-template-columns: 15% 1fr;
    border-bottom: 1px dashed var(--color_border);
    padding: 20px 0;
    gap: 15px;
    position: relative;
  }

  .flow-style01 .flow-no {
    place-content: start center;
    font-size: 1.875rem;
    padding-top: 15px;
  }

  .flow-style01 .flow-ttl {
    margin-bottom: 10px;
  }

  .flow-style01 .flow-body {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "desc";
    gap: 25px;
    padding: 0;
  }

  .flow-style01 .flow-img {
    grid-area: img;
  }

  .flow-style01 .flow-desc {
    grid-area: desc;
  }
}

.flow-style02 {
  border-radius: 6px;
  border: 1px solid var(--color_border);
  padding: 50px;
}

.flow-style02 li {
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  display: grid;
  grid-template-columns: 105px 1fr;
  align-items: flex-start;
  padding-bottom: 30px;
  position: relative;
}

.flow-style02 li::before {
  content: "";
  background-color: var(--color_border);
  width: 1px;
  position: absolute;
  top: 0;
  bottom: -15px;
  left: 79px;
}

.flow-style02 li:first-child::before {
  top: 12px;
}

.flow-style02 li:last-child::before {
  display: none;
}

.flow-style02 .time {
  font-family: var(--font_en);
  font-size: 1.125rem;
  line-height: 1.5;
  position: relative;
}

.flow-style02 .time::after {
  content: "";
  background-color: var(--color_primary);
  border: 5px solid var(--color_white);
  width: 20px;
  height: 20px;
  border-radius: 100px;
  position: absolute;
  top: 4px;
  right: 15.5px;
}

.flow-style02 .box {
  background-color: var(--color_gray_light);
  border: 1px solid var(--color_gray);
  padding: 15px;
}

.flow-style02 .wrap {
  margin-top: 1em;
  display: grid;
  grid-template-columns: 1fr 30%;
  grid-template-areas: "desc img";
  gap: 25px;
}

.flow-style02 .wrap .desc {
  grid-area: desc;
  text-align: justify;
}

.flow-style02 .wrap .img {
  grid-area: img;
}

.flow-style02 .ttl {
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  .flow-style02 {
    padding: 15px;
  }

  .flow-style02 .wrap {
    margin-top: 1em;
    grid-template-columns: 1fr;
    grid-template-areas: "img" "desc";
    gap: 15px;
  }

  .flow-style02 .wrap .desc {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.layout-doctor {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 8%;
  position: relative;
}

.layout-doctor .l-img {}

.layout-doctor .l-img img {
  width: 100%;
}

.layout-doctor .l-body {}

.layout-doctor .l-ttl {
  background-color: var(--color_white);
  display: grid;
  gap: 10px;
  writing-mode: vertical-rl;
  line-height: 1;
  font-feature-settings: normal;
  padding: 20px 15px;
  border-radius: 0 0 6px 0;
  position: absolute;
  top: 0;
  left: 0;
}

.layout-doctor .l-ttl .jp {
  font-size: 1.4375rem;
}

.layout-doctor .l-ttl [lang=en] {
  color: var(--color_accent);
  font-size: 0.75rem;
}

.layout-doctor .l-label {
  color: var(--color_accent);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.layout-doctor .l-catch {
  font-size: 1.75rem;
  line-height: 1.5;
  margin-bottom: 35px;
}

@media (max-width: 800px) {
  .layout-doctor {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .layout-doctor .l-ttl {
    padding: 20px 10px 20px 0;
  }

  .layout-doctor .l-ttl .jp {
    font-size: 1.25rem;
  }

  .layout-doctor .l-ttl [lang=en] {
    font-size: 0.625rem;
  }

  .layout-doctor .l-catch {
    font-size: 1.5625rem;
    margin-bottom: 25px;
  }
}

.layout-profile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5%;
  margin-top: 50px;
  font-size: 0.9375rem;
}

.layout-profile .col {
  border: 1px solid var(--color_border);
  border-radius: 6px;
  padding: 30px;
}

.layout-profile .col-ttl {
  color: var(--color_pink);
  border-bottom: 1px dashed var(--color_border);
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .layout-profile {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .layout-profile .col {
    padding: 25px;
  }
}

.dl-profile {
  display: grid;
  gap: 10px;
}

.dl-profile .item {
  display: grid;
  grid-template-columns: 100px 1fr;
  border-bottom: 1px dashed var(--color_gray);
  padding-bottom: 10px;
  line-height: 1.5;
}

.dl-profile dt {
  color: var(--color_accent);
}

.layout-toc {
  display: grid;
  gap: 25px;
  background-color: var(--color_secondary);
  padding: 35px;
  border-radius: 6px;
  margin-bottom: 100px;
}

.layout-toc .l-ttl {
  line-height: 1;
}

.layout-toc .l-ttl [lang=en] {
  color: var(--color_accent);
  font-size: 0.75rem;
  margin-bottom: 5px;
}

.layout-toc .l-ttl .jp {
  font-size: 1.125rem;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .layout-toc {
    gap: 15px;
    padding: 15px;
    margin-bottom: 50px;
  }

  .layout-toc .l-ttl .jp {
    font-size: 1rem;
  }
}

.list-toc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px 25px;
}

.list-toc a {
  display: block;
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 10px;
  line-height: 1.5;
  font-size: 0.9375rem;
  position: relative;
}

.list-toc a::before {
  content: "";
  border: 1px solid var(--color_accent);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 10px;
  right: 0;
  transition: 0.3s;
}

.list-toc a::after {
  content: "";
  background-color: var(--color_accent);
  -webkit-mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: 14px;
  right: 5px;
  rotate: 90deg;
}

@media (any-hover: hover) {
  .list-toc a:hover::before {
    background-color: var(--color_accent);
  }

  .list-toc a:hover::after {
    background-color: var(--color_white);
  }
}

@media (max-width: 800px) {
  .list-toc {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .list-toc a {
    padding-bottom: 5px;
    line-height: 1.5;
    font-size: 0.9375rem;
  }

  .list-toc a::before {
    content: "";
    border: 1px solid var(--color_accent);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    position: absolute;
    bottom: 10px;
    right: 0;
    transition: 0.3s;
  }

  .list-toc a::after {
    content: "";
    background-color: var(--color_accent);
    -webkit-mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
    mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
    width: 8px;
    height: 8px;
    position: absolute;
    bottom: 14px;
    right: 5px;
    rotate: 90deg;
  }
}

.layout-concept {
  background-color: var(--color_white);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 50px;
  border-radius: 6px;
  width: min(100%, 800px);
  margin-inline: auto;
}

.layout-concept .l-ttl {
  line-height: 1;
  margin-bottom: 35px;
  text-align: center;
}

.layout-concept .l-ttl [lang=en] {
  color: var(--color_accent);
  font-size: 0.75rem;
  margin-bottom: 5px;
}

.layout-concept .l-ttl .jp {
  font-size: 1.5625rem;
  line-height: 1.5;
}

.layout-concept p {
  text-align: center;
}

.layout-concept .dot {
  display: block;
  background-color: var(--color_primary);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 20px auto;
}

@media (max-width: 800px) {
  .layout-concept {
    padding: 35px 25px;
    border-radius: 6px;
  }
}

.layout-treatment {
  border: 1px solid var(--color_border);
  border-radius: 6px;
  padding: 30px;
}

.layout-treatment .l-header {
  display: grid;
  grid-template-columns: 1fr 30%;
  gap: 3%;
  align-items: center;
  margin-bottom: 30px;
}

.layout-treatment .l-ttl {
  line-height: 1;
  margin-bottom: 25px;
}

.layout-treatment .l-ttl [lang=en] {
  color: var(--color_accent);
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.layout-treatment .l-ttl .jp {
  font-size: 1.25rem;
}

.layout-treatment p {
  text-align: justify;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.layout-treatment .l-btn {
  margin-top: 30px;
}

.layout-treatment .l-box {
  background-color: var(--color_secondary);
  padding: 20px;
  border-radius: 6px;
  margin-top: 30px;
  line-height: 1.5;
}

.layout-treatment .l-box .l-box-ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.layout-treatment .l-box p {
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: justify;
}

@media (max-width: 800px) {
  .layout-treatment {
    padding: 15px;
  }

  .layout-treatment .l-header {
    grid-template-columns: 1fr 50%;
  }
}

.box-style01 {
  border: 1px solid var(--color_border);
  background-color: oklch(from var(--color_secondary) l c h/0.5);
  border-radius: 6px;
  padding: 60px;
  line-height: 1.5;
  position: relative;
}

.box-style01 .box-ttl {
  font-weight: bold;
  font-size: 1.4375rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  margin-bottom: 35px;
  text-align: center;
}

.box-style01 .box-ttl .dot {
  color: var(--color_pink);
  position: relative;
}

.box-style01 .box-ttl .dot::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 10px;
  background-size: 1em 10px;
  background-repeat: repeat-x;
  background-position: 1px 0;
  background-image: radial-gradient(circle at center center, var(--color_pink) 0px, var(--color_pink) 3px, rgba(255, 255, 255, 0) 3px, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 800px) {
  .box-style01 {
    padding: 35px 25px;
  }

  .box-style01 .box-ttl {
    font-size: 1.25rem;
    margin-bottom: 25px;
  }
}

.box-style02 {
  border: 1px solid var(--color_border);
  background-color: oklch(from var(--color_secondary) l c h/0.5);
  background-color: var(--color_secondary);
  border-radius: 6px;
  padding: 35px;
  line-height: 1.5;
  position: relative;
}

@media (max-width: 800px) {
  .box-style02 {
    padding: 15px;
  }
}

.box-style03 {
  background-color: oklch(from var(--color_secondary) l c h/0.5);
  background-color: var(--color_secondary);
  border-radius: 6px;
  padding: 25px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .box-style03 {
    padding: 15px;
  }
}

.box-style04 {
  border: 1px solid var(--color_border);
  border-radius: 6px;
  padding: 25px;
}

@media (max-width: 800px) {
  .box-style04 {
    padding: 15px;
  }
}

.list-price {
  display: grid;
  gap: 10px;
  line-height: 1.8;
}

.list-price>li {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 20px;
}

.list-price .dot {
  flex: 1;
  background-image: linear-gradient(to right, #333, #333 2px, transparent 2px, transparent 7px);
  background-size: 7px 2px;
  background-repeat: repeat-x;
  background-position: 0 48%;
  height: 2px;
  margin-top: 15px;
  min-width: 20px;
}

.list-price .price {
  text-align: right;
  min-width: 100px;
}

.list-price .tax {
  font-size: 0.75rem;
  margin-left: 5px;
}

.dl-style01 {
  display: grid;
  gap: 15px;
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 15px;
  line-height: 1.2;
}

.dl-style01 .item {
  border-top: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 15px;
  padding-top: 15px;
}

.dl-style01 dt {
  background-color: var(--color_secondary);
  border-radius: 2px;
  text-align: center;
  font-size: 0.875rem;
  display: grid;
  place-content: center;
  padding: 2px 10px 1px;
}

.dl-style01 dd {
  font-size: 0.9375rem;
  line-height: 1.5;
  padding: 5px 0;
}

.dl-style01 .tax {
  font-size: 0.75rem;
  margin-left: 5px;
}

@media (max-width: 800px) {
  .dl-style01 {
    padding-bottom: 10px;
  }

  .dl-style01 .item {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 10px;
  }

  .dl-style01 dt {
    place-content: start;
    padding: 12px 10px;
    font-size: 0.9375rem;
    text-align: left;
  }

  .dl-style01 dd {
    padding: 10px 0;
  }
}

.dl-style02 {
  border-top: 1px solid var(--color_border);
}

.dl-style02 .item {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 25% 1fr;
  padding: 15px 0;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.card-style01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card-style01>li {
  border: 1px solid var(--color_border);
  padding: 20px;
  border-radius: 6px;
  background-color: var(--color_white);
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: justify;
}

.card-style01 .card-img {
  margin-bottom: 20px;
}

.card-style01 .card-img img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.card-style01 .card-ttl {
  color: var(--color_pink);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .card-style01 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.card-style02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card-style02 li {
  border: 1px solid var(--color_border);
  padding: 15px;
  border-radius: 6px;
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.8;
}

.card-style02 .label {
  flex-shrink: 0;
  background-color: var(--color_primary);
  color: var(--color_white);
  padding: 1px 7px;
  border-radius: 2px;
  font-size: 0.8125rem;
}

@media (max-width: 800px) {
  .card-style02 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.card-style03 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card-style03 li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 15px;
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  padding: 20px;
  border-radius: 6px;
}

.card-style03 .card-no {
  display: grid;
  gap: 2px;
  place-content: center;
  background-color: var(--color_pink);
  color: var(--color_white);
  border-radius: 100px;
  font-family: var(--font_en);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0;
  margin: 0 auto;
  text-align: center;
  width: 60px;
  height: 60px;
}

.card-style03 .card-no .small {
  font-size: 0.625rem;
}

.card-style03 .card-ttl {
  display: grid;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 15px;
}

.card-style03 .card-img img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 800px) {
  .card-style03 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.list-room {
  display: grid;
  gap: 25px;
}

.list-room>li {
  border: 1px solid var(--color_border);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 5%;
  padding: 25px;
}

.list-room .list-img img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.list-room .list-body {
  display: grid;
}

.list-room .list-ttl {
  color: var(--color_pink);
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

.list-room .dl-style02 {
  margin-top: auto;
}

@media (max-width: 800px) {
  .list-room {
    gap: 25px;
  }

  .list-room>li {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 15px;
  }

  .list-room .list-ttl {
    font-size: 1.125rem;
    margin-bottom: 20px;
  }
}

.test {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.test li {
  color: var(--color_white);
  overflow: hidden;
}

.test .list-img {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: grid;
  place-content: center;
}

.test .list-img .front {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.test .list-img .back {
  pointer-events: none;
  filter: blur(5px);
  position: absolute;
  inset: -5px;
  z-index: 0;
}

.test .list-img .back img {
  -o-object-fit: cover;
  object-fit: cover;
  height: calc(100% + 10px);
  width: calc(100% + 10px);
}

.test p {
  background-color: #333;
  padding: 15px;
}

.faq-style {
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  border-radius: 6px;
  transition: 0.3s;
}

.faq-style+.faq-style {
  margin-top: 15px;
}

.faq-style .faq-summary {
  display: grid;
  grid-template-columns: 50px 1fr 30px;
  align-items: center;
  gap: 25px;
  cursor: pointer;
  padding: 20px;
  line-height: 1;
  position: relative;
}

.faq-style .faq-summary .faq-ttl {
  font-size: 1.125rem;
  line-height: 1.5;
}

.faq-style .faq-summary::-webkit-details-marker {
  display: none;
}

.faq-style .faq-icon {
  background-color: var(--color_primary);
  border-radius: 100px;
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 1.25rem;
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
}

.faq-style .faq-content .faq-icon {
  background-color: var(--color_gray_light);
  color: var(--color_primary);
}

.faq-style .faq-content {
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.faq-style .faq-wrap {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 25px;
  padding: 0 20px 25px;
}

.faq-style .faq-open-icon {
  background-color: var(--color_primary);
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  position: relative;
  transition: 0.3s;
}

.faq-style .faq-open-icon::before,
.faq-style .faq-open-icon::after {
  content: "";
  display: block;
  background: var(--color_white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.faq-style .faq-open-icon::before {
  width: 10px;
  height: 2px;
}

.faq-style .faq-open-icon::after {
  width: 2px;
  height: 10px;
  transition: transform 0.5s;
}

.faq-style.is-open .faq-open-icon {
  background-color: #d2d2d2;
}

.faq-style.is-open .faq-open-icon::after {
  opacity: 0;
}

@media (max-width: 800px) {
  .faq-style {
    border-radius: 10px;
  }

  .faq-style+.faq-style {
    margin-top: 15px;
  }

  .faq-style .faq-summary {
    grid-template-columns: 40px 1fr 30px;
    gap: 15px;
    padding: 15px;
  }

  .faq-style .faq-summary .faq-ttl {
    font-size: 1.125rem;
  }

  .faq-style .faq-icon {
    font-size: 1.125rem;
    width: 40px;
    height: 40px;
  }

  .faq-style .faq-wrap {
    grid-template-columns: 40px 1fr;
    gap: 15px;
    padding: 0 15px 15px;
  }
}

.card-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card-links a {
  display: grid;
  gap: 20px;
  border: 1px solid var(--color_border);
  border-radius: 6px;
  padding: 10px 10px 15px;
}

.card-links .card-img {
  overflow: hidden;
  border-radius: 6px;
}

.card-links .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 7/5;
  transition: transform 0.3s ease-out;
}

.card-links .card-ttl {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
}

.card-links .card-ttl::after {
  content: "";
  background: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
}

@media (any-hover: hover) {
  .card-links a:hover .card-img img {
    transform: scale(1.05);
  }
}

@media (max-width: 800px) {
  .card-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .card-links a {
    gap: 15px;
    padding: 10px 10px 15px;
    height: 100%;
  }

  .card-links .card-ttl {
    gap: 5px;
    align-items: center;
    font-size: 0.875rem;
  }
}

.contact-layout {
  display: grid;
  gap: 50px;
  align-items: flex-start;
}

.contact-layout .l-desc {
  font-size: 0.9375rem;
  line-height: 1.8;
}

.contact-layout .l-form {
  border: 1px solid var(--color_border);
  border-radius: 6px;
  padding: 50px;
}

.contact-layout .item-tel {
  background-color: var(--color_pink);
  color: var(--color_white);
  border-radius: 5px;
  padding: 20px;
  text-align: center;
}

.contact-layout .item-tel .time {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-top: 5px;
}

.contact-layout .item-ttl {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.contact-layout .tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.875rem;
  font-family: var(--font_en);
  line-height: 1;
  margin-bottom: 10px;
}

.contact-layout .tel img {
  width: 22px;
}

.contact-layout .item-reservation {
  background-color: #F4999E;
  color: var(--color_white);
  border-radius: 5px;
  padding: 20px;
}

.contact-layout .btn {
  display: inline-flex;
  border: 1px solid var(--color_white);
  border-radius: 50px;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  line-height: 1;
  padding: 10px 30px;
}

.contact-layout .btn img {
  width: 15px;
}

.contact-layout .wrap {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-layout .wrap {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-layout .l-desc {
    padding-right: 0;
  }

  .contact-layout .l-form {
    padding: 15px;
  }
}

.list-symptoms {
  border: 1px solid var(--color_border);
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
}

.list-symptoms li {
  background-color: var(--color_white);
  background-color: var(--color_pink);
  color: var(--color_white);
  border-radius: 2px;
  padding: 8px 10px;
  font-size: 0.875rem;
  line-height: 1;
}

.thanks-layout {
  max-width: 800px;
  margin: 0 auto;
}

.thanks-layout .l-ttl {
  text-align: center;
  font-size: 2.2rem;
  position: relative;
}

.thanks-layout .l-ttl::after {
  content: "";
  display: block;
  background-color: var(--color_primary);
  width: 50px;
  height: 2px;
  margin: 1rem auto 2rem;
}

.thanks-layout p {
  text-align: center;
}

@media (max-width: 800px) {
  .thanks-layout p {
    text-align: left;
  }
}

.privacy-ttl {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.dl-privacy {
  display: grid;
  gap: 3rem;
}

.dl-privacy dt {
  border-top: 1px solid var(--color_border);
  font-size: 1.0625rem;
  padding-top: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.dl-privacy dd {
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: justify;
}

/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

hr {
  max-width: 1024px;
  margin: 50px auto;
}

.radius {
  border-radius: 6px;
}

.fade {
  transition: opacity 0.5s;
}

@media (any-hover: hover) {
  .fade:hover {
    opacity: 0.5;
  }
}

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

.bold,
.strong {
  font-weight: bold;
}

.c-red {
  color: var(--color_red);
}

.c-pink {
  color: var(--color_pink);
}

.marker {
  background: linear-gradient(transparent 50%, #80FF00 50%);
}

.under-line {
  text-decoration: underline;
}

.frame {
  border: 1px solid var(--color_border);
}

.top-dot {
  color: var(--color_pink);
  position: relative;
}

.top-dot::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 10px;
  background-size: 1em 10px;
  background-repeat: repeat-x;
  background-position: 1px 0;
  background-image: radial-gradient(circle at center center, var(--color_pink) 0px, var(--color_pink) 3px, rgba(255, 255, 255, 0) 3px, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 800px) {
  .top-dot::before {
    bottom: 90%;
  }
}

.notice {
  font-size: 0.8125rem;
  text-indent: -1.2em;
  padding-left: 1.2em;
  line-height: 1.5;
}

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 8px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin-bottom: 32px;
}

.mbXM {
  margin-bottom: 48px;
}

.mbL {
  margin-bottom: 64px;
}

.mbXL {
  margin-bottom: 96px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.grid {
  display: grid;
}

.col2 {
  grid-template-columns: repeat(2, 1fr);
}

.col3 {
  grid-template-columns: repeat(3, 1fr);
}

.col4 {
  grid-template-columns: repeat(4, 1fr);
}

.gapXS {
  grid-gap: 8px;
}

.gapS {
  grid-gap: 16px;
}

.gapM {
  grid-gap: 32px;
}

.gapXM {
  grid-gap: 48px;
}

.gapL {
  grid-gap: 64px;
}

.gapXL {
  grid-gap: 96px;
}

@media (max-width: 800px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .sp-tac {
    text-align: center;
  }

  .sp-tar {
    text-align: right;
  }

  .sp-tal {
    text-align: left;
  }

  .mbXS {
    margin-bottom: 4px;
  }

  .mbS {
    margin-bottom: 8px;
  }

  .mbM {
    margin-bottom: 16px;
  }

  .mbXM {
    margin-bottom: 32px;
  }

  .mbL {
    margin-bottom: 48px;
  }

  .mbXL {
    margin-bottom: 64px;
  }

  .sp-col1 {
    grid-template-columns: 1fr;
  }

  .sp-col2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-col3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .sp-col4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .gapXS {
    grid-gap: 4px;
  }

  .gapS {
    grid-gap: 8px;
  }

  .gapM {
    grid-gap: 16px;
  }

  .gapXM {
    grid-gap: 32px;
  }

  .gapL {
    grid-gap: 48px;
  }

  .gapXL {
    grid-gap: 64px;
  }
}

/*------------
splide
-------------*/
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: flex;
  align-items: center;
  line-height: 1;
  list-style-type: none;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

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

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb>.splide__list {
  display: block;
}

.splide__arrow--prev,
.splide__arrow--next {
  display: block;
  width: 30px;
  height: 30px;
}

.splide__arrow--prev {
  background: url(../images/share/splide_prev.svg) no-repeat center/auto 15px;
}

.splide__arrow--next {
  background: url(../images/share/splide_next.svg) no-repeat center/auto 15px;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-top: 6rem;
}

@media (max-width: 800px) {
  .splide__controls {
    margin-top: 3rem;
  }
}

.splide__pagination {
  gap: 8px;
}

.splide__pagination__page {
  background: #D0D0C9;
  border-radius: 100px;
  display: inline-block;
  transition: transform 0.2s linear;
  height: 8px;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #707070;
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.splide__toggle {
  cursor: pointer;
  background: #ccc;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
  height: 20px;
  width: 20px;
}

.splide__toggle:hover {
  background: #D3D3D3;
}

.splide__toggle svg {
  fill: #fff;
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

.splide__toggle:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

:root {
  --event01: #ED8675;
  --event02: #F4D4DF;
  --event03: #B3E7FF;
  --event04: #FDEF33;
}

.business-calendar-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 0 0 15px;
}

@media (max-width: 1200px) {
  .business-calendar-box {
    grid-template-columns: 1fr;
  }
}

.business-calendar-box>div {
  background-color: var(--color_white);
  border-radius: 6px;
  padding: 20px;
}

.business-calendar-box .business-calendar {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.business-calendar-box .business-calendar caption {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px;
}

.business-calendar-box .business-calendar caption span {
  color: #ccc;
  line-height: 1;
  font-size: 25px;
  vertical-align: -1px;
}

.business-calendar-box .business-calendar-past a,
.business-calendar-box .business-calendar-future a {
  display: inline-block;
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 25px;
  height: 25px;
}

.business-calendar-box .business-calendar-past a::before,
.business-calendar-box .business-calendar-future a::before {
  display: inline-block;
  content: "";
  border-style: solid;
  border-width: 7px 6px 7px 0;
  border-color: transparent #ccc transparent transparent;
  position: absolute;
  top: 10px;
  left: 10px;
}

.business-calendar-box .business-calendar-future a::before {
  transform: rotate(180deg);
}

.business-calendar-box .business-calendar th {
  background: var(--color_pink);
  color: var(--color_white);
  border-bottom: 1px solid var(--color_border);
  font-size: 15px;
  text-align: center;
  padding: 10px;
  width: 14%;
}

.business-calendar-box .business-calendar td {
  background: #FFFFFF;
  background-clip: padding-box;
  border-bottom: 1px solid var(--color_border);
  position: relative;
  font-family: var(--font_en);
  font-size: 15px;
  padding: 10px 0;
  z-index: 0;
}

.business-calendar-box .business-calendar td::before {
  content: "";
  background: #ccc;
  border-radius: 50px;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
}

.business-calendar-box .business-calendar .today {
  text-decoration: underline;
}

.business-calendar-box .business-calendar .attr0,
.business-calendar-box .business-calendar .attr1,
.business-calendar-box .business-calendar .attr2,
.business-calendar-box .business-calendar .attr3 {}

.business-calendar-box .business-calendar .attr0::before,
.business-calendar-box .business-calendar .attr1::before,
.business-calendar-box .business-calendar .attr2::before,
.business-calendar-box .business-calendar .attr3::before {
  opacity: 1;
}

.business-calendar-box .business-calendar .attr0::before {
  background: var(--event01);
}

.business-calendar-box .business-calendar .attr1::before {
  background: var(--event02);
}

.business-calendar-box .business-calendar .attr2::before {
  background: var(--event03);
}

.business-calendar-box .business-calendar .attr3::before {
  background: var(--event04);
}

.list-event {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.list-event li {
  display: flex;
  gap: 5px;
  font-size: 15px;
  line-height: 1;
}

.list-event .event01 {
  color: var(--event01);
}

.list-event .event02 {
  color: var(--event02);
}

.list-event .event03 {
  color: var(--event03);
}

.list-event .event04 {
  color: var(--event04);
}

@media (max-width: 800px) {
  .business-calendar-box {
    display: block;
    margin: 0 0 15px;
  }

  .business-calendar-box>div {
    width: 100%;
  }

  .business-calendar-box>div+div {
    margin-top: 15px;
  }

  .list-event {
    display: block;
  }

  .list-event li+li {
    margin-top: 5px;
  }
}

/*-----------------------------------------------------------
Loading
-----------------------------------------------------------*/
.loader {
  pointer-events: none;
  display: flex;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-bg {
  background: var(--color_secondary);
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 1s ease-in-out;
}

.loader-wrapper {
  position: relative;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  animation: loader_fade_in forwards 1s ease;
}

@keyframes loader_fade_in {
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.loader-logo {
  text-align: center;
}

.loader.is-action .loader-bg {
  opacity: 0;
}

.loader.is-action .loader-logo {
  animation: loader_fade_out forwards 1s ease;
}

@keyframes loader_fade_out {
  100% {
    opacity: 0;
    transform: translateY(-40px);
    filter: blur(8px);
  }
}

.loader.is-hidden {
  display: none;
}

/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: translateY(0);
  }
}
