@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #4A0202;
  --color_bg: #FFF9D8;
  --color_border: #e5e5e5;
  --color_primary: #08A269;
  --color_sub01: #43B1B2;
  --color_sub02: #29BE86;
  --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);
}

/* ====================================================
【サイト全体の設定】
==================================================== */
:root {
  --font_base: "FOT-筑紫A丸ゴシック Std R";
  --font_jp: "FOT-筑紫A丸ゴシック Std B";
  --font_en: "Quicksand", sans-serif;
  --font_weight: normal;
  --font_size: 0.9375rem;
  --line_height: 2;
  --letter_spacing: .05em;
}

@media (max-width: 800px) {
  :root {
    --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;
}

table th {
  text-align: left;
}

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

::selection {
  background: #d4dcd6;
}

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

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

body.is-hidden {
  display: flow-root;
  overflow: clip;
}

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

dt,
th {
  font-family: var(--font_jp);
  font-weight: var(--font_weight);
}

[lang=en],
.en {
  font-family: var(--font_en);
  line-height: 1;
}

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

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

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

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

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

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

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

.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: 1px solid #eee;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

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

.time-table th:last-child {
  width: 13%;
}

.time-table tr {
  border-bottom: 1px solid #eee;
}

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

.time-table thead th {
  padding: 13px 0;
  background-color: var(--color_primary);
  color: var(--color_white);
}

.time-table tbody tr th:first-child {
  background-color: var(--color_sub02);
  color: var(--color_white);
}

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

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

  .time-table th,
  .time-table td {
    padding: 10px 0;
    font-size: 0.875rem;
  }
}

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

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

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

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

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

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

.business-calendar-box-wrap .business-calendar-past a::before,
.business-calendar-box-wrap .business-calendar-future a::before {
  display: inline-block;
  content: "";
  border-style: solid;
  border-width: 7px 6px 7px 0;
  border-color: transparent #333 transparent transparent;
  position: absolute;
  top: 10px;
  left: 10px;
}

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

.business-calendar-box-wrap .business-calendar th {
  background: #f1f3f4;
  border: 1px solid #dfdfdf;
  text-align: center;
  font-weight: bold;
  font-size: 0.9375rem;
  padding: 5px;
  width: 14%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .list-event {
    display: block;
  }

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

/*ボタン*/
.btn-more {
  background-color: var(--color_primary);
  border-radius: 100px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font_jp);
  line-height: 1.5;
  min-height: 50px;
  min-width: 240px;
  padding: 10px 20px;
  transition: background-color 0.3s;
  position: relative;
}

.btn-more::before {
  content: "";
  -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;
  background-color: var(--color_white);
  width: 5px;
  height: 9px;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

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

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

.btn-style01 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background-color: var(--color_primary);
  border-radius: 100px;
  color: #fff;
  font-family: var(--font_jp);
  font-size: 0.875rem;
  line-height: 1.5;
  min-width: 210px;
  min-height: 50px;
  padding: 10px 20px;
  transition: background-color 0.3s;
}

.btn-style01.yoyaku::before {
  content: "";
  display: block;
  -webkit-mask: url(../images/share/icon_calendar.svg) no-repeat center/contain;
  mask: url(../images/share/icon_calendar.svg) no-repeat center/contain;
  background-color: var(--color_white);
  width: 18px;
  height: 18px;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .btn-style01:hover {
    background-color: var(--color_sub02);
  }
}

.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-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

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

@media (max-width: 800px) {

  .btn-more,
  .btn-style01 {
    width: 100%;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*カテゴリーリスト*/
.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: 8px;
  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;
  padding-bottom: 2px;
}

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

/*セレクト式カテゴリー*/
.select-area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 50px;
}

.select-area .select-item {
  display: flex;
  align-items: center;
  gap: 0 15px;
  margin: 0 30px 0 0;
}

.select-area .select-ttl {
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1rem;
}

.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-overflow: "";
  background: #fff url(../images/share/select_arrow.svg) no-repeat right 10px center/20px auto;
  background-size: 20px;
  background-position: right center;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--color_text);
  color: var(--color_text);
  font-size: 1rem;
  vertical-align: middle;
  height: 41px;
  min-width: 150px;
  padding: 5px 20px 5px 0;
  flex: 1;
}

.select-area .select-category::-ms-expand {
  display: none;
}

.select-area .select-category-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  display: inline-block;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color_primary);
  background: #fff;
  border-radius: 50px;
  color: var(--color_primary);
  padding: 8px 20px;
  font-family: var(--font_jp);
  font-size: 0.8125rem;
  line-height: 1;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  flex: 0 0 70px;
}

@media (hover: hover) {
  .select-area .select-category-button:is(:hover, :focus) {
    background: var(--color_primary);
    color: #fff;
  }
}

@media (max-width: 800px) {
  .select-area {
    display: block;
    margin: 0 0 30px;
  }

  .select-area .select-item {
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
  }

  .select-area .select-item+.select-item {
    margin-top: 40px;
  }

  .select-area .select-ttl {
    font-size: 0.9375rem;
    width: 100%;
  }
}

/*ブログ*/
.post-under-blog article+article {
  margin-top: 50px;
}

.post-under-blog .inner {
  display: flex;
  gap: 30px;
  margin-bottom: 15px;
}

.post-under-blog .list-img {
  width: 40%;
  max-width: 250px;
  height: 100%;
  flex-shrink: 0;
  border: 1px solid var(--color_border);
  border-radius: 10px;
  overflow: hidden;
}

.post-under-blog .list-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 241/164;
  border-radius: 10px;
  transition: scale 0.3s;
}

.post-under-blog .list-desc {
  width: 100%;
}

.post-under-blog .list-ttl {
  border-bottom: 1px dashed var(--color_border);
  font-size: 1.25rem;
  margin: 0 0 20px;
}

.post-under-blog .list-ttl a {
  display: block;
  padding-bottom: 10px;
  transition: color 0.3s;
}

.post-under-blog .list-ttl span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

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

.post-under-blog time {
  display: block;
  font-family: var(--font_en);
  font-size: 0.9375rem;
  line-height: 1;
  margin-right: 15px;
}

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

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

.post-under-blog .list-txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.9375rem;
}

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

@media (any-hover: hover) {
  .post-under-blog .list-ttl a:hover {
    color: var(--color_primary);
  }
}

@media screen and (max-width: 800px) {
  .post-under-blog article+article {
    margin-top: 30px;
  }

  .post-under-blog .inner {
    gap: 15px;
  }

  .post-under-blog time {
    width: 100%;
    margin-right: 0;
    font-size: 0.875rem;
  }

  .post-under-blog .list-ttl {
    font-size: 1.125rem;
  }

  .post-under-blog .list-txt {
    font-size: 0.875rem;
  }

  .post-under-blog .btn-more {
    min-height: 40px;
  }
}

/*お知らせ*/
.post-under-news {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--color_border);
}

.post-under-news a {
  border-bottom: 1px solid var(--color_border);
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 40px 20px 10px;
  position: relative;
  transition: background-color 0.3s;
}

.post-under-news:has(.no-post) {
  border-top: none;
}

@media (any-hover: hover) {
  .post-under-news a:hover {
    background-color: rgba(255, 249, 216, 0.6);
  }
}

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

.post-under-news time {
  display: block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 0.9375rem;
  flex-shrink: 0;
}

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

@media (max-width: 800px) {
  .post-under-news a {
    gap: 15px;
    padding: 15px 25px 15px 0;
  }
}

/*詳細ページ*/
.layout-single-post {
  padding-bottom: 50px;
  border-bottom: 1px solid var(--color_border);
}

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

.layout-single-post time {
  flex-shrink: 0;
  display: inline-block;
  font-family: var(--font_en);
  font-size: 0.9375rem;
  line-height: 1;
}

.layout-single-post .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

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

.layout-single-post .l-ttl {
  border-bottom: 2px solid var(--color_border);
  font-size: 1.5625rem;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.postdata {
  /*WP必須クラス*/
  overflow-wrap: break-word;
}

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

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

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

.postdata {
  /*スタイルの調整が必要*/
}

.postdata p,
.postdata ul,
.postdata ol {
  margin-bottom: 15px;
}

.postdata a {
  text-decoration: underline;
}

.postdata a:hover {
  text-decoration: none;
}

.postdata strong {
  font-family: var(--font_jp);
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  position: relative;
  padding-left: 15px;
}

.postdata ul li::before {
  content: "";
  background: var(--color_primary);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
}

.postdata ul li>ul {
  margin: 0 0 0 15px;
}

.postdata ol {
  counter-reset: number;
}

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

.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: 5px;
  left: 0;
  display: grid;
  place-items: center;
  line-height: 1;
  text-align: center;
  padding: 0 0 1px 1px;
  width: 20px;
  height: 20px;
}

.postdata ol li>ol {
  margin: 0 0 0 15px;
}

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

.postdata .wp-block-button__link {
  display: inline-block;
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 2px;
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  padding: 5px 35px;
  min-width: 200px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.postdata .wp-block-button__link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  transition: border-color 0.3s;
}

.postdata pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

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

  .postdata .wp-block-button__link:hover {
    opacity: 1;
    background-color: #fff;
    color: var(--color_primary);
  }
}

@media (max-width: 800px) {
  .layout-single-post .post-data {
    margin-bottom: 15px;
  }

  .layout-single-post .l-ttl {
    font-size: 1.25rem;
  }

  .postdata ul li::before {
    top: 12px;
  }

  .postdata ol li::before {
    top: 4px;
  }
}

/*ページャー*/
.post-number {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.post-number span,
.post-number a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 4px;
  font-family: var(--font_en);
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
  width: 30px;
  height: 30px;
  transition: 0.3s;
}

.post-number>*+* {
  margin-left: 10px;
}

.post-number a:hover {
  background: var(--color_primary);
  color: #fff;
}

.post-number .current {
  background: var(--color_primary);
  color: #fff;
}

.post-number-single {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 50px;
}

.post-number-single a {
  display: inline-block;
  border-radius: 4px;
  transition: 0.3s;
}

.post-number-single .all {
  display: grid;
  place-items: center;
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  font-family: var(--font_en);
  font-size: 0.875rem;
  line-height: 1;
  text-transform: uppercase;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
}

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

.post-number .prev,
.post-number .next,
.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_primary);
  width: 30px;
  height: 30px;
  position: relative;
}

.post-number .prev::before,
.post-number .next::before,
.post-number-single .prev::before,
.post-number-single .next::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: 1px solid var(--color_primary);
  margin: 0 auto;
  top: 12px;
  transition: 0.3s;
}

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

.post-number .prev:hover::before,
.post-number .next:hover::before,
.post-number-single .prev:hover::before,
.post-number-single .next:hover::before {
  border-color: #fff;
}

.post-number .prev::before,
.post-number-single .prev::before {
  transform: rotate(-135deg);
  left: 10px;
  border-left: 1px solid var(--color_primary);
}

.post-number .next::before,
.post-number-single .next::before {
  transform: rotate(135deg);
  right: 10px;
  border-right: 1px solid var(--color_primary);
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  background-color: #BAEBF2;
  padding-top: 36px;
  position: relative;
}

.header::before {
  content: "";
  background: url(../images/share/h_deco.svg) repeat-x top center;
  background-size: auto 36px;
  width: 100%;
  height: 36px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.header-inner {
  width: 100%;
  position: fixed;
  top: 37px;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 15px 30px 10px;
  transition: background-color 0.3s, top 0.3s, filter 0.3s;
}

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

.h-logo {
  margin-bottom: 25px;
  transition: margin 0.3s;
}

.header-inner.transform {
  background-color: var(--color_white);
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.16));
  top: 0;
}

.header-inner.transform .h-logo {
  margin-bottom: 0;
}

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

  .header::before {
    content: none;
  }

  .header-inner {
    padding: 0 10px;
    position: absolute;
    top: 10px;
  }

  .header-inner.transform {
    background-color: transparent;
    filter: none;
    top: 10px;
  }

  .h-logo {
    max-width: 120px;
    margin-bottom: 0;
  }

  .h-utility {
    display: none;
  }
}

/*------------
Gnavi
--------------*/
.gnavi-links {
  display: flex;
  justify-content: flex-end;
  gap: clamp(10px, 1.388vw, 25px);
}

.gnavi-links>li>a,
.gnavi-links>li>div {
  display: grid;
  justify-items: center;
  transition: color 0.3s;
}

.gnavi-links .txt {
  font-family: var(--font_jp);
}

@media (any-hover: hover) {
  .gnavi-links>li>a:hover {
    color: var(--color_primary);
  }
}

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

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

.dropdown .sub-menu {
  display: grid;
  gap: 15px 50px;
  pointer-events: none;
  background-color: var(--color_bg);
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 45px 50px;
  position: absolute;
  top: 148px;
  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: -25px;
  left: 0;
  width: 100%;
  height: 25px;
}

.dropdown .sub-menu::after {
  content: "";
  background: url(../images/share/icon_arrow_gnavi.svg) no-repeat top center/contain;
  width: 29px;
  height: 25px;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown .sub-menu.col2 {
  grid-template-rows: repeat(6, 1fr);
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
}

.dropdown .sub-menu>li {
  line-height: 1.5;
  padding-left: 15px;
  position: relative;
}

.dropdown .sub-menu>li::before {
  content: "";
  background-color: var(--color_primary);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 9px;
  left: 0;
}

.dropdown .sub-menu>li>a {
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .dropdown .sub-menu>li>a:hover {
    color: var(--color_primary);
  }
}

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

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  padding-top: 114px;
  position: relative;
}

.footer::before {
  content: "";
  background: url(../images/share/f_wave.svg) no-repeat top center/cover;
  width: 100%;
  height: 114px;
  position: absolute;
  top: 0;
  left: 0;
}

.f-inner {
  background-color: #BAEBF2;
  padding: 130px 0 310px;
  position: relative;
}

.f-inner::before {
  content: "";
  background: url(../images/share/f_deco01.png) no-repeat bottom center/cover;
  width: 100%;
  aspect-ratio: 1800/231;
  position: absolute;
  bottom: 0;
  left: 0;
}

.f-inner::after {
  content: "";
  background: url(../images/share/f_deco02.png) no-repeat bottom right/contain;
  width: 32.555vw;
  max-width: 586px;
  aspect-ratio: 586/248;
  position: absolute;
  bottom: 255px;
  right: 5.888vw;
}

.f-inner .time-table {
  max-width: 490px;
}

.time-table-txt {
  line-height: 1.8;
}

.f-contents {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0 6.888vw;
  margin-inline: auto;
  width: min(90%, 1200px);
  position: relative;
  z-index: 1;
}

.f-contents .col:last-child {
  grid-area: 2/1/3/3;
  border-top: 1px solid #ccc;
  padding-top: 35px;
  margin-top: 35px;
}

.f-contents .dl-style02 .f-bnr-wrap {
  margin-top: 8px;
}

.f-logo {
  max-width: 250px;
  margin-bottom: 30px;
}

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

.f-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.f-bnr-wrap {
  display: flex;
  gap: 16px;
}

.site-map {
  display: flex;
  gap: 3.888vw;
}

.site-map .ttl {
  margin-bottom: 5px;
}

.f-links {
  display: grid;
  gap: 15px;
  line-height: 1.5;
  font-size: 0.9375rem;
}

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

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

.f-links>li>a {
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .f-links>li>a:hover {
    color: var(--color_primary);
  }
}

.f-links.col2 {
  grid-template-rows: repeat(6, 1fr);
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
  gap: 15px 2.777vw;
}

.f-cloud .cloud01 {
  position: absolute;
  top: 144px;
  left: 0;
}

.f-cloud .cloud02 {
  position: absolute;
  top: 50%;
  left: -45px;
}

.f-cloud .cloud03 {
  position: absolute;
  top: 346px;
  right: 10px;
}

.f-bottom {
  background-color: #007C4E;
  color: var(--color_white);
  width: 100%;
}

.f-bottom-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1024px;
  width: 90%;
  margin-inline: auto;
  padding: 2px 0;
}

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

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

.f-bottom-links a {
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .f-bottom-links a:hover {
    opacity: 0.7;
  }
}

.copyright small {
  font-size: 0.75rem;
}

.pagetop {
  position: fixed;
  bottom: 40px;
  right: 80px;
  z-index: 10;
  transition: transform 0.4s;
}

@media (any-hover: hover) {
  .pagetop:hover {
    transform: translateY(-10px);
  }
}

@media (max-height: 650px) {
  .pagetop {
    bottom: 15px;
  }
}

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

  .footer::before {
    height: 26px;
  }

  .f-inner {
    padding: 50px 0 100px;
  }

  .f-inner::after {
    width: 200px;
    bottom: 80px;
  }

  .f-inner .time-table {
    max-width: 100%;
  }

  .f-contents {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .f-contents .col:last-child {
    grid-area: auto;
    margin-top: 0;
    padding-top: 30px;
  }

  .f-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .f-bnr-wrap {
    flex-direction: column;
    gap: 15px;
  }

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

  .f-links.col2 {
    gap: 15px 10px;
  }

  .f-cloud .cloud01 {
    width: 120px;
    top: 30%;
  }

  .f-cloud .cloud02 {
    width: 160px;
    top: 65%;
    left: auto;
    right: -30px;
  }

  .f-cloud .cloud03 {
    width: 200px;
    top: 125px;
    right: -50px;
  }

  .f-bottom-inner {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 15px 0 10px;
  }

  .pagetop {
    bottom: 65px;
    right: 15px;
    width: 40px;
  }
}

.fixed-wrapper {
  display: grid;
  gap: 10px;
  justify-items: end;
  position: fixed;
  bottom: 40px;
  right: 0;
  z-index: 10;
  pointer-events: none;
}

.fixed-menu {
  border-radius: 4px 0 0 4px;
  background: var(--color_bg);
  display: flex;
  transition: transform 0.5s;
  transform: translateX(438px);
  pointer-events: auto;
}

.fixed-menu:hover {
  transform: translateX(0);
}

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

.fixed-menu .wrapper {
  display: grid;
  justify-items: start;
}

.fixed-menu .inner {
  display: grid;
  place-items: center;
  padding: clamp(15px, 3.5vh, 35px) 15px clamp(15px, 3.5vh, 35px) 0;
  width: 438px;
}

.fixed-btn a {
  width: 60px;
  background-color: #8FCC52;
  border-radius: 4px 0 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font_jp);
  font-size: 1rem;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: clamp(10px, 4.3vh, 43px) 0;
  pointer-events: auto;
}

.is-tablet.is-portrait .fixed-wrapper {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

@media (max-height: 650px) {
  .fixed-wrapper {
    bottom: 15px;
  }
}

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

.sp-navi {
  display: none;
}

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

  :root {
    --navi-background: var(--color_primary);
    --navi-border-color: var(--color_white);
    --navi-text-color: var(--color_white);
    --svg-stroke: var(--color_white);
    --menu-btn: var(--color_white);
    --navi-font: var(--font_jp);
  }

  /* ボタン類 */
  .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: 50px;
    z-index: 10000;
  }

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

  .sp-navi-btns .item {
    border-right: 1px solid var(--navi-border-color);
    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 5px;
  }

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

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

  .sp-navi-btns .item .img img {
    -o-object-fit: contain;
    object-fit: contain;
    height: 20px;
    margin-bottom: 6px;
    filter: brightness(0) invert(1);
  }

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

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

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

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

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

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

  .sp-menu-btn[aria-expanded=true] span:nth-of-type(1) {
    transform: translate(-50%, 6px) rotate(-45deg);
  }

  .sp-menu-btn[aria-expanded=true] span:nth-of-type(2) {
    opacity: 0;
  }

  .sp-menu-btn[aria-expanded=true] span:nth-of-type(3) {
    transform: translate(-50%, -5px) rotate(45deg);
  }

  /* コンテンツ */
  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    font-family: var(--navi-font);
    padding: 50px 10% 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    opacity: 0;
    z-index: 9999;
  }

  .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
  }

  .sp-navi-list {
    border-top: 1px dashed var(--color_border);
    margin: 0 0 30px;
  }

  .sp-navi-list>li {
    border-bottom: 1px dashed var(--color_border);
  }

  .sp-navi-list>li>a {
    display: block;
    font-family: var(--font_jp);
    font-size: 0.9375rem;
    line-height: 1;
    text-decoration: none;
    padding: 15px 0;
  }

  .sp-navi-list>li.sp-dropdown {
    position: relative;
  }

  .sp-navi-list>li.sp-dropdown>a {
    padding: 15px 0;
    width: 85%;
  }

  .sp-navi-list .child {
    padding: 0 0 15px;
  }

  .sp-navi-list .child>ul>li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
  }

  .sp-navi-list .child>ul>li::before {
    content: "";
    background-color: var(--color_primary);
    width: 6px;
    height: 1px;
    position: absolute;
    left: 0;
    top: 14px;
  }

  .sp-navi-list .child>ul>li>a {
    display: inline-block;
    font-size: 0.875rem;
    text-decoration: none;
  }
}

.sidebar-layout {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
}

.main-contents {
  padding: 0 70px;
  width: calc(100% - 300px);
  max-width: 1200px;
  margin: 0 auto;
}

.side-contents {
  padding: 0 40px;
  width: 300px;
}

.side-contents-wrapper {
  position: sticky;
  top: 110px;
}

.side-contents-ttl {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.side-area-item+.side-area-item {
  margin-top: 30px;
}

.side-area-links {
  display: grid;
  gap: 5px;
}

.side-area-links li {
  font-size: 0.9375rem;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.side-area-links li::before {
  content: "";
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 6px;
  left: 0;
}

.side-area-links a {
  display: inline-block;
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  padding-bottom: 2px;
}

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

@media (max-width: 800px) {
  .sidebar-layout {
    flex-direction: column-reverse;
    padding: 0 5vw;
    width: 100%;
  }

  .sidebar-layout.sp-reverse {
    flex-direction: column;
  }

  .sidebar-layout.sp-reverse .side-contents {
    margin: 0 0 50px;
  }

  .main-contents {
    width: 100%;
    padding: 0;
  }

  .side-contents {
    width: 100%;
    padding: 0;
    margin-top: 50px;
  }

  .side-contents-wrapper {
    position: sticky;
    top: 20px;
  }

  .side-area-item+.side-area-item {
    margin-top: 30px;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  background-color: #BAEBF2;
  padding: clamp(150px, 12.777vw, 230px) 0 12.777vw;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  background: url(../images/hero_deco_pc.png) no-repeat bottom left/contain;
  width: 100%;
  aspect-ratio: 1800/258;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.hero::after {
  content: "";
  background: url(../images/hero_bg_pc.png) no-repeat top center/contain;
  width: 100%;
  aspect-ratio: 1800/501;
  position: absolute;
  top: 150px;
  left: 0;
  z-index: 0;
}

.hero .hero-video-wrap {
  max-width: 1371px;
  width: 85%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero .hero-clip-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

.hero #hero-video {
  width: 100%;
  aspect-ratio: 1371/841;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-clip-path: url(#hero_mask);
  clip-path: url(#hero_mask);
}

.hero .video-control-btn {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 15;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero .video-control-btn:hover {
  background: rgb(255, 255, 255);
  transform: scale(1.1);
}

.hero .video-control-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--color_primary);
}

.hero .video-control-btn .play-icon {
  display: none;
}

.hero .video-control-btn.is-paused .pause-icon {
  display: none;
}

.hero .video-control-btn.is-paused .play-icon {
  display: block;
  margin-left: 3px;
}

.hero-catch {
  display: inline-block;
  background-color: var(--color_bg);
  border-radius: 20px;
  font-family: var(--font_jp);
  font-size: clamp(1.25rem, 2.777vw, 3.125rem);
  line-height: 1.3;
  letter-spacing: 0.08em;
  padding: 28px 40px;
  position: absolute;
  bottom: 15.833vw;
  left: 4.277vw;
  z-index: 3;
}

.hero-catch::before {
  content: "";
  background: url(../images/hero_ttl_deco01.png) no-repeat top left/contain;
  width: 71px;
  aspect-ratio: 71/131;
  position: absolute;
  top: -114px;
  left: -28px;
  z-index: 1;
}

.hero-catch::after {
  content: "";
  background: url(../images/hero_ttl_deco02.png) no-repeat top left/contain;
  width: 71px;
  aspect-ratio: 71/84;
  position: absolute;
  top: -203px;
  left: 14px;
  z-index: 1;
}

@media (max-width: 1400px) {
  .hero::after {
    width: 105%;
  }
}

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

  .hero::before {
    .sec05-wrapper: :after content: "";
    background: url(../images/hero_deco_sp.png) no-repeat bottom left/contain;
    width: 100%;
    aspect-ratio: 400/79;
  }

  .hero::after {
    background: url(../images/hero_bg_sp.png) no-repeat top center/contain;
    aspect-ratio: 400/372;
    top: 70px;
  }

  .hero .hero-video-wrap {
    width: calc(100% - 32px);
  }

  .hero .video-control-btn {
    width: 35px;
    height: 35px;
    bottom: 5px;
    left: 10px;
  }

  .hero-catch {
    font-size: clamp(1.125rem, 6.024vw, 1.5625rem);
    padding: 20px 18px;
    bottom: 78px;
    left: 13px;
  }

  .hero-catch::before {
    width: 23px;
    top: -26px;
    left: -5px;
  }

  .hero-catch::after {
    width: 28px;
    top: -37px;
    left: auto;
    right: -9px;
    transform: scale(-1, 1);
  }
}

/*------------
Components
--------------*/
.t-ttl01 {
  background: url(../images/t-ttl_deco.svg) no-repeat bottom center/74px auto;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 60px;
}

.t-ttl01 [lang=en] {
  color: var(--color_sub01);
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.t-ttl01 .jp {
  font-size: 2.8125rem;
}

.t-ttl01.left {
  text-align: left;
  background: url(../images/t-ttl_deco_small_white.svg) no-repeat bottom left/74px auto;
}

.t-ttl01.white [lang=en],
.t-ttl01.white .jp {
  color: var(--color_white);
}

.t-ttl02 {
  background: url(../images/t-ttl_deco_small.svg) no-repeat bottom left/43px 7px;
  padding-bottom: 17px;
  margin-bottom: 20px;
}

.t-ttl02 [lang=en] {
  color: var(--color_sub01);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 5px;
}

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

.t-ttl03 {
  font-size: 2.1875rem;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 8px;
  margin-bottom: 6px;
}

@media (max-width: 800px) {
  .t-ttl01 {
    background-size: 50px;
    margin-bottom: 30px;
  }

  .t-ttl01 [lang=en] {
    font-size: 1.25rem;
  }

  .t-ttl01 .jp {
    font-size: 1.75rem;
  }

  .t-ttl02 [lang=en] {
    font-size: 1.125rem;
  }

  .t-ttl02 .jp {
    font-size: 1.375rem;
  }

  .t-ttl03 {
    font-size: 1.5rem;
  }
}

/*------------
Animation
--------------*/
.fuwafuwa {
  animation: fuwafuwa 2s ease-in-out infinite alternate;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(20px);
  }
}

/*------------
sec01
--------------*/
.sec01 {
  display: flex;
  flex-direction: column;
  position: relative;
}

.sec01::before {
  content: "";
  background: url(../images/sec01_bg.png) no-repeat center/cover;
  width: 100%;
  height: calc(100% - 114px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.sec01::after {
  content: "";
  display: block;
  background: url(../images/sec01_wave.png) no-repeat bottom center/cover;
  width: 100%;
  height: 114px;
}

.sec01 .col2 {
  gap: 2.5vw;
  margin-bottom: 40px;
}

.sec01-wrapper {
  background-color: var(--color_white);
  border-radius: 20px;
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
  padding: 70px 0;
  margin: 90px auto 30px;
}

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

  .sec01::before {
    height: calc(100% - 30px);
  }

  .sec01::after {
    height: 30px;
  }

  .sec01 .col2 {
    gap: 30px;
  }

  .sec01-wrapper {
    padding: 30px 0;
    margin: 0 auto 40px;
  }
}

/*------------
sec02
--------------*/
.sec02 {
  padding: 170px 0 140px;
  position: relative;
}

.sec02::before {
  content: "";
  background: url(../images/sec02_deco01.png) no-repeat bottom left/contain;
  max-width: 574px;
  width: 31.888vw;
  aspect-ratio: 574/682;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.sec02::after {
  content: "";
  background: url(../images/sec02_deco02.png) no-repeat top right/contain;
  max-width: 602px;
  width: 33.444vw;
  aspect-ratio: 602/449;
  position: absolute;
  top: 60px;
  right: 0;
  z-index: -1;
}

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

  .sec02::before {
    width: 300px;
  }

  .sec02::after {
    width: 300px;
    top: 15px;
  }
}

/*------------
sec03
--------------*/
.sec03 {
  display: flex;
  flex-direction: column;
  position: relative;
}

.sec03::before {
  content: "";
  display: block;
  background: url(../images/sec03_wave01.png) no-repeat top center/cover;
  width: 100%;
  height: 90px;
  position: relative;
  z-index: -2;
}

.sec03::after {
  content: "";
  display: block;
  background: url(../images/sec03_wave02.png) no-repeat top center/cover;
  width: 100%;
  height: 78px;
  position: relative;
  z-index: -2;
}

.sec03 .container {
  padding: 80px 0 130px;
  position: relative;
  z-index: 1;
}

.sec03-wrapper {
  background-color: var(--color_bg);
  position: relative;
}

.sec03-wrapper::before {
  content: "";
  background: url(../images/sec03_cloud.png) no-repeat bottom left/contain;
  max-width: 803px;
  width: 44.611vw;
  aspect-ratio: 803/729;
  position: absolute;
  bottom: 0;
  left: 0;
}

.sec03-wrapper::after {
  content: "";
  background: url(../images/sec03_deco.png) no-repeat bottom right/contain;
  max-width: 540px;
  width: 30vw;
  aspect-ratio: 540/1013;
  position: absolute;
  bottom: -54px;
  right: 0;
}

.sec03-owl {
  position: absolute;
  top: 165px;
  left: 7%;
  z-index: 1;
}

@media (max-width: 800px) {
  .sec03::before, .sec03::after {
    height: 30px;
  }

  .sec03 .container {
    padding: 40px 0;
  }

  .sec03-wrapper::before {
    width: 350px;
    top: 6%;
    bottom: auto;
  }

  .sec03-wrapper::after {
    width: 300px;
    bottom: -30px;
    right: -10%;
  }

  .sec03-owl {
    width: 100px;
    top: 70px;
    left: 2.5%;
  }
}

/*------------
sec04
--------------*/
.sec04 {
  padding: 95px 0 120px;
  position: relative;
}

.sec04::before {
  content: "";
  background: url(../images/sec04_deco01.png) no-repeat top left/contain;
  max-width: 184px;
  width: 10.222vw;
  aspect-ratio: 184/175;
  position: absolute;
  top: 95px;
  left: 4.888vw;
  z-index: -1;
}

.sec04::after {
  content: "";
  background: url(../images/sec04_deco02.png) no-repeat bottom right/contain;
  max-width: 240px;
  width: 13.333vw;
  aspect-ratio: 240/449;
  position: absolute;
  bottom: 43px;
  right: 0;
  z-index: -1;
}

@media (max-width: 1500px) {
  .sec04::after {
    width: 10vw;
  }
}

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

  .sec04::before {
    width: 100px;
    top: 30px;
    left: 2.5%;
  }

  .sec04::after {
    width: 100px;
    bottom: 0;
  }
}

/*------------
sec05
--------------*/
.sec05 {
  display: flex;
  flex-direction: column;
  position: relative;
}

.sec05::before {
  content: "";
  display: block;
  background: url(../images/sec05_wave.png) no-repeat bottom center/cover;
  width: 100%;
  height: 113px;
}

.sec05::after {
  content: "";
  background: url(../images/sec05_deco01.png) no-repeat top center/cover;
  max-width: 183px;
  width: 10.166vw;
  aspect-ratio: 183/166;
  position: absolute;
  top: 112px;
  left: 117px;
  z-index: 1;
}

.sec05-wrapper {
  background-color: #BAEBF2;
  padding: 30px 0 150px;
  position: relative;
  z-index: 1;
}

.sec05-wrapper::before {
  content: "";
  background: url(../images/sec05_bg.png) no-repeat bottom center/cover;
  width: 100%;
  aspect-ratio: 1800/1566;
  position: absolute;
  top: 531px;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.sec05-wrapper::after {
  content: "";
  background: url(../images/sec05_deco02.png) no-repeat top center/cover;
  width: 23.333vw;
  max-width: 420px;
  aspect-ratio: 420/135;
  position: absolute;
  top: 24px;
  right: 105px;
  z-index: 1;
}

.sec05-roof {
  background-color: #B26C36;
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  height: 155px;
  position: relative;
}

.sec05-roof::before, .sec05-roof::after {
  content: "";
  background: url(../images/sec05_deco03.png) no-repeat top left/contain;
  height: 155px;
  aspect-ratio: 50/155;
  position: absolute;
  top: 0;
}

.sec05-roof::before {
  left: -50px;
}

.sec05-roof::after {
  right: -50px;
  transform: scale(-1, 1);
}

.sec05-house {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color_bg);
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}

.sec05-house .container {
  padding: 80px 0 86px;
  width: 95%;
}

@media (max-width: 800px) {
  .sec05::before {
    height: 30px;
  }

  .sec05::after {
    width: 80px;
    top: 50px;
    left: 2.5%;
  }

  .sec05-wrapper {
    padding: 40px 0 70px;
  }

  .sec05-wrapper::before {
    top: auto;
  }

  .sec05-wrapper::after {
    width: 100px;
    top: 90px;
    right: 2.5%;
  }

  .sec05-house .container {
    width: 90%;
    padding: 30px 0;
  }

  .sec05-roof {
    height: 70px;
  }

  .sec05-roof::before, .sec05-roof::after {
    height: 70px;
  }

  .sec05-roof::before {
    left: -20px;
  }

  .sec05-roof::after {
    right: -20px;
  }
}

/*------------
sec06
--------------*/
.sec06 {
  background-color: var(--color_bg);
  padding: 120px 0 140px;
  position: relative;
}

.sec06::before {
  content: "";
  background: url(../images/sec06_deco01.png) no-repeat top right/cover;
  max-width: 240px;
  width: 13.333vw;
  aspect-ratio: 240/449;
  position: absolute;
  top: 226px;
  right: 0;
}

.sec06::after {
  content: "";
  background: url(../images/sec06_deco02.png) no-repeat bottom left/cover;
  max-width: 240px;
  width: 13.333vw;
  aspect-ratio: 240/449;
  position: absolute;
  bottom: -40px;
  left: 0;
}

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

.sec06-map {
  margin-top: 120px;
}

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

.sec06-owl {
  position: absolute;
  top: 101px;
  left: 6%;
  z-index: 1;
}

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

  .sec06::before {
    width: 120px;
    top: 120px;
  }

  .sec06::after {
    width: 120px;
    bottom: -20px;
  }

  .sec06-map {
    margin-top: 60px;
  }

  .sec06-map iframe {
    height: 300px;
  }

  .sec06-owl {
    width: 100px;
    top: 70px;
    left: 2.5%;
  }
}

/*------------
sec07
--------------*/
.sec07 {
  padding: 170px 0;
  position: relative;
}

.sec07::before {
  content: "";
  background-color: var(--color_bg);
  width: 100%;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.sec07::after {
  content: "";
  background: url(../images/sec07_bg.png) no-repeat center/cover;
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

  .sec07::after {
    background: url(../images/sec07_bg.png) no-repeat center left -100px/cover;
  }
}

/*------------
sec08
--------------*/
.sec08 {
  padding: 120px 0 150px;
  position: relative;
}

.sec08::before {
  content: "";
  background: url(../images/sec08_deco01.png) no-repeat center left/contain;
  max-width: 622px;
  width: 34.555vw;
  aspect-ratio: 622/566;
  position: absolute;
  top: 40px;
  left: 15px;
  z-index: -1;
}

.sec08::after {
  content: "";
  background: url(../images/sec08_deco02.png) no-repeat center right/contain;
  width: 407px;
  aspect-ratio: 407/598;
  position: absolute;
  bottom: 0;
  right: 7.5%;
  z-index: -1;
}

.sec08 .t-ttl01 {
  margin-bottom: 25px;
}

.sec08-owl {
  position: absolute;
  right: 7%;
  bottom: 110px;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1600px) {
  .sec08::before {
    left: -8.75vw;
  }

  .sec08-owl {
    bottom: 30px;
    right: 5%;
  }
}

@media (max-width: 1200px) {
  .sec08::before {
    width: 31.666vw;
    left: -9.166vw;
  }
}

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

  .sec08::before {
    background: url(../images/sec08_deco01_sp.png) no-repeat top left/contain;
    width: 130px;
    top: 0;
    left: 10px;
  }

  .sec08::after {
    width: 270px;
    top: auto;
    bottom: 15px;
    right: -5%;
  }

  .sec08-owl {
    width: 100px;
    bottom: 30px;
    right: 5%;
  }

  .sec08-wrapper {
    position: relative;
  }

  .sec08-wrapper::before {
    content: "";
    background: url(../images/sec08_deco01_sp_cloud.png) no-repeat top right / contain;
    width: 120px;
    aspect-ratio: 303 / 155;
    position: absolute;
    top: -50px;
    right: -10px;
    z-index: -1;
  }
}

/*------------
sec09
--------------*/
.sec09 {
  display: flex;
  flex-direction: column;
  position: relative;
}

.sec09::before {
  content: "";
  display: block;
  background: url(../images/sec09_wave.png) no-repeat top center/cover;
  width: 100%;
  height: 156px;
}

.sec09::after {
  content: "";
  background-color: #A4D687;
  width: 100%;
  height: 500px;
  position: absolute;
  bottom: -250px;
  left: 0;
  z-index: -1;
}

.sec09-wrapper {
  background: url(../images/sec09_bg.jpg) no-repeat center/cover;
  padding: 60px 0 120px;
  position: relative;
}

.sec09-wrapper::before {
  content: "";
  display: block;
  background: url(../images/sec09_deco01.png) no-repeat top right/contain;
  max-width: 237px;
  width: 13.166vw;
  aspect-ratio: 237/224;
  position: absolute;
  top: 70px;
  right: 8.5%;
}

.sec09-wrapper::after {
  content: "";
  display: block;
  background: url(../images/sec09_deco02.png) no-repeat bottom right/contain;
  max-width: 163px;
  width: 9.055vw;
  aspect-ratio: 163/253;
  position: absolute;
  bottom: 50px;
  right: 2%;
}

@media (max-width: 800px) {
  .sec09::before {
    height: 30px;
  }

  .sec09-wrapper {
    padding: 40px 0 70px;
  }

  .sec09-wrapper::before {
    width: 100px;
    top: 30px;
    right: 0;
  }

  .sec09-wrapper::after {
    width: 100px;
    bottom: 0;
  }
}

/*------------
Box Style
--------------*/
.contact-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background-color: var(--color_bg);
  border-radius: 10px;
  padding: 30px 3.888vw;
}

.contact-box .box-desc {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.contact-box .t-ttl02 {
  flex-shrink: 0;
}

.contact-box .tel-style {
  flex-shrink: 0;
}

.top-box01 {
  background-color: #FFE34E;
  border-radius: 40px;
  padding: 65px 3.888vw;
}

.top-box01 .box-desc {
  font-size: 1rem;
}

.top-box01 .box-desc p+p {
  margin-top: 1.5em;
}

.t-box-ttl01 {
  font-size: 1.6875rem;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .contact-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 30px 20px;
  }

  .top-box01 {
    border-radius: 20px;
    padding: 30px 20px;
  }

  .t-box-ttl01 {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }
}

/*------------
Layout Style
--------------*/
.top-layout01 {
  display: flex;
  gap: 5%;
  margin: 0 0 0 -8%;
}

.top-layout01 .l-img {
  width: 45%;
}

.top-layout01 .l-img img {
  border-radius: 40px;
}

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

.top-layout01 .l-ttl {
  font-size: 2.1875rem;
  margin-bottom: 30px;
}

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

.top-layout02 a {
  background-color: var(--color_primary);
  color: var(--color_white);
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  gap: 5%;
  padding: 60px;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .top-layout02 a:hover {
    background-color: var(--color_sub02);
  }
}

.top-layout02 .l-img {
  width: 49%;
}

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

.top-layout02 .l-desc {
  flex: 1;
}

.top-layout03 {
  display: flex;
  position: relative;
  z-index: 1;
}

.top-layout03 .l-map {
  width: 74%;
  max-width: 1024px;
}

.top-layout03 .l-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 500px;
  border-radius: 20px;
}

.top-layout03 .l-desc {
  background-color: var(--color_bg);
  border-radius: 20px;
  padding: 40px 50px 50px;
  margin: 130px 0 0 -224px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.top-layout03 .l-txt {
  font-size: 1rem;
  margin-bottom: 18px;
}

@media (max-width: 800px) {
  .top-layout01 {
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
  }

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

  .top-layout01 .l-img img {
    border-radius: 20px;
  }

  .top-layout01 .l-ttl {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }

  .top-layout02 a {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }

  .top-layout02 .l-img {
    text-align: center;
    width: 100%;
  }

  .top-layout02 .l-img.w30 {
    width: 100%;
  }

  .top-layout03 {
    flex-direction: column;
    gap: 30px;
  }

  .top-layout03 .l-map {
    width: 100%;
  }

  .top-layout03 .l-map iframe {
    height: 300px;
  }

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

/*------------
Card Style
--------------*/
.top-card01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.top-card01 .card-img img {
  border-radius: 20px;
}

.top-card01 .card-txt {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.375rem;
  line-height: 1.5;
  text-align: center;
}

.top-card02 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.top-card02>li>a {
  display: grid;
  place-items: center;
  gap: 20px;
  background-color: var(--color_white);
  border: 2px solid var(--color_text);
  border-radius: 1000px 1000px 20px 20px;
  padding: 50px 5% 45px;
  height: 100%;
  position: relative;
  transition: transform 0.5s;
}

.top-card02>li>a::before {
  content: "";
  background-color: var(--color_primary);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}

.top-card02>li>a::after {
  content: "";
  -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;
  background-color: var(--color_white);
  width: 4px;
  height: 8px;
  position: absolute;
  bottom: 23px;
  right: 25px;
  z-index: 2;
}

@media (any-hover: hover) {
  .top-card02>li>a:hover {
    transform: translateY(-10px);
  }
}

.top-card02 .card-txt {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: center;
}

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

  .top-card01 .card-img {
    margin-bottom: 15px;
  }

  .top-card01 .card-txt {
    font-size: 1.125rem;
  }

  .top-card02 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }

  .top-card02>li>a {
    gap: 15px;
    padding: 30px 5% 45px;
  }

  .top-card02>li>a::before {
    width: 30px;
    height: 30px;
  }

  .top-card02>li>a::after {
    bottom: 21px;
    right: 22px;
  }

  .top-card02 .card-img {
    max-width: 80px;
  }

  .top-card02 .card-txt {
    font-size: 0.9375rem;
    line-height: 1.2;
  }
}

/*------------
Top List
--------------*/
.top-list01 {
  display: grid;
  gap: 8px;
}

.top-list01 li {
  font-size: 1rem;
  line-height: 1.5;
}

.top-list01 .ttl {
  position: relative;
  padding-left: 15px;
}

.top-list01 .ttl:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color_primary);
  position: absolute;
  top: 9px;
  left: 0;
}

/*------------
Top slider
--------------*/
#top-slider {
  margin: 0 auto 40px;
}

#top-slider img {
  width: 100%;
  max-height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 40px;
}

#top-slider-thumb .splide__slide {
  aspect-ratio: 294 / 173;
  border: none;
  border-radius: 15px;
  transition: 0.3s;
}

#top-slider-thumb .splide__slide.is-active {
  border: none;
  filter: grayscale(0%);
  transform: scale(0.9);
}

#top-slider-thumb .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#top-slider-thumb .splide__arrow--prev,
#top-slider-thumb .splide__arrow--next {
  width: 55px;
  height: 55px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

#top-slider-thumb .splide__arrow--prev svg,
#top-slider-thumb .splide__arrow--next svg {
  display: none;
}

#top-slider-thumb .splide__arrow--prev {
  background: url(../images/top_splide_prev.svg) no-repeat center/55px 55px;
  left: -4.166vw;
}

#top-slider-thumb .splide__arrow--next {
  background: url(../images/top_splide_next.svg) no-repeat center/55px 55px;
  right: -4.166vw;
}

@media (max-width: 800px) {
  #top-slider {
    margin: 0 auto 15px;
  }

  #top-slider img {
    border-radius: 20px;
  }

  #top-slider-thumb .splide__track--nav>.splide__list>.splide__slide {
    border-radius: 10px;
  }

  #top-slider-thumb .splide__arrow--prev,
  #top-slider-thumb .splide__arrow--next {
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
  }
}

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

.post-top-news:has(.no-post) {
  border-top: none;
}

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

.post-top-news time {
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 0.8125rem;
  flex-shrink: 0;
}

.post-top-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: var(--font_jp);
  line-height: 1.5;
}

@media (any-hover: hover) {
  .post-top-news a:hover {
    background-color: rgba(255, 249, 216, 0.6);
  }
}

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

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

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

.post-top-blog .post-img {
  overflow: hidden;
  border-radius: 20px;
}

.post-top-blog .post-img img {
  aspect-ratio: 241/164;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: scale 0.3s;
}

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

.post-top-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 0.875rem;
  line-height: 1.5;
  word-break: break-all;
  margin-bottom: 5px;
}

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

.post-top-blog .category {
  display: inline-block;
  text-box: trim-both cap alphabetic;
  background-color: var(--color_primary);
  color: var(--color_white);
  border-radius: 3px;
  font-size: 0.6875rem;
  line-height: 1.5;
  padding: 5px 10px;
}

.post-top-blog .no-post {
  grid-area: 1 / 1 / 2 / 5;
}

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

@media (max-width: 800px) {
  .top-post-layout01:not(:has(.no-post))::before {
    content: "横にスクロールできます。";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat left center/20px;
    min-height: 16px;
    font-size: 0.875rem;
    padding: 0 0 0 30px;
    margin-bottom: 5px;
  }

  .post-top-blog {
    display: flex;
    gap: 0;
    flex-wrap: nowrap;
    margin: 0 -5vw 0 0;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 5vw);
    overflow-x: auto;
  }

  .post-top-blog article {
    flex: 0 0 240px;
    margin: 0 5% 0 0;
    max-width: 100%;
  }

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

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

  .post-top-blog time {
    margin-bottom: 5px;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  position: relative;
}

.page-header::before {
  content: "";
  background-color: #BAEBF2;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.page-ttl {
  display: grid;
  place-items: center;
  height: 474px;
  font-family: var(--font_jp);
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-size: 3.125rem;
  text-align: center;
  padding: 60px 5% 0;
  position: relative;
}

.page-ttl::before {
  content: "";
  background: url(../images/under/page-ttl_deco01.png) no-repeat bottom left/contain;
  width: 39.722vw;
  max-width: 715px;
  aspect-ratio: 715/329;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.page-ttl::after {
  content: "";
  background: url(../images/under/page-ttl_deco02.png) no-repeat bottom right/contain;
  width: 15.166vw;
  max-width: 273px;
  aspect-ratio: 273/198;
  position: absolute;
  bottom: 36px;
  right: 0;
  z-index: -1;
}

.breadcrumb {
  margin: 5px 0 60px;
  width: 100%;
}

.breadcrumb ul {
  margin-inline: auto;
  max-width: 1024px;
  width: 90%;
}

.breadcrumb ul li {
  font-size: 0.8125rem;
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "> ";
  padding: 0 5px;
  color: var(--color_border);
}

.breadcrumb ul a {
  text-decoration: underline;
}

.breadcrumb ul a:hover {
  text-decoration: none;
}

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

@media (max-width: 800px) {
  .page-ttl {
    font-size: 1.75rem;
    height: 200px;
    padding-top: 30px;
  }

  .page-ttl::before {
    width: 150px;
  }

  .page-ttl::after {
    width: 100px;
  }

  .breadcrumb {
    margin: 5px 0 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

.u-h2,
.postdata h2 {
  background: url(../images/under/u-h2_deco.svg) no-repeat center bottom/43px auto;
  font-size: 2.5rem;
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 50px;
}

.u-h3,
.postdata h3 {
  font-size: 1.625rem;
  padding-left: 17px;
  margin-bottom: 30px;
  position: relative;
}

.u-h3::before,
.postdata h3::before {
  content: "";
  background-color: var(--color_primary);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 18px;
  left: 0;
}

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

.u-ttl01 {
  background: url(../images/under/u-ttl01_deco_white.svg) no-repeat center bottom/74px auto;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 35px;
  padding-bottom: 22px;
}

.u-ttl01.white {
  color: var(--color_white);
  background: url(../images/under/u-ttl01_deco_white.svg) no-repeat center bottom/74px auto;
}

.u-sub-ttl01 {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
}

.u-sub-ttl01.mb {
  margin-bottom: 20px;
}

.u-catch {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media (max-width: 800px) {

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

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

  .u-h3::before,
  .postdata h3::before {
    top: 13px;
  }

  .u-ttl01 {
    font-size: 1.875rem;
    margin-bottom: 30px;
    padding-bottom: 25px;
  }

  .u-sub-ttl01 {
    font-size: 1.125rem;
    text-align: left;
  }
}

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

.tall:last-of-type {
  margin-bottom: 100px;
}

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

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

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

  .tall:last-of-type {
    margin-bottom: 70px;
  }

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

.u-bg-layout {
  display: flex;
  flex-direction: column;
  position: relative;
}

.u-bg-layout::before {
  content: "";
  background: url(../images/under/u-bg01_wave01.png) no-repeat top center/cover;
  display: block;
  width: 100%;
  height: 82px;
}

.u-bg-layout::after {
  content: "";
  background: url(../images/under/u-bg01_wave02.png) no-repeat bottom center/cover;
  display: block;
  width: 100%;
  height: 57px;
}

.u-bg-layout .l-deco01 {
  max-width: 510px;
  width: 28.333vw;
  position: absolute;
  top: 82px;
  left: 0;
}

.u-bg-layout .l-deco02 {
  max-width: 691px;
  width: 38.388vw;
  position: absolute;
  top: 107px;
  right: 0;
}

.u-bg-layout .l-wrapper {
  background-color: var(--color_bg);
  padding: 0 11.555vw 0 7.722vw;
}

.u-bg-layout .l-inner {
  max-width: 1454px;
  display: flex;
  justify-content: space-between;
  padding: 55px 0;
  position: relative;
  z-index: 1;
}

.u-bg-layout .l-desc {
  padding: 0 2.777vw 0 6.555vw;
}

.u-bg-layout .u-h2 {
  line-height: 1.7;
  padding-bottom: 20px;
}

.u-bg-layout .l-txt {
  max-width: 585px;
  margin-inline: auto;
}

.u-bg-layout .l-img01 {
  margin-top: 15px;
}

.u-bg-layout .l-img02 {
  margin-top: 150px;
}

.u-bg-layout .l-img03 {
  margin: 40px 0 0 -115px;
}

.u-bg01 {
  background-color: var(--color_bg);
}

.u-bg01.pd30 {
  padding: 30px 0;
}

.u-bg01.pd60 {
  padding: 60px 0;
}

.u-bg01.tall {
  padding: 90px 0;
}

@media (max-width: 1500px) {
  .u-bg-layout .l-wrapper {
    padding: 0 5%;
  }

  .u-bg-layout .l-desc {
    padding: 0 30px;
  }
}

@media (max-width: 800px) {
  .u-bg-layout::before {
    height: 30px;
  }

  .u-bg-layout::after {
    height: 30px;
  }

  .u-bg-layout .l-deco01 {
    width: 41.75vw;
    top: 26%;
  }

  .u-bg-layout .l-deco02 {
    width: 38.5vw;
    top: auto;
    bottom: 25%;
  }

  .u-bg-layout .l-inner {
    flex-direction: column;
    padding: 40px 0;
  }

  .u-bg-layout .l-desc {
    padding: 0;
  }

  .u-bg-layout .l-img01 {
    margin: 0 auto 30px;
  }

  .u-bg-layout .l-img02 img,
  .u-bg-layout .l-img03 img {
    max-width: 240px;
  }

  .u-bg-layout .l-img02 {
    margin: -30px 0 0 auto;
  }

  .u-bg-layout .l-img03 {
    margin: 30px auto 0;
  }

  .u-bg01.pd60 {
    padding: 30px 0;
  }

  .u-bg01.tall {
    padding: 70px 0;
  }
}

.l-style01-wrapper {
  position: relative;
}

.l-style01-wrapper::before {
  content: "";
  background-color: var(--color_bg);
  position: absolute;
  inset: 214px 0 0;
  z-index: -1;
}

.l-style01-wrapper::after {
  content: "";
  background: url(../images/under/l-style01_deco01.png) no-repeat top left/contain;
  max-width: 378px;
  width: 21vw;
  aspect-ratio: 378/280;
  position: absolute;
  top: -100px;
  left: 9.5vw;
  z-index: -1;
}

.l-style01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 5%;
  margin: 0 -7% 0 0;
  padding-bottom: 100px;
}

.l-style01 .l-img {
  width: 57%;
  max-width: 580px;
  height: 100%;
  position: relative;
}

.l-style01 .l-img::before {
  content: "";
  background: url(../images/under/l-style01_deco02.png) no-repeat bottom right/contain;
  max-width: 305px;
  width: 16.944vw;
  aspect-ratio: 305/227;
  position: absolute;
  bottom: -60px;
  right: -11.444vw;
}

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

.l-style01 .l-desc {
  flex: 1;
}

.l-style01 .l-ttl {
  color: var(--color_sub01);
  font-family: var(--font_en);
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 35px;
  padding-top: 15px;
}

.l-style02 {
  display: flex;
}

.l-style02 .l-img {
  position: relative;
  width: 45%;
  z-index: 1;
}

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

.l-style02 .l-desc {
  background: var(--color_bg);
  padding: 55px 55px 55px 150px;
  margin: 50px 0 0 -100px;
  flex: 1;
  min-height: 330px;
  border-radius: 40px;
}

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

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

.l-style02 .l-num {
  display: inline-block;
  font-family: var(--font_en);
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 15px;
}

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

.l-style02 .l-sub-ttl {
  display: flex;
  gap: 15px;
  align-items: center;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  margin-bottom: 20px;
}

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

.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: 20px;
}

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

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

@media (max-width: 1400px) {
  .l-style01-wrapper::after {
    top: -50px;
    left: -5%;
  }

  .l-style01 .l-img::before {
    right: -5%;
  }
}

@media (max-width: 800px) {
  .l-style01-wrapper::before {
    inset: 200px 0 0;
  }

  .l-style01-wrapper::after {
    width: 250px;
    top: auto;
    bottom: 30px;
  }

  .l-style01 {
    flex-direction: column;
    gap: 30px;
    margin: 0;
    padding-bottom: 50px;
  }

  .l-style01 .l-img {
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .l-style01 .l-img::before {
    width: 120px;
    bottom: -60px;
  }

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

  .l-style01 .l-desc {
    position: relative;
    z-index: 1;
  }

  .l-style01 .l-ttl {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-top: 0;
  }

  .l-style02 {
    flex-direction: column;
  }

  .l-style02 .l-img {
    width: 100%;
  }

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

  .l-style02 .l-desc {
    padding: 110px 5vw 30px;
    margin: -80px -5vw 0;
    border-radius: 0;
  }

  .l-style02.reverse {
    flex-direction: column;
  }

  .l-style02.reverse .l-desc {
    padding: 120px 5vw 30px;
    margin: -80px -5vw 0;
  }

  .l-style02 .l-num {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }

  .l-style02 .l-ttl {
    font-size: 1.375rem;
    margin-bottom: 10px;
  }

  .l-style02 .l-sub-ttl {
    gap: 15px;
    font-size: 1.0625rem;
    margin-bottom: 15px;
  }

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

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

.tel-layout {
  background-color: var(--color_bg);
  border-radius: 40px;
  max-width: 800px;
  padding: 5%;
  margin: 0 auto;
}

.tel-layout .l-ttl {
  border-bottom: 1px solid var(--color_primary);
  margin-bottom: 30px;
  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: 25px;
  justify-content: center;
  align-items: center;
}

.tel-layout .l-time {
  display: grid;
  gap: 10px;
  line-height: 1.5;
  margin: 20px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}

.tel-layout .l-time .item {
  display: grid;
  align-items: baseline;
  grid-template-columns: 70px 1fr;
  gap: 10px;
}

.tel-layout .l-time dt {
  color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 4px;
  text-align: center;
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 0 4px;
}

@media (max-width: 800px) {
  .tel-layout {
    border-radius: 20px;
  }

  .tel-layout .l-ttl {
    font-size: 1rem;
    width: 100%;
    margin: 0 auto 25px;
  }

  .tel-layout .wrapper {
    flex-direction: column;
    align-items: center;
  }

  .tel-layout .l-time {
    margin: 15px 0 auto;
  }

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

.staff-layout .wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 8%;
}

.staff-layout .l-img {
  width: 32%;
}

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

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

.staff-layout .job {
  font-family: var(--font_jp);
  margin-bottom: 20px;
}

.staff-layout .l-ttl {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1;
  margin-bottom: 35px;
}

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

.staff-layout .kana {
  color: var(--color_primary);
  font-size: 0.8125rem;
}

.card-profile {
  margin-top: 50px;
}

.card-profile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5%;
  font-size: 0.875rem;
}

.card-profile .item {
  background-color: var(--color_bg);
  border-radius: 20px;
  padding: 30px;
}

.card-profile .card-ttl {
  border-bottom: 1px dashed var(--color_border);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.dl-career {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px 0;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .staff-layout .wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .staff-layout .l-img {
    width: auto;
    max-width: 300px;
    margin: 0 auto;
  }

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

  .staff-layout .name {
    font-size: 22px;
  }

  .staff-layout .kana {
    font-size: 12px;
  }

  .staff-layout .card-profile {
    margin-top: 30px;
  }

  .card-profile {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card-profile .item {
    padding: 20px;
  }
}

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

.list-disc li {
  line-height: 1.5;
  position: relative;
  padding-left: 15px;
}

.list-disc li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color_primary);
  position: absolute;
  top: 9px;
  left: 0;
}

.list-disc.white li:before {
  background-color: var(--color_white);
}

.list-disc.center {
  justify-content: center;
}

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

.list-style01 li {
  line-height: 1.5;
  position: relative;
  padding-left: 23px;
}

.list-style01 li:before {
  content: "◆";
  position: absolute;
  top: 0;
  left: 0;
}

.list-style01.white li:before {
  color: var(--color_white);
}

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

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

.list-num>li:before {
  display: grid;
  place-items: center;
  background-color: var(--color_primary);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-family: var(--font_en);
  font-weight: bold;
  font-size: 0.6875rem;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 5px;
  left: 0;
  padding: 2px 0 0 2px;
  width: 20px;
  height: 20px;
}

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

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

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

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

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

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

@media (max-width: 800px) {
  .list-num>li:before {
    top: 4px;
  }

  .list-check>li:before,
  .list-check-square>li:before {
    top: 6px;
  }
}

.dl-style01 {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: baseline;
  gap: 5px 10px;
  font-size: 0.8125rem;
  line-height: 1.8;
}

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

.dl-style01 dt {
  background-color: #B26C36;
  border-radius: 4px;
  color: #fff;
  padding: 3px 5px;
  text-align: center;
}

.dl-style02 .item {
  display: grid;
  justify-items: start;
  gap: 3px;
}

.dl-style02 .item+.item {
  margin-top: 10px;
}

.dl-style02 dt {
  background-color: var(--color_primary);
  border-radius: 3px;
  color: var(--color_white);
  font-size: 1.25rem;
  line-height: 1.5;
  padding: 4px 10px;
}

.dl-style02 dd {
  font-size: 1rem;
  line-height: 1.875;
}

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

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

.dl-style03 dt {
  background: var(--color_primary);
  color: #fff;
  padding: 20px;
  border-radius: 10px 0 0 10px;
}

.dl-style03 dd {
  background: var(--color_bg);
  padding: 20px;
  border-radius: 0 10px 10px 0;
}

@media (max-width: 800px) {
  .dl-style02 dt {
    font-size: 1rem;
  }

  .dl-style02 dd {
    font-size: 0.9375rem;
  }

  .dl-style03 .item {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dl-style03 dt {
    padding: 15px;
    border-radius: 10px 10px 0 0;
  }

  .dl-style03 dd {
    padding: 15px;
    border-radius: 0 0 10px 10px;
  }
}

.card-style01 {
  gap: 16px;
}

.card-style01>li {
  border: 1px solid var(--color_border);
  border-radius: 20px;
  padding: 25px;
}

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

.card-style01 .card-img img {
  border-radius: 20px;
}

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

.card-style01 .grid-area01 {
  grid-area: 1/1/2/4;
}

.card-style02 {
  gap: 20px;
}

.card-style02>li {
  background-color: var(--color_bg);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
}

.card-style02 .card-num {
  color: #ED6B00;
  font-family: var(--font_en);
  font-weight: bold;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.card-style02 .card-num span {
  font-size: 1.125rem;
  margin-left: 5px;
}

.card-style02 .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.card-style03 {
  gap: 16px;
}

.card-style03>li {
  background-color: var(--color_bg);
  border-radius: 20px;
  padding: 25px;
}

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

.card-style03 .card-img img {
  border-radius: 20px;
}

.card-style03 .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  margin-bottom: 15px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.card-style03.center>li {
  display: grid;
  place-items: center;
}

.card-style03.subgrid02>li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}

.card-style03.subgrid02>li .card-ttl {
  display: grid;
  place-items: center;
}

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

  .card-style01 .l-imgL {
    gap: 25px;
  }

  .card-style01 .grid-area01 {
    grid-area: auto;
  }

  .card-style02 {
    gap: 15px;
  }

  .card-style02>li {
    border-radius: 15px;
    padding: 15px;
  }

  .card-style02 .card-num {
    font-size: 10px;
  }

  .card-style02 .card-num span {
    font-size: 16px;
  }

  .card-style02 .card-ttl {
    font-size: 15px;
  }

  .card-style03 {
    gap: 15px;
  }
}

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

.table-style01 th {
  background: var(--color_primary);
  color: #fff;
}

.table-style01 th.bg01 {
  background: var(--color_bg);
  color: var(--color_text);
}

.table-style02 th,
.table-style02 td {
  padding: 15px 30px;
  border: 1px solid var(--color_border);
  border-width: 1px 0;
  vertical-align: middle;
}

.table-style02 th {
  background: var(--color_bg);
  text-align: left;
}

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

@media (max-width: 800px) {

  .table-style01 th,
  .table-style01 td {
    padding: 10px 15px;
  }

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

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

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

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

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

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

  .table-style02.sp-block th,
  .table-style02.sp-block td {
    display: block;
  }

  .table-style02.sp-block td {
    border: none;
  }

  .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: #4A0202;
  }

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

  .table-scroll.large table {
    width: 250%;
  }
}

.box-style01 {
  padding: 76px 0 112px;
  position: relative;
}

.box-style01::before {
  content: "";
  background: url(../images/under/box-style01_deco01.png) no-repeat center/contain;
  width: 378px;
  aspect-ratio: 378/280;
  position: absolute;
  top: 0;
  left: -121px;
  z-index: -1;
}

.box-style01::after {
  content: "";
  background: url(../images/under/box-style01_deco03.png) no-repeat center/contain;
  width: 37.5vw;
  max-width: 384px;
  aspect-ratio: 384/264;
  position: absolute;
  bottom: 0;
  right: -127px;
  z-index: 1;
}

.box-style01 .wrapper {
  color: var(--color_white);
  background-color: var(--color_primary);
  outline: 1px solid var(--color_white);
  outline-offset: -10px;
  border-radius: 40px;
  position: relative;
}

.box-style01 .wrapper::before {
  content: "";
  background: url(../images/under/box-style01_deco02.png) no-repeat center/contain;
  width: 144px;
  aspect-ratio: 144/104;
  position: absolute;
  top: 160px;
  left: -103px;
  z-index: 1;
}

.box-style01 .inner {
  padding: 50px 50px;
}

.box-ttl01 {
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 25px;
}

.box-style02 {
  padding-top: 33px;
  position: relative;
}

.box-style02 .inner {
  background-color: var(--color_bg);
  border-radius: 40px;
  padding: 70px 50px 50px;
}

.box-style02 .box-num {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  color: var(--color_white);
  background-color: #A4D687;
  border-radius: 50%;
  font-family: var(--font_en);
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.box-style02 .l-imgR .l-img {
  width: 32%;
  max-width: 290px;
}

.box-ttl02 {
  font-size: 1.625rem;
  text-align: center;
  margin-bottom: 45px;
}

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

.box-style03 .l-sub-ttl {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 1.25rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 40px;
}

.box-style03 .inner {
  background-color: #FFE34E;
  border-radius: 40px;
  padding: 55px 50px 50px;
}

.box-style03 .l-imgR .l-img {
  width: 32%;
  max-width: 290px;
}

.box-ttl03 {
  font-size: 1.625rem;
  margin-bottom: 30px;
}

.box-style04 {
  background-color: var(--color_bg);
  padding: 40px;
  border-radius: 40px;
}

.box-ttl04 {
  display: flex;
  gap: 15px;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.box-style05 {
  background-color: var(--color_primary);
  color: #fff;
  padding: 40px;
  border-radius: 40px;
}

.box-ttl05 {
  display: flex;
  gap: 15px;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.box-ttl05 img {
  filter: brightness(0) invert(1);
}

.box-style06 {
  border: 2px solid var(--color_border);
  padding: 5%;
  border-radius: 40px;
}

.box-ttl06 {
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 25px;
}

.box-style07 {
  background-color: var(--color_bg);
  padding: 5%;
  border-radius: 40px;
}

.box-ttl07 {
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 25px;
}

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

  .box-style01::before {
    width: 250px;
    left: -10%;
  }

  .box-style01::after {
    width: 200px;
    right: -5%;
  }

  .box-style01 .wrapper {
    border-radius: 20px;
  }

  .box-style01 .wrapper::before {
    width: 100px;
    top: 70px;
    left: -80px;
  }

  .box-style01 .inner {
    padding: 50px 30px;
  }

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

  .box-style02 .inner {
    border-radius: 20px;
    padding: 50px 20px 30px;
  }

  .box-style02 .box-num {
    width: 70px;
    height: 70px;
  }

  .box-style02 .l-imgR {
    gap: 30px;
  }

  .box-style02 .l-imgR .l-img {
    width: 100%;
    max-width: 100%;
  }

  .box-ttl02 {
    font-size: 1.375rem;
    margin-bottom: 25px;
  }

  .box-style03 .inner {
    border-radius: 20px;
    padding: 50px 20px 30px;
  }

  .box-style03 .l-sub-ttl {
    width: 70px;
    height: 70px;
    font-size: 1.125rem;
    left: 5%;
  }

  .box-style03 .l-imgR {
    gap: 30px;
  }

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

  .box-ttl03 {
    font-size: 1.375rem;
    margin-bottom: 25px;
  }

  .box-style04 {
    padding: 30px;
    border-radius: 20px;
  }

  .box-style05 {
    padding: 30px;
    border-radius: 20px;
  }

  .box-style06 {
    padding: 20px;
    border-radius: 20px;
  }

  .box-ttl06 {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }

  .box-style07 {
    padding: 20px;
    border-radius: 20px;
  }

  .box-ttl07 {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
}

.flow-style01>li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 50px;
  align-items: flex-start;
  position: relative;
}

.flow-style01>li:not(:last-child) {
  padding-bottom: 38px;
}

.flow-style01>li:not(:last-child)::before {
  content: "";
  border-left: 2px dotted var(--color_primary);
  position: absolute;
  top: 95px;
  bottom: 20px;
  left: 40px;
}

.flow-style01 .wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 30px;
}

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

.flow-style01 .flow-img img {
  border-radius: 20px;
}

.flow-style01 .flow-read {
  flex: 1;
}

.flow-style01 .flow-num {
  color: var(--color_white);
  background-color: var(--color_primary);
  border-radius: 100px;
  text-align: center;
  display: grid;
  place-items: center;
  font-family: var(--font_en);
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  width: 80px;
  height: 80px;
  position: relative;
}

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

@media (max-width: 800px) {
  .flow-style01>li {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding-bottom: 30px;
  }

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

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

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

  .flow-style01 .flow-num {
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
  }

  .flow-style01 .flow-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
}

.list-anchor-link {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9375rem;
}

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

.list-anchor-link li::after {
  content: "";
  display: inline-block;
  background: #e0e0e0;
  width: 2px;
  height: 15px;
  margin: 0 20px;
  vertical-align: -1px;
}

.list-anchor-link a {
  display: inline-block;
  position: relative;
  padding-right: 25px;
}

.list-anchor-link a::before {
  content: "";
  background: url(../images/share/icon_arrow_down.svg) no-repeat 0 0/contain;
  width: 22px;
  height: 22px;
  position: absolute;
  right: -3px;
  top: 3px;
}

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

@media (max-width: 800px) {
  .list-anchor-link {
    display: block;
  }

  .list-anchor-link li::after {
    display: none;
  }

  .list-anchor-link a {
    padding: 0 0 0 30px;
  }

  .list-anchor-link a::before {
    right: inherit;
    left: 0;
    top: 2px;
  }
}

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

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

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

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

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

.merit-demerit .item-ttl {
  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-weight: bold;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  margin-left: 15px;
}

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

.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;
  transition: opacity 0.3s;
}

.under-slider01 .splide__arrow:hover:not(:disabled) {
  opacity: .7;
}

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

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

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

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

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

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

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

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

@media (max-width: 800px) {
  .under-slider01 .splide__slide img {
    border-radius: 20px;
  }

  .under-slider01 .splide__arrow--prev {
    left: -10px;
  }

  .under-slider01 .splide__arrow {
    top: calc(50% - 15vw);
  }

  .under-slider01 .splide__arrow--next {
    right: -10px;
  }

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

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

@media (max-width: 800px) {
  .img-scroll-txt {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

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

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

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

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

  .img-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #4A0202;
  }

  .img-scroll figure {
    margin-bottom: 10px !important;
    width: 200%;
  }
}

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

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

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

.youtube iframe {
  width: 100%;
  height: 100%;
}

/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid #000;
  font-size: 1.125rem;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

.dl-privacy dd+dt {
  margin-top: 30px;
}

.dl-privacy dt {
  border-bottom: 1px solid var(--color_primary);
  font-size: 1.125rem;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

.dl-privacy .item+.item {
  margin-top: 50px;
}

@media (max-width: 800px) {
  .dl-privacy .item+.item {
    margin-top: 30px;
  }
}

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

.sp-only {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

hr {
  max-width: 1024px;
  margin: 50px auto;
}

.fade {
  transition: opacity 0.5s;
}

@media (any-hover: hover) {
  .fade:hover {
    opacity: 0.5;
  }
}

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

.bold,
.strong {
  font-family: var(--font_jp);
}

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

.c-red {
  color: #F44336;
}

.underline {
  text-decoration: underline;
}

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

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

.mb0 {
  margin-bottom: 0 !important;
}

.mbXS {
  margin-bottom: 5px;
}

.mbS {
  margin-bottom: 15px;
}

.mbM {
  margin-bottom: 30px;
}

.mbXM {
  margin-bottom: 45px;
}

.mbL {
  margin-bottom: 60px;
}

.mbXL {
  margin-bottom: 90px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center !important;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right !important;
}

.tal {
  text-align: left !important;
}

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

.col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

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

.gapXS {
  gap: 5px;
}

.gapS {
  gap: 15px;
}

.gapM {
  gap: 30px;
}

.gapXM {
  gap: 45px;
}

.gapL {
  gap: 60px;
}

.gapXL {
  gap: 90px;
}

.br20 {
  border-radius: 20px;
}

.br30 {
  border-radius: 30px;
}

.br40 {
  border-radius: 40px;
}

.img600 img {
  max-width: 600px;
  width: 100%;
}

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

  .sp-only {
    display: block;
  }

  .sp-tac {
    text-align: center !important;
  }

  .sp-tar {
    text-align: right !important;
  }

  .sp-tal {
    text-align: left !important;
  }

  .mbXM {
    margin-bottom: 30px;
  }

  .mbL {
    margin-bottom: 30px;
  }

  .mbXL {
    margin-bottom: 60px;
  }

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

  .gapM {
    gap: 15px;
  }

  .gapXM {
    gap: 25px;
  }

  .gapL {
    gap: 30px;
  }

  .gapXL {
    gap: 60px;
  }
}

.tel-style {
  display: inline-flex;
  align-items: center;
  font-family: var(--font_jp);
  font-size: 1.8125rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}

.tel-style img {
  margin: 3px 7px 0 0;
}

.tel-style .num {
  position: relative;
}

.tel-style .rubi {
  font-family: var(--font_base);
  font-size: 0.9375rem;
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  top: -14px;
  right: 0;
}

.tel-style.small {
  font-size: 1.4375rem;
}

.tel-style.small img {
  max-width: 17px;
  margin: 2px 5px 0 0;
}

.tel-style.small .rubi {
  font-size: 0.75rem;
  top: -10px;
}

.tel-txt .num {
  position: relative;
}

.tel-txt .rubi {
  font-size: 0.625rem;
  white-space: nowrap;
  position: absolute;
  top: -7px;
  right: -4px;
}

/*------------
Animation
-------------*/
.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

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

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

.splide__progress__bar {
  width: 0;
}

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

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

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

.splide__slide img {
  vertical-align: bottom;
}

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

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

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

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

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

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

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

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

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

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

.splide--rtl {
  direction: rtl;
}

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

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

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

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

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

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

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

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

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

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

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

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

.splide__pagination {
  gap: 8px;
}

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

.splide__pagination__page.is-active {
  background: #707070;
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
}

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

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

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

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

.splide__slide:focus {
  outline: 0;
}

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

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

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

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

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

.splide__toggle {
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.splide__toggle:hover {
  background: #D3D3D3;
}

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

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