@charset "UTF-8";
/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #5D4343;
  --color_link: #5D4343;
  --color_border: #e9e9e9;
  --color_primary: #EA97C7;
  --color_secondary: #82A3D9;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
}

/* ====================================================
【アニメーション】
==================================================== */
: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: "Zen Maru Gothic", serif;
  --font_en: "Zen Maru Gothic", serif;
  --font_weight: 500;
  --font_size: 1.0625rem;
  --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);
  letter-spacing: 0.05em;
}

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

.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: 1200px;
}
.container.ultra-wide {
  max-width: 1540px;
}
.container.narrow {
  max-width: 900px;
}

/*-----------------------------------------------------------
診療時間
-----------------------------------------------------------*/
.time-table {
  background-color: var(--color_gray_light);
  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 thead th {
  background-color: var(--color_black);
  color: var(--color_white);
}
.time-table th:first-child {
  width: 25%;
}
@media (max-width: 800px) {
  .time-table th:first-child {
    width: 90px;
  }
}
.time-table img {
  margin-inline: auto;
}

.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;
}

/*-----------------------------------------------------------
診療カレンダー
-----------------------------------------------------------*/
:root {
  --event01: #EF866B;
  --event02: #F7B46B;
  --event03: #A8DBA8;
  --event04: #B0D7D5;
}

.business-calendar-box-wrap {
  margin-bottom: 15px;
}
.business-calendar-box-wrap .business-calendar {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.business-calendar-box-wrap .business-calendar caption {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px;
}
.business-calendar-box-wrap .business-calendar caption span {
  line-height: 1;
  font-size: 1.5625rem;
  vertical-align: -1px;
}
.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .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-wrap .business-calendar-past a::before,
.business-calendar-box-wrap .business-calendar-future a::before {
  display: inline-block;
  content: "";
  border-style: solid;
  border-width: 7px 6px 7px 0;
  border-color: transparent #333 transparent transparent;
  position: absolute;
  top: 10px;
  left: 10px;
}
.business-calendar-box-wrap .business-calendar-future a::before {
  transform: rotate(180deg);
}
.business-calendar-box-wrap .business-calendar th {
  background: #f1f3f4;
  border: 1px solid #dfdfdf;
  text-align: center;
  font-weight: bold;
  font-size: 0.9375rem;
  padding: 5px;
  width: 14%;
}
.business-calendar-box-wrap .business-calendar td {
  background: #FFFFFF;
  border: 1px solid #dfdfdf;
  position: relative;
  font-size: 0.8125rem;
  padding: 5px;
  z-index: 0;
}
.business-calendar-box-wrap .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-wrap.large .business-calendar th,
.business-calendar-box-wrap.large .business-calendar td {
  padding: 10px;
  font-size: 0.9375rem;
}
.business-calendar-box-wrap.col2 {
  grid-template-columns: 1fr;
}
.business-calendar-box-wrap.col2 .business-calendar-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3%;
}
.business-calendar-box-wrap .business-calendar .today {
  text-decoration: underline;
}
.business-calendar-box-wrap .business-calendar .attr0,
.business-calendar-box-wrap .business-calendar .attr1,
.business-calendar-box-wrap .business-calendar .attr2,
.business-calendar-box-wrap .business-calendar .attr3 {
  color: #fff;
}
.business-calendar-box-wrap .business-calendar .attr0::before,
.business-calendar-box-wrap .business-calendar .attr1::before,
.business-calendar-box-wrap .business-calendar .attr2::before,
.business-calendar-box-wrap .business-calendar .attr3::before {
  opacity: 1;
}
.business-calendar-box-wrap .business-calendar .attr0::before {
  background: var(--event01);
}
.business-calendar-box-wrap .business-calendar .attr1::before {
  background: var(--event02);
}
.business-calendar-box-wrap .business-calendar .attr2::before {
  background: var(--event03);
}
.business-calendar-box-wrap .business-calendar .attr3::before {
  background: var(--event04);
}

.list-event {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.list-event li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}
.list-event li::before {
  content: "";
  background-color: var(--color_black);
  border-radius: 50%;
  width: 12px;
  height: 12px;
}
.list-event .event01::before {
  background-color: var(--event01);
}
.list-event .event02::before {
  background-color: var(--event02);
}
.list-event .event03::before {
  background-color: var(--event03);
}
.list-event .event04::before {
  background-color: var(--event04);
}

@media (max-width: 800px) {
  .business-calendar-box-wrap.col2 .business-calendar-box {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .list-event {
    display: block;
  }
  .list-event li + li {
    margin-top: 5px;
  }
}
/*ボタン*/
.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-color: var(--color_primary);
  color: var(--color_white);
  font-size: 0.9375rem;
  line-height: 1;
  padding: 10px 25px;
}
@media (any-hover: hover) {
  .btn-more:hover {
    background-color: var(--color_secondary);
  }
}

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

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.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;
}
.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;
  }
}
/*詳細ページ*/
.layout-single-post {
  width: min(90%, 800px);
  margin-inline: auto;
}
.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;
  width: 100%;
}
.layout-single-post .l-ttl {
  font-size: 1.75rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .layout-single-post .l-ttl {
    font-size: 1.5625rem;
    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;
}

/*投稿本文用CSS*/
.postdata {
  display: flow-root;
  overflow-wrap: break-word;
}

.postdata .screen-reader-text {
  border: 0;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.postdata .screen-reader-text:focus {
  background-color: #eee;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.postdata iframe {
  max-width: 100%;
}

.aligncenter {
  margin-inline: auto;
}

.postdata h2[class=wp-block-heading] {
  border-bottom: 1px solid var(--color_black);
  border-top: 1px solid var(--color_black);
  font-size: 1.375rem;
  line-height: 1.5;
  margin-block: 50px 30px;
  padding-block: 15px;
  position: relative;
}

.postdata h3[class=wp-block-heading] {
  font-size: 1.25rem;
  line-height: 1.5;
  border-left: 4px solid var(--color_black);
  padding: 3px 0px 3px 15px;
  margin-block: 25px;
}

.postdata h4[class=wp-block-heading] {
  background: #f5f5f5;
  border-radius: 2px;
  font-size: 1.125rem;
  line-height: 1.5;
  padding: 8px 15px;
  margin-block: 15px;
}

.wp-block-button__link {
  border: 1px solid #e9e9e9 !important;
  background-color: #f6f6f6 !important;
  color: var(--color_black) !important;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  text-align: left;
  font-size: 0.9375rem !important;
  line-height: 1 !important;
  min-width: 200px;
  padding: 10px 45px !important;
  line-height: 1.5;
  position: relative;
  transition: 0.3s;
}

.wp-block-button__link::after {
  content: "";
  background-color: var(--color_black);
  -webkit-mask: url(../../images/share/post_arrow.svg) no-repeat center/contain;
          mask: url(../../images/share/post_arrow.svg) no-repeat center/contain;
  width: 18px;
  height: 11px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.wp-block-button__link:hover {
  opacity: 1;
  background-color: var(--color_primary) !important;
  color: var(--color_white) !important;
}

.wp-block-button__link:hover::after {
  background-color: var(--color_white);
}

.postdata p,
.postdata ul,
.postdata ol {
  margin-block: 1em;
}

.postdata a:not(.wp-block-button__link) {
  text-decoration: underline;
}

.postdata a:focus-visible {
  text-decoration: none;
}

@media (any-hover: hover) {
  .postdata a:hover {
    text-decoration: none;
  }
}
.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata sub {
  font-size: 1.1rem;
  position: relative;
  bottom: -0.1em;
}

.postdata sup {
  font-size: 1.1rem;
  position: relative;
  top: -0.1em;
}

.postdata ul {
  display: grid;
  grid-gap: 5px;
}

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

.postdata ul li::marker {
  color: var(--color_black);
}

.postdata ol {
  display: grid;
  grid-gap: 5px;
  counter-reset: number;
}

.postdata ol li {
  padding-left: 30px;
  position: relative;
}

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  background-color: var(--color_white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 1.5%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 100;
}

.h-utility {
  display: grid;
  gap: 5px;
}

.h-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font_jp);
  font-size: 1.6875rem;
  line-height: 1;
  margin-left: auto;
}
.h-tel::before {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_tel.svg) no-repeat center/contain;
  width: 25px;
  height: 25px;
}

@media (max-width: 1024px) {
  .header {
    background-color: var(--color_white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 1.5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 100;
  }
  .h-tel {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font_jp);
    font-size: 1.6875rem;
    line-height: 1;
    margin-left: auto;
  }
  .h-tel::before {
    content: "";
    display: inline-block;
    background: url(../images/share/icon_tel.svg) no-repeat center/contain;
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 5px 1.5%;
    height: 60px;
  }
  .h-tel {
    display: none;
  }
  .h-logo {
    max-width: 150px;
  }
}
/*------------
Gnavi
--------------*/
.gnavi-links {
  display: flex;
  font-family: var(--font_jp);
  justify-content: flex-end;
  gap: 25px;
}
.gnavi-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;
  white-space: nowrap;
}
@media (any-hover: hover) {
  .gnavi-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

/*dropdown*/
.dropdown {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
}
.dropdown::after {
  content: "";
  display: block;
  border-bottom: 1px solid var(--color_black);
  border-right: 1px solid var(--color_black);
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  transform-origin: right;
}
.dropdown.is-open .sub-menu {
  pointer-events: auto;
  opacity: 1;
}
.dropdown .sub-menu {
  display: grid;
  grid-gap: 5px;
  pointer-events: none;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  position: absolute;
  top: 30px;
  right: 50%;
  width: -moz-max-content;
  width: max-content;
  min-width: 150px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}
.dropdown .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}
.dropdown:last-child .sub-menu {
  right: 0;
  transform: translateX(0);
}

@media (max-width: 1024px) {
  .gnavi {
    display: none;
  }
}
/*------------
Gnavi Drawer
--------------*/
html.is-open {
  height: 100%;
  overflow: hidden;
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  margin-top: auto;
  position: relative;
  padding-bottom: 50px;
}

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

.f-contents {
  margin-top: 60px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.f-txt {
  text-align: right;
  font-size: 0.875rem;
  line-height: 1.8;
}

.copyright {
  color: #AA9191;
  font-size: 0.8125rem;
}

.pagetop {
  position: absolute;
  bottom: 25px;
  right: 20px;
}

@media (max-width: 800px) {
  .footer {
    padding-bottom: 25px;
  }
  .f-map iframe {
    width: 100%;
    height: 250px;
  }
  .f-contents {
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
  .f-txt {
    text-align: left;
  }
  .copyright {
    margin-top: 25px;
    text-align: left;
  }
  .pagetop {
    position: absolute;
    bottom: 30px;
    right: 15px;
  }
}
.sp-navi {
  display: none;
}

@media (max-width: 1024px) {
  :root {
    --navi-background: #f5f5f5;
    --navi-border-color: #333;
    --navi-text-color: #333;
    --svg-stroke: #333;
    --menu-btn: #333;
  }
  .sp-navi {
    display: block;
  }
  .sp-menu-btn {
    background-color: var(--color_primary);
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: fixed;
    top: 0px;
    right: 0;
    width: 60px;
    height: 60px;
    z-index: 10000;
  }
  .sp-menu-btn span {
    background: var(--color_white);
    position: absolute;
    left: 50%;
    width: 22px;
    height: 2px;
    transform: translateX(-50%);
    transition: 0.4s;
  }
  .sp-menu-btn span:nth-of-type(1) {
    top: 22px;
  }
  .sp-menu-btn span:nth-of-type(2) {
    top: 28px;
  }
  .sp-menu-btn span:nth-of-type(3) {
    top: 34px;
  }
  .sp-menu-btn.is-open span:nth-of-type(1) {
    transform: translate(-50%, 6px) rotate(-45deg);
  }
  .sp-menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  .sp-menu-btn.is-open span:nth-of-type(3) {
    transform: translate(-50%, -6px) rotate(45deg);
  }
  .sp-navi-drawer {
    pointer-events: none;
    visibility: hidden;
    background: var(--color_white);
    color: var(--color_black);
    font-size: 0.9375rem;
    padding: 25px 25px 100px;
    position: fixed;
    inset: 0;
    transform: translateX(60px);
    transition: 0.5s var(--ease);
    opacity: 0;
    z-index: 1000;
  }
  .sp-navi-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    transform: translateX(0);
    opacity: 1;
    transition-timing-function: var(--ease);
  }
  .sp-logo {
    margin-bottom: 30px;
    max-width: 200px;
  }
  .sp-navi-list {
    border-top: 1px solid var(--color_gray);
    font-weight: bold;
    line-height: 1.5;
  }
  .sp-navi-list > li {
    position: relative;
    border-bottom: 1px solid var(--color_gray);
  }
  .sp-navi-list > li > a {
    display: grid;
    color: var(--color_text);
    align-items: center;
    padding: 10px 25px 10px 0;
    position: relative;
    min-height: 50px;
  }
  .sp-navi-list > li > a::after {
    content: "";
    background-color: var(--color_primary);
    -webkit-mask: url(../images/share/sp_navi_arrow.svg) no-repeat center/contain;
            mask: url(../images/share/sp_navi_arrow.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 11px;
    height: 11px;
    transform: translateY(-50%);
  }
  .sp-details::details-content {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 15px;
    transition: 0.3s ease;
  }
  .sp-details[open]::details-content {
    background-color: rgba(0, 0, 0, 0.015);
    grid-template-rows: 1fr;
    padding: 15px;
  }
  .sp-details[open] .plus {
    rotate: 45deg;
  }
  .sp-details-btn {
    display: flex;
    align-items: center;
    padding: 10px 30px 10px 0;
    position: relative;
    min-height: 50px;
    width: 100%;
  }
  .sp-details-btn .text {
    display: block;
  }
  .sp-details-btn .plus {
    display: block;
    background-color: var(--color_black);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    transition: 0.3s;
    transform-origin: 50% 0;
  }
  .sp-details-btn .plus::after {
    content: "";
    background-color: var(--color_white);
    -webkit-mask: url(../images/share/sp_navi_plus.svg) no-repeat center/contain;
            mask: url(../images/share/sp_navi_plus.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    transform: translate(-50%, -50%);
  }
  .sp-sub-menu {
    display: grid;
    grid-gap: 5px;
    font-size: 0.875rem;
  }
  .sp-sub-menu a {
    display: block;
    position: relative;
    padding-left: 20px;
  }
  .sp-sub-menu a::before {
    content: "";
    position: absolute;
    border-radius: 100%;
    background-color: var(--color_primary);
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    transform: translateY(-50%);
  }
}
.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: 55.56% 1fr;
  grid-template-areas: "img content";
  position: relative;
  padding-top: 90px;
  overflow: hidden;
}
.hero .splide__slide {
  grid-area: img;
  border-radius: 0 160px 0 0;
  overflow: hidden;
}
.hero .splide__slide img {
  width: 100%;
  height: calc(100vh - 90px);
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .splide__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 20px;
  right: -70px;
  z-index: 2;
}

.hero-content {
  grid-area: content;
  display: grid;
  place-content: center;
  position: relative;
  z-index: 1;
}

.hero-catch {
  font-size: 3.75rem;
  line-height: 1.5;
  font-family: var(--font_jp);
  margin-bottom: 35px;
  position: relative;
  z-index: 0;
}
.hero-catch::before {
  content: "";
  background: url(../images/hero_deco01.svg) no-repeat center/contain;
  display: block;
  width: 192.55px;
  height: 171.5px;
  position: absolute;
  top: -50px;
  left: -100px;
  z-index: -1;
}
.hero-catch span {
  background-image: radial-gradient(circle at center, var(--color_primary) 3.5px, transparent 3.5px);
  /* 点の色とサイズ調整 */
  background-position: bottom left;
  /* 点の位置 */
  background-repeat: repeat-x;
  /* 横方向に繰り返し */
  background-size: 0.25em 0.5em;
  /* 点の間隔とサイズ調整 */
  padding-bottom: 15px;
  /* 縦方向の位置調整 */
}

.hero-text {
  font-size: 1.625rem;
  line-height: 1.6153846154;
  font-family: var(--font_jp);
}

.hero-img01,
.hero-img02 {
  position: absolute;
  z-index: -1;
}

.hero-img01 {
  top: 0;
  right: 0;
}

.hero-img02 {
  bottom: -90px;
  right: -20px;
  z-index: -1;
}

@media (max-width: 1024px) {
  .hero {
    padding-top: 150px;
    grid-template-columns: 1fr;
    grid-template-areas: "content" "img";
  }
  .hero .splide {
    z-index: 10;
  }
  .hero .splide__slide {
    border-radius: 0 100px 0 0;
  }
  .hero .splide__slide img {
    height: 500px;
  }
  .hero .splide__controls {
    bottom: 20px;
    right: 0;
  }
  .hero-content {
    display: grid;
    place-content: center;
    justify-content: start;
    padding: 50px 5% 80px;
  }
  .hero-img01 {
    top: -70px;
    right: 5%;
    width: 45vw;
  }
  .hero-img02 {
    width: 35vw;
  }
}
@media (max-width: 800px) {
  .hero {
    padding-top: 120px;
  }
  .hero .splide__slide {
    border-radius: 0 100px 0 0;
  }
  .hero .splide__slide img {
    max-height: 300px;
  }
  .hero-content {
    padding: 25px 5% 80px;
  }
  .hero-catch {
    font-size: 1.875rem;
    margin-bottom: 25px;
  }
  .hero-catch::before {
    width: 192.55px;
    height: 171.5px;
    top: -50px;
    left: -100px;
  }
  .hero-catch span {
    background-image: radial-gradient(circle at center, var(--color_primary) 2px, transparent 2px);
    background-size: 0.4em 0.5em;
    padding-bottom: 10px;
  }
  .hero-text {
    font-size: 1.0625rem;
  }
  .hero-img01 {
    top: -40px;
    right: 0;
    width: 55vw;
  }
  .hero-img02 {
    width: 35vw;
    bottom: -40px;
    right: 0;
  }
}
/*------------
Components
--------------*/
.t-h2 {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 50px;
}
.t-h2 [lang=en] {
  color: var(--color_secondary);
  font-size: 1.4375rem;
  margin-bottom: 10px;
}
.t-h2 .jp {
  font-size: 2.5rem;
}
.t-h2.left {
  text-align: left;
}

@media (max-width: 800px) {
  .t-h2 {
    margin-bottom: 30px;
  }
  .t-h2 [lang=en] {
    font-size: 1.125rem;
  }
  .t-h2 .jp {
    font-size: 1.5625rem;
  }
}
/*------------
Section
--------------*/
.sec01 {
  background: url(../images/sec01_bg.jpg) no-repeat center/cover;
  padding: 130px 0;
  position: relative;
  z-index: 0;
}

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

.sec01-img01 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
  width: clamp(200px, 31vw, 456px);
}

.sec01-img02 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: -1;
  width: clamp(200px, 29vw, 515px);
}

.sec01-img03 {
  bottom: -20px;
  left: 5%;
  z-index: -1;
}

@media (max-width: 1024px) {
  .sec01-img03 {
    width: 25vw;
  }
}
@media (max-width: 800px) {
  .sec01 {
    padding: 50px 0 70px;
  }
  .sec01-text {
    text-align: left;
    padding: 0 5%;
  }
  .sec01-img01 {
    top: 0;
    left: 0;
    transform: translateY(0);
    width: 150px;
    opacity: 0.5;
  }
  .sec01-img02 {
    top: auto;
    bottom: -25px;
    right: 0;
    transform: translateY(0);
    width: 150px;
    opacity: 0.5;
  }
  .sec01-img03 {
    bottom: -25px;
    left: 5%;
    z-index: -1;
  }
}
.sec02 {
  background-color: #E8EEFC;
  padding: 130px 0 15px;
}

.sec02-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "desc img";
}
.sec02-layout .l-img {
  grid-area: img;
}
.sec02-layout .l-desc {
  grid-area: desc;
  padding-right: 5%;
}

@media (max-width: 1024px) {
  .sec02 {
    padding: 130px 0;
  }
  .sec02-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "desc";
  }
}
@media (max-width: 800px) {
  .sec02 {
    padding: 70px 0;
  }
  .sec02-layout {
    gap: 25px;
  }
  .sec02-layout .l-desc {
    padding: 0;
  }
}
.sec03 {
  padding-top: 130px;
}

.sec03-layout {
  display: grid;
  grid-template-columns: 55% 1fr;
  align-items: flex-start;
  gap: 20px;
  margin: 0 20px;
}
.sec03-layout .l-imgs {
  position: sticky;
  top: 2rem;
  min-height: 100vh;
  overflow: hidden;
}
.sec03-layout .l-img {
  position: absolute;
  inset: 0;
}
.sec03-layout .l-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100vh;
  border-radius: 2rem;
}
.sec03-layout .item-img-sp {
  display: none;
}
.sec03-layout .l-items {
  display: grid;
  gap: 2rem;
}
.sec03-layout .l-item {
  display: grid;
  place-content: start;
  min-height: 100vh;
  background-color: #FDF2F7;
  border-radius: 30px;
  padding: 70px;
  position: relative;
}
.sec03-layout .item-ttl {
  font-family: var(--font_jp);
  margin-bottom: 50px;
}
.sec03-layout .item-ttl .no {
  background-color: var(--color_text);
  color: var(--color_white);
  font-size: 1.1875rem;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px;
  margin-bottom: 30px;
  border-radius: 100px;
}
.sec03-layout .item-ttl .ttl {
  font-size: 2.25rem;
  line-height: 1.5;
}
.sec03-layout .item-deco {
  position: absolute;
  bottom: 3%;
  right: 3%;
}

@media (max-width: 1024px) {
  .sec03-layout {
    grid-template-columns: 1fr;
  }
  .sec03-layout .l-imgs {
    display: none;
  }
  .sec03-layout .item-img-sp {
    display: block;
    margin-bottom: 50px;
  }
  .sec03-layout .item-img-sp img {
    border-radius: 30px;
  }
}
@media (max-width: 800px) {
  .sec03 {
    padding-top: 70px;
  }
  .sec03-layout .l-items {
    gap: 25px;
  }
  .sec03-layout .l-item {
    padding: 25px 25px 150px;
    min-height: 0;
  }
  .sec03-layout .item-img-sp {
    margin-bottom: 30px;
  }
  .sec03-layout .item-img-sp img {
    border-radius: 20px;
  }
  .sec03-layout .item-ttl {
    margin-bottom: 30px;
  }
  .sec03-layout .item-ttl .no {
    font-size: 0.9375rem;
    margin-bottom: 15px;
  }
  .sec03-layout .item-ttl .ttl {
    font-size: 1.5625rem;
  }
  .sec03-layout .item-deco {
    bottom: 3%;
    right: 3%;
    max-width: 150px;
  }
}
.sec04 {
  padding: 130px 0;
}

.sec04-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 70px 30px;
}
.sec04-list li {
  grid-column: span 2;
  background-color: #EFF4FF;
  padding: 1px 40px 40px;
  border-radius: 30px;
}
.sec04-list li:nth-last-child(2) {
  grid-column: 2/span 2;
}
.sec04-list li:last-child {
  grid-column: 4/span 2;
}
.sec04-list .list-no {
  font-family: var(--font_en);
  color: var(--color_primary);
  font-size: 3.125rem;
  line-height: 1;
  text-align: center;
  opacity: 0.75;
  margin: -30px 0 25px;
}
.sec04-list .list-ttl {
  background: url(../images/share/ttl_deco01.svg) no-repeat center bottom/auto;
  font-size: 1.875rem;
  line-height: 1.4;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.sec04-list-wrap {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.sec04-deco01 {
  top: -120px;
  left: -100px;
}

.sec04-deco02 {
  bottom: -50px;
  right: 0px;
}

@media (max-width: 1024px) {
  .sec04-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
  .sec04-list li {
    grid-column: auto;
  }
  .sec04-list li:nth-last-child(2) {
    grid-column: auto;
  }
  .sec04-list li:last-child {
    grid-column: auto;
  }
}
@media (max-width: 800px) {
  .sec04 {
    padding: 70px 0;
  }
  .sec04-list {
    grid-template-columns: 1fr;
    gap: 30px 15px;
  }
  .sec04-list .list-ttl {
    font-size: 1.5625rem;
  }
  .sec04-deco01 {
    top: -40px;
    left: -25px;
    width: 130px;
  }
  .sec04-deco02 {
    bottom: -50px;
    right: 0px;
    width: 130px;
  }
}
.sec05 {
  background: url(../images/sec01_bg.jpg) no-repeat center/cover;
  padding: 130px 0;
  position: relative;
}

.sec05-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}
.sec05-list .list-img {
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}
.sec05-list .wrap {
  position: relative;
}
.sec05-list .list-ttl {
  font-size: 1.25rem;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1.5625rem;
  line-height: 1;
  padding: 15px 15px 20px;
  border-radius: 0 0 6px 6px;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  right: 28px;
}

.sec05-deco01 {
  top: 50px;
  left: 0;
}

@media (max-width: 1024px) {
  .sec05-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .sec05 {
    padding: 70px 0;
  }
  .sec05-list {
    grid-template-columns: 1fr;
  }
  .sec05-deco01 {
    top: -25px;
    left: 0;
    width: 130px;
  }
}
.sec06 {
  color: var(--color_white);
  padding: 130px 0;
  position: relative;
  z-index: 0;
}
.sec06 .t-h2 [lang=en] {
  color: var(--color_white);
}

.sec06-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5%;
}

.sec06-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  color: var(--color_text);
  margin-bottom: 25px;
}
.sec06-list > li {
  background-color: var(--color_white);
  padding: 50px 50px 80px;
  border-radius: 30px;
  font-size: 1.4375rem;
}
.sec06-list .list-ttl {
  background-image: radial-gradient(circle at center, var(--color_secondary) 2px, transparent 2px);
  background-position: bottom left;
  background-repeat: repeat-x;
  background-size: 0.35em 0.5em;
  font-size: 1.75rem;
  line-height: 1;
  padding-bottom: 25px;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  z-index: -1;
}
.parallax-bg .inner {
  position: absolute;
  inset: 0;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
.parallax-bg img {
  position: fixed;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100lvb;
  z-index: -1;
}

@media (max-width: 1024px) {
  .sec06-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 800px) {
  .sec06 {
    padding: 70px 0;
  }
  .sec06-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .sec06-list > li {
    border-radius: 15px;
    padding: 25px 25px 50px;
    font-size: 1.125rem;
  }
  .sec06-list .list-ttl {
    font-size: 1.375rem;
  }
}
.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_primary);
}
.list-disc.center {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.sec07 {
  padding: 130px 0;
  position: relative;
}

.sec07-layout {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 100px;
  margin: 0 30px;
}
.sec07-layout .l-img {
  border-radius: 30px;
  overflow: hidden;
}
.sec07-layout .l-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec07-list {
  display: grid;
}
.sec07-list .item {
  display: grid;
  grid-template-columns: 160px 1fr;
  padding-bottom: 40px;
  position: relative;
}
.sec07-list .item:not(:last-child)::before {
  content: "";
  position: absolute;
  border-left: 2px dotted var(--color_primary);
  top: 5px;
  bottom: 0;
  left: 6.5px;
}
.sec07-list .item:last-child {
  padding-bottom: 0;
}
.sec07-list dt {
  display: flex;
  gap: 15px;
  font-family: var(--font_jp);
  font-size: 1.25rem;
  line-height: 1;
}
.sec07-list dt::before {
  content: "";
  background-color: var(--color_primary);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 4px;
}
.sec07-list dd {
  text-box: trim-both cap alphabetic;
  border-left: 1px solid #D6D0D0;
  padding: 5px 0 5px 35px;
}

.sec07-deco01 {
  top: 50px;
  right: 2.5%;
}

@media (max-width: 1024px) {
  .sec07-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .sec07-layout .l-img img {
    height: 500px;
  }
}
@media (max-width: 800px) {
  .sec07 {
    padding: 70px 0;
  }
  .sec07-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .sec07-list .item {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }
  .sec07-list dt {
    font-size: 1.125rem;
  }
  .sec07-list dd {
    border-left: none;
    padding: 15px 0 0 30px;
  }
  .sec07-deco01 {
    top: 50px;
    right: 2.5%;
    width: 180px;
  }
}
.sec08 {
  background: url(../images/sec01_bg.jpg) no-repeat center/cover;
  padding-bottom: 100px;
}

.sec08-layout {
  display: grid;
  grid-template-columns: 1fr 55%;
}
.sec08-layout .l-img {
  border-radius: 0 0 0 30px;
  overflow: hidden;
}
.sec08-layout .l-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec08-layout .l-desc {
  padding: 130px 10%;
  position: relative;
}

.sec08-deco01 {
  position: absolute;
  top: -50px;
  right: 10%;
}

.sec08-text {
  font-size: 1.375rem;
  line-height: 1.5;
  font-family: var(--font_jp);
  margin-bottom: 40px;
}

.sec08-overview {
  display: grid;
  gap: 12px;
}
.sec08-overview .item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
}
.sec08-overview dt {
  display: grid;
  place-items: center;
  background-color: var(--color_text);
  color: var(--color_white);
  border-radius: 5px;
  font-size: 0.9375rem;
  text-align: center;
}

@media (max-width: 1024px) {
  .sec08-layout {
    grid-template-columns: 1fr;
    padding: 0 5%;
  }
  .sec08-layout .l-img {
    border-radius: 30px;
  }
  .sec08-layout .l-desc {
    padding: 130px 0 100px;
  }
}
@media (max-width: 800px) {
  .sec08 {
    padding: 70px 0;
  }
  .sec08-layout {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 5%;
  }
  .sec08-layout .l-img {
    border-radius: 30px;
  }
  .sec08-layout .l-desc {
    padding: 0;
  }
  .sec08-deco01 {
    position: absolute;
    top: -50px;
    right: 10%;
    width: 130px;
  }
}
/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  display: grid;
  align-items: center;
  background-color: var(--color_black);
  color: var(--color_white);
  padding: 300px 5% 50px;
  position: relative;
}

.page-ttl {
  line-height: 1.5;
  margin-bottom: 35px;
}
.page-ttl [lang=en] {
  text-box: trim-both cap alphabetic;
  font-size: 4.75rem;
  margin-bottom: 20px;
}
.page-ttl .jp {
  font-size: 1.25rem;
}

.breadcrumb {
  position: relative;
  z-index: 1;
}
.breadcrumb ul {
  font-size: 0.875rem;
}
.breadcrumb ul li {
  display: inline;
}
.breadcrumb ul li + li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

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

@media (max-width: 800px) {
  .page-header {
    overflow: hidden;
    padding: 50px 3%;
  }
  .page-header::before {
    top: -100px;
    right: -100px;
    width: 80vw;
  }
  .page-ttl {
    margin-bottom: 20px;
  }
  .page-ttl [lang=en] {
    font-size: 3.125rem;
    line-height: 1;
  }
  .page-ttl .jp {
    font-size: 0.75rem;
  }
  .u-contents {
    padding: 50px 0;
  }
}
.u-h2 {
  margin-bottom: 50px;
}

.u-h3 {
  margin-bottom: 30px;
}

.u-h4 {
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .u-h2 {
    margin-bottom: 30px;
  }
  .u-h3 {
    margin-bottom: 20px;
  }
  .u-h4 {
    margin-bottom: 10px;
  }
}
.tall + .tall {
  margin-top: 120px;
}

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

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

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall + .tall {
    margin-top: 60px;
  }
  .short + .short {
    margin-top: 30px;
  }
  .x-short + .x-short {
    margin-top: 15px;
  }
}
.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: 5px;
  left: 0;
  width: 18px;
  height: 18px;
}

.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 {
  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%;
  }
  .fl-imgR,
  .fl-imgL {
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }
  .fl-imgR.small,
  .fl-imgL.small {
    width: 100%;
  }
}
/*------------
Add
--------------*/
.privacy-ttl {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.dl-privacy {
  display: grid;
  gap: 3rem;
}
.dl-privacy dt {
  border-top: 1px solid var(--color_border);
  font-size: 1.0625rem;
  padding-top: 25px;
  margin-bottom: 15px;
  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;
}

.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-family: var(--font_jp);
  font-weight: bold;
}

.c-red {
  color: #F44336;
}

.c-pink {
  color: var(--color_primary);
}

.marker {
  background: linear-gradient(transparent 50%, #80FF00 50%);
}

.notice {
  font-size: 0.8125rem;
  text-indent: -1em;
  padding-left: 1em;
}

.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;
  }
}
/*-----------------------------------------------------------
Scroll-in animation (fade-up)
-----------------------------------------------------------*/
.js-fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  will-change: opacity, transform;
}
.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

.js-fadein-stagger > * {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  will-change: opacity, transform;
}
.js-fadein-stagger > *:nth-child(1) {
  transition-delay: 0s;
}
.js-fadein-stagger > *:nth-child(2) {
  transition-delay: 0.12s;
}
.js-fadein-stagger > *:nth-child(3) {
  transition-delay: 0.24s;
}
.js-fadein-stagger > *:nth-child(4) {
  transition-delay: 0.36s;
}
.js-fadein-stagger > *:nth-child(5) {
  transition-delay: 0.48s;
}
.js-fadein-stagger > *:nth-child(6) {
  transition-delay: 0.6s;
}
.js-fadein-stagger > *:nth-child(7) {
  transition-delay: 0.72s;
}
.js-fadein-stagger > *:nth-child(8) {
  transition-delay: 0.84s;
}
.js-fadein-stagger.is-show > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fadein,
  .js-fadein-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/*------------
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: #82A3D9;
  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;
}

/*------------
lenis
-------------*/
html.lenis,
html.lenis body {
  height: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip;
}

.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch],
.lenis [data-lenis-prevent-vertical],
.lenis [data-lenis-prevent-horizontal] {
  overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.lenis.lenis-autoToggle {
  transition-property: overflow;
  transition-duration: 1ms;
  transition-behavior: allow-discrete;
}
