@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #333;
  --color_link: #333;
  --color_border: #e9e9e9;
  --color_primary: #46AC66;
  --color_secondary: #FBDF54;
  --color_tertiary: #EC9238;
  --color_bg01: #EEF8F1;
  --color_bg02: #FFFCE8;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
}

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

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

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

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

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

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

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

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

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

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

::selection {
  background: #d4dcd6;
}

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

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

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

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

figure:has(img) {
  line-height: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

.time-table thead th {
  background-color: var(--color_tertiary);
  color: var(--color_white);
}

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

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

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

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

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

/*-----------------------------------------------------------
診療カレンダー
-----------------------------------------------------------*/
:root {
  --event01: #46AC66;
  --event02: #FBDF54;
  --event03: #EC9238;
}

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

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

.business-calendar-box-wrap .business-calendar caption {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 12px;
  position: relative;
}

.business-calendar-box-wrap .business-calendar caption span {
  line-height: 1;
  font-size: 1.5625rem;
  position: absolute;
  vertical-align: -1px;
}

.business-calendar-box-wrap .business-calendar-past {
  left: 0;
}

.business-calendar-box-wrap .business-calendar-future {
  right: 0;
}

.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 25px;
  height: 25px;
}

.business-calendar-box-wrap .business-calendar-future a::before {
  transform: rotate(180deg);
}

.business-calendar-box-wrap .business-calendar th {
  background: var(--color_tertiary);
  border: 1px solid #dfdfdf;
  color: var(--color_white);
  text-align: center;
  font-weight: bold;
  padding: 6px 5px;
  width: 14%;
}

.business-calendar-box-wrap .business-calendar td {
  background: #FFFFFF;
  border: 1px solid #dfdfdf;
  position: relative;
  font-size: 0.8125rem;
  padding: 7px 5px;
  z-index: 0;
}

.business-calendar-box-wrap .business-calendar td::before {
  content: "";
  background: #ccc;
  border-radius: 50px;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
}

.business-calendar-box-wrap.large .business-calendar th,
.business-calendar-box-wrap.large .business-calendar td {
  padding: 10px;
  font-size: 0.9375rem;
}

.business-calendar-box-wrap.col2 {
  grid-template-columns: 1fr;
}

.business-calendar-box-wrap.col2 .business-calendar-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3%;
}

.business-calendar-box-wrap .business-calendar .today {
  text-decoration: underline;
}

.business-calendar-box-wrap .business-calendar .attr0,
.business-calendar-box-wrap .business-calendar .attr1,
.business-calendar-box-wrap .business-calendar .attr2,
.business-calendar-box-wrap .business-calendar .attr3 {
  color: #fff;
}

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

.business-calendar-box-wrap .business-calendar .attr1 {
  color: var(--color_text);
}

.business-calendar-box-wrap .business-calendar .attr0::before {
  background: var(--event01);
}

.business-calendar-box-wrap .business-calendar .attr1::before {
  background: var(--event02);
}

.business-calendar-box-wrap .business-calendar .attr2::before {
  background: var(--event03);
}

.business-calendar-box-wrap .business-calendar .attr3::before {
  background: var(--event04);
}

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

.list-event li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  line-height: 1;
}

.list-event li::before {
  content: "";
  background-color: var(--color_black);
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.list-event .event01::before {
  background-color: var(--event01);
}

.list-event .event02::before {
  background-color: var(--event02);
}

.list-event .event03::before {
  background-color: var(--event03);
}

.list-event .event04::before {
  background-color: var(--event04);
}

@media (max-width: 800px) {
  .business-calendar-box-wrap.col2 .business-calendar-box {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .list-event {
    display: block;
  }

  .list-event li+li {
    margin-top: 5px;
  }
}

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

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

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

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

.btn-more {
  display: inline-block;
  background-color: var(--color_white);
  border: 1px solid var(--color_black);
  border-radius: 5px;
  color: var(--color_black);
  font-weight: bold;
  line-height: 1.3;
  min-height: 50px;
  min-width: 300px;
  padding: 13px 25px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.btn-more::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-mask: url(../images/share/icon_arrow_btn.svg) no-repeat center/contain;
  mask: url(../images/share/icon_arrow_btn.svg) no-repeat center/contain;
  width: 6px;
  height: 9px;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .btn-more:hover {
    background-color: var(--color_black);
    color: var(--color_white);
  }

  .btn-more:hover::before {
    background-color: var(--color_white);
  }
}

.btn-more.orange {
  background-color: var(--color_tertiary);
  border: 1px solid var(--color_tertiary);
  color: var(--color_white);
}

.btn-more.orange::before {
  content: none;
}

@media (any-hover: hover) {
  .btn-more.orange:hover {
    background-color: oklch(from var(--color_tertiary) calc(l - 0.05) c h);
  }
}

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

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

@media (max-width: 800px) {
  .btn-more {
    min-width: auto;
    max-width: 300px;
    width: 100%;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  font-size: 1.25rem;
  margin-bottom: 25px;
  padding-bottom: 11px;
  position: relative;
}

.category-ttl::after {
  content: "";
  display: block;
  background-color: var(--color_primary);
  width: 30px;
  height: 2px;
  position: absolute;
  bottom: 0px;
  left: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-under-blog time {
  display: inline-block;
  color: #BCBCBC;
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

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

.post-under-blog .category {
  text-box: trim-both cap alphabetic;
  background-color: var(--color_tertiary);
  display: inline-block;
  border-radius: 5px;
  color: var(--color_white);
  font-size: 0.75rem;
  line-height: 1;
  padding: 6px 12px;
}

.post-under-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  overflow-wrap: anywhere;
  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 time {
    flex-shrink: 0;
    font-size: 0.6875rem;
  }

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

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

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

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

.post-under-news a {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 30px;
  align-items: center;
  padding: 25px 70px 25px 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: 20px 40px 16px 10px;
  }
}

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

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

.post-under-news time {
  display: inline-block;
  color: #BCBCBC;
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

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

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

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

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


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

/*詳細ページ*/
.layout-single-post {
  box-shadow: 0 3px 6px oklch(from #333 l c h/0.3);
  background-color: var(--color_white);
  border-radius: 10px;
  padding: 60px 50px 40px;
  width: min(90%, 800px);
  margin: 100px auto 0;
  position: relative;
  text-align: justify;
  z-index: 0;
}

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

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

.layout-single-post time {
  display: inline-block;
  color: #BCBCBC;
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

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

.layout-single-post .category {
  text-box: trim-both cap alphabetic;
  background-color: var(--color_tertiary);
  display: inline-block;
  border-radius: 5px;
  color: var(--color_white);
  font-size: 0.75rem;
  line-height: 1;
  padding: 8px 12px;
}

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

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

  .layout-single-post::before {
    left: 15px;
    right: 15px;
  }

  .layout-single-post .l-ttl {
    font-size: 1.5625rem;
    margin-bottom: 20px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  height: 120px;
  padding: 13px 35px;
  position: fixed;
  transition: background-color 0.3s;
  z-index: 10;
  width: 100%;
}

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

.h-logo {
  line-height: 1;
}

.h-contact {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 10px;
}

@media (max-width: 1200px) {
  .header {
    padding: 13px;
  }
}

@media (max-width: 1024px) {
  .header {
    height: 82px;
    padding: 10px 2.5%;
    position: static;
  }

  .h-logo {
    max-width: 144px;
  }

  .h-utility {
    display: none;
  }
}

.h-btn {
  background-color: var(--color_tertiary);
  border-radius: 5px;
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 1rem;
  font-weight: bold;
  min-width: 210px;
  padding: 10px 25px 8px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s;
  min-height: 50px;
}

@media (any-hover: hover) {
  .h-btn:hover {
    background-color: oklch(from var(--color_tertiary) calc(l - 0.05) c h);
  }
}

.h-btn.tel {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1rem;
  padding: 10px 15px 8px 45px;
}

.h-btn.tel::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  width: 13px;
  height: 17px;
  position: absolute;
  left: 27px;
  top: 50%;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .h-btn.tel:hover {
    background-color: oklch(from var(--color_primary) calc(l - 0.05) c h);
  }
}

.h-btn.access {
  background-color: var(--color_secondary);
  color: var(--color_black);
  padding: 10px 25px 8px 37px;
}

.h-btn.access::before {
  content: "";
  background-color: var(--color_black);
  -webkit-mask: url(../images/share/icon_access.svg) no-repeat center/contain;
  mask: url(../images/share/icon_access.svg) no-repeat center/contain;
  width: 12px;
  height: 16px;
  position: absolute;
  left: 53px;
  top: 50%;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .h-btn.access:hover {
    background-color: oklch(from var(--color_secondary) calc(l - 0.05) c h);
  }
}

/*------------
Gnavi
--------------*/
.gnavi-links {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.gnavi-links>li>a {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
}

.gnavi-links>li>a:not([href="#"]) {
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .gnavi-links>li>a:not([href="#"]):hover {
    color: var(--color_primary);
  }
}

/*dropdown*/

.dropdown .dropdown-ttl {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
}

.dropdown {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
}

.dropdown::after {
  content: "";
  display: block;
  border-bottom: 2px solid var(--color_primary);
  border-right: 2px solid var(--color_primary);
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  transform-origin: right;
  margin: 5px 0 0;
}

.dropdown.is-open .sub-menu {
  pointer-events: auto;
  opacity: 1;
}

.dropdown .sub-menu {
  display: grid;
  grid-gap: 5px;
  pointer-events: none;
  background-color: #EEF8F2;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  position: absolute;
  top: 30px;
  right: 50%;
  width: -moz-max-content;
  width: max-content;
  min-width: 150px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

.dropdown .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

.dropdown .sub-menu li {
  font-size: 0.9375rem;
  position: relative;
  padding-left: 18px;
}

.dropdown .sub-menu li::before {
  content: "";
  background-color: var(--color_primary);
  width: 6px;
  height: 6px;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 0.75rem;
}

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

.dropdown:last-child .sub-menu {
  right: 0;
  transform: translateX(0);
}

@media (max-width: 1200px) {
  .gnavi-links {
    gap: 23px;
  }

  .gnavi-links>li>a {
    font-size: 0.9375rem;
  }

  .dropdown::after {
    margin: 3px 0 0;
  }
}

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

.f-contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
  margin-inline: auto;
  margin-bottom: 100px;
  width: min(90%, 1200px);
}

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

.f-txt {
  line-height: 1.8;
  margin-bottom: 10px;
}

.f-txt02 {
  line-height: 1.8;
}

.f-btns {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.f-btns .tel {
  font-size: 1.4375rem;
}

.f-btns .btn-more {
  min-width: 210px;
}

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

.f-links {
  display: grid;
  grid-gap: 5px;
  font-size: 0.9375rem;
}

.f-links>li {
  padding-left: 18px;
  position: relative;
}

.f-links>li::before {
  content: "";
  background-color: var(--color_primary);
  position: absolute;
  top: 0.75rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

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

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

.f-bottom {
  display: flex;
  justify-content: center;
  margin-inline: auto;
  width: min(90%, 1200px);
}

.copyright {
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

.pagetop {
  position: absolute;
  bottom: 85px;
  right: 50px;
}

@media (max-width: 1300px) {
  .site-map {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

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

  .f-contents {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
  }

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

  .f-btns {
    margin-bottom: 20px;
  }

  .site-map {
    flex-direction: column;
    align-items: normal;
    gap: 5px;
  }

  .pagetop {
    top: auto;
    bottom: 100px;
    right: 20px;
    width: 40px;
  }
}

.sp-navi {
  display: none;
}

@media (max-width: 1024px) {
  :root {
    --navi-background: #46AC66;
    --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: 55px;
    z-index: 10000;
  }

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

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

  .sp-navi-btns .item:not(:last-child) {
    border-right: 1px solid var(--navi-border-color);
  }

  .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: 8px 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: var(--color_tertiary);
    border-radius: 5px;
    width: 50px;
    height: 50px;
    position: fixed;
    top: 16px;
    right: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 9999;
  }

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

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

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

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

  .sp-menu-btn.is-open span:nth-of-type(1) {
    transform: translate(-50%, 7px) 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%, -7px) rotate(45deg);
  }

  .sp-navi-drawer {
    pointer-events: none;
    visibility: hidden;
    background: var(--color_white);
    color: var(--color_black);
    font-size: 0.9375rem;
    padding: 80px 25px 100px;
    position: fixed;
    inset: 0;
    transform: translateX(60px);
    transition: 0.5s var(--ease);
    opacity: 0;
    z-index: 1000;
  }

  .sp-navi-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    transform: translateX(0);
    opacity: 1;
    transition-timing-function: var(--ease);
  }

  .sp-navi-list {
    border-top: 1px solid var(--color_gray);
    font-weight: bold;
    line-height: 1.5;
  }

  .sp-navi-list>li {
    position: relative;
    border-bottom: 1px solid var(--color_gray);
  }

  .sp-navi-list>li>a {
    display: grid;
    align-items: center;
    padding: 10px 25px 10px 0;
    position: relative;
    min-height: 50px;
  }

  .sp-navi-list>li>a::after {
    content: "";
    background-color: var(--color_black);
    -webkit-mask: url(../images/share/sp_navi_arrow.svg) no-repeat center/contain;
    mask: url(../images/share/sp_navi_arrow.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 11px;
    height: 11px;
    transform: translateY(-50%);
  }
}

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

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

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

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

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

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

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

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

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
}

.hero .splide__slide img {
  min-height: 440px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

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

.hero .splide__controls {
  position: absolute;
  bottom: 20px;
  right: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.hero .hero-catch {
  position: absolute;
  left: 8%;
  top: 55%;
  transform: translateY(-50%);
}

.hero .hero-txt {
  font-size: clamp(2rem, 3vw, 3.4375rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #20823F;
  text-shadow: 1px 1px 10px #fff, -1px -1px 10px #fff, 1px -1px 10px #fff, -1px 1px 10px #fff;
}

.hero .hero-news {
  position: absolute;
  right: 50px;
  bottom: 50px;
  background-color: var(--color_white);
  border-radius: 5px;
  min-width: min(600px, 100%);
  padding: 20px 25px 20px;
}

.hero .hero-news .l-ttl {
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.hero .hero-news .l-btn {
  position: absolute;
  top: 20px;
  right: 35px;
}

.hero .hero-news .btn-more {
  font-size: 0.875rem;
  min-height: auto;
  min-width: auto;
  padding: 10px 20px 10px 30px;
}

@media (max-width: 1024px) {
  .hero .splide__controls {
    bottom: 72px;
    right: 3%;
  }

  .hero .hero-catch {
    left: 50%;
    transform: translate(-50%, -50%);
    width: -moz-max-content;
    width: max-content;
  }

  .hero .hero-txt {
    font-size: 2rem;
    text-align: center;
  }

  .hero .hero-news {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    right: 50%;
    bottom: -50px;
    transform: translateX(50%);
    padding: 20px;
    min-width: auto;
    width: 94%;
  }

  .hero .hero-news .l-ttl {
    font-size: 1.25rem;
    margin-bottom: 7px;
  }

  .hero .hero-news .l-btn {
    top: 23px;
    right: 20px;
  }

  .hero .hero-news .btn-more {
    font-size: 0.75rem;
    padding: 6px 13px 7px 25px;
  }

  .hero .hero-news .btn-more::before {
    left: 10px;
  }
}

/*------------
Components
--------------*/
.t-h2 {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 60px;
}

.t-h2 .jp {
  font-size: clamp(2.5rem, 2.5vw, 2.8125rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.t-h2 [lang=en] {
  color: #ECC708;
  font-family: var(--font_en);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

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

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

  .t-h2 [lang=en] {
    font-size: 1rem;
  }
}

/*------------
Section
--------------*/
.sec01 {
  background-color: var(--color_bg01);
  padding: 100px 0;
}

.sec01-box {
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  border-radius: 5px;
  padding: 45px 50px 50px;
}

.sec01-box.bg01 {
  background: url(../images/sec01_bg01.jpg) no-repeat center center/cover;
  position: relative;
  z-index: 0;
}

.sec01-box.bg01::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.65);
  border-radius: 5px;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.sec01-box .box-ttl {
  font-size: clamp(1.875rem, 2vw, 2.1875rem);
  margin-bottom: 33px;
  text-align: center;
}

.sec01-box .t-catch {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}

.sec01-box .l-btn {
  margin: 40px 0 0;
  text-align: center;
}

.sec01-box .l-btn.style01 {
  margin: 40px 0;
}

.sec01-box+.sec01-box {
  margin-top: 50px;
}

.sec01-box02 {
  background-color: var(--color_bg01);
  border-radius: 5px;
  margin: 40px auto 0;
  padding: 30px 40px 40px;
  max-width: 784px;
}

.sec01-box02 .tel {
  margin-bottom: 20px;
}

.sec01-box02 .l-txt {
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}

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

  .sec01-box {
    padding: 30px 5%;
  }

  .sec01-box .box-ttl {
    font-size: 1.25rem;
    margin-bottom: 15px;
    text-align: left;
  }

  .sec01-box .t-catch {
    font-size: 1rem;
    text-align: left;
  }

  .sec01-box .l-btn {
    margin: 28px 0 0;
  }

  .sec01-box .l-btn.style01 {
    margin: 28px 0;
  }

  .sec01-box+.sec01-box {
    margin-top: 30px;
  }

  .sec01-box02 {
    margin-top: 30px;
    padding: 20px 5%;
  }
}

.sec02 {
  padding: 120px 0;
}

.sec02 .l-btn {
  margin: 50px 0 0;
  text-align: center;
}

.sec02-link {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px 30px;
}

.sec02-link a {
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  position: relative;
}

.sec02-link a::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 12px;
  height: 12px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.sec02-link a:nth-child(1) {
  grid-area: 1/1/2/3;
}

.sec02-link a:nth-child(2) {
  grid-area: 1/3/2/5;
}

.sec02-link a:nth-child(3) {
  grid-area: 1/5/2/7;
}

.sec02-link a:nth-child(4) {
  grid-area: 2/2/3/4;
}

.sec02-link a:nth-child(5) {
  grid-area: 2/4/3/6;
}

@media (any-hover: hover) {
  .sec02-link a:hover .l-img img {
    scale: 1.1;
  }
}

.sec02-link .l-img {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.sec02-link .l-img img {
  border-radius: 10px 10px 0 0;
  transition: scale 0.3s;
  width: 100%;
}

.sec02-link .l-desc {
  padding: 35px 20px 35px;
}

.sec02-link .num {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 25px;
  text-box: trim-both cap alphabetic;
  text-align: center;
}

.sec02-link .l-ttl {
  font-size: clamp(1.25rem, 1.2vw, 1.4375rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: center;
}

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

  .sec02-link {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .sec02-link a:nth-child(1) {
    grid-area: 1/1/2/2;
  }

  .sec02-link a:nth-child(2) {
    grid-area: 1/2/2/3;
  }

  .sec02-link a:nth-child(3) {
    grid-area: 2/1/3/2;
  }

  .sec02-link a:nth-child(4) {
    grid-area: 2/2/3/3;
  }

  .sec02-link a:nth-child(5) {
    grid-area: 3/1/4/2;
  }

  .sec02-link .l-desc {
    padding: 20px 5% 20px;
  }

  .sec02-link .num {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

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

.sec03 {
  background-color: var(--color_bg01);
  padding: 120px 0;
}

.sec03 .t-h2 {
  margin-bottom: 100px;
}

/*.sec03 .l-btn {
  margin-top: 50px;
  text-align: center;
}*/

.l-sec03 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "l-img l-desc";
  align-items: center;
}

.l-sec03 .l-img {
  grid-area: l-img;
}

.l-sec03 .l-desc {
  grid-area: l-desc;
  margin: 0 0 0 80px;
}

.l-sec03 .l-ttl {
  font-size: clamp(2.625rem, 2.7vw, 3.125rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
}

.l-sec03 .l-txt {
  font-size: 1.375rem;
  line-height: 1.4;
}

.l-sec03 .l-btn {
  margin-top: 80px;
  text-align: left;
}

.l-sec03 .l-btn .btn-wrap {
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
}

.l-sec03.reverse {
  grid-template-areas: "l-desc l-img";
}

.l-sec03.reverse .l-desc {
  margin: 0 80px 0 0;
}

.l-sec03+.l-sec03 {
  margin-top: 118px;
}

.sec03-btn-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  margin-top: 122px;
}

.sec03-btn-list a {
  display: block;
  background-color: var(--color_white);
  border-radius: 5px;
  padding: 30px;
  position: relative;
  text-align: center;
  transition: transform 0.3s;
}

.sec03-btn-list a::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 15px;
  height: 15px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.sec03-btn-list a:nth-child(1) {
  grid-area: 1/1/2/3;
}

.sec03-btn-list a:nth-child(2) {
  grid-area: 1/3/2/5;
}

.sec03-btn-list a:nth-child(3) {
  grid-area: 1/5/2/7;
}

.sec03-btn-list a:nth-child(4) {
  grid-area: 1/7/2/9;
}

.sec03-btn-list a:nth-child(5) {
  grid-area: 2/2/3/4;
}

.sec03-btn-list a:nth-child(6) {
  grid-area: 2/4/3/6;
}

.sec03-btn-list a:nth-child(7) {
  grid-area: 2/6/3/8;
}

@media (any-hover: hover) {
  .sec03-btn-list a:hover {
    transform: translateY(-10px);
  }
}

.sec03-btn-list .l-img {
  margin-bottom: 30px;
}

.sec03-btn-list .l-img img {
  margin-inline: auto;
}

.sec03-btn-list .l-txt {
  font-size: 1.125rem;
  font-weight: bold;
}

.sec03-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 50px;
  margin-top: 94px;
}

.sec03-card .item {
  border-radius: 10px 10px 0 0;
}

.sec03-card .item .l-ttl {
  background-color: var(--color_primary);
  border-radius: 10px 10px 0 0;
  color: var(--color_white);
  font-size: 1.125rem;
  font-weight: bold;
  padding: 16px 45px;
}

.sec03-card .item .l-desc {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background-color: var(--color_white);
  min-height: 238px;
  padding: 40px 45px;
}

.sec03-card .item .l-desc .list-disc {
  display: block;
}

.sec03-card .item .l-desc .list-disc li {
  line-height: 2.1;
}

@media (any-hover: hover) {
  .sec03-card .item a:hover {
    text-decoration: underline;
  }
}

.sec03-card .item:nth-child(2) .l-ttl {
  background-color: var(--color_secondary);
  color: var(--color_black);
}

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

  .sec03 .t-h2 {
    margin-bottom: 30px;
  }

  .l-sec03 {
    grid-template-columns: 1fr;
    grid-template-areas: "l-img""l-desc";
  }

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

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

  .l-sec03 .l-txt {
    font-size: 1.125rem;
  }

  .l-sec03 .l-btn {
    margin-top: 35px;
  }

  .l-sec03.reverse {
    grid-template-columns: 1fr;
    grid-template-areas: "l-img""l-desc";
  }

  .l-sec03.reverse .l-desc {
    margin: 20px 0 0;
  }

  .l-sec03+.l-sec03 {
    margin-top: 50px;
  }

  .sec03-btn-list {
    margin-top: 50px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .sec03-btn-list a {
    padding: 20px 5%;
  }

  .sec03-btn-list a:nth-child(1) {
    grid-area: 1/1/2/2;
  }

  .sec03-btn-list a:nth-child(2) {
    grid-area: 1/2/2/3;
  }

  .sec03-btn-list a:nth-child(3) {
    grid-area: 2/1/3/2;
  }

  .sec03-btn-list a:nth-child(4) {
    grid-area: 2/2/3/3;
  }

  .sec03-btn-list a:nth-child(5) {
    grid-area: 3/1/4/2;
  }

  .sec03-btn-list a:nth-child(6) {
    grid-area: 3/2/4/3;
  }

  .sec03-btn-list a:nth-child(7) {
    grid-area: 4/1/5/2;
  }

  .sec03-btn-list .l-img {
    margin-bottom: 8px;
  }

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

  .sec03-card {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .sec03-card .item .l-ttl {
    padding: 10px 20px;
  }

  .sec03-card .item .l-desc {
    min-height: auto;
    padding: 20px;
  }
}

.sec04 {
  background-color: var(--color_bg02);
  padding: 130px 0 225px;
}

.l-sec04 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 0 0 13%;
}

.l-sec04 .l-desc {
  padding: 0 0 0 14%;
}

.l-sec04 .l-ttl {
  margin-bottom: 35px;
}

.l-sec04 .l-ttl .jp {
  font-size: 2.1875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.l-sec04 .l-ttl [lang=en] {
  color: #ECC708;
  font-family: var(--font_en);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

.l-sec04 .l-name {
  font-size: 1.125rem;
  margin-top: 5px;
  text-align: right;
}

.l-sec04 .l-btn {
  margin-top: 70px;
}

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

  .l-sec04 {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .l-sec04 .l-desc {
    padding: 0;
    margin-top: 20px;
  }

  .l-sec04 .l-ttl {
    margin-bottom: 25px;
  }

  .l-sec04 .l-ttl .jp {
    font-size: 1.625rem;
  }

  .l-sec04 .l-ttl [lang=en] {
    font-size: 1rem;
  }

  .l-sec04 .l-btn {
    margin-top: 35px;
  }
}

.sec05 {
  padding: 120px 0;
}

.l-sec05 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  margin-bottom: 120px;
}

.sec05-table {
  line-height: 1.8;
}

.sec05-table th,
.sec05-table td {
  border-bottom: 1px solid #B4C8BA;
  padding: 12px 0;
}

.sec05-table th {
  text-align: left;
  width: 20%;
}

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

.sec05-links a {
  display: grid;
  place-content: center;
  background-color: #E3F2E7;
  border-radius: 5px;
  min-height: 245px;
  padding: 30px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s;
}

.sec05-links a::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 15px;
  height: 15px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .sec05-links a:hover {
    background-color: var(--color_primary);
  }

  .sec05-links a:hover::before {
    background-color: var(--color_white);
  }

  .sec05-links a:hover .jp {
    color: var(--color_white);
  }
}

.sec05-links .jp {
  font-size: 2.125rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  transition: color 0.3s;
}

.sec05-links [lang=en] {
  color: #ECC708;
  font-family: var(--font_en);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

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

  .l-sec05 {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }

  .sec05-table th {
    width: 80px;
  }

  .sec05-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sec05-links a {
    min-height: auto;
  }

  .sec05-links .jp {
    font-size: 1.625rem;
    margin-bottom: 0;
  }

  .sec05-links [lang=en] {
    font-size: 1rem;
  }
}

.sec06 {
  padding: 0 0 120px;
}

.l-sec06 .l-ttl {
  border-bottom: 1px solid #B4C8BA;
  margin-bottom: 40px;
  padding-bottom: 15px;
}

.l-sec06 .l-ttl .jp {
  font-size: 2.125rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  transition: color 0.3s;
  margin-bottom: 6px;
}

.l-sec06 .l-ttl [lang=en] {
  color: #ECC708;
  font-family: var(--font_en);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

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

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

  .l-sec06 .l-ttl {
    margin-bottom: 25px;
  }

  .l-sec06 .l-ttl .jp {
    font-size: 1.625rem;
  }

  .l-sec06 .l-ttl [lang=en] {
    font-size: 1rem;
  }

  .l-sec06 .l-btn {
    margin-top: 35px;
  }
}

.sec07 .google-map iframe {
  height: 420px;
}

.sec07 .l-map {
  position: relative;
}

.sec07 .l-map .l-desc {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-color: var(--color_white);
  border-radius: 10px;
  padding: 40px 40px 45px;
  z-index: 1;
}

.sec07 .l-ttl {
  margin-bottom: 25px;
}

.sec07 .l-ttl .jp {
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.sec07 .l-ttl [lang=en] {
  color: #ECC708;
  font-family: var(--font_en);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

.sec07 .list-disc {
  gap: 20px;
}

.sec07 .l-btn {
  margin-top: 30px;
  text-align: center;
}

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

  .sec07 .l-map .l-desc {
    padding: 30px 5%;
    position: static;
    transform: none;
  }

  .sec07 .l-ttl .jp {
    font-size: 1.625rem;
  }

  .sec07 .l-ttl [lang=en] {
    font-size: 1rem;
  }

  .sec07 .list-disc {
    gap: 15px;
  }

  .sec07 .l-btn {
    margin-top: 20px;
  }
}

.post-top-news {
  display: grid;
}

.post-top-news a {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.post-top-news time {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 0.9375rem;
  line-height: 1;
  text-box: trim-both cap alphabetic;
  display: inline-block;
  white-space: nowrap;
}

.post-top-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

@media (max-width: 800px) {
  .post-top-news time {
    font-size: 0.75rem;
  }

  .post-top-news .post-ttl {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

.post-top-blog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.post-top-blog .post-img {
  border: 1px solid #D9DEDA;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 3px;
}

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

.post-top-blog time {
  display: inline-block;
  color: #BCBCBC;
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

.post-top-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 10px;
}

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

.post-top-blog .category {
  text-box: trim-both cap alphabetic;
  background-color: var(--color_tertiary);
  display: inline-block;
  border-radius: 5px;
  color: var(--color_white);
  font-size: 0.75rem;
  line-height: 1;
  padding: 8px 12px;
}

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

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

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

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

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

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

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

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

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

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  background-color: var(--color_bg01);
  padding: 215px 5% 127px;
  text-align: center;
}

.page-ttl {
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1.5;
}

.breadcrumb {
  margin-inline: auto;
  width: min(90%, 1200px);
}

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

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "";
  display: inline-block;
  background-color: var(--color_primary);
  width: 7px;
  height: 2px;
  margin: 0 12px;
  vertical-align: 4px;
}

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

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

@media (max-width: 800px) {
  .page-header {
    overflow: hidden;
    padding: 50px 3%;
  }

  .page-header::before {
    top: -100px;
    right: -100px;
    width: 80vw;
  }

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

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

.u-h2,
.postdata h2 {
  color: var(--color_primary);
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
  padding-bottom: 15px;
  position: relative;
  text-align: center;
}

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

.postdata h2 {
  font-size: 1.625rem;
  margin-bottom: 30px;
  padding-bottom: 8px;
  text-align: left;
}

.postdata h2::after {
  left: 0;
  transform: none;
}

.u-h3,
.postdata h3 {
  border-bottom: 2px solid var(--color_secondary);
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}

.u-h3::after,
.postdata h3::after {
  content: "";
  display: block;
  background-color: var(--color_primary);
  width: 60px;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.postdata h3 {
  font-size: 1.375rem;
  padding-bottom: 5px;
}

.u-h4,
.postdata h4 {
  color: var(--color_primary);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.postdata h4 {
  font-size: 1.125rem;
}

@media (max-width: 800px) {

  .u-h2,
  .postdata h2 {
    font-size: 1.625rem;
    margin-bottom: 30px;
  }

  .postdata h2 {
    font-size: 1.375rem;
  }

  .u-h3,
  .postdata h3 {
    font-size: 1.25rem;
    padding-bottom: 2px;
    margin-bottom: 20px;
  }

  .u-h4,
  .postdata h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
}

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

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

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

.hidden {
  overflow: hidden;
}

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

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

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

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

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

.list-disc li::marker,
.postdata ul li::marker {
  color: var(--color_primary);
  font-size: 0.9375rem;
}

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

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

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

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

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

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

.list-num>li:before,
.postdata ol>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;
}

@media (max-width: 800px) {
  .list-check li::before {
    top: 5px;
  }
}

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

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

.table-style01 .bg01 {
  background-color: var(--color_bg02);
  color: var(--color_txt);
}

.table-style02 th,
.table-style02 td {
  border-bottom: 1px solid #B4C8BA;
  padding: 20px 0;
  vertical-align: middle;
}

.table-style02 th {
  border-bottom: 1px solid var(--color_primary);
  text-align: left;
}

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

@media (max-width: 800px) {

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

  .table-style01 .sp-sticky {
    position: sticky;
    left: 0;
    top: 0;
  }

  .table-style02 th,
  .table-style02 td {
    padding: 15px 0;
  }

  .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 {
    width: 150%;
  }
}

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

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

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

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

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

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

.under-slider01 .splide__slide img {
  border-radius: 10px;
  width: 100%;
}

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

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

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

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

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

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

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

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

.l-imgR .l-img img,
.l-imgL .l-img img {
  border-radius: 5px;
}

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

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

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

/*------------
Add
--------------*/
.box-style01 {
  background-color: var(--color_bg01);
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  padding: 50px 50px 40px;
}

.box-style01 .box-ttl {
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

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

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

.box-style01 .list-check.col2 {
  gap: 10px 20px;
}

.box-style01 .list-check li {
  border-bottom: 1px dashed var(--color_black);
}

.box-style02 {
  background-color: var(--color_bg02);
  border: 1px solid var(--color_tertiary);
  border-radius: 10px;
  padding: 30px;
}

.box-style02 .box-ttl {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.box-style02 .box-ttl img {
  margin: 2px 0 0 0;
  width: 26px;
}

.box-style02 .list-disc li::marker {
  color: var(--color_tertiary);
}

.box-style03 {
  padding-top: 17px;
  position: relative;
}

.box-style03 .num {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 3.125rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  text-box: trim-both cap alphabetic;
  position: absolute;
  top: 0;
  left: 32px;
}

.box-style03 .box-inner {
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  padding: 50px;
}

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

.box-style03 .l-imgL,
.box-style03 .l-imgR {
  gap: 13%;
}

.box-style03 .l-imgL .l-img,
.box-style03 .l-imgR .l-img {
  width: 33.7%;
}

.box-style04 {
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  padding: 30px 50px 40px;
  position: relative;
}

.box-style04 .label {
  background-color: var(--color_secondary);
  border-radius: 10px 0 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  text-box: trim-both cap alphabetic;
  width: 140px;
  height: 140px;
  position: absolute;
  top: 0;
  left: 0;
}

.box-style04 .label span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  left: 11px;
  bottom: 80px;
  rotate: -45deg;
}

.box-style04 .box-ttl {
  background-color: var(--color_bg01);
  font-size: 1.25rem;
  font-weight: bold;
  padding: 7px 10px;
  margin-bottom: 25px;
  text-align: center;
}

.box-style05 {
  background-color: #eee;
  border-radius: 10px;
  padding: 20px;
}

.box-style05 .list-check {
  font-weight: 500;
  gap: 10px;
}

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

  .box-style01 .box-ttl {
    font-size: 1.375rem;
  }

  .box-style02 {
    padding: 20px 5%;
  }

  .box-style02 .box-ttl {
    font-size: 1.125rem;
  }

  .box-style03 {
    padding-top: 13px;
  }

  .box-style03 .num {
    font-size: 2.5rem;
    left: 20px;
  }

  .box-style03 .box-inner {
    padding: 30px 5%;
  }

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

  .box-style03 .l-imgL,
  .box-style03 .l-imgR {
    gap: 20px;
  }

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

  .box-style04 {
    padding: 60px 5% 30px;
  }

  .box-style04 .label {
    border-radius: 10px 10px 0 0;
    -webkit-clip-path: none;
    clip-path: none;
    width: 100%;
    height: 40px;
    padding: 14px;
  }

  .box-style04 .label span {
    position: static;
    rotate: none;
    margin-inline: auto;
  }

  .box-style04 .box-ttl {
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: left;
  }
}

.list-price {
  display: grid;
  gap: 30px;
}

.list-price .list-intro {
  border-bottom: 1px dashed #aaa;
  font-size: 1.125rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  padding-bottom: 2px;
  margin-bottom: 10px;
}

.list-price .list-desc {
  color: #aaa;
  font-size: 0.8125rem;
}

@media (max-width: 800px) {
  .list-price .list-intro {
    font-size: 1rem;
    flex-wrap: wrap;
  }

  .list-price .price {
    margin-left: auto;
  }
}

.list-card01>li {
  border: 1px solid var(--color_black);
  border-radius: 10px;
  padding: 30px 20px;
}

.list-card01 .list-img {
  margin-bottom: 20px;
}

.list-card01 .list-img img {
  border-radius: 5px;
}

.list-card01 .list-ttl {
  color: var(--color_primary);
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.list-card02>li {
  border-top: 2px solid var(--color_primary);
  border-radius: 0 0 10px 10px;
  padding: 35px;
  background: #f7f7f7;
  text-align: justify;
}

.list-card02 .list-ttl {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .list-card01>li {
    padding: 30px 5%;
  }

  .list-card02>li {
    padding: 30px 5%;
  }
}

.list-anchor-link {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}

.list-anchor-link a {
  padding-right: 32px;
  position: relative;
  transition: color 0.3s;
}

.list-anchor-link a::before {
  content: "";
  background-color: var(--color_tertiary);
  border-radius: 50%;
  width: 21px;
  height: 21px;
  position: absolute;
  top: 0.125rem;
  right: 0;
  transition: background-color 0.3s;
}

.list-anchor-link a::after {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_arrow_anchor.svg) no-repeat center/contain;
  mask: url(../images/share/icon_arrow_anchor.svg) no-repeat center/contain;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 3px;
  top: 0.3125rem;
}

@media (any-hover: hover) {
  .list-anchor-link a:hover {
    color: var(--color_primary);
  }

  .list-anchor-link a:hover::before {
    background-color: var(--color_primary);
  }
}

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

.list-anchor-link02 a {
  display: block;
  background-color: #eee;
  border-radius: 10px;
  font-weight: bold;
  padding: 20px;
  position: relative;
  transition: background-color 0.3s;
}

.list-anchor-link02 a::before {
  content: "";
  border-left: 1px dashed var(--color_black);
  width: 2px;
  height: calc(100% - 40px);
  position: absolute;
  right: 60px;
  top: auto;
  bottom: auto;
}

.list-anchor-link02 a::after {
  content: "";
  background-color: var(--color_black);
  -webkit-mask: url(../images/share/icon_arrow_anchor.svg) no-repeat center/contain;
  mask: url(../images/share/icon_arrow_anchor.svg) no-repeat center/contain;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .list-anchor-link02 a:hover {
    background-color: oklch(from var(--color_white) calc(l - 0.2) c h);
  }
}

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

  .list-anchor-link02 a {
    border-radius: 5px;
    font-size: 0.8125rem;
    padding: 10px 20px;
  }

  .list-anchor-link02 a::before {
    height: calc(100% - 20px);
    right: 45px;
  }

  .list-anchor-link02 a::after {
    right: 15px;
  }
}

.l-style01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-bottom: 90px;
  position: relative;
}

.l-style01::before {
  content: "";
  background-color: var(--color_bg02);
  border-radius: 10px;
  position: absolute;
  inset: 75px -100% 0 15%;
  z-index: -1;
}

.l-style01 .l-img img {
  border-radius: 10px;
}

.l-style01 .l-desc {
  margin: 25% auto 0 0;
  max-width: 490px;
}

.l-style01 .l-ttl {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-bottom: 15px;
  position: relative;
}

.l-style01 .l-ttl::after {
  content: "";
  display: block;
  background-color: var(--color_primary);
  width: 40px;
  height: 2px;
  position: absolute;
  bottom: 0px;
  left: 0;
}

.l-style02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "l-img l-desc";
  align-items: center;
}

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

.l-style02 .l-img img {
  border-radius: 10px;
}

.l-style02 .l-desc {
  grid-area: l-desc;
  padding: 0 0 0 50px;
}

.l-style02 .num {
  display: block;
  background-color: var(--color_primary);
  border-radius: 30px;
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 8px 14px;
  margin-bottom: 10px;
  text-box: trim-both cap alphabetic;
  width: -moz-fit-content;
  width: fit-content;
}

.l-style02 .l-ttl {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.l-style02.reverse {
  grid-template-areas: "l-desc l-img";
}

.l-style02.reverse .l-desc {
  padding: 0 50px 0 0;
}

@media (max-width: 800px) {
  .l-style01 {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 50px;
  }

  .l-style01::before {
    inset: 75px -5% 0;
  }

  .l-style01 .l-desc {
    margin: 0;
  }

  .l-style01 .l-ttl {
    font-size: 1.625rem;
    margin-bottom: 30px;
  }

  .l-style02 {
    grid-template-columns: 1fr;
    grid-template-areas: "l-img""l-desc";
  }

  .l-style02 .l-desc {
    padding: 20px 0 0;
  }

  .l-style02.reverse {
    grid-template-areas: "l-img""l-desc";
  }

  .l-style02.reverse .l-desc {
    padding: 30px 0 0;
  }
}

.flow-style {
  border-top: 1px dashed #ccc;
}

.flow-style>li {
  border-bottom: 1px dashed #ccc;
  display: grid;
  grid-template-columns: 15% 1fr;
  padding: 10px 0;
}

.flow-style .num {
  display: grid;
  place-content: center;
  background-color: var(--color_bg01);
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1;
  padding: 20px;
  text-box: trim-both cap alphabetic;
  text-align: center;
}

.flow-style .num span {
  font-size: 0.8125rem;
}

.flow-style .flow-ttl {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.flow-style .flow-desc {
  padding: 20px;
}

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

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

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

.flow-style02>li:last-child {
  padding-bottom: 0;
}

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

.flow-style02 .num {
  font-family: var(--font_en);
  color: #888;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 9px 0 0;
  position: relative;
}

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

.flow-style02 .list-ttl {
  background-color: var(--color_bg01);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 5px 10px;
}

@media (max-width: 800px) {
  .flow-style li {
    grid-template-columns: 60px 1fr;
  }

  .flow-style .num {
    font-size: 1.5rem;
    padding: 20px 10px;
  }

  .flow-style .num span {
    font-size: 0.625rem;
  }

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

  .flow-style02>li {
    grid-template-columns: 100px 1fr;
  }

  .flow-style02>li::before {
    left: 76px;
  }

  .flow-style02 .num {
    font-size: 0.875rem;
    padding: 11px 0 0;
    width: 100%;
  }

  .flow-style02 .num::after {
    top: 10px;
  }

  .flow-style02 .list-ttl {
    font-size: 1.125rem;
  }
}

.staff-layout {
  display: grid;
  grid-template-columns: 1fr 35%;
  grid-template-areas: "l-desc l-img";
  gap: 40px;
}

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

.staff-layout .l-img img {
  border-radius: 10px;
}

.staff-layout .l-desc {
  grid-area: l-desc;
  margin: 50px 0 0 0;
}

.staff-layout .l-message {
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.staff-layout .l-name {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}

.staff-layout .l-name .job {
  font-size: 0.875rem;
  line-height: 1.3;
}

.staff-layout .l-name .jp {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.staff-layout .l-name .en {
  color: #ECC708;
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

.staff-card .item {
  background-color: var(--color_white);
  border: 1px solid var(--color_black);
  border-radius: 10px;
  padding: 30px 30px 40px;
}

.staff-card .card-ttl {
  color: var(--color_primary);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.staff-career {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px 15px;
}

.staff-career dt {
  font-size: 0.875rem;
  font-weight: bold;
}

.staff-career dd {
  line-height: 1.5;
  margin: 2px 0 0;
}

@media (max-width: 800px) {
  .staff-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "l-img""l-desc";
    gap: 25px;
  }

  .staff-layout .l-img {
    margin: auto;
  }

  .staff-layout .l-img .img {
    margin-inline: auto;
    width: 80%;
  }

  .staff-layout .l-desc {
    margin: 0;
  }

  .staff-layout .l-message {
    font-size: 1.25rem;
  }

  .staff-layout .l-name {
    align-items: center;
  }

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

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

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

  .staff-card .item {
    padding: 20px 5%;
  }

  .staff-card .card-ttl {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}

.tel-layout01 {
  background-color: var(--color_bg01);
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.tel-layout01 .l-ttl {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1.25rem;
  font-weight: bold;
  padding: 10px 20px;
  text-align: center;
  border-radius: 10px 10px 0 0;
}

.tel-layout01 .wrapper {
  padding: 30px 20px;
}

.tel-layout01 .tel {
  font-size: 2.25rem;
  justify-content: center;
}

.tel-layout01 .l-time {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 8px 15px;
  margin: 20px auto;
  width: -moz-fit-content;
  width: fit-content;
}

.tel-layout01 .l-time dt,
.tel-layout01 .l-time dd {
  line-height: 1.5;
}

.tel-layout01 .l-time dt {
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  border-radius: 3px;
  color: var(--color_primary);
  font-size: 0.8125rem;
  font-weight: bold;
  padding: 2px 5px 1px;
  text-align: center;
}

.tel-layout01 .l-time dd {
  font-size: 0.9375rem;
}

@media (max-width: 800px) {
  .tel-layout01 .l-ttl {
    font-size: 1.125rem;
    text-align: left;
  }

  .tel-layout01 .wrapper {
    padding: 20px 5% 15px;
  }

  .tel-layout01 .tel {
    font-size: 1.5625rem;
  }

  .tel-layout01 .tel img {
    width: 15px;
  }

  .tel-layout01 .l-time {
    grid-template-columns: 70px 1fr;
    gap: 5px 10px;
    margin: 15px auto;
  }
}

.privacy-ttl {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

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

.dl-privacy dt {
  border-top: 1px solid var(--color_border);
  font-size: 1.0625rem;
  font-weight: bold;
  padding-top: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.dl-privacy dd {
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: justify;
}

/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.br-pc-only {
  display: block;
  height: 0;
  margin: 0;
  padding: 0;
}

.br-sp-only {
  display: none;
  height: 0;
  margin: 0;
  padding: 0;
}

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

.c-red {
  color: #ec3838;
}

.marker {
  background: linear-gradient(transparent 60%, rgba(251, 223, 84, 0.5) 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;
}

.col1 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

.col3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

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

@media (max-width: 800px) {

  .col1,
  .col2,
  .col3,
  .col4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px;
  }
}

.gap0 {
  grid-gap: 0;
}

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

  .br-pc-only {
    display: none;
  }

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

.tel {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.5625rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

.tel.center {
  justify-content: center;
}

/*------------
splide
-------------*/
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: flex;
  align-items: center;
  line-height: 1;
  list-style-type: none;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

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

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb>.splide__list {
  display: block;
}

.splide__arrow--prev,
.splide__arrow--next {
  display: block;
  width: 30px;
  height: 30px;
}

.splide__arrow--prev {
  background: url(../images/share/splide_prev.svg) no-repeat center/auto 15px;
}

.splide__arrow--next {
  background: url(../images/share/splide_next.svg) no-repeat center/auto 15px;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-top: 6rem;
}

@media (max-width: 800px) {
  .splide__controls {
    margin-top: 3rem;
  }
}

.splide__pagination {
  gap: 8px;
}

.splide__pagination__page {
  background: #fff;
  border-radius: 100px;
  display: inline-block;
  transition: transform 0.2s linear;
  height: 8px;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: var(--color_tertiary);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.splide__toggle {
  cursor: pointer;
  background: var(--color_white);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
  height: 20px;
  width: 20px;
}

.splide__toggle:hover {
  background: #D3D3D3;
}

.splide__toggle svg {
  fill: #fff;
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

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