@charset "UTF-8";

/* ====================================================
【Mixin】
==================================================== */
/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #60432A;
  --color_link: #80B24D;
  --color_border: #DFDFDF;
  --color_primary: #80B24D;
  --color_secondary: #AB916A;
  --color_tertiary: #B19D80;
  --color_quaternary: #FFFBF2;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #D5D0CA;
  --color_gray_light: #EEEEEE;
  --color_gray_dark: #AAA;
}

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

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

:root {
  --font_base:
    "FOT-筑紫明朝 Pr6 R",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Local Noto Sans JP",
    "Noto Sans JP", serif;
  --font_jp: "FOT-筑紫明朝 Pr6 D", serif;
  --font_en: "EB Garamond", serif;
  --font_weight: normal;
  --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: none;
  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 {
  letter-spacing: 0.05em;
  line-height: 1.6;
}

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

.link[target=_blank]::after {
  content: "";
  display: inline-block;
  -webkit-mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  background: currentColor;
  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: 130px;
}

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

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

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

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

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

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

.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;
  font-family: var(--font_jp);
  font-size: 0.875rem;
}

@media (max-width: 800px) {

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

.time-table thead th {
  background-color: var(--color_secondary);
  color: var(--color_white);
  font-size: 1.0625rem;
}

.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 tbody th:first-child {
  color: var(--color_white);
  background-color: var(--color_tertiary);
}

.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 {
  --event-color01: #80B24E;
  --event-color02: #FFC586;
  --event-color03: #60432A;
}

.business-calendar-hidden {
  font-family: var(--font_base);
  display: none;
}

.business-calendar-wrap {
  background-color: var(--color_white);
  padding: 25px;
}

.business-calendar-wrap:has(.business-calendar-box > div + div) {
  background: none;
  padding: 0;
}

.business-calendar-wrap:has(.business-calendar-box > div + div) .business-calendar-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.business-calendar-wrap:has(.business-calendar-box > div + div) .business-calendar-box>div {
  background-color: var(--color_white);
  padding: 25px;
}

.business-calendar-box {
  margin: 0 0 15px;
}

.business-calendar-box .business-calendar {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.business-calendar-box .business-calendar caption {
  font-size: 1.25rem;
  text-align: center;
  margin: 0 0 10px;
}

.business-calendar-box .business-calendar caption span {
  line-height: 1;
  font-size: 1.5625rem;
  vertical-align: -7px;
  margin: 0 10px;
}

.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 {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color_primary);
  border-right: 2px solid var(--color_primary);
  transform: rotate(45deg);
  position: absolute;
  top: 7px;
  left: 7px;
}

.business-calendar-box .business-calendar-past a::before {
  transform: rotate(45deg) scale(-1);
}

.business-calendar-box .business-calendar th {
  font-size: 0.9375rem;
  font-weight: normal;
  padding: 8px 5px;
  width: 14%;
}

.business-calendar-box .business-calendar td {
  background-clip: padding-box;
  position: relative;
  font-size: 0.8125rem;
  padding: 8px 5px;
  z-index: 0;
}

.business-calendar-box .business-calendar td::before {
  content: "";
  background: var(--color_gray);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
  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 {
  color: var(--color_white);
}

.business-calendar-box .business-calendar .attr0::before,
.business-calendar-box .business-calendar .attr1::before,
.business-calendar-box .business-calendar .attr2::before {
  opacity: 1;
}

.business-calendar-box .business-calendar .attr0::before {
  background: var(--event-color01);
}

.business-calendar-box .business-calendar .attr1::before {
  background: var(--event-color02);
}

.business-calendar-box .business-calendar .attr2::before {
  background: var(--event-color03);
}

.list-event {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}

.list-event li {
  font-size: 0.875rem;
  line-height: 1.5;
}

.list-event .icon {
  margin: 0 5px 0 0;
}

.list-event .event01 .icon {
  color: var(--event-color01);
}

.list-event .event02 .icon {
  color: var(--event-color02);
}

.list-event .event03 .icon {
  color: var(--event-color03);
}

@media (max-width: 800px) {
  .business-calendar-wrap {
    padding: 30px 20px;
  }

  .business-calendar-wrap:has(.business-calendar-box > div + div) .business-calendar-box {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .business-calendar-wrap:has(.business-calendar-box > div + div) .business-calendar-box>div {
    padding: 30px 20px;
  }

  .business-calendar-box .business-calendar caption span {
    margin: 0 30px;
  }
}

/*ボタン*/
.btn-out {
  position: relative;
  transition: background-size 0.3s;
  background: linear-gradient(to top, currentColor 0px, currentColor 1px, transparent 1px) no-repeat right bottom;
  background-size: 0% auto;
  padding: 0 0 2px;
}

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

.btn-out:hover {
  background-position: left bottom;
  background-size: 100% auto;
}

.btn-more {
  display: inline-block;
  border: 1px solid var(--color_primary);
  background: var(--color_primary);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  line-height: 1.1;
  padding: 16px 2.8125rem;
  position: relative;
  min-width: 210px;
  text-align: center;
  transition: 0.2s;
}

.btn-more:after {
  content: "";
  display: block;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 0.4375rem;
  height: 0.4375rem;
  position: absolute;
  left: 1.125rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.2s;
}

@media (hover: hover) {
  .btn-more:is(:hover, :focus) {
    background-color: oklch(from var(--color_primary) calc(l - 0.1) c h);
  }
}

@media (max-width: 800px) {
  .btn-more {
    display: block;
    min-width: 0;
  }
}

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

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

.btn-wrap.tar {
  justify-content: flex-end;
}

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

.tel-link {
  display: inline-block;
  color: var(--color_primary);
  font-size: 1.4375rem;
  line-height: 1;
}

.tel-link:before {
  content: "" /"Tel";
  -webkit-mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  background-color: currentColor;
  width: 1.0625rem;
  height: 1.375rem;
  display: inline-block;
  margin-right: 8px;
  vertical-align: -3px;
}

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

/*カテゴリーリスト*/
.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_primary);
  border-right: 1px solid var(--color_primary);
  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: var(--color_secondary);
  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 minmax(0, 1fr);
  gap: 15px;
  padding: 10px 70px 10px 10px;
  position: relative;
  transition: background-color 0.3s;
  overflow-wrap: break-word;
  word-break: break-all;
}

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

.post-under-blog a::before {
  content: "";
  background: var(--color_primary);
  -webkit-mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  mask: 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 var(--color_border);
  -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: 10px;
}

.post-under-blog time {
  display: block;
  color: var(--color_gray_dark);
  font-family: sans-serif;
  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;
  font-family: sans-serif;
  border: 1px solid var(--color_primary);
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 1px 8px;
  text-align: center;
}

.post-under-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: var(--font_jp);
  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;
    display: block;
    color: var(--color_gray_dark);
    font-family: sans-serif;
    font-size: 0.6875rem;
    line-height: 1;
  }

  .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: 100px 1fr;
  gap: 20px;
  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_quaternary);
  }
}

.post-under-news a::before {
  content: "";
  background: var(--color_primary);
  -webkit-mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  mask: 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;
  color: var(--color_gray_dark);
  font-family: sans-serif;
  font-size: 0.8125rem;
  line-height: 1;
}

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

.post-under-news .category {
  display: inline-block;
  font-family: sans-serif;
  border: 1px solid var(--color_primary);
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 1px 8px;
  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-family: var(--font_jp);
  font-size: 0.9375rem;
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-all;
}

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

/*症例紹介*/
.case-layout {
  border: 1px solid var(--color_border);
  background: var(--color_white);
  padding: 50px;
}

.case-layout time {
  color: var(--color_gray_dark);
  font-family: sans-serif;
  font-size: 0.8125rem;
  line-height: 1;
  margin-right: 20px;
}

.case-layout .category {
  display: inline-block;
  font-family: sans-serif;
  border: 1px solid var(--color_primary);
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 0.6875rem;
  line-height: 1.5;
  padding: 1px 8px;
  text-align: center;
  margin: 0 10px 0 0;
}

.case-layout .l-ttl {
  font-size: 1.75rem;
  line-height: 1.5;
  margin-bottom: 30px;
  overflow-wrap: break-word;
  word-break: break-all;
}

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

.case-layout .before-after {
  margin-bottom: 30px;
}

.case-layout table.l-table {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
}

.case-layout .l-table:not(:last-child) {
  margin-bottom: 60px;
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.case-layout .l-table th,
.case-layout .l-table td {
  border: 1px solid var(--color_border);
  background: var(--color_white);
  line-height: 1.5;
  font-size: 0.9375rem;
  padding: 15px;
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.case-layout .l-table th {
  background: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  vertical-align: top;
  text-align: left;
  width: 25%;
}

.case-layout .l-btn {
  text-align: center;
  margin-top: 50px;
}

.case-layout .l-item {
  margin-top: 50px;
}

.case-layout .item-ttl {
  border-bottom: 1px solid var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.125rem;
  position: relative;
  padding: 0 0 12px;
  margin: 0 0 25px;
}

.case-layout .item-ttl::after {
  content: "";
  width: 25px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.case-layout+.case-layout {
  margin-top: 50px;
}

.before-after {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.before-after:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #6bab79;
}

.before-after:has(p):after {
  top: calc(50% - 20px);
}

.before-after .wp-block-image {
  position: relative;
  margin-bottom: 10px;
  background-color: #f4f4f2;
}

.before-after .wp-block-image img {
  width: 100%;
  height: 300px;
  -o-object-fit: contain;
  object-fit: contain;
}


.layout-sidebar .before-after .item img {
  max-height: 230px;
}

.before-after p {
  text-align: center;
  margin-block-start: 0;
}

.before-after p::before,
.before-after p::after {
  content: "-";
  margin: 0 5px;
}

@media (max-width: 800px) {
  .case-layout {
    padding: 30px 25px;
  }

  .case-layout .l-ttl {
    font-size: 1.4375rem;
    margin-bottom: 20px;
  }

  .case-layout .post-data {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .case-layout .before-after {
    margin-bottom: 30px;
  }

  .case-layout .l-table:not(:last-child) {
    margin-bottom: 40px;
  }

  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table,
  .case-layout table.l-table {
    border: 1px solid var(--color_border);
  }

  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
  .case-layout .l-table th,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
  .case-layout .l-table th,
  .case-layout .l-table td {
    display: block;
    border: none;
    padding: 10px;
    font-size: 0.875rem;
    width: 100%;
  }

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

  .case-layout .l-item {
    margin-top: 30px;
  }

  .case-layout .item-ttl {
    border-bottom: 1px solid var(--color_primary);
    font-size: 1.125rem;
    position: relative;
    padding: 0 0 12px;
    margin: 0 0 25px;
  }

  .case-layout .item-ttl::after {
    content: "";
    width: 25px;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
  }

  .case-layout+.case-layout {
    margin-top: 30px;
  }

  .before-after {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .before-after:after {
    border-width: 10px 10px 0 10px;
    border-color: #6bab79 transparent transparent transparent;
  }

  .before-after:has(p):after {
    top: 50%;
  }

  .before-after .item {
    height: auto;
  }

  .layout-sidebar .before-after .item {
    height: auto;
  }

  .layout-sidebar .before-after .item img {
    max-height: 300;
  }
}

/*詳細ページ*/
.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;
  color: var(--color_gray_dark);
  font-family: sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  line-height: 1.5;
}

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

.layout-single-post .category {
  width: 100%;
  display: inline-block;
  font-family: sans-serif;
  border: 1px solid var(--color_primary);
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 1px 8px;
  text-align: center;
}

.layout-single-post .l-ttl {
  font-family: var(--font_jp);
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 30px;
  overflow-wrap: break-word;
  word-break: break-all;
}

.layout-sidebar .layout-single-post {
  width: 100%;
}

@media (max-width: 800px) {
  .layout-single-post .l-ttl {
    font-size: 1.75rem;
    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_primary);
  color: var(--color_white);
  border: 1px solid var(--color_primary);
  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_white);
  color: var(--color_primary);
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_primary);
  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_primary);
  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_primary);
}

.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: 30px;
  padding: 27px 2.5%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.3s;
}

.header.frontpage:not(.is-fixed)>.h-utility>.tel-link {
  color: var(--color_white);
  transition: 0.3s;
}

.header.frontpage:not(.is-fixed) .logo01 {
  filter: drop-shadow(0 0 7px #fff) drop-shadow(0 0 9px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 9px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 9px rgba(255, 255, 255, 0.6));
}

.header.frontpage:not(.is-fixed) .gnavi-menu-btn:not(.is-open) .gnavi-menu-btn-line span {
  background-color: var(--color_white);
}

.header.frontpage:not(.is-fixed) .gnavi-menu-btn:not(.is-open) .gnavi-menu-btn-txt {
  color: var(--color_white);
}

.header .h-logo a {
  display: block;
  position: relative;
  min-height: 66px;
  min-width: 273px;
  transition: 0.3s;
}

.header .logo01 {
  position: absolute;
  top: 0;
  left: 0;
}

.header.is-fixed {
  background-color: var(--color_white);
}

.header.is-fixed>.h-utility>.tel-link {
  color: var(--color_text);
}

.header.is-fixed .h-logo a {
  min-height: 56px;
  min-width: 230px;
}

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

  .header .h-logo a {
    min-height: 45px;
    min-width: 186px;
  }

  .header.is-fixed .h-logo a {
    min-height: 48px;
    min-width: 136px;
  }
}

.h-utility {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.h-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--color_black);
  color: var(--color_white);
  font-size: 0.9375rem;
  padding: 0 25px 0 20px;
  height: 50px;
}

.h-btn::before {
  content: "";
  background: url(../images/share/icon_mail.svg) no-repeat center/contain;
  width: 15px;
  height: 12px;
}

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

.gnavi-menu-btn {
  cursor: pointer;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 1000;
}

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

.gnavi-menu-btn-line span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color_text);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease background-color 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;
  color: var(--color_text);
  font-size: 0.8125rem;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  transition: color 0.3s ease;
}

.gnavi-menu-btn.is-open .gnavi-menu-btn-line span {
  background-color: var(--color_text);
}

.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-menu-btn.is-open .gnavi-menu-btn-txt {
  color: var(--color_text);
}

.gnavi-drawer {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  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: #F2F7EF;
  padding: 100px 10%;
  overflow-y: auto;
  height: 100%;
  width: 100%;
}

.drawer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.6%;
  width: min(100%, 1024px);
  margin-inline: auto;
}

.drawer-inner>.tel-link {
  color: var(--color_primary);
}

.drawer-inner .l-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.drawer-links {
  line-height: 1.5;
  font-size: 0.9375rem;
}

.drawer-links>li {
  margin-bottom: 1rem;
}

.drawer-links>li 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) {
  .drawer-links>li a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.drawer-links>li>ul {
  margin-top: 1rem;
}

.drawer-links>li>ul>li {
  padding: 0 0 0 15px;
  position: relative;
  margin-bottom: 1rem;
}

.drawer-links>li>ul>li::before {
  content: "";
  display: block;
  background-color: var(--color_primary);
  width: 6px;
  height: 1px;
  position: absolute;
  top: 0.9em;
  left: 0;
}

.drawer-links>li>ul>li 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) {
  .drawer-links>li>ul>li a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

@media (max-width: 800px) {
  .gnavi-drawer-container {
    align-items: flex-start;
    padding: 50px 25px 100px;
    width: 100%;
  }

  .drawer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .drawer-inner .l-links {
    display: block;
  }

  .drawer-links {
    line-height: 1.5;
  }

  .drawer-links:not(:has(> li > ul)) {
    -moz-column-count: 2;
    column-count: 2;
  }

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

  .drawer-links>li {
    margin-bottom: 8px;
    font-size: 0.875rem;
  }

  .drawer-links>li>ul {
    margin-top: 8px;
    -moz-column-count: 2;
    column-count: 2;
  }

  .drawer-links>li>ul>li {
    margin-bottom: 8px;
    font-size: 0.8125rem;
  }
}

/*-----------------------------------------------------------
Fixed Menu
-----------------------------------------------------------*/
.fixed-menu {
  border-radius: 4px 0 0 4px;
  background: var(--color_primary);
  color: #fff;
  display: flex;
  position: fixed;
  top: 50%;
  right: 0;
  transition: transform 0.5s;
  transform: translate(490px, -50%);
  z-index: 10;
}

.fixed-menu:hover {
  transform: translate(0, -50%);
}

.fixed-menu .ttl {
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  line-height: 1;
  white-space: nowrap;
  font-feature-settings: normal;
  padding: 40px 0;
  width: 60px;
  font-family: var(--font_jp);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.fixed-menu .ttl .icon {
  margin-bottom: 8px;
}

.fixed-menu .inner {
  display: grid;
  place-items: center;
  padding: 15px;
  padding-left: 0;
  width: 490px;
}

.fixed-menu .txt {
  font-family: var(--font_jp);
  font-size: 1rem;
  text-align: center;
}

.fixed-menu .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  margin: 25px 0;
}

.fixed-menu .btn {
  display: block;
  border: 1px solid var(--color_white);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  line-height: 1.1;
  padding: 16px 40px;
  position: relative;
  min-width: 210px;
  text-align: center;
  transition: 0.2s;
}

.fixed-menu .btn:after {
  content: "";
  display: block;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  width: 7px;
  height: 7px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.2s;
}

@media (hover: hover) {
  .fixed-menu .btn:is(:hover, :focus) {
    background-color: var(--color_white);
    color: var(--color_primary);
  }
}

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

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background-color: var(--color_quaternary);
  margin-top: auto;
  position: relative;
  padding: 50px 0 0;
}

.f-contents {
  display: grid;
  grid-template-columns: 490px 1fr;
  margin-inline: auto;
  margin-bottom: 70px;
  width: min(90%, 1024px);
}

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

.f-txt {
  margin-bottom: 15px;
}

.site-map {
  display: flex;
  gap: 6rem;
  justify-content: flex-end;
  align-items: flex-start;
}

.f-links {
  line-height: 1.5;
  font-size: 0.9375rem;
}

.f-links>li {
  margin-bottom: 1rem;
}

.f-links>li 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>li a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.f-links>li>ul {
  margin-top: 1rem;
}

.f-links>li>ul>li {
  padding: 0 0 0 15px;
  position: relative;
  margin-bottom: 1rem;
}

.f-links>li>ul>li::before {
  content: "";
  display: block;
  background-color: var(--color_primary);
  width: 6px;
  height: 1px;
  position: absolute;
  top: 0.9em;
  left: 0;
}

.f-links>li>ul>li 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>li>ul>li a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.f-bnr-list01 {
  max-width: 1024px;
  width: 90%;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-self: center;
  align-items: center;
  gap: 15px 8px;
  margin-bottom: 20px;
}

.f-bnr-list01 li a {
  display: block;
  transition: opacity 0.2s;
}

.f-bnr-list01 li a:is(:hover, :focus) {
  opacity: 0.7;
}

.f-bnr-list02 {
  max-width: 1024px;
  width: 90%;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-self: center;
  align-items: center;
  gap: 20px;
}

.f-bnr-list02 li a {
  display: block;
  transition: opacity 0.2s;
}

.f-bnr-list02 li a:is(:hover, :focus) {
  opacity: 0.7;
}

.copyright {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 0.75rem;
  padding: 4px max(5%, 50% - 512px);
  margin-top: 70px;
  text-align: center;
}

.pagetop {
  position: absolute;
  bottom: 60px;
  right: 20px;
  z-index: 2;
}

.f-calendar-area {
  margin-top: 30px;
}

.f-calendar-ttl {
  line-height: 1.5;
  margin-bottom: 20px;
  border-bottom: 1px solid #EEEEEE;
  padding-bottom: 12px;

}

.f-calendar-ttl [lang=en] {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1;
}

.f-calendar-ttl .jp {
  font-size: 1rem;
}

@media (max-width: 800px) {
  .f-contents {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

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

  .site-map {
    display: block;
  }

  .f-links {
    line-height: 1.5;
  }

  .f-links:not(:has(> li > ul)) {
    -moz-column-count: 2;
    column-count: 2;
  }

  .f-links+.f-links {
    margin-top: 20px;
  }

  .f-links>li {
    margin-bottom: 8px;
    font-size: 0.875rem;
  }

  .f-links>li>ul {
    margin-top: 8px;
    -moz-column-count: 2;
    column-count: 2;
  }

  .f-links>li>ul>li {
    margin-bottom: 8px;
    font-size: 0.8125rem;
  }

  .f-bnr-list01 {
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
  }

  .f-bnr-list01 li {
    width: calc((100% - 10px) / 2);
  }

  .f-bnr-list02 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .copyright {
    margin-top: 40px;
    padding: 4px 5% 70px;
  }

  .pagetop {
    display: none;
  }
}

.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  :root {
    --navi-background: #80B24D;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --menu-btn: #fff;
  }

  .sp-navi {
    display: block;
  }

  .sp-navi-btns {
    display: flex;
    background: var(--navi-background);
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    z-index: 10000;
  }

  .sp-navi-btns>* {
    flex: 1;
    position: relative;
  }

  .sp-navi-btns .item {
    font-size: 0.625rem;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi-btns .item a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
    padding: 10px 0;
  }

  .sp-navi-btns .item .img {
    display: block;
  }

  .sp-navi-btns .item .img svg {
    -o-object-fit: cover;
    object-fit: cover;
    height: 20px;
    margin-bottom: 8px;
    stroke: var(--svg-stroke);
  }

  .sp-navi-btns .item .ttl {
    display: block;
  }

  .sp-menu-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 10px;
  }

  .sp-menu-btn .ttl {
    display: block;
    color: var(--navi-text-color);
    font-family: var(--navi-font);
    font-size: 0.625rem;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }

  .sp-menu-btn span:not(.ttl) {
    background: var(--menu-btn);
    position: absolute;
    left: 50%;
    width: 22px;
    height: 1px;
    transform: translateX(-50%);
    transition: 0.4s;
  }

  .sp-menu-btn span:not(.ttl):nth-of-type(1) {
    top: 20px;
  }

  .sp-menu-btn span:not(.ttl):nth-of-type(2) {
    top: 26px;
  }

  .sp-menu-btn span:not(.ttl):nth-of-type(3) {
    top: 32px;
  }

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

.layout-sidebar {
  display: grid;
  grid-template-columns: 12.5rem 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: 0.625rem;
  margin-bottom: 1.5rem;
}

.layout-sidebar .l-label [lang=en] {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.0625rem;
  font-weight: normal;
}

.layout-sidebar .l-label .jp {
  font-family: var(--font_jp);
  font-size: 0.75rem;
}

.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 {
  position: relative;
}

.hero .hero-txt {
  position: absolute;
  left: 5vw;
  bottom: 5vw;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 3vw;
  line-height: 1.5;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4), 0px 0px 30px rgba(0, 0, 0, 0.2);
}

.hero .splide__slide img {
  width: 100%;
  height: auto;
}

.hero .splide__slide .splide__arrows {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.hero .splide__slide .splide__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 0 15px;
}

@media (max-width: 800px) {
  .hero .hero-txt {
    left: 0;
    bottom: 50px;
    font-size: 8vw;
    width: 100%;
    text-align: center;
    padding: 0 5%;
    text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.4), 0px 0px 21px rgba(0, 0, 0, 0.2);
  }
}

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

.t-h2 [lang=en] {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 6.5625rem;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 20px;
}

.t-h2 .jp {
  font-family: var(--font_jp);
  font-size: 1.25rem;
}

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

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

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

/*------------
Section
--------------*/
.sec01 {
  background: url(../images/sec01_deco01.png) no-repeat right 20% top 22%, url(../images/sec01_deco02.png) no-repeat left 11% bottom 120px;
  padding: 120px 0;
}

.sec01-catch {
  margin-bottom: 60px;
  font-family: var(--font_jp);
  font-size: 2.5rem;
  line-height: 1.7;
  text-align: center;
}

.sec01-catch .line {
  border-bottom: 1px solid var(--color_text);
}

.sec01-layout {
  width: min(1450px, 90%);
  margin: 0 auto 115px;
  display: grid;
  grid-template-columns: 37.5% 1fr;
  gap: 0 8%;
  align-items: center;
}

.sec01-box {
  background: url(../images/share/bg01.jpg) no-repeat center center/cover;
  position: relative;
  padding: 90px;
}

.sec01-box:before {
  content: "";
  position: absolute;
  inset: 28px;
  pointer-events: none;
  border: 1px solid var(--color_secondary);
  z-index: 2;
}

.sec01-box .box-ttl {
  font-family: var(--font_jp);
  font-size: 2.5rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 40px;
}

.sec01-box .box-list {
  margin-bottom: 40px;
}

.sec01-box .box-list li {
  border-bottom: 1px dotted var(--color_text);
  padding-bottom: 20px;
}

.sec01-box .box-list li+li {
  margin-top: 20px;
}

.sec01-box .box-txt {
  margin-bottom: 20px;
}

.sec01-box .box-catch {
  font-family: var(--font_jp);
  font-size: 1.875rem;
  line-height: 1.7;
}

.sec01-box .box-catch p {
  text-align: left;
}

.sec01-box .box-catch .line {
  border-bottom: 1px solid var(--color_text);
}

@media (max-width: 800px) {
  .sec01 {
    background: url(../images/sec01_deco01.png) no-repeat right 5% top 22%/33%, url(../images/sec01_deco02.png) no-repeat left 5% bottom 60px/33%;
    padding: 60px 0;
  }

  .sec01-catch {
    margin-bottom: 30px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .sec01-layout {
    display: block;
    margin: 0 auto 40px;
  }

  .sec01-layout .l-img {
    margin-bottom: 30px;
  }

  .sec01-layout .l-img img {
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1/1;
    height: auto;
  }

  .sec01-box {
    padding: 40px;
  }

  .sec01-box:before {
    inset: 10px;
  }

  .sec01-box .box-ttl {
    font-size: 1.5625rem;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .sec01-box .box-list {
    margin-bottom: 30px;
  }

  .sec01-box .box-list li {
    padding-bottom: 15px;
  }

  .sec01-box .box-list li+li {
    margin-bottom: 15px;
  }

  .sec01-box .box-txt {
    margin-bottom: 20px;
  }

  .sec01-box .box-catch {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.sec02 {
  background-color: #F2F7EF;
  padding: 120px 0;
}

.sec02-ttl {
  line-height: 1.5;
  margin-bottom: 20px;
}

.sec02-ttl [lang=en] {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1;
}

.sec02-ttl .jp {
  font-size: 1rem;
}

.sec02-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0 7.4%;
}

.sec02-layout .item {
  position: relative;
}

.sec02-layout .sec02-ttl {
  border-bottom: 1px solid var(--color_gray_light);
  padding-bottom: 12px;
  display: flex;
  align-items: flex-end;
  gap: 25px;
  margin: 0 0 18px;
}

.sec02-layout .l-btn {
  position: absolute;
  right: 0;
  top: -10px;
}

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

  .sec02-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sec02-layout .l-btn {
    margin-top: 30px;
    position: static;
  }
}


.post-top-type01 a {
  display: grid;
  grid-template-columns: 85px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding: 13px 0;
  transition: background-color 0.3s;
}

.post-top-type01 .post-img {
  overflow: hidden;
}

.post-top-type01 .post-img img {
  aspect-ratio: 7/5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.post-top-type01 time {
  display: block;
  color: var(--color_gray_dark);
  font-family: sans-serif;
  font-size: 0.8125rem;
  line-height: 1;
  margin-bottom: 10px;
}

.post-top-type01 .post-ttl {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0.9375rem;
  font-weight: normal;
  line-height: 1.5;
  text-decoration: underline;
}

@media (any-hover: hover) {
  .post-top-type01 a:is(:hover, :focus) .post-ttl {
    text-decoration: none;
  }
}


.sec03 {
  padding: 150px 0 60px;
}

.sec03-layout {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 0 50px;
  padding: 0 0 0 max(5%, 50% - 800px);
}

.sec03-layout .l-img {
  width: 63.5%;
}

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

.sec03-layout .l-desc {
  flex: 1;
}

.sec03-layout .l-ttl {
  font-size: 1.875rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 20px;
}

.sec03-layout .l-list {
  margin: 20px 0;
}

.sec03-layout .l-list li {
  display: flex;
  align-items: center;
  padding: 0 0 15px;
  border-bottom: 1px solid #D5D0CA;
}

.sec03-layout .l-list li+li {
  margin-top: 15px;
}

.sec03-layout .l-list li .num {
  color: var(--color_secondary);
  font-family: var(--font_en);
  font-size: 3.125rem;
  font-weight: normal;
  line-height: 1;
  margin-right: 10px;
  width: 80px;
  text-align: center;
}

.sec03-layout .l-list li .txt {
  font-size: 1.125rem;
  line-height: 1.5;
  flex: 1;
}

@media (max-width: 800px) {
  .sec03 {
    padding: 50px 0 30px;
  }

  .sec03-layout {
    display: block;
    padding: 0 5%;
  }

  .sec03-layout .l-img {
    width: 100%;
    margin-bottom: 20px;
  }

  .sec03-layout .l-ttl {
    font-size: 1.4375rem;
    margin-bottom: 20px;
  }

  .sec03-layout .l-list li .num {
    font-size: 2.5rem;
    width: 50px;
  }

  .sec03-layout .l-list li .txt {
    font-size: 1rem;
  }
}

.sec04 {
  padding: 110px 0 170px;
  position: relative;
}

.sec04::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 388px;
  height: 485px;
  background: #F7F3EA;
  z-index: -1;
}

.sec04:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 388px;
  height: 485px;
  background: #F2F7EF;
  z-index: -1;
}

.sec04-cards-style {
  width: min(1270px, 90%);
  margin-inline: auto;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sec04-cards-style li {
  padding: 2.125rem 0 0 2.125rem;
  position: relative;
}

.sec04-cards-style li .num {
  width: 4.25rem;
  height: 4.25rem;
  line-height: 4.25rem;
  text-align: center;
  background-color: var(--color_white);
  color: var(--color_secondary);
  font-family: var(--font_en);
  font-size: 2.8125rem;
  font-weight: normal;
  position: absolute;
  top: 0;
  left: 0;
}

.sec04-cards-style li .card-img {
  margin-bottom: 15px;
}

.sec04-cards-style li .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.4375rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 15px;
}

.sec04-cards-style li .card-txt {
  text-align: center;
}

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

  .sec04::before {
    width: 194px;
    height: 243px;
  }

  .sec04:after {
    width: 194px;
    height: 243px;
  }

  .sec04-cards-style {
    gap: 20px;
    grid-template-columns: minmax(0, 1fr);
  }
}

.sec05 {
  padding: 0 0 120px;
}

.sec05-layout {
  display: flex;
  gap: 0 50px;
  padding: 0 max(5%, 50% - 800px) 0 0;
  margin-bottom: 70px;
}

.sec05-layout .l-img {
  width: 58.7%;
}

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

.sec05-layout .l-desc {
  width: 47%;
  background-color: rgba(255, 251, 242, 0.8);
  margin: 9vw 0 0 -5.7%;
  position: relative;
  padding: 4vw 5vw;
  z-index: 2;
}

.sec05-layout .l-ttl {
  font-size: 1.875rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 30px;
}

.sec05-layout.reverse {
  flex-direction: row-reverse;
  padding: 0 0 0 max(5%, 50% - 800px);
}

.sec05-layout.reverse .l-desc {
  margin: 9vw -5.7% 0 0;
}

.sec05-card-style {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.sec05-card-style>li {
  width: calc((100% - 60px) / 4);
}

.sec05-card-style>li a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--color_secondary);
  padding: 40px 15px;
  transition: background-color 0.3s ease;
}

@media (any-hover: hover) {
  .sec05-card-style>li a:is(:hover, :focus) {
    background-color: var(--color_quaternary);
  }
}

.sec05-card-style>li a .card-img {
  margin: 0 auto 15px;
  width: -moz-fit-content;
  width: fit-content;
}

.sec05-card-style>li a .card-ttl {
  text-align: center;
}

.sec05-card-style>li a .card-ttl .jp {
  font-size: 1.4375rem;
  line-height: 1.5;
}

.sec05-card-style>li a .card-ttl [lang=en] {
  color: var(--color_secondary);
  font-family: var(--font_en);
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.5;
}

.sec05-bnr {
  display: block;
  position: relative;
  padding: 40px;
  max-width: 900px;
  margin-inline: auto;
  overflow: hidden;
}

.sec05-bnr:before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--color_white);
  z-index: 2;
  pointer-events: none;
}

.sec05-bnr:after {
  content: "";
  position: absolute;
  display: block;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 25px;
  height: 25px;
  right: 20px;
  bottom: 20px;
  background-color: #fff;
  z-index: 2;
  pointer-events: none;
}

.sec05-bnr .bnr-ttl {
  color: #fff;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: center;
}

.sec05-bnr .bnr-ttl [lang=en] {
  font-family: var(--font_en);
  font-size: 6.5625rem;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 10px;
}

.sec05-bnr .bnr-ttl .jp {
  font-family: var(--font_jp);
  font-size: 1.25rem;
}

.sec05-bnr .bnr-txt {
  color: #fff;
}

.sec05-bnr .bnr-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.sec05-bnr .bnr-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000;
  opacity: 0.4;
  transition: 0.3s;
  z-index: 1;
}

.sec05-bnr .bnr-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.5s;
}

@media (any-hover: hover) {

  .sec05-bnr:hover .bnr-bg:after,
  .sec05-bnr:focus .bnr-bg:after {
    opacity: 0.6;
  }

  .sec05-bnr:hover .bnr-bg img,
  .sec05-bnr:focus .bnr-bg img {
    scale: 1.1;
  }
}

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

  .sec05-layout {
    display: block;
    padding: 0 5%;
    margin-bottom: 40px;
  }

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

  .sec05-layout .l-desc {
    width: 100%;
    margin: 0;
    padding: 30px;
  }

  .sec05-layout .l-ttl {
    font-size: 1.4375rem;
    margin-bottom: 20px;
  }

  .sec05-layout.reverse {
    padding: 0 5%;
  }

  .sec05-layout.reverse .l-desc {
    margin: 0;
  }

  .sec05-card-style {
    gap: 10px;
    margin-bottom: 40px;
  }

  .sec05-card-style>li {
    width: calc((100% - 10px) / 2);
  }

  .sec05-card-style>li a {
    padding: 30px 15px;
  }

  .sec05-card-style>li a .card-img {
    margin: 0 auto 15px;
    width: 80%;
  }

  .sec05-card-style>li a .card-ttl .jp {
    font-size: 1.0625rem;
    line-height: 1.5;
  }

  .sec05-card-style>li a .card-ttl [lang=en] {
    font-size: 0.8125rem;
  }

  .sec05-bnr {
    padding: 30px;
    max-width: 100%;
  }

  .sec05-bnr:before {
    inset: 5px;
  }

  .sec05-bnr:after {
    width: 20px;
    height: 20px;
    right: 15px;
    bottom: 15px;
  }

  .sec05-bnr .bnr-ttl [lang=en] {
    font-size: 4.375rem;
    margin-bottom: 10px;
  }

  .sec05-bnr .bnr-ttl .jp {
    font-size: 1.125rem;
  }
}

.sec06 {
  background: url(../images/sec06_bg.jpg) no-repeat center center/cover;
  padding: 100px 0;
  position: relative;
}

.sec06::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
  pointer-events: none;
}

.sec06::after {
  content: "";
  position: absolute;
  left: 11%;
  top: 18%;
  background: url(../images/sec06_deco01.png) no-repeat center/contain;
  z-index: 2;
  pointer-events: none;
  width: 227px;
  height: 199px;
}

.sec06 .container {
  position: relative;
  z-index: 5;
}

.sec06-ttl {
  font-family: var(--font_jp);
  font-size: 2.1875rem;
  line-height: 1.5;
  margin-bottom: 40px;
  text-align: center;
}

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

  .sec06::after {
    left: auto;
    right: 15px;
    top: 15px;
    width: 92px;
    height: 80px;
  }

  .sec06-ttl {
    font-size: 1.5625rem;
    margin-bottom: 20px;
  }
}

.sec07 {
  background: url(../images/sec07_deco01.png) no-repeat left 10% top 15%, url(../images/sec07_deco02.png) no-repeat right 10% bottom 10%, url(../images/share/bg01.jpg) no-repeat center center/cover;
  padding: 100px 0;
}

@media (max-width: 800px) {
  .sec07 {
    background: url(../images/sec07_deco01.png) no-repeat left 10% top 10px/33%, url(../images/sec07_deco02.png) no-repeat right 10% bottom 10px/33%, url(../images/share/bg01.jpg) no-repeat center center/cover;
    padding: 50px 0;
  }
}

.sec08 {
  padding: 100px 0 130px;
}

.sec08-layout01 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0 3.6%;
  margin-bottom: 170px;
}

.sec08-layout01 .l-img {
  width: 64.4%;
  box-shadow: 42px 42px 0 0 #F2F7EF;
}

.sec08-layout01 .l-img img {
  width: 100%;
}

.sec08-layout01 .l-desc {
  flex: 1;
}

.sec08-layout01 .l-desc .t-h2 {
  margin-bottom: 20px;
}

.sec08-layout01 .l-desc .l-catch {
  font-family: var(--font_jp);
  font-size: 1.875rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.sec08-layout02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 80px;
}

.sec08-layout02 .item {
  padding: 87px 20px;
  position: relative;
}

.sec08-layout02 .item .l-ttl {
  font-family: var(--font_jp);
  font-size: 1.875rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
}

.sec08-layout02 .item .item-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.sec08-layout02 .item .item-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.77);
  z-index: 1;
}

.sec08-layout02 .item .item-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sec08-card-style {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
}

.sec08-card-style>li {
  width: 330px;
}

.sec08-card-style>li a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px 15px;
  transition: background-color 0.3s ease;
  position: relative;
}

.sec08-card-style>li a.card-bg01 {
  background-color: var(--color_secondary);
}

.sec08-card-style>li a.card-bg02 {
  background-color: var(--color_primary);
}

.sec08-card-style>li a:after {
  content: "";
  position: absolute;
  display: block;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 25px;
  height: 25px;
  right: 10px;
  bottom: 10px;
  background-color: #fff;
  z-index: 2;
  pointer-events: none;
}

@media (any-hover: hover) {
  .sec08-card-style>li a:is(:hover, :focus).card-bg01 {
    background-color: oklch(from var(--color_secondary) calc(l - 0.15) c h);
  }

  .sec08-card-style>li a:is(:hover, :focus).card-bg02 {
    background-color: oklch(from var(--color_primary) calc(l - 0.1) c h);
  }
}

.sec08-card-style>li a .card-img {
  margin: 0 auto 15px;
  width: -moz-fit-content;
  width: fit-content;
}

.sec08-card-style>li a .card-ttl {
  text-align: center;
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.25rem;
}

@media (max-width: 800px) {
  .sec08 {
    padding: 50px 0 65px;
  }

  .sec08-layout01 {
    display: block;
    margin-bottom: 40px;
  }

  .sec08-layout01 .l-img {
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 20px 20px 0 0 #F2F7EF;
  }

  .sec08-layout01 .l-desc .t-h2 {
    margin-bottom: 20px;
  }

  .sec08-layout01 .l-desc .l-catch {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .sec08-layout02 {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .sec08-layout02 .item {
    padding: 30px 15px;
  }

  .sec08-layout02 .item .l-ttl {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .sec08-card-style {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .sec08-card-style>li {
    width: calc((100% - 10px) / 2);
  }

  .sec08-card-style>li a {
    padding: 20px 15px;
  }

  .sec08-card-style>li a:after {
    width: 20px;
    height: 20px;
  }

  .sec08-card-style>li a .card-img {
    margin: 0 auto 15px;
    width: 80%;
  }

  .sec08-card-style>li a .card-ttl {
    font-size: 1rem;
  }
}

.sec09-layout {
  position: relative;
}

.sec09-layout .l-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 500px;
}

.sec09-layout .l-desc {
  background-color: #fff;
  padding: 35px;
  box-shadow: 0 0 10px rgba(96, 67, 42, 0.2);
  position: relative;
  z-index: 2;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  min-width: 400px;
}

.sec09-layout .l-desc .l-ttl {
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
}

.sec09-layout .l-desc .l-ttl [lang=en] {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 3.125rem;
  font-weight: normal;
  line-height: 1;
}

.sec09-layout .l-desc .l-ttl .jp {
  font-family: var(--font_jp);
  font-size: 1.1875rem;
}

@media (max-width: 800px) {
  .sec09-layout .l-map iframe {
    width: 100%;
    height: 300px;
  }

  .sec09-layout .l-desc {
    padding: 35px 25px;
    z-index: 2;
    position: static;
    transform: none;
    min-width: 0;
  }
}

.sec10 {
  background: url(../images/sec10_bg.jpg) no-repeat center bottom 15%/cover;
  padding: 100px 0;
  position: relative;
}

.sec10::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  pointer-events: none;
}

.sec10 .container {
  position: relative;
  z-index: 2;
}

.sec10 .t-h2 [lang=en] {
  color: #fff;
}

.sec10 .t-h2 .jp {
  color: #fff;
}

.sec10 .tel-link {
  color: #fff;
  border: 1px solid #fff;
  height: 50px;
  line-height: 47px;
  padding: 0 25px;
  text-align: center;
}

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

/*-----------------------------------------------------------
		TOP アニメーション
		-----------------------------------------------------------*/
.is-fade {
  opacity: 0;
  transition: 0.7s;
  transform: translate(0, 15%);
}

.is-fade.is-action {
  opacity: 1;
  transform: translate(0, 0);
}

.is-card>* {
  opacity: 0;
  transition: 0.7s;
  transform: translate(0, 15%);
}

.is-card>*:nth-child(2) {
  transition-delay: 0.1s;
}

.is-card>*:nth-child(3) {
  transition-delay: 0.2s;
}

.is-card>*:nth-child(4) {
  transition-delay: 0.3s;
}

.is-card>*:nth-child(5) {
  transition-delay: 0.4s;
}

.is-card>*:nth-child(6) {
  transition-delay: 0.5s;
}

.is-card>*:nth-child(7) {
  transition-delay: 0.6s;
}

.is-card>*:nth-child(8) {
  transition-delay: 0.7s;
}

.is-card>*:nth-child(9) {
  transition-delay: 0.8s;
}

.is-card>*:nth-child(10) {
  transition-delay: 0.9s;
}

.is-card.is-action>* {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {

  .is-fade,
  .is-card>* {
    transition: none !important;
    -webkit-transition: none !important;
    opacity: 1 !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;
    transform: none !important;
    -webkit-transform: none !important;
    transition-delay: 0s !important;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl {
  display: grid;
  align-items: center;
  justify-content: center;
  background: var(--color_quaternary) url(../images/under/page-ttl_deco.png) no-repeat right 15% center;
  padding: 120px 5%;
  position: relative;
  min-height: 440px;
}

.page-ttl .ttl {
  line-height: 1.5;
  font-family: var(--font_jp);
  font-size: 3.125rem;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  margin: 10px auto 0;
  width: min(1024px, 90%);
}

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

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

@media (max-width: 800px) {
  .page-ttl {
    background: var(--color_quaternary) url(../images/under/page-ttl_deco.png) no-repeat right 5% center/133px;
    padding: 90px 5% 50px;
    min-height: 0;
  }

  .page-ttl .ttl {
    font-size: 1.5625rem;
  }

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

.u-h2 {
  font-family: var(--font_jp);
  font-size: 2.375rem;
  text-align: center;
  padding: 0 0 25px;
  margin: 0 0 40px;
  position: relative;
}

.u-h2::after {
  content: "";
  background: var(--color_secondary);
  width: 40px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.u-h2 .icon {
  display: block;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.u-h2 .icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}

.u-h202 {
  text-align: center;
  margin: 0 0 40px;
  position: relative;
  font-family: var(--font_jp);
}

.u-h202 .ttl {
  font-size: 2.375rem;
}

.u-h202 .sub {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
  color: var(--color_primary);
  font-size: 1.25rem;
}

.u-h202 .sub::before,
.u-h202 .sub::after {
  content: "";
  background: var(--color_gray);
  width: 15px;
  height: 1px;
  display: block;
  flex: 0 0 15px;
}

.u-h3 {
  border-bottom: 1px solid var(--color_gray);
  font-family: var(--font_jp);
  font-size: 1.625rem;
  padding: 0 0 10px;
  margin: 0 0 30px;
}

.u-h4 {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  padding: 0 0 0 32px;
  margin: 0 0 20px;
  position: relative;
}

.u-h4::before {
  content: "";
  background: url(../images/under/u-h4.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 8px;
  left: 0;
}

.icon-ttl {
  display: flex;
  align-items: center;
  gap: 0 30px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color_gray);
}

.icon-ttl.offset-icon {
  min-height: 100px;
}

.icon-ttl .icon {
  width: 84px;
}

.icon-ttl .icon img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid var(--color_primary);
  -o-object-fit: cover;
  object-fit: cover;
}

.icon-ttl .ttl {
  flex: 1;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1.3;
}

.icon-ttl .ttl .small {
  font-size: 1rem;
}

.u-catch {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .u-h2 {
    font-family: var(--font_jp);
    font-size: 2.375rem;
    font-size: 1.5625rem;
    padding: 0 0 15px;
    margin: 0 0 30px;
  }

  .u-h2 .icon img {
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .u-h202 {
    margin: 0 0 30px;
  }

  .u-h202 .ttl {
    font-size: 1.5625rem;
  }

  .u-h202 .sub {
    gap: 0 10px;
    font-size: 1rem;
  }

  .u-h202 .sub::before,
  .u-h202 .sub::after {
    width: 10px;
    flex: 0 0 10px;
  }

  .u-h3 {
    font-size: 1.25rem;
    padding: 0 0 8px;
    margin: 0 0 20px;
  }

  .u-h4 {
    font-size: 1.125rem;
    padding: 0 0 0 25px;
    margin: 0 0 20px;
  }

  .u-h4::before {
    width: 16px;
    height: 16px;
    top: 8px;
  }

  .icon-ttl {
    gap: 0 20px;
    padding: 0 0 10px;
  }

  .icon-ttl.offset-icon {
    min-height: 0;
  }

  .icon-ttl .icon {
    width: 64px;
  }

  .icon-ttl .ttl {
    font-size: 1.3125rem;
  }

  .icon-ttl .ttl .small {
    font-size: 0.8125rem;
  }

  .u-catch {
    font-size: 1.25rem;
  }
}

.tall {
  container-type: inline-size;
}

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

.tall.bg01 {
  background: #F2F7EF;
  padding: 120px 0;
}

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

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

.hidden {
  overflow: hidden;
}

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

  .tall.bg01 {
    padding: 60px 0;
  }

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

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

.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: var(--color_primary);
  -webkit-mask: url(../images/share/icon_check.svg) no-repeat center/contain;
  mask: 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 var(--color_border);
  padding: 15px;
  vertical-align: middle;
}

.table-style01 th {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 0.9375rem;
}

.table-style01 thead th {
  text-align: center;
}

.table-style01 thead+tbody th {
  background-color: #F2F7EF;
  color: var(--color_black);
}

.table-style01 td {
  background-color: var(--color_white);
}

.table-style01 thead+tbody td {
  vertical-align: top;
}

.table-style02 th,
.table-style02 td {
  padding: 15px;
  border-bottom: 2px solid var(--color_gray);
  vertical-align: middle;
}

.table-style02 th {
  padding: 15px 15px 15px 0;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  text-align: left;
  border-bottom: 2px solid var(--color_primary);
}

.table-style02 td {
  font-size: 1rem;
}

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

@media (max-width: 800px) {

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

  .table-style01.sp-block {
    border: 1px solid var(--color_border);
  }

  .table-style01.sp-block colgroup {
    display: none;
  }

  .table-style01.sp-block th,
  .table-style01.sp-block td {
    border: none;
    display: block;
    width: 100%;
  }

  .table-style02.sp-block colgroup {
    display: none;
  }

  .table-style02.sp-block th,
  .table-style02.sp-block td {
    display: block;
    padding: 20px 0;
  }

  .table-style02.sp-block th {
    font-size: 1rem;
    border-bottom: none;
    padding-bottom: 5px;
  }

  .table-style02.sp-block td {
    padding-top: 0;
    position: relative;
    font-size: 0.9375rem;
  }

  .table-style02.sp-block td::before {
    content: "";
    background-color: var(--color_primary);
    width: 100px;
    height: 2px;
    position: absolute;
    bottom: -2px;
  }

  .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: 200%;
  }
}

.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: 220px;
  z-index: 1;
}

.under-slider01 .splide__arrow--prev {
  left: calc((100% - 875px) / 2);
}

.under-slider01 .splide__arrow--next {
  right: calc((100% - 875px) / 2);
}

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

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

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

@media (max-width: 800px) {
  .under-slider01 .splide__arrow {
    top: 50%;
    transform: translateY(-50%);
  }
}

.under-slider02 .splide {
  padding-bottom: 15px;
}

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

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

.under-slider02 .splide__pagination {
  position: absolute;
  bottom: 0;
  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;
  }
}

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

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

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

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

/*------------
card-style
--------------*/
/*card-style01*/
.card-style01 {
  display: grid;
  gap: 16px;
}

.card-style01>li {
  background: var(--color_quaternary);
  padding: 25px;
}

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

.card-style01 .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.1875rem;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .card-style01 {
    gap: 15px;
  }
}

/*card-style02*/
.card-style02 {
  display: grid;
  gap: 16px;
}

.card-style02>li {
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.card-style02 .card-img {
  margin-bottom: 25px;
}

.card-style02 .card-img img {
  border: 1px solid var(--color_border);
}

.card-style02 .card-num {
  display: block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 0.8125rem;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 5px;
}

.card-style02 .card-ttl {
  border-bottom: 1px solid var(--color_border);
  font-family: var(--font_jp);
  font-size: 1.1875rem;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.card-style02 .card-desc {
  margin-bottom: 20px;
}

.card-style02 .card-btn {
  margin-top: auto;
  text-align: center;
}

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

.card-style03 {
  display: flex;
  flex: wrap;
  gap: 30px;
}

.card-style03>li {
  width: calc((100% - 60px) / 3);
}

.card-style03>li:nth-child(2n) {
  margin-top: 30px;
}

.card-style03>li:nth-child(3n) {
  margin-top: 60px;
}

.card-style03>li .card-img {
  margin-bottom: 20px;
}

.card-style03>li .card-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

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

  .card-style03>li {
    width: 100%;
  }

  .card-style03>li:nth-child(2n) {
    margin-top: 0;
  }

  .card-style03>li:nth-child(3n) {
    margin-top: 0;
  }

  .card-style03>li .card-img {
    margin-bottom: 15px;
  }

  .card-style03>li .card-ttl {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
}

/*------------
flow-style
--------------*/
/*flow-style01*/
.flow-style01 {
  display: grid;
  gap: 40px;
}

.flow-style01>li {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 50px;
  position: relative;
  min-height: 150px;
}

.flow-style01>li:not(:last-child)::before {
  content: "";
  background-color: var(--color_primary);
  width: 1px;
  position: absolute;
  top: 70px;
  bottom: 0;
  left: 33px;
}

.flow-style01>li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: var(--color_primary) transparent transparent transparent;
  position: absolute;
  bottom: -1px;
  left: 28px;
}

.flow-style01 .flow-num {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.875rem;
  font-weight: normal;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

.flow-style01 .flow-num::before {
  content: attr(data-en);
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.flow-style01 .wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
}

.flow-style01 .flow-img {
  width: 25%;
}

.flow-style01 .flow-desc {
  flex: 1;
  padding-top: 10px;
}

.flow-style01 .flow-ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  .flow-style01 {
    gap: 40px;
  }

  .flow-style01>li {
    grid-template-columns: 50px 1fr;
    grid-gap: 15px;
  }

  .flow-style01>li:not(:last-child)::before {
    top: 55px;
    left: 24px;
  }

  .flow-style01>li:not(:last-child)::after {
    left: 20px;
  }

  .flow-style01 .flow-num {
    font-size: 1.5625rem;
  }

  .flow-style01 .flow-num::before {
    font-size: 0.75rem;
    margin-bottom: 5px;
  }

  .flow-style01 .wrap {
    flex-direction: column;
    gap: 15px;
  }

  .flow-style01 .flow-img {
    width: 100%;
  }

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

  .flow-style01 .flow-desc {
    padding-top: 0;
  }
}

/*------------
anchor-link
--------------*/
/*list-anchor-link01*/
.list-anchor-link01 {
  display: flex;
  flex-wrap: wrap;
}

.list-anchor-link01.center {
  justify-content: center;
}

.list-anchor-link01 li {
  position: relative;
}

.list-anchor-link01 li::after {
  content: "";
  display: inline-block;
  background: var(--color_gray);
  width: 2px;
  height: 15px;
  margin: 0 20px;
  vertical-align: -1px;
}

.list-anchor-link01 a {
  display: inline-block;
  position: relative;
  font-family: var(--font_jp);
  font-size: 1rem;
  padding-right: 25px;
}

.list-anchor-link01 a::before {
  content: "";
  background: var(--color_primary);
  width: 10px;
  height: 5px;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  right: -3px;
  top: 0.8em;
}

.list-anchor-link01 a:hover {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .list-anchor-link01 {
    justify-content: flex-start;
  }

  .list-anchor-link01.center {
    justify-content: flex-start;
  }
}

/*------------
box-style
--------------*/
/*box-style01*/
.box-style01 {
  background: var(--color_quaternary);
  padding: 50px;
}

.box-style01 .box-ttl {
  font-family: var(--font_jp);
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 25px;
}

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

  .box-style01 .box-ttl {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}

/*box-style02*/
.box-style02 {
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  padding: 50px;
}

.box-style02 .box-ttl {
  font-family: var(--font_jp);
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 25px;
}

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

  .box-style02 .box-ttl {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}

/*box-style03*/
.box-style03 {
  background: var(--color_quaternary);
  padding: 50px;
  position: relative;
}

.box-style03:before {
  content: attr(data-en);
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: -0.5em;
  right: 50px;
  z-index: 2;
}

.box-style03 .box-ttl {
  border-bottom: 1px solid var(--color_gray);
  font-family: var(--font_jp);
  font-size: 1.625rem;
  line-height: 1.5;
  padding: 0 0 10px;
  margin: 0 0 30px;
}

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

  .box-style03 .box-ttl {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}

/*box-style04*/
.box-style04 {
  background: var(--color_quaternary);
  padding: 30px;
}

.box-style04 .box-ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

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

  .box-style04 .box-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
}

/*------------
dl-style
--------------*/
/*dl-style01*/
.dl-style01 {
  display: grid;
  grid-gap: 15px;
}

.dl-style01 .item {
  display: grid;
  grid-template-columns: 25% 75%;
  grid-gap: 10px 0;
}

.dl-style01 dt {
  background: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  padding: 20px;
}

.dl-style01 dd {
  background: var(--color_quaternary);
  font-size: 0.9375rem;
  padding: 20px;
}

@media (max-width: 800px) {
  .dl-style01 .item {
    display: block;
  }

  .dl-style01 dt {
    padding: 15px 20px;
  }
}

.dl-style02 {
  display: grid;
  grid-template-columns: 122px 1fr;
  grid-gap: 10px 20px;
  align-items: flex-start;
}

.dl-style02>dt {
  background: var(--color_primary);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font_jp);
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 800px) {
  .dl-style02 {
    display: block;
  }

  .dl-style02>dt {
    width: 122px;
    margin-bottom: 10px;
  }

  .dl-style02>dd+dt {
    margin-top: 20px;
  }
}

/*------------
faq-style
--------------*/
.faq-style {
  border-top: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
  transition: 0.3s;
}

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

.faq-style .faq-summary {
  display: block;
  cursor: pointer;
  padding: 18px 50px;
  position: relative;
}

.faq-style .faq-summary .faq-icon {
  top: 15px;
  left: 0;
}

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

.faq-style .faq-summary:hover .faq-icon {
  background-color: var(--color_primary);
  color: #fff;
}

.faq-style .faq-content {
  overflow: hidden;
}

.faq-style .faq-inner {
  padding: 5px 50px 30px;
  position: relative;
}

.faq-style .faq-inner .faq-icon {
  border: 1px solid var(--color_secondary);
  background-color: var(--color_secondary);
  color: var(--color_white);
  top: 0;
  left: 0;
}

.faq-style .faq-ttl {
  font-family: var(--font_jp);
  font-size: 1.0625rem;
}

.faq-style .faq-icon {
  border: 1px solid var(--color_primary);
  border-radius: 50px;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  position: absolute;
  transition: 0.3s;
}

.faq-style .faq-open-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 15px;
  top: 11px;
  transition: 0.3s;
}

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

.faq-style .faq-open-icon::before {
  width: 16px;
  height: 2px;
  transform: translateX(-50%);
}

.faq-style .faq-open-icon::after {
  width: 16px;
  height: 2px;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: left;
  transition: transform 0.5s;
}

.faq-style.is-open .faq-summary .faq-icon {
  background-color: var(--color_primary);
  color: #fff;
}

.faq-style.is-open .faq-open-icon {
  transform: rotate(180deg);
}

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

@media (max-width: 800px) {
  .faq-style {
    line-height: 1.5;
  }

  .faq-style .faq-summary {
    padding: 18px 30px 18px 50px;
  }

  .faq-style .faq-open-icon {
    right: 0;
    top: 11px;
  }

  .faq-style .faq-inner {
    padding: 0 0 30px 50px;
  }
}

/*------------
merit-demerit
--------------*/
.merit-demerit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4%;
}

.merit-demerit .item-ttl {
  font-family: var(--font_jp);
  font-size: 1.375rem;
  line-height: 1;
  margin-bottom: 25px;
}

.merit-demerit .item-ttl::after {
  content: attr(data-en);
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 0.9375rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  margin-left: 15px;
}

.merit-demerit .item {
  background: var(--color_quaternary);
  border-top: 5px solid var(--color_primary);
  padding: 35px;
}

.merit-demerit .item:nth-of-type(2) {
  border-color: var(--color_secondary);
}

.merit-demerit .item:nth-of-type(2) .item-ttl::after {
  color: var(--color_secondary);
}

.merit-demerit .item:nth-of-type(2) .list-disc li::marker {
  color: var(--color_secondary);
}

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

  .merit-demerit .item {
    padding: 35px 25px;
  }

  .merit-demerit .item-ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .merit-demerit .item-ttl::after {
    font-size: 12px;
  }
}

/*------------
tel-layout
--------------*/
.tel-layout {
  background: var(--color_quaternary);
  max-width: 800px;
  padding: 5%;
  margin: 0 auto;
}

.tel-layout .l-ttl {
  border-bottom: 1px solid var(--color_primary);
  margin-bottom: 30px;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto 25px;
  width: -moz-fit-content;
  width: fit-content;
}

.tel-layout .wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.tel-layout .l-time {
  display: grid;
  grid-gap: 10px;
  line-height: 1.5;
}

.tel-layout .l-time .item {
  display: grid;
  grid-template-columns: 4.375rem 1fr;
  grid-gap: 10px;
}

.tel-layout .l-time dt {
  border: 1px solid var(--color_primary);
  text-align: center;
  font-family: var(--font_jp);
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tel-layout .l-time dd {
  line-height: 1.7;
  font-size: 0.8125rem;
}

@media (max-width: 800px) {
  .tel-layout .l-ttl {
    font-size: 15px;
    margin: 0 auto 25px;
  }

  .tel-layout .wrapper {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }

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

/*------------
スタッフページ
--------------*/
.staff-layout {
  display: flex;
  align-items: flex-start;
  padding: 0 max(5%, 50cqi - 512px) 30px;
  margin-inline: calc(50% - 50cqi);
  position: relative;
  gap: 0 5%;
}

.staff-layout:before {
  content: "";
  position: absolute;
  inset: 95px 0 0 27.7%;
  background: #F2F7EF;
  z-index: -1;
}

.staff-layout .l-img {
  position: relative;
  width: 358px;
  z-index: 1;
}

.staff-layout .l-img:has(.img02) {
  padding: 0 0 75px;
}

.staff-layout .l-img .img02 img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px solid var(--color_primary);
  position: absolute;
  left: -55px;
  bottom: 0;
  z-index: 3;
}

.staff-layout .l-desc {
  flex: 1;
}

.staff-layout .l-ttl {
  color: var(--color_primary);
  border-bottom: 1px solid var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  padding-bottom: 5px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 5px;
}

.staff-layout .l-message {
  font-family: var(--font_jp);
  font-size: 1.625rem;
  margin-bottom: 20px;
}

.staff-layout .l-name {
  margin-top: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1;
}

.staff-layout .l-name .job {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.0625rem;
}

.staff-layout .l-name .name {
  font-family: var(--font_jp);
  font-size: 1.625rem;
}

.staff-layout .l-name .kana {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1rem;
  font-weight: normal;
}

@media (max-width: 800px) {
  .staff-layout {
    display: block;
    padding: 0 5% 70px;
  }

  .staff-layout:before {
    inset: 95px 0 0 15%;
  }

  .staff-layout .l-img {
    width: 100%;
    margin-bottom: 20px;
  }

  .staff-layout .l-img:has(.img02) {
    padding: 0 0 30px 30px;
  }

  .staff-layout .l-img .img02 img {
    width: 100px;
    height: 100px;
    left: 0;
    bottom: 0;
  }

  .staff-layout .l-ttl {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .staff-layout .l-message {
    font-size: 1.4375rem;
    margin-bottom: 15px;
  }

  .staff-layout .l-name .job {
    font-size: 1rem;
  }

  .staff-layout .l-name .name {
    font-size: 1.4375rem;
  }

  .staff-layout .l-name .kana {
    font-size: 0.875rem;
  }
}

/*------------
bg-layout
--------------*/
.bg-layout {
  padding: 100px 0;
  position: relative;
  height: 100%;
}

.bg-layout .l-inner {
  background: #fff;
  width: min(90%, 1200px);
  position: relative;
  z-index: 5;
  margin-inline: auto;
  padding: 77px;
}

.bg-layout .bg-parallax {
  position: absolute;
  inset: 0;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  background-color: #fff;
  z-index: -1;
}

.bg-layout .bg-parallax img {
  position: fixed;
  inset: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100lvb;
  z-index: -1;
  opacity: 0.5;
}

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

  .bg-layout .l-inner {
    padding: 30px;
  }
}

/*------------
.intro-layout
--------------*/
.intro-layout {
  display: flex;
  flex-direction: row-reverse;
  padding: 0 max(5%, 50cqi - 556px) 90px;
  margin-inline: calc(50% - 50cqi);
  position: relative;
}

.intro-layout:before {
  content: "";
  position: absolute;
  inset: 50px 40% 0 0;
  background: #F2F7EF;
  z-index: -1;
}

.intro-layout .l-img {
  position: relative;
  width: 50%;
  z-index: 1;
}

.intro-layout .l-desc {
  flex: 1;
  padding: 0 5%;
}

.intro-layout .l-ttl {
  margin-bottom: 15px;
}

.intro-layout .l-ttl [lang=en] {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 15px;
}

.intro-layout .l-ttl .jp {
  font-family: var(--font_jp);
  font-size: 1.625rem;
}

.intro-layout .l-sub-ttl {
  display: flex;
  gap: 25px;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.125rem;
  line-height: 1.5;
  align-items: center;
  margin-bottom: 20px;
}

.intro-layout .l-sub-ttl::before {
  content: "";
  flex: 0 0 30px;
  background: var(--color_primary);
  width: 30px;
  height: 2px;
}

@media (max-width: 800px) {
  .intro-layout {
    display: block;
    padding: 0 5% 40px;
  }

  .intro-layout:before {
    inset: 50px 20% 0 0;
  }

  .intro-layout .l-img {
    width: 100%;
    margin-bottom: 20px;
  }

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

  .intro-layout .l-ttl {
    margin-bottom: 15px;
  }

  .intro-layout .l-ttl [lang=en] {
    font-size: 1.875rem;
    margin-bottom: 15px;
  }

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

  .intro-layout .l-sub-ttl {
    gap: 10px;
    font-size: 1.0625rem;
    margin-bottom: 20px;
  }

  .intro-layout .l-sub-ttl::before {
    flex: 0 0 20px;
    width: 20px;
  }
}

/*------------
.circle-layout
--------------*/
.circle-layout {
  display: flex;
  gap: 0 4%;
}

.circle-layout.reverse {
  flex-direction: row-reverse;
}

.circle-layout .l-img {
  width: 43%;
  position: relative;
}

.circle-layout .l-img:before {
  content: attr(data-num);
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 4.375rem;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: 8%;
  left: 5%;
  z-index: 2;
}

.circle-layout .l-img img {
  border-radius: 50%;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.circle-layout .l-ttl {
  border-bottom: 1px solid var(--color_gray);
  font-family: var(--font_jp);
  font-size: 1.625rem;
  line-height: 1.5;
  padding: 0 0 10px;
  margin: 0 0 30px;
}

.circle-layout .l-desc {
  flex: 1;
}

@media (max-width: 800px) {
  .circle-layout {
    display: block;
  }

  .circle-layout .l-img {
    width: 80%;
    margin: 0 auto 20px;
  }

  .circle-layout .l-img:before {
    font-size: 3.75rem;
    top: 5%;
    left: 5%;
    z-index: 2;
  }

  .circle-layout .l-img img {
    border-radius: 50%;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .circle-layout .l-ttl {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}

/*------------
.price-style
--------------*/
.price-style {
  display: grid;
  grid-gap: 20px;
}

.price-style .list-intro {
  border-bottom: 1px dotted var(--color_gray);
  display: flex;
  align-items: flex-end;
  grid-gap: 10px;
  justify-content: space-between;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  padding: 0 0 5px;
}

.price-style .list-desc {
  color: var(--color_gray_dark);
  font-family: var(--font_jp);
  font-size: 0.8125rem;
  margin-top: 8px;
}

@media (max-width: 800px) {
  .price-style {
    grid-gap: 15px;
  }

  .price-style .list-intro {
    font-size: 16px;
  }
}

/*l-style01*/
.l-style01 {
  display: flex;
  align-items: flex-start;
}

.l-style01 .l-img {
  position: relative;
  width: 40%;
  z-index: 1;
}

.l-style01 .l-desc {
  background: var(--color_quaternary);
  padding: 55px 55px 55px 150px;
  margin: 50px 0 0 -100px;
  flex: 1;
}

.l-style01 .num {
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.4375rem;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 15px;
}

.l-style01 .l-ttl {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.l-style01 .l-sub-ttl {
  display: flex;
  align-items: center;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.l-style01 .l-sub-ttl::before {
  content: "";
  background: var(--color_primary);
  width: 30px;
  height: 1px;
  margin-right: 25px;
}

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

.l-style01.reverse .l-desc {
  padding: 55px 150px 55px 55px;
  margin: 50px -100px 0 0;
}

@media (max-width: 800px) {
  .l-style01 {
    display: block;
  }

  .l-style01 .l-img {
    width: 100%;
    margin: 0;
  }

  .l-style01 .l-desc {
    padding: 7%;
    margin: -50px auto 0;
    position: relative;
    z-index: 1;
    width: 90%;
  }

  .l-style01 .num {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }

  .l-style01 .l-ttl {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .l-style01 .l-sub-ttl {
    font-size: 1.125rem;
    margin-bottom: 20px;
  }

  .l-style01.reverse .l-desc {
    padding: 7%;
    margin: -50px auto 0;
  }
}

.privacy-ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  margin-bottom: 0.9375rem;
}

.dl-privacy {
  display: grid;
  gap: 1.875rem;
}

.dl-privacy dt {
  border-top: 1px solid var(--color_border);
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  padding-top: 1.5625rem;
  margin-bottom: 0.9375rem;
  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-weight: bold;
  font-family: var(--font_jp);
}

.c-red {
  color: #F44336;
}

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

.marker {
  background: linear-gradient(transparent 60%, rgba(128, 178, 77, 0.3) 60%);
}

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

/*------------
splide
-------------*/
:root {
  /* 矢印（Arrow） */
  --splide-arrow-bg-color: var(--color_primary);
  /* ドット（Pagination） */
  --splide-dot-color: #D0D0C9;
  --splide-dot-active-color: var(--color_primary);
  /* 再生停止ボタン（Toggle） */
  --splide-toggle-bg-color: #ccc;
  --splide-toggle-bg-hover: #D3D3D3;
  --splide-toggle-svg-color: #fff;
  /* スクロールバー（Progress） */
  --splide-progress-color: var(--color_primary);
}

.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;
  border-radius: 50%;
}

.splide__arrow--prev {
  -webkit-mask: url(../images/share/splide_prev.svg) no-repeat center/contain;
  mask: url(../images/share/splide_prev.svg) no-repeat center/contain;
  background-color: var(--splide-arrow-bg-color);
}

.splide__arrow--next {
  -webkit-mask: url(../images/share/splide_next.svg) no-repeat center/contain;
  mask: url(../images/share/splide_next.svg) no-repeat center/contain;
  background-color: var(--splide-arrow-bg-color);
}

.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: 0.9375rem;
}

.splide__pagination {
  gap: 8px;
}

.splide__pagination__page {
  background: var(--splide-dot-color);
  border-radius: 100px;
  display: inline-block;
  transition: transform 0.2s linear;
  height: 8px;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: var(--splide-dot-active-color);
  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: var(--splide-progress-color);
  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: var(--splide-toggle-bg-color);
  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: var(--splide-toggle-bg-hover);
}

.splide__toggle svg {
  fill: var(--splide-toggle-svg-color);
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

.splide__toggle:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}
