@charset "UTF-8";
/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #696969;
  --color_link: #696969;
  --color_border: #E6E6E6;
  --color_primary: #006400;
  --color_secondary: #91AA91;
  --color_tertiary: #E7EDEB;
  --color_white: #fff;
  --color_black: #696969;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
}

/* ====================================================
【アニメーション】
==================================================== */
:root {
  --ease: cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* ====================================================
【サイト全体の設定】
==================================================== */
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP"), local("Noto Sans CJK JP Regular");
}
:root {
  --font_base:
    "Noto Sans JP",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Local Noto Sans JP",
    "Noto Sans JP",
    serif;
  --font_jp: "FOT-筑紫明朝 Pr6 M", serif;
  --font_jp_right: "FOT-筑紫明朝 Pr6 R", serif;
  --font_en: "Belleza", serif;
  --font_weight: normal;
  --font_size: 1rem;
  --line_height: 2.0;
  --letter_spacing: .05em;
}

@media (max-width: 800px) {
  :root {
    --line_height: 1.8;
  }
}
/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          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%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  color: inherit;
  text-decoration: none;
}

:where(button) {
  all: unset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:where(a, input, button, textarea, select) {
  -ms-touch-action: manipulation;
      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;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

::-moz-selection {
  background: #d4dcd6;
}

::selection {
  background: #d4dcd6;
}

mark {
  background: transparent;
  font-style: normal;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
html {
  font-size: 15px;
}

body {
  background-color: var(--color_base);
  color: var(--color_text);
  font-family: var(--font_base);
  font-size: var(--font_size);
  font-weight: var(--font_weight);
  letter-spacing: var(--letter_spacing);
  line-height: var(--line_height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font_jp);
  letter-spacing: 0.05em;
}

[lang=en] {
  font-family: var(--font_en);
}

.link {
  display: inline-block;
  text-decoration: underline;
  word-break: break-all;
  position: relative;
  text-wrap: pretty;
}

.link[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  margin-left: 5px;
}

.link:is(:hover, :focus) {
  text-decoration: none;
}

.no-link {
  pointer-events: none;
}

a[href^=tel] {
  cursor: default;
}

:target {
  scroll-margin-top: 130px;
}

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 82px;
  }
}
.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-layout {
  padding: 0 49px;
  margin-bottom: 80px;
}

.time-table {
  background-color: var(--color_white);
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  margin: 0 auto 20px;
}

.time-table th,
.time-table td {
  text-align: center;
  line-height: 1.2;
  border: 1px solid var(--color_border);
  font-family: var(--font_jp);
  font-size: 1.0666666667rem;
}

.time-table thead th,
.time-table thead td {
  padding: 15px 0;
}

.time-table thead th {
  background-color: var(--color_primary);
  color: var(--color_white);
}

.time-table tbody th,
.time-table tbody td {
  padding: 30px 0;
}

.time-table th:first-child {
  width: 26%;
}

.time-table img {
  margin-inline: auto;
}

.time-table .is-off {
  background-image: url("../images/share/calendar_closed.svg");
  background-repeat: no-repeat;
  background-size: 100%;
}

.time-table-note {
  line-height: 1.5;
  max-width: 926px;
  margin: 0 auto 0 0;
}

@media (max-width: 800px) {
  .time-table-layout {
    padding: 0;
    margin-bottom: 40px;
  }
  .time-table {
    margin: 0 auto 5px;
  }
  .time-table thead th,
  .time-table thead td {
    font-size: 0.8666666667rem;
    padding: 20px 0;
  }
  .time-table tbody th,
  .time-table tbody td {
    font-size: 0.8666666667rem;
  }
  .time-table th:first-child {
    width: 70px;
  }
  .time-table th:last-child {
    width: 47px;
  }
}
/*-----------------------------------------------------------
診療カレンダー
-----------------------------------------------------------*/
:root {
  --event01: #C25757;
  --event02: #006400;
  --event03: #AE9E61;
}

.business-calendar-box-wrap {
  background-color: var(--color_white);
  border-top: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
  margin-bottom: 15px;
  padding: 10px 0 0;
}

.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: 1.3333333333rem;
  font-family: var(--font_jp);
  text-align: center;
  margin: 0 0 2px;
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 5px;
  position: relative;
}

.business-calendar-box-wrap .business-calendar caption span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  position: absolute;
  top: 0;
  bottom: 5px;
  left: 10px;
}

.business-calendar-box-wrap .business-calendar caption span:nth-child(2) {
  left: auto;
  right: 10px;
}

.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
  cursor: pointer;
  display: inline-block;
  color: var(--color_primary);
  font-size: 0;
  line-height: 1;
  text-decoration: none;
  position: relative;
  width: 14px;
  height: 14px;
}

.business-calendar-box-wrap .business-calendar-past a::before,
.business-calendar-box-wrap .business-calendar-future a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.business-calendar-box-wrap .business-calendar-past a::before {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}

.business-calendar-box-wrap .business-calendar th {
  background: #fff;
  background-clip: padding-box;
  position: relative;
  font-size: 1.0666666667rem;
  font-family: var(--font_jp);
  padding: 7px 5px;
  z-index: 0;
}

.business-calendar-box-wrap .business-calendar td {
  background: #FFFFFF;
  position: relative;
  font-family: var(--font_jp);
  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%;
  -webkit-transform: translate(-50%, -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: 1rem;
}

.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);
}

.list-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list-event li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  line-height: 1;
  font-size: 0.9333333333rem;
}

.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);
}

@media (max-width: 800px) {
  .business-calendar-box-wrap {
    margin-bottom: 5px;
  }
  .business-calendar-box-wrap.col2 .business-calendar-box {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .list-event {
    display: block;
  }
  .list-event li + li {
    margin-top: 5px;
  }
}
/*ボタン*/
.btn-out {
  padding-right: 15px;
  position: relative;
}

.btn-out::before {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 0.2em;
  right: 0;
}

.btn-out::after {
  content: "";
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
  background: linear-gradient(to top, currentColor 0px, currentColor 1.1px, transparent 1px) no-repeat right bottom;
  background-size: 0% auto;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 100%;
}

@media (any-hover: hover) {
  .btn-out:hover::after {
    background-position: left bottom;
    background-size: 100% auto;
  }
}
.btn-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-family: var(--font_jp);
  line-height: 1;
  min-height: 50px;
  min-width: 160px;
  padding: 10px 28px;
  background-color: var(--color_white);
  color: var(--color_primary);
  border: 1px solid var(--color_primary);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.btn-more::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

@media (any-hover: hover) {
  .btn-more:hover {
    background-color: var(--color_primary);
    color: var(--color_white);
  }
  .btn-more:hover::before {
    border-color: var(--color_white);
  }
}
.post-btn {
  position: absolute;
  font-family: var(--font_jp);
  font-size: 1.0666666667rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.post-btn .text {
  -webkit-transition: opacity 0.3s var(--ease);
  transition: opacity 0.3s var(--ease);
}

.post-btn .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: -webkit-transform 0.3s var(--ease);
  transition: -webkit-transform 0.3s var(--ease);
  transition: transform 0.3s var(--ease);
  transition: transform 0.3s var(--ease), -webkit-transform 0.3s var(--ease);
}

@media (any-hover: hover) {
  .post-btn:hover .text {
    opacity: 0.5;
  }
  .post-btn:hover .icon {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}

.btn-wrap.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 800px) {
  .btn-more {
    min-width: 100%;
  }
}
/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  font-size: 1.1333333333rem;
  line-height: 1;
  margin-bottom: 17px;
}

/*カテゴリーリスト*/
.list-category-links {
  display: grid;
  gap: 5px;
  font-size: 1rem;
  line-height: 1.5;
}

.list-category-links > li {
  position: relative;
  padding-left: 15px;
}

.list-category-links > li::before {
  content: "";
  border-top: 1px solid var(--color_primary);
  border-right: 1px solid var(--color_primary);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 9px;
  left: 0;
  rotate: 45deg;
}

.list-category-links ul {
  margin-top: 5px;
}

.list-category-links ul li {
  position: relative;
  padding-left: 15px;
}

.list-category-links ul li::before {
  content: "└";
  position: absolute;
  top: 5px;
  left: 0;
  color: #888;
  font-size: 0.6666666667rem;
}

.list-category-links ul ul {
  margin-top: 5px;
  margin-bottom: 5px;
}

.list-category-links a {
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentcolor), to(currentcolor));
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s ease;
  transition: background-size 0.5s ease;
}

@media (any-hover: hover) {
  .list-category-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}
/*ブログ*/
.post-under-blog:first-of-type {
  border-top: 1px solid var(--color_border);
}

.post-under-blog a {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 70px 10px 10px;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.post-under-blog a::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  width: 15px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.post-under-blog a:hover .post-ttl {
  text-decoration: underline;
}

.post-under-blog .post-img img {
  border: 1px solid var(--color_border);
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 7/5;
}

.post-under-blog .post-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.post-under-blog time {
  display: block;
  font-size: 0.9333333333rem;
  font-family: var(--font_en);
  line-height: 1;
  margin-bottom: 10px;
}

.post-under-blog .category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.post-under-blog .category {
  display: inline-block;
  line-height: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.post-under-blog .category + .category {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid var(--color_border);
}

.post-under-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  overflow-wrap: anywhere;
  font-size: 1.0666666667rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.post-under-blog .no-post {
  padding: 25px 0;
}

@media (max-width: 800px) {
  .post-under-blog a {
    grid-template-columns: 120px 1fr;
    gap: 10px;
    padding: 10px 0;
  }
  .post-under-blog a::before {
    display: none;
  }
  .post-under-blog .post-img img {
    aspect-ratio: 7/5;
  }
  .post-under-blog .post-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin-bottom: 5px;
  }
  .post-under-blog time {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 0.6875rem;
  }
  .post-under-blog .category {
    font-size: 0.6666666667rem;
  }
  .post-under-blog .post-ttl {
    -webkit-line-clamp: 2;
    font-size: 0.8125rem;
  }
  .post-under-blog .no-post {
    padding: 25px 0;
  }
}
/*お知らせ*/
.post-under-news {
  border-top: 1px solid var(--color_border);
  margin-bottom: 50px;
}

.post-under-news a {
  display: grid;
  grid-template-columns: 120px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 25px;
  border-bottom: 1px solid var(--color_border);
  padding: 20px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.post-under-news a:hover .news-ttl {
  text-decoration: underline;
}

.post-under-news time {
  display: block;
  font-family: var(--font_en);
  line-height: 1;
}

.post-under-news .news-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.post-under-news .category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}

@media (max-width: 800px) {
  .post-under-news {
    margin-bottom: 30px;
  }
  .post-under-news a {
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
    padding: 16px 0;
  }
}
/*詳細ページ*/
.layout-single-post {
  margin-inline: auto;
}

.layout-single-post .post-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.layout-single-post time {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  font-size: 0.9333333333rem;
  line-height: 1.5;
  color: #AAAAAA;
  font-family: var(--font_en);
}

st-under-blog .layout-single-post .category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.layout-single-post .category {
  display: inline-block;
  line-height: 1;
}

.layout-single-post .category + .category {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid var(--color_border);
}

.layout-single-post .l-ttl {
  font-size: 1.8666666667rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .layout-single-post .l-ttl {
    font-size: 1.6666666667rem;
    margin-bottom: 20px;
  }
}
/*ページャー*/
.post-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin: 50px auto 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

.post-number span,
.post-number a {
  display: inline-block;
  color: #ccc;
  font-size: 1.0666666667rem;
  line-height: 1;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.post-number span:hover,
.post-number a:hover {
  color: var(--color_primary);
}

.post-number .current {
  color: var(--color_primary);
  text-decoration: underline;
  text-underline-offset: 15px;
}

.post-number .prev,
.post-number .next {
  width: 10px;
  height: 10px;
  margin-top: 5px;
}

.post-number .prev {
  margin-right: 10px;
}

.post-number .next {
  margin-left: 10px;
}

.post-number .prev::before,
.post-number .next::before {
  content: "";
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}

.post-number .prev::before {
  -webkit-mask: url(../images/share/post_prev.svg) no-repeat center/contain;
  mask: url(../images/share/post_prev.svg) no-repeat center/contain;
}

.post-number .next::before {
  -webkit-mask: url(../images/share/post_next.svg) no-repeat center/contain;
  mask: url(../images/share/post_next.svg) no-repeat center/contain;
}

@media (max-width: 800px) {
  .post-number {
    gap: 15px;
    margin-top: 30px;
  }
}
.post-number-single {
  border-top: 1px solid var(--color_border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-top: 50px;
  padding-top: 50px;
}

.post-number-single a {
  display: inline-block;
}

.post-number-single .all {
  background: var(--color_primary);
  color: var(--color_white);
  border: 1px solid var(--color_primary);
  font-size: 0.8666666667rem;
  font-family: var(--font_en);
  line-height: 28px;
  max-width: 200px;
  height: 30px;
  width: 100%;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.post-number-single .all:hover {
  background: var(--color_base);
  color: var(--color_primary);
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_primary);
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.post-number-single .prev::before,
.post-number-single .next::before {
  content: "";
  background-color: var(--color_primary);
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 10px;
  height: 10px;
}

.post-number-single .prev::before {
  right: 8px;
}

.post-number-single .next::before {
  left: 8px;
}

.post-number-single .prev:hover,
.post-number-single .next:hover {
  background-color: var(--color_primary);
}

.post-number-single .prev:hover::before,
.post-number-single .next:hover::before {
  background-color: var(--color_white);
}

.post-number-single .prev::before {
  -webkit-mask: url(../images/share/post_next.svg) no-repeat center/contain;
  mask: url(../images/share/post_next.svg) no-repeat center/contain;
}

.post-number-single .next::before {
  -webkit-mask: url(../images/share/post_prev.svg) no-repeat center/contain;
  mask: url(../images/share/post_prev.svg) no-repeat center/contain;
}

/*投稿本文用CSS*/
.postdata {
  display: flow-root;
  overflow-wrap: break-word;
}

.postdata .screen-reader-text {
  border: 0;
  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;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.postdata iframe {
  max-width: 100%;
}

.aligncenter {
  margin-inline: auto;
}

.postdata h2[class=wp-block-heading] {
  border-bottom: 1px solid var(--color_primary);
  border-top: 1px solid var(--color_primary);
  font-size: 1.375rem;
  line-height: 1.5;
  margin-block: 30px;
  padding-block: 15px;
  position: relative;
}

.postdata h3[class=wp-block-heading] {
  font-size: 1.25rem;
  line-height: 1.5;
  border-left: 4px solid var(--color_primary);
  padding: 3px 0px 3px 15px;
  margin-block: 25px;
}

.postdata h4[class=wp-block-heading] {
  background: var(--color_tertiary);
  border-radius: 2px;
  font-size: 1.125rem;
  line-height: 1.5;
  padding: 8px 15px;
  margin-block: 15px;
}

.wp-block-button__link {
  border: 1px solid var(--color_primary) !important;
  background-color: var(--color_white) !important;
  color: var(--color_primary) !important;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  font-size: 0.9375rem !important;
  line-height: 1 !important;
  min-height: 50px;
  min-width: 160px;
  padding: 10px 45px !important;
  line-height: 1.5;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wp-block-button__link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.wp-block-button__link:hover {
  opacity: 1;
  background-color: var(--color_primary) !important;
  color: var(--color_white) !important;
}

.wp-block-button__link:hover::after {
  border-color: var(--color_white);
}

.postdata p,
.postdata ul,
.postdata ol {
  margin-block: 1em;
}

.postdata a:not(.wp-block-button__link) {
  text-decoration: underline;
}

.postdata a:focus-visible {
  text-decoration: none;
}

@media (any-hover: hover) {
  .postdata a:hover {
    text-decoration: none;
  }
}
.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata sub {
  font-size: 1.1rem;
  position: relative;
  bottom: -0.1em;
}

.postdata sup {
  font-size: 1.1rem;
  position: relative;
  top: -0.1em;
}

.postdata ul {
  display: grid;
  grid-gap: 5px;
}

.postdata ul li {
  list-style: disc;
  margin-left: 1.5em;
  line-height: 1.5;
}

.postdata ul li::marker {
  color: var(--color_primary);
}

.postdata ol {
  display: grid;
  grid-gap: 5px;
  counter-reset: number;
}

.postdata ol li {
  padding-left: 30px;
  position: relative;
}

.postdata ol li::before {
  background-color: var(--color_primary);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 0.6875rem;
  position: absolute;
  top: 5px;
  left: 0;
  line-height: 20px;
  width: 20px;
  height: 20px;
  text-align: center;
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  gap: 15px;
  padding: 15px 2.5%;
  position: fixed;
  width: 100%;
  z-index: 100;
}

.h-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 22px;
  margin-bottom: 10px;
}

.h-tel {
  font-family: var(--font_jp);
  font-size: 1.0666666667rem;
  border-bottom: 1px solid;
}

.h-tel span {
  font-size: 1.2rem;
}

@media (max-width: 800px) {
  .header {
    gap: 15px;
    padding: 16px 15px;
  }
  .h-logo {
    max-width: 203px;
  }
  .h-utility {
    display: none;
  }
  button.gnavi-menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
/*------------
Gnavi
--------------*/
.gnavi-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 30px;
  font-family: var(--font_jp);
  font-size: 1.1333333333rem;
}

.gnavi-links > li > a {
  display: inline-block;
}

/*dropdown*/
.dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.dropdown::after {
  content: "";
  display: block;
  border-bottom: 1px solid var(--color_primary);
  border-right: 1px solid var(--color_primary);
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: right;
          transform-origin: right;
}

.dropdown.is-open .sub-menu {
  pointer-events: auto;
  opacity: 1;
}

.dropdown .sub-menu {
  display: grid;
  grid-gap: 5px;
  pointer-events: none;
  background-color: var(--color_secondary);
  color: var(--color_white);
  -webkit-box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
  padding: 25px 30px;
  position: absolute;
  top: 30px;
  right: 50%;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  min-width: 150px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

.dropdown .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

.dropdown .sub-menu li::before {
  content: "-";
  color: var(--color_white);
  margin-right: 10px;
}

.dropdown:last-child .sub-menu {
  right: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*------------
Gnavi Drawer
--------------*/
html.is-open {
  height: 100%;
}

button.gnavi-menu-btn {
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--color_primary);
  padding: 0;
  position: relative;
  z-index: 110;
}

button.gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(35deg);
          transform: translateY(-50%) rotate(35deg);
}

button.gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateY(-50%) scaleX(0);
          transform: translateY(-50%) scaleX(0);
}

button.gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(3) {
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%) rotate(-35deg);
          transform: translateY(-50%) rotate(-35deg);
}

.gnavi-menu-btn-line {
  position: relative;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 15px;
}

.gnavi-menu-btn-line span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 20px;
  height: 1px;
  background-color: var(--color_white);
  border-radius: 1px;
  -webkit-transition: opacity 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
}

.gnavi-menu-btn-line span:nth-child(1) {
  top: 0;
}

.gnavi-menu-btn-line span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.gnavi-menu-btn-line span:nth-child(3) {
  top: auto;
  bottom: 0;
}

.gnavi-menu-btn-txt {
  display: block;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: bold;
  text-align: center;
  margin-top: 5px;
}

.gnavi-drawer {
  backdrop-filter: blur(5px);
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  will-change: opacity;
  z-index: 100;
}

.gnavi-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}

.gnavi-drawer-container {
  background-color: var(--color_white);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5%;
  margin-left: auto;
  padding: 50px 2.5%;
  width: 350px;
  height: 100%;
  overflow-y: auto;
}

.drawer-links {
  display: grid;
  gap: 15px;
  line-height: 1.5;
  font-size: 1.125rem;
}

.drawer-links a {
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentcolor), to(currentcolor));
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s ease;
  transition: background-size 0.5s ease;
  padding-bottom: 0.02rem;
}

@media (any-hover: hover) {
  .drawer-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}
@media (max-width: 800px) {
  .gnavi-drawer-container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 25px 20px 100px;
    width: 100%;
  }
  .gnavi-drawer-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px;
    width: 100%;
    margin-bottom: 30px;
  }
  .gnavi-drawer-head .sp-logo {
    margin-bottom: 0;
  }
  .gnavi-drawer-container .gnavi-menu-btn--close {
    display: none;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  html.is-open .header > .gnavi-menu-btn--open {
    display: none;
  }
  html.is-open .gnavi-drawer-container .gnavi-menu-btn--close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .drawer-links {
    gap: 15px;
    font-size: 1rem;
  }
}
/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background-color: var(--color_tertiary);
  margin-top: auto;
  position: relative;
  padding: 90px 0 0;
}

.f-contents {
  display: grid;
  grid-template-columns: 593px 1fr;
  gap: 6%;
  margin-inline: auto;
  margin-bottom: 85px;
  width: min(90%, 1024px);
}

.f-logo {
  margin-bottom: 30px;
}

.f-address {
  margin-bottom: 10px;
}

.f-tel {
  font-size: 2rem;
  font-family: var(--font_jp);
  margin-bottom: 10px;
  line-height: 1.3;
}

.f-tel .link-tel {
  font-size: 2.7333333333rem;
}

.f-txt {
  margin-bottom: 25px;
}

.f-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.site-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.f-links {
  display: grid;
  grid-gap: 10px;
  line-height: 1.5;
  font-family: var(--font_jp);
}

.f-links li::before {
  content: "-";
  color: #D8D8D8;
  margin-right: 10px;
}

.f-links a {
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentcolor), to(currentcolor));
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s ease;
  transition: background-size 0.5s ease;
  padding-bottom: 0.02rem;
}

@media (any-hover: hover) {
  .f-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}
.f-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-inline: auto;
  width: min(90%, 1024px);
}

.f-bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8666666667rem;
  line-height: 1;
}

.f-bottom-links li + li::before {
  content: "|";
  margin: 0 15px;
}

.f-bottom-links a {
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentcolor), to(currentcolor));
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s ease;
  transition: background-size 0.5s ease;
  padding-bottom: 0.02rem;
}

@media (any-hover: hover) {
  .f-bottom-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}
.copyright {
  font-size: 0.7333333333rem;
  font-weight: 500;
  background-color: var(--color_secondary);
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.pagetop {
  position: absolute;
  bottom: 90px;
  right: 50px;
  z-index: 5;
}

.pagetop a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--color_secondary);
  width: 50px;
  height: 50px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  position: relative;
  z-index: 0;
  border-radius: 100px;
}

.pagetop a:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

@media (max-width: 800px) {
  .footer {
    padding: 50px 0 65px;
  }
  .f-contents {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  .f-logo {
    max-width: 200px;
    margin: 0 auto 30px;
  }
  .f-tel {
    font-size: 1.2rem;
  }
  .f-tel .link-tel {
    font-size: 1.7333333333rem;
  }
  .site-map {
    gap: 15px;
  }
  .f-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .pagetop {
    top: auto;
    bottom: 140px;
    right: 20px;
    width: 40px;
  }
}
.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  :root {
    --navi-background: #f5f5f5;
    --navi-border-color: #333;
    --navi-text-color: #333;
    --svg-stroke: #333;
    --menu-btn: #333;
  }
  .sp-navi {
    display: block;
  }
  .sp-navi-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--color_primary);
    -webkit-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
            box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    z-index: 10000;
  }
  .sp-navi-btns > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
  }
  .sp-navi-btns .item {
    font-size: 0.6666666667rem;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    border-right: 1px solid var(--color_white);
  }
  .sp-navi-btns .item:last-child {
    border-right: none;
  }
  .sp-navi-btns .item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--color_white);
    text-decoration: none;
    height: 100%;
    padding: 10px 0;
  }
  .sp-navi-btns .item .img {
    display: block;
  }
  .sp-navi-btns .item .img svg {
    -o-object-fit: cover;
    object-fit: cover;
    height: 20px;
    margin-bottom: 8px;
    stroke: var(--color_white);
  }
  .sp-navi-btns .item .img img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 20px;
    margin-bottom: 8px;
  }
  .sp-navi-btns .item .ttl {
    display: block;
  }
  .sp-menu-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 10px;
  }
  .sp-menu-btn .ttl {
    display: block;
    color: var(--navi-text-color);
    font-family: var(--navi-font);
    font-size: 0.6666666667rem;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }
  .sp-menu-btn span:not(.ttl) {
    background: var(--menu-btn);
    position: absolute;
    left: 50%;
    width: 22px;
    height: 1px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .sp-menu-btn span:not(.ttl):nth-of-type(1) {
    top: 20px;
  }
  .sp-menu-btn span:not(.ttl):nth-of-type(2) {
    top: 26px;
  }
  .sp-menu-btn span:not(.ttl):nth-of-type(3) {
    top: 32px;
  }
  .sp-menu-btn.is-open span:nth-of-type(1) {
    -webkit-transform: translate(-50%, 6px) rotate(-45deg);
            transform: translate(-50%, 6px) rotate(-45deg);
  }
  .sp-menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  .sp-menu-btn.is-open span:nth-of-type(3) {
    -webkit-transform: translate(-50%, -6px) rotate(45deg);
            transform: translate(-50%, -6px) rotate(45deg);
  }
  .sp-navi-drawer {
    pointer-events: none;
    visibility: hidden;
    background: var(--color_white);
    color: var(--color_black);
    font-size: 1rem;
    padding: 25px 25px 100px;
    position: fixed;
    inset: 0;
    -webkit-transform: translateX(60px);
            transform: translateX(60px);
    -webkit-transition: 0.5s var(--ease);
    transition: 0.5s var(--ease);
    opacity: 0;
    z-index: 1000;
  }
  .sp-navi-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    -webkit-transition-timing-function: var(--ease);
            transition-timing-function: var(--ease);
  }
  .sp-logo {
    max-width: 200px;
    margin-bottom: 30px;
  }
  .sp-navi-list {
    border-top: 1px solid var(--color_gray);
    font-weight: bold;
    line-height: 1.5;
  }
  .sp-navi-list > li {
    position: relative;
    border-bottom: 1px solid var(--color_gray);
  }
  .sp-navi-list > li > a {
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 25px 10px 0;
    position: relative;
    min-height: 50px;
  }
  .sp-navi-list > li > a::after {
    content: "";
    background-color: var(--color_primary);
    -webkit-mask: url(../images/share/sp_navi_arrow.svg) no-repeat center/contain;
    mask: url(../images/share/sp_navi_arrow.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 11px;
    height: 11px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .sp-details::details-content {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 15px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .sp-details[open]::details-content {
    background-color: rgba(0, 0, 0, 0.015);
    grid-template-rows: 1fr;
    padding: 15px;
  }
  .sp-details[open] .plus {
    rotate: 45deg;
  }
  .sp-details-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 30px 10px 0;
    position: relative;
    min-height: 50px;
    width: 100%;
  }
  .sp-details-btn .text {
    display: block;
  }
  .sp-details-btn .plus {
    display: block;
    background-color: var(--color_primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 20px;
    height: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform-origin: 50% 0;
            transform-origin: 50% 0;
  }
  .sp-details-btn .plus::after {
    content: "";
    background-color: var(--color_white);
    -webkit-mask: url(../images/share/sp_navi_plus.svg) no-repeat center/contain;
    mask: url(../images/share/sp_navi_plus.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .sp-sub-menu {
    display: grid;
    grid-gap: 5px;
    font-size: 0.9333333333rem;
  }
  .sp-sub-menu a {
    display: block;
    position: relative;
    padding-left: 20px;
  }
  .sp-sub-menu a::before {
    content: "";
    position: absolute;
    border-radius: 100%;
    background-color: var(--color_primary);
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.layout-sidebar {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-areas: "sidebar body";
  gap: 5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-inline: auto;
  max-width: 1200px;
}

.layout-sidebar .l-sidebar {
  grid-area: sidebar;
  position: sticky;
  top: 50px;
}

.layout-sidebar .l-label {
  border-bottom: 1px solid var(--color_border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.9333333333rem;
  line-height: 1;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.layout-sidebar .l-label [lang=en] {
  font-size: 1.1333333333rem;
}

.layout-sidebar .l-label .jp {
  font-size: 0.6666666667rem;
}

.layout-sidebar .l-body {
  grid-area: body;
}

@media (max-width: 800px) {
  .layout-sidebar {
    grid-template-columns: 1fr;
    grid-template-areas: "body" "sidebar";
    gap: 5rem;
    width: 100%;
  }
  .layout-sidebar .l-sidebar {
    position: static;
  }
}
/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 130px;
  padding-bottom: 21px;
}

.hero .wrapper {
  position: relative;
}

.hero .splide__slide img {
  width: 100%;
  height: 786px;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero .splide__pagination {
  display: none;
}

.hero .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.hero .splide__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 0 15px;
}

.hero-catch {
  position: absolute;
  left: 8%;
  bottom: 40%;
  font-family: var(--font_jp);
  font-size: 3.2rem;
  color: var(--color_white);
  text-shadow: 0 0 10px #000;
  line-height: 1.5;
  z-index: 5;
}

.hero-news {
  background-color: #fff;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 109px;
  max-width: 510px;
  margin: -130px 27px auto auto;
  padding: 15px 30px 20px 32px;
  line-height: 1;
  position: relative;
  z-index: 5;
}

.hero-news .l-ttl {
  text-align: center;
}

.hero-news .l-ttl [lang=en] {
  color: var(--color_primary);
  font-size: 1.7333333333rem;
  font-family: var(--font_en);
  line-height: 1.2;
  margin-bottom: 5px;
}

.hero-news .l-ttl .jp {
  font-size: 0.9333333333rem;
  font-family: var(--font_jp);
  line-height: 1.2;
  white-space: nowrap;
}

.hero-news .post-btn {
  position: absolute;
  top: 29px;
  right: 30px;
}

@media (max-width: 800px) {
  .hero {
    padding-top: 82px;
  }
  .hero .splide__slide img {
    height: 318px;
  }
  .hero-catch {
    left: 5%;
    font-size: 1.3333333333rem;
  }
  .hero-news {
    gap: 20px;
    max-width: 90%;
    margin: -30px auto auto;
    padding: 15px 20px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  }
  .hero-news .l-ttl [lang=en] {
    font-size: 1.6rem;
  }
  .hero-news .post-btn {
    top: 18px;
    right: 20px;
  }
}
/*------------
Components
--------------*/
.t-h2 {
  text-align: center;
  line-height: 1.3;
  margin-bottom: 80px;
}

.t-h2 [lang=en] {
  font-size: 2rem;
  font-family: var(--font_en);
  color: var(--color_primary);
  margin-bottom: 5px;
}

.t-h2 .jp {
  font-size: 1.1333333333rem;
  font-family: var(--font_jp);
  font-weight: 500;
}

@media (max-width: 800px) {
  .t-h2 {
    margin-bottom: 40px;
  }
  .t-h2 [lang=en] {
    font-size: 1.8666666667rem;
    margin-bottom: 0;
  }
  .t-h2 .jp {
    font-size: 1.0666666667rem;
  }
}
/*------------
Section
--------------*/
.t-news-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "ttl body" "btn body";
  gap: 0;
}

.t-news-layout .l-ttl {
  grid-area: ttl;
}

.t-news-layout .l-body {
  grid-area: body;
}

.t-news-layout .l-btn {
  grid-area: btn;
}

@media (max-width: 800px) {
  .t-news-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "ttl" "body" "btn";
    gap: 2.5rem;
  }
}
.post-top-news time {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.9333333333rem;
  font-family: var(--font_en);
  margin-bottom: 12px;
}

.post-top-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: 500;
}

@media (any-hover: hover) {
  .post-top-news a:hover .post-ttl {
    text-decoration: underline;
  }
}
@media (max-width: 800px) {
  .post-top-news time {
    font-size: 0.9333333333rem;
  }
  .post-top-news .post-ttl {
    -webkit-line-clamp: 2;
    font-size: 1rem;
    line-height: 1.5;
  }
}
.sec01 {
  padding: 98px 0 145px;
}

.sec01-boxlayout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35px 63px 35px 7%;
  border: 1px solid var(--color_primary);
  max-width: 868px;
  margin: 0 auto;
  position: relative;
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s var(--ease);
  transition: opacity 0.3s var(--ease);
}

.sec01-boxlayout::before {
  content: "";
  position: absolute;
  inset: -5px 5px 5px -5px;
  border: 1px solid var(--color_primary);
}

.sec01-boxlayout .l-ttl {
  font-size: 1.8rem;
  font-family: var(--font_jp);
  margin-bottom: 15px;
  line-height: 1.3;
}

.sec01-boxlayout .btn-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s var(--ease);
  transition: -webkit-transform 0.3s var(--ease);
  transition: transform 0.3s var(--ease);
  transition: transform 0.3s var(--ease), -webkit-transform 0.3s var(--ease);
}

@media (any-hover: hover) {
  .sec01-boxlayout:hover {
    opacity: 0.5;
  }
}
@media (max-width: 800px) {
  .sec01 {
    padding: 50px 0;
  }
  .sec01-boxlayout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px;
  }
  .sec01-boxlayout .l-ttl {
    font-size: 1.6rem;
  }
  .sec01-boxlayout .btn-arrow {
    justify-self: end;
  }
}
.sec02 {
  padding: 0 0 110px;
  position: relative;
}

.sec02::before {
  content: "";
  background-color: var(--color_tertiary);
  position: absolute;
  inset: 44% 0 0 0;
  z-index: -1;
}

.sec02-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: calc((100% - 1200px) / 2);
  gap: 7%;
}

.sec02-layout .l-img {
  overflow: hidden;
  width: calc(100% - 775px);
}

.sec02-layout .l-img img {
  width: 100%;
}

.sec02-layout .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding-right: 50px;
}

.sec02-layout .l-en {
  border-left: 1px solid var(--color_primary);
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
  padding-left: 8px;
  position: absolute;
  top: -10px;
  right: -35px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.sec02-layout .l-ttl {
  font-size: 2rem;
  font-family: var(--font_jp);
  line-height: 1.3;
  margin-bottom: 40px;
}

.sec02-layout .l-txt {
  margin-bottom: 55px;
  line-height: 2.3;
}

@media (max-width: 1500px) {
  .sec02-layout .l-txt {
    margin-bottom: 40px;
    line-height: 2;
  }
  .sec02-layout .l-en {
    top: 0;
  }
}
@media (max-width: 1320px) {
  .sec02-layout {
    gap: 5%;
  }
  .sec02-layout .l-img {
    width: 478px;
  }
  .sec02-layout .l-desc {
    padding-right: 80px;
  }
  .sec02-layout .l-en {
    right: 10px;
  }
}
@media (max-width: 1110px) {
  .sec02-layout .l-img {
    width: 430px;
  }
  .sec02-layout .l-ttl {
    margin-bottom: 30px;
  }
  .sec02-layout .l-txt {
    margin-bottom: 30px;
  }
}
@media (max-width: 800px) {
  .sec02 {
    padding: 50px 0;
  }
  .sec02::before {
    inset: 30% 0 0 0;
  }
  .sec02-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .sec02-layout .l-img {
    width: 100%;
  }
  .sec02-layout .l-desc {
    padding-right: 0;
    width: 90%;
    margin: 0 auto;
  }
  .sec02-layout .l-ttl {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  .sec02-layout .l-en {
    display: none;
  }
}
.sec03 {
  padding: 150px 0 50px;
}

.sec03-boxlayout {
  padding: 90px 7% 75px;
  background: var(--color_secondary);
  color: var(--color_white);
}

.sec03-boxlayout .inner {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.sec03-boxlayout .l-img {
  width: 55%;
  margin: 0 -10px 0 60px;
}

.sec03-boxlayout .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sec03-boxlayout .l-ttl {
  line-height: 1.3;
  margin-bottom: 40px;
}

.sec03-boxlayout .l-ttl [lang=en] {
  font-size: 2rem;
  font-family: var(--font_en);
  margin-bottom: 18px;
}

.sec03-boxlayout .l-ttl .jp {
  font-size: 1.8666666667rem;
  font-family: var(--font_jp);
  letter-spacing: 0.1em;
}

@media (max-width: 1475px) {
  .sec03-boxlayout {
    padding: 75px 7%;
  }
  .sec03-boxlayout .inner {
    margin-bottom: 30px;
  }
  .sec03-boxlayout .l-img {
    width: 50%;
    margin: 0 0px 0 60px;
  }
}
@media (max-width: 1330px) {
  .sec03-boxlayout .l-img {
    width: 45%;
  }
}
@media (max-width: 1210px) {
  .sec03-boxlayout {
    padding: 60px 7%;
  }
  .sec03-boxlayout .l-ttl {
    margin-bottom: 30px;
  }
  .sec03-boxlayout .l-ttl .jp {
    font-size: 1.7333333333rem;
  }
}
@media (max-width: 1130px) {
  .sec03-boxlayout {
    padding: 30px 20px;
  }
  .sec03-boxlayout .l-ttl [lang=en] {
    font-size: 1.7333333333rem;
    margin-bottom: 14px;
  }
  .sec03-boxlayout .l-ttl .jp {
    font-size: 1.6rem;
  }
}
@media (max-width: 800px) {
  .sec03 {
    padding: 50px 0;
  }
  .sec03-boxlayout .inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sec03-boxlayout .l-img {
    width: 100%;
    margin: 0;
  }
  .sec03-boxlayout .l-ttl {
    margin-bottom: 20px;
  }
  .sec03-boxlayout .l-ttl [lang=en] {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  .sec03-boxlayout .l-ttl .jp {
    font-size: 1.4666666667rem;
  }
}
.sec04 {
  padding: 100px 0 150px;
}

.sec04-cardlayout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 65px;
}

.sec04-cardlayout .l-img {
  width: 100%;
}

.sec04-cardlayout .l-desc {
  background: rgba(231, 237, 235, 0.8);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 45px 50px 35px;
  max-width: 410px;
  margin: -45px auto 0;
  position: relative;
  z-index: 2;
}

.sec04-cardlayout .l-ttl {
  font-size: 1.8666666667rem;
  font-family: var(--font_jp);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 0.1em;
}

.sec04-cardlayout .l-txt {
  margin-bottom: 35px;
}

@media (max-width: 800px) {
  .sec04 {
    padding: 50px 0;
  }
  .sec04-cardlayout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sec04-cardlayout .l-desc {
    padding: 30px 20px;
    max-width: 90%;
  }
  .sec04-cardlayout .l-ttl {
    font-size: 1.4666666667rem;
    margin-bottom: 15px;
  }
  .sec04-cardlayout .l-txt {
    margin-bottom: 25px;
  }
}
.sec05 {
  padding: 130px 0;
  background-color: var(--color_tertiary);
}

.sec05 .t-h2 {
  margin-bottom: 75px;
}

.sec05-layout {
  display: grid;
  gap: 9%;
  grid-template-columns: 513px 1fr;
  margin-bottom: 80px;
}

.sec05-table {
  width: 100%;
}

.sec05-table tr {
  border-bottom: 1px solid var(--color_border);
}

.sec05-table th,
.sec05-table td {
  padding: 16px 0;
  vertical-align: top;
}

.sec05-table tr:first-child th,
.sec05-table tr:first-child td {
  padding: 0 0 13px;
}

.sec05-table th {
  width: 165px;
  font-family: var(--font_jp_boid);
  text-align: left;
}

.sec05-cardlayout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.sec05-cardlayout a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 95px 30px 82px;
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.sec05-cardlayout a::before {
  content: "";
  background-color: oklch(from #696969 l c h/0.56);
  position: absolute;
  inset: 0;
  z-index: -1;
}

.sec05-cardlayout a.rate {
  background: url(../images/sec05_img01.jpg) no-repeat center/cover;
}

.sec05-cardlayout a.faq {
  background: url(../images/sec05_img02.jpg) no-repeat center/cover;
}

.sec05-cardlayout a::after {
  content: "";
  width: 42px;
  height: 15px;
  background: url(../images/share/icon-arrow01_w.svg) no-repeat center/contain;
  position: absolute;
  right: 15px;
  bottom: 15px;
}

@media (any-hover: hover) {
  .sec05-cardlayout a:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.sec05-cardlayout .card-ttl {
  text-align: center;
  color: var(--color_white);
}

.sec05-cardlayout .card-ttl .jp {
  font-size: 1.8666666667rem;
  font-family: var(--font_jp);
  line-height: 1.3;
  margin-bottom: 7px;
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
}

.sec05-cardlayout .card-ttl .jp::after {
  content: "";
  display: block;
  background: var(--color_white);
  width: 24px;
  height: 1px;
  margin: 10px auto 0;
  line-height: 1.3;
}

.sec05-cardlayout .card-ttl [lang=en] {
  font-size: 1.2666666667rem;
  font-family: var(--font_en);
}

@media (max-width: 800px) {
  .sec05 {
    padding: 50px 0;
  }
  .sec05 .t-h2 {
    margin-bottom: 40px;
  }
  .sec05-layout {
    gap: 20px;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  .sec05-table th {
    width: 90px;
  }
  .sec05-cardlayout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sec05-cardlayout a {
    padding: 30px 20px;
  }
  .sec05-cardlayout .card-ttl .jp {
    font-size: 1.6rem;
  }
}
.sec06 {
  padding: 150px 0 50px;
}

.t-blog-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "ttl body" "btn body";
  gap: 0;
}

.t-blog-layout .l-ttl {
  grid-area: ttl;
  line-height: 1.2;
}

.t-blog-layout .l-ttl [lang=en] {
  font-size: 1.3333333333rem;
  font-family: var(--font_en);
  color: var(--color_primary);
  margin-bottom: 25px;
}

.t-blog-layout .l-ttl .jp {
  font-size: 2.3333333333rem;
}

.t-blog-layout .l-body {
  grid-area: body;
}

.t-blog-layout .l-btn {
  grid-area: btn;
  position: relative;
  top: 30px;
}

.t-blog-layout .btn-more {
  min-width: 170px;
}

.post-top-blog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 230px));
  gap: 16px;
}

.post-top-blog .post-img {
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--color_border);
}

.post-top-blog .post-img img {
  aspect-ratio: 7/5;
  width: 100%;
  height: 170px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
}

.post-top-blog time {
  display: inline-block;
  font-size: 0.9333333333rem;
  font-family: var(--font_en);
  line-height: 1;
  margin-bottom: 15px;
}

.post-top-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 0.9333333333rem;
  font-family: var(--font_jp_right);
  line-height: 1.5;
  margin-bottom: 20px;
}

.post-top-blog .category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.post-top-blog .category {
  display: inline-block;
  line-height: 1;
}

.post-top-blog .category + .category {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid var(--color_border);
}

@media (any-hover: hover) {
  .post-top-blog .post-img img:hover {
    scale: 1.1;
  }
}
@media (max-width: 800px) {
  .sec06 {
    padding: 50px 0;
  }
  .t-blog-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "ttl" "body" "btn";
    gap: 30px;
  }
  .t-blog-layout .l-ttl [lang=en] {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  .t-blog-layout .l-ttl .jp {
    font-size: 1.7333333333rem;
  }
  .t-blog-layout .l-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    top: 0;
  }
  .post-top-blog {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--color_border);
  }
  .post-top-blog a {
    border-bottom: 1px solid var(--color_border);
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 10px 0;
  }
  .post-top-blog .post-img {
    margin-bottom: 0;
  }
  .post-top-blog .post-img img {
    height: auto;
  }
  .post-top-blog .post-desc {
    line-height: 1;
  }
  .post-top-blog time {
    text-box: trim-both cap alphabetic;
    font-size: 0.7333333333rem;
    margin-bottom: 5px;
  }
  .post-top-blog .post-ttl {
    font-size: 0.9333333333rem;
    margin-bottom: 10px;
  }
  .post-top-blog .category {
    font-size: 0.6666666667rem;
  }
}
.sec07 {
  padding: 100px 0 150px;
}

.sec07-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-right: calc((100% - 1200px) / 2);
}

.sec07-layout .l-img {
  overflow: hidden;
  width: calc(100% - 600px);
}

.sec07-layout .l-img img {
  width: 100%;
}

.sec07-layout .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: rgba(231, 237, 235, 0.8);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px 70px 60px;
  margin: 90px 0 0 -120px;
  position: relative;
  max-width: 630px;
}

.sec07-layout .l-ttl {
  line-height: 1.3;
  margin-bottom: 30px;
}

.sec07-layout .l-ttl [lang=en] {
  font-size: 2rem;
  font-family: var(--font_en);
  color: var(--color_primary);
  margin-bottom: 15px;
}

.sec07-layout .l-ttl .jp {
  font-size: 1.8666666667rem;
  font-family: var(--font_jp);
  letter-spacing: 0.1em;
}

.sec07-layout .l-txt {
  margin-bottom: 35px;
}

@media (max-width: 800px) {
  .sec07 {
    padding: 50px 0 100px;
  }
  .sec07-layout {
    display: block;
    padding-right: 0;
  }
  .sec07-layout .l-img {
    width: 100%;
  }
  .sec07-layout .l-img img {
    margin-right: 15px;
  }
  .sec07-layout .l-desc {
    padding: 40px 7vw;
    margin: -30px 0 0;
    max-width: 90%;
  }
  .sec07-layout .l-ttl {
    margin-bottom: 20px;
  }
  .sec07-layout .l-ttl [lang=en] {
    font-size: 1.3333333333rem;
    margin-bottom: 5px;
  }
  .sec07-layout .l-ttl .jp {
    font-size: 1.6rem;
  }
  .sec07-layout .l-txt {
    margin-bottom: 30px;
  }
}
.sec08 {
  background-color: var(--color_secondary);
}

.sec08 iframe {
  vertical-align: bottom;
  height: 360px;
  width: 100%;
}

.sec08-layout {
  padding: 60px 0 85px;
}

.sec08-layout .sec08-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: var(--color_white);
  margin-bottom: 50px;
}

.sec08-layout .l-desc {
  padding: 0 40px;
}

.sec08-layout .l-desc + .l-desc {
  border-left: 1px solid #AFC1AF;
}

.sec08-layout .l-ttl {
  font-size: 1.3333333333rem;
  font-family: var(--font_jp);
  line-height: 1.3;
  margin-bottom: 25px;
}

.sec08-layout .l-list li {
  position: relative;
  padding-left: 25px;
}

.sec08-layout .l-list li::before {
  content: "";
  position: absolute;
  background: url(../images/list_img.svg) no-repeat center/contain;
  width: 12px;
  height: 12px;
  top: 10px;
  left: 0;
}

@media (max-width: 800px) {
  .sec08-layout {
    padding: 40px 0;
  }
  .sec08-layout .sec08-inner {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }
  .sec08-layout .l-desc {
    padding: 0;
    margin: 0;
  }
  .sec08-layout .l-desc:first-child {
    margin-bottom: 30px;
  }
  .sec08-layout .l-desc + .l-desc {
    border-left: none;
    border-top: 1px solid #AFC1AF;
    padding-top: 30px;
  }
}
/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
  -webkit-transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, transform 1s;
  transition: opacity 1.2s, transform 1s, -webkit-transform 1s;
  opacity: 0;
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../images/under/page-header_bg.jpg) no-repeat center/cover;
  width: 100%;
  height: 500px;
  color: var(--color_white);
  padding: 0 5%;
  position: relative;
  padding-top: 130px;
}

.page-ttl {
  line-height: 1.5;
  font-size: 3.2rem;
  font-family: var(--font_jp);
  text-shadow: 0 0 10px #000000;
}

.breadcrumb {
  position: relative;
  z-index: 1;
}

.breadcrumb ul {
  font-size: 0.8666666667rem;
  padding: 5px 5vw;
}

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li + li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

@media (max-width: 800px) {
  .page-header {
    overflow: hidden;
    height: 280px;
    padding-top: 82px;
  }
  .page-ttl {
    font-size: 2rem;
  }
}
.u-h2 {
  margin-bottom: 50px;
  font-size: 2rem;
  position: relative;
  text-align: center;
  line-height: 1.3;
}

.u-h2::after {
  content: "";
  display: block;
  background: var(--color_primary);
  width: 60px;
  height: 1px;
  margin: 10px auto 0;
}

.u-h3 {
  margin-bottom: 30px;
  font-size: 1.6666666667rem;
  line-height: 1.3;
  border-bottom: 1px solid var(--color_primary);
  padding-bottom: 10px;
}

.u-h302 {
  background-color: var(--color_tertiary);
  font-size: 1.5333333333rem;
  padding: 5px 15px;
  margin-bottom: 25px;
}

.u-h4 {
  margin-bottom: 20px;
  font-size: 1.3333333333rem;
  line-height: 1.3;
  padding-left: 15px;
  position: relative;
}

.u-h4::before {
  content: "";
  background: var(--color_primary);
  width: 4px;
  height: 70%;
  position: absolute;
  left: 0;
  top: 5px;
}

@media (max-width: 800px) {
  .u-h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
  .u-h3 {
    margin-bottom: 20px;
    font-size: 1.4666666667rem;
  }
  .u-h302 {
    font-size: 1.3333333333rem;
    margin-bottom: 20px;
  }
  .u-h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
}
.tall {
  padding: 60px 0;
}

.tall:first-child {
  padding-top: 100px;
}

.tall:last-child {
  padding-bottom: 100px;
}

.short + .short {
  margin-top: 60px;
}

.x-short + .x-short {
  margin-top: 30px;
}

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall {
    padding: 30px 0;
  }
  .tall:first-child {
    padding-top: 60px;
  }
  .tall:last-child {
    padding-bottom: 60px;
  }
  .short + .short {
    margin-top: 30px;
  }
  .x-short + .x-short {
    margin-top: 15px;
  }
}
.list-disc {
  display: grid;
  grid-gap: 5px;
}

.list-disc li {
  list-style: disc;
  margin-left: 1.5em;
  line-height: 1.5;
}

.list-disc li::marker {
  color: var(--color_primary);
  font-size: 1rem;
}

.list-disc.center {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.list-check {
  display: grid;
  grid-gap: 5px;
}

.list-check li {
  position: relative;
  padding-left: 25px;
}

.list-check li::before {
  content: "";
  width: 15px;
  height: 9px;
  border-left: 3px solid var(--color_primary);
  border-bottom: 3px solid var(--color_primary);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 9px;
  left: 0;
}

.list-num {
  counter-reset: number;
  display: grid;
  grid-gap: 5px;
}

.list-num > li {
  padding-left: 30px;
  position: relative;
}

.list-num > li:before {
  background-color: var(--color_primary);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 0.7333333333rem;
  position: absolute;
  top: 6px;
  left: 0;
  line-height: 20px;
  text-align: center;
  width: 20px;
  height: 20px;
}

.list-price > li + li {
  margin-top: 20px;
}

.list-price .list-intro {
  border-bottom: 1px dotted #c4cfc9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  grid-gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0 0 5px;
}

.list-price .list-desc {
  color: #747474;
  font-size: 13px;
  margin-top: 5px;
}

.list-anchor-link {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
}

.list-anchor-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color_tertiary);
  border-radius: 3px;
  font-family: var(--font_jp);
  font-size: 0.9333333333rem;
  line-height: 1.5;
  position: relative;
  padding: 0 35px 0 15px;
  min-height: 60px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.list-anchor-link a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color_primary);
  border-bottom: 2px solid var(--color_primary);
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.list-anchor-link a:hover {
  opacity: 0.7;
}

@media (max-width: 800px) {
  .list-num > li:before {
    top: 3px;
  }
  .list-anchor-link {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .list-anchor-link a {
    font-size: 0.8666666667rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 8px 8px 20px;
    min-height: 0;
    height: 100%;
  }
  .list-anchor-link a::after {
    top: auto;
    bottom: 10px;
    right: 50%;
    -webkit-transform: translateX(50%) rotate(45deg);
            transform: translateX(50%) rotate(45deg);
  }
}
.list-box .list-num {
  border: 1px solid var(--color_primary);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 15px;
}

.list-box .list-num .num {
  color: var(--color_primary);
  font-size: 3.3333333333rem;
  font-family: var(--font_en);
  display: block;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

.list-box .list-num .text {
  display: block;
  line-height: 1.3;
}

.list-box .list-num + .list-num {
  margin-top: 15px;
}

.dl-style01 {
  display: grid;
  grid-template-columns: 25% 75%;
  grid-gap: 10px 0;
}

.dl-style01 dt {
  background: var(--color_primary);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.1333333333rem;
  padding: 20px;
}

.dl-style01 dd {
  background: var(--color_tertiary);
  padding: 20px;
}

.dl-style02 {
  display: grid;
  grid-template-columns: 82px 1fr;
  grid-gap: 10px 20px;
  line-height: 1.5;
}

.dl-style02 > dt {
  background: var(--color_primary);
  border-radius: 5px;
  color: #fff;
  font-size: 0.8666666667rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  height: 27px;
}

@media (max-width: 800px) {
  .dl-style01 {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .dl-style01 dt {
    padding: 15px;
  }
  .dl-style01 dd {
    padding: 15px;
  }
  .dl-style01 dd + dt {
    margin-top: 15px;
  }
}
.table-style01 th,
.table-style01 td {
  border: 1px solid var(--color_border);
  padding: 15px;
  vertical-align: middle;
}

.table-style01 th {
  background-color: var(--color_primary);
  color: var(--color_white);
}

.table-style01 .bg01 {
  background-color: var(--color_tertiary);
  color: var(--color_txt);
}

.table-scroll-txt {
  display: none;
}

@media (max-width: 800px) {
  .table-style01 th,
  .table-style01 td {
    padding: 10px;
    line-height: 1.5;
  }
  .table-style01.table-sp-col1 {
    width: 100%;
    table-layout: fixed;
  }
  .table-style01.table-sp-col1 colgroup {
    display: none;
  }
  .table-style01.table-sp-col1 th,
  .table-style01.table-sp-col1 td {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
  }
  .table-scroll-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
  }
  .table-scroll-txt::before {
    content: "";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat center/contain;
    width: 30px;
    height: 24.5px;
    margin-right: 10px;
  }
  .table-scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }
  .table-scroll::-webkit-scrollbar {
    height: 5px;
  }
  .table-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }
  .table-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }
  .table-scroll table {
    margin-bottom: 10px !important;
    width: 150%;
  }
}
/*------------
カード
--------------*/
.list-card01.col2,
.list-card02.col2 {
  grid-gap: 40px;
}

.list-card01.col3,
.list-card02.col3 {
  grid-gap: 30px;
}

.list-card01.col4,
.list-card02.col4 {
  grid-gap: 20px;
}

.list-card01 {
  display: grid;
}

.list-card01 a {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid var(--color_primary);
  padding: 4% 4% 5%;
  position: relative;
  min-height: 649px;
}

.list-card01 a::before {
  content: "";
  border-style: solid;
  border-width: 0 0 30px 30px;
  border-color: transparent transparent var(--color_primary) transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}

.list-card01 .list-img {
  text-align: center;
  margin-bottom: 20px;
}

.list-card01 .list-ttl {
  text-align: center;
  font-size: 1.3333333333rem;
  font-family: var(--font_jp);
  margin-bottom: 10px;
  line-height: 1.5;
}

.list-card01 .list-btn {
  text-align: center;
  margin-top: auto;
  padding-top: 15px;
}

.list-card01 .btn-more {
  min-width: 0;
  width: 100%;
}

.list-card02 {
  display: grid;
}

.list-card02 > li {
  background: var(--color_tertiary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8%;
}

.list-card02 .list-img,
.list-card02 .youtube {
  text-align: center;
  margin-bottom: 15px;
}

.list-card02 .num {
  background: var(--color_primary);
  border-radius: 50px;
  display: table;
  color: #fff;
  font-size: 0.7333333333rem;
  line-height: 25px;
  padding: 0 20px;
  margin: 0 auto 10px;
}

.list-card02 .list-ttl {
  font-size: 1.1333333333rem;
  font-family: var(--font_jp);
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.5;
}

.list-card02 .list-desc p {
  line-height: 1.6;
}

.list-card02 .list-btn {
  text-align: center;
  margin-top: auto;
  padding-top: 15px;
}

.list-card02 .btn-more {
  min-width: 0;
  width: 100%;
}

.list-card03 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.list-card03 > li {
  min-height: 160px;
}

.list-card03 a {
  background: var(--color_tertiary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 30px 20px 30px 30px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.list-card03 a::after {
  content: "";
  width: 75px;
  height: 13px;
  background: url(../images/under/list-card03-arrow.svg) no-repeat center/contain;
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.list-card03 a:hover {
  opacity: 0.5;
}

.list-card03 .card-ttl-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 40px;
}

.list-card03 .card-ttl-wrap .card-ttl {
  font-size: 1.3333333333rem;
  font-family: var(--font_jp);
  line-height: 1.5;
}

@media (max-width: 800px) {
  .list-card03 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .list-card03 > li {
    min-height: auto;
  }
  .list-card03 a {
    padding: 30px 20px;
  }
}
/*------------
ボックス
--------------*/
.box-style01 {
  background: #fff;
  border: 2px solid var(--color_border);
  padding: 5%;
}

.box-style01.bg {
  background: var(--color_tertiary);
}

.box-style01 .box-ttl {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 25px;
}

.box-style01 .box-ttl02 {
  font-size: 1.3333333333rem;
  margin-bottom: 10px;
}

.box-style02 {
  background: var(--color_primary);
  padding: 5%;
  color: #fff;
}

.box-style02 .box-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  font-size: 1.3333333333rem;
  font-family: var(--font_jp);
  margin-bottom: 15px;
}

.box-style02 .box-ttl img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.box-style02 .list-disc li::marker {
  color: var(--color_white);
}

.box-style02 .list-check li::before {
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.box-style03 {
  background: var(--color_white);
  padding: 70px 5% 40px;
  border: 1px solid var(--color_primary);
  position: relative;
  -webkit-box-shadow: 20px 20px 0 var(--color_tertiary);
          box-shadow: 20px 20px 0 var(--color_tertiary);
}

.box-style03 .label {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color_primary);
  color: #fff;
  padding: 15px;
  white-space: nowrap;
  font-family: var(--font_en);
  font-size: 2.4666666667rem;
  line-height: 1;
  width: 190px;
  height: 68px;
  text-align: center;
}

.box-style03 .box-ttl {
  font-size: 1.6666666667rem;
  font-family: var(--font_jp);
  margin-bottom: 50px;
  text-align: center;
  line-height: 1.3;
}

.box-style03 .box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5%;
}

.box-style03 .box-wrap .box-img {
  width: 41%;
}

.box-style03 .box-wrap .box-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 800px) {
  .list-card01.col2,
  .list-card01.col3,
  .list-card01.col4,
  .list-card02.col2,
  .list-card02.col3,
  .list-card02.col4 {
    grid-gap: 15px;
  }
  .list-card01 .list-img {
    margin-bottom: 15px;
  }
  .list-card03 {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
  }
  .list-card03 > li {
    min-height: auto;
  }
  .list-card03 a {
    padding: 20px;
  }
  .list-card03 .card-ttl-wrap {
    gap: 20px;
  }
  .list-card03 .card-ttl-wrap img {
    width: 100px;
    height: 100px;
  }
  .list-card03 .card-ttl-wrap .card-ttl {
    font-size: 1.5rem;
  }
  .box-style01 {
    padding: 20px;
  }
  .box-style01 .box-ttl {
    font-size: 1.3333333333rem;
    margin-bottom: 15px;
  }
  .box-style01 .box-ttl02 {
    font-size: 1.3333333333rem;
  }
  .box-style02 {
    padding: 20px;
  }
  .box-style03 {
    padding: 80px 20px 30px;
    -webkit-box-shadow: 10px 10px 0 var(--color_tertiary);
            box-shadow: 10px 10px 0 var(--color_tertiary);
  }
  .box-style03 .label {
    font-size: 1.8666666667rem;
    width: 150px;
    height: 55px;
  }
  .box-style03 .box-ttl {
    font-size: 1.4666666667rem;
    margin-bottom: 20px;
  }
}
.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%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.under-slider01 .splide__arrow--prev {
  background: url(../images/share/splide_prev.svg) no-repeat center/auto 25px;
  left: calc((100% - 875px) / 2);
}

.under-slider01 .splide__arrow--next {
  background: url(../images/share/splide_next.svg) no-repeat center/auto 25px;
  right: calc((100% - 875px) / 2);
}

.under-slider01 .splide__slide img {
  width: 100%;
}

.under-slider01 .item-desc {
  margin-top: 15px;
  font-size: 0.9333333333rem;
  line-height: 1.5;
}

.under-slider01 .item-ttl {
  font-size: 1.0666666667rem;
  margin-bottom: 5px;
}

.under-slider02 .item-img {
  position: relative;
}

.under-slider02 figcaption {
  background: #fff;
  font-size: 0.7333333333rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  padding: 3px 5px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.under-slider02 .splide__pagination {
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.youtube iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}

.google-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 450px;
}

@media (max-width: 800px) {
  .google-map iframe {
    height: 300px;
  }
}
/*------------
レイアウト
--------------*/
.l-imgR,
.l-imgL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5%;
}

.l-imgR .l-img,
.l-imgL .l-img {
  width: 40%;
}

.l-imgR .l-img.small,
.l-imgL .l-img.small {
  width: 30%;
}

.l-imgR .l-desc,
.l-imgL .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-imgR {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.layout-style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.layout-style .l-img {
  position: relative;
  width: 45%;
  z-index: 1;
}

.layout-style .l-desc {
  background: var(--color_tertiary);
  padding: 55px 55px 55px 150px;
  margin: 50px 0 0 -100px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.layout-style.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.layout-style.reverse .l-desc {
  padding: 55px 150px 55px 55px;
  margin: 50px -100px 0 0;
}

.layout-style .l-num {
  display: inline-block;
  font-family: var(--font_en);
  font-size: 1.6666666667rem;
  color: var(--color_primary);
  line-height: 1;
  margin-bottom: 15px;
}

.layout-style .l-ttl {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.layout-style .l-sub-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.layout-style .l-sub-ttl::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  background: var(--color_primary);
  width: 30px;
  height: 2px;
}

.staff-layout .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 8%;
}

.staff-layout .l-img {
  width: 42%;
}

.staff-layout .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.staff-layout .job {
  font-weight: bold;
  margin-bottom: 25px;
}

.staff-layout .l-ttl {
  color: var(--color_primary);
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  line-height: 1;
}

.staff-layout .name {
  font-size: 1.6666666667rem;
}

.staff-layout .kana {
  color: #ccc;
  font-size: 0.8666666667rem;
  font-family: var(--font_en);
}

.card-profile {
  margin-top: 50px;
}

.card-profile {
  font-size: 0.9333333333rem;
  background-color: var(--color_tertiary);
  padding: 30px;
}

.card-profile .card-ttl {
  color: var(--color_primary);
  border-bottom: 1px dashed var(--color_primary);
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.dl-career {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 12px 0;
  line-height: 1.5;
}

.flow-style {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
}

.flow-style > li {
  background-color: var(--color_tertiary);
  padding: 25px;
  position: relative;
}

.flow-style > li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent var(--color_secondary);
  position: absolute;
  top: 50%;
  right: -21px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flow-style .flow-num {
  font-size: 1.6666666667rem;
  font-family: var(--font_en);
  color: var(--color_primary);
  line-height: 1;
  position: absolute;
  top: -15px;
  left: 30px;
}

.flow-style .flow-img {
  margin-bottom: 15px;
}

.flow-style .flow-ttl {
  font-size: 1.1333333333rem;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .l-imgR,
  .l-imgL {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .l-imgR .l-img,
  .l-imgL .l-img {
    text-align: center;
    width: 100%;
  }
  .l-imgR .l-img.small,
  .l-imgL .l-img.small {
    width: 100%;
  }
  .l-imgR .l-desc,
  .l-imgL .l-desc {
    width: 100%;
    min-width: 0;
  }
  .layout-style {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .layout-style .l-img {
    width: 100%;
  }
  .layout-style .l-desc {
    padding: 120px 5vw 30px;
    margin: -80px -5vw 0;
  }
  .layout-style.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .layout-style.reverse .l-desc {
    padding: 120px 5vw 30px;
    margin: -80px -5vw 0;
  }
  .layout-style .l-num {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .layout-style .l-ttl {
    font-size: 1.4666666667rem;
    margin-bottom: 10px;
  }
  .layout-style .l-sub-ttl {
    gap: 15px;
    font-size: 1.1333333333rem;
    margin-bottom: 15px;
  }
  .layout-style .l-sub-ttl::before {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    width: 20px;
  }
  .staff-layout .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .staff-layout .l-img {
    width: auto;
    max-width: 300px;
    margin: 0 auto;
  }
  .staff-layout .job {
    margin-bottom: 5px;
  }
  .staff-layout .name {
    font-size: 1.4666666667rem;
  }
  .staff-layout .kana {
    font-size: 0.8rem;
  }
  .staff-layout .card-profile {
    margin-top: 30px;
  }
  .card-profile {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .card-profile .item {
    padding: 20px;
  }
  .flow-style {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .flow-style > li:not(:last-child)::after {
    top: auto;
    bottom: -28px;
    right: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
  .list-box .list-num {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .list-box .list-num .num {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    white-space: nowrap;
  }
  .list-box .list-num .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}
.faq-style {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

.faq-style .item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-style dt {
  cursor: pointer;
  padding: 18px 50px;
  position: relative;
}

.faq-style dt .faq-icon {
  top: 15px;
  left: 0;
  font-style: normal;
  font-family: var(--font_en);
}

.faq-style dd {
  display: none;
  padding: 0 50px 30px;
  position: relative;
}

.faq-style dd .faq-icon {
  border: 1px solid var(--color_secondary);
  background-color: var(--color_secondary);
  color: #fff;
  top: 0;
  left: 0;
  font-style: normal;
  font-family: var(--font_en);
}

.faq-style .faq-ttl {
  font-weight: bold;
}

.faq-style .faq-icon {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  color: #333;
  font-size: 1rem;
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.faq-style .faq-open-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 15px;
  top: 11px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.faq-style .faq-open-icon::before,
.faq-style .faq-open-icon::after {
  content: "";
  display: block;
  background: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.faq-style .faq-open-icon::before {
  width: 16px;
  height: 2px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.faq-style .faq-open-icon::after {
  width: 16px;
  height: 2px;
  -webkit-transform: rotate(90deg) translateX(-50%);
          transform: rotate(90deg) translateX(-50%);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.faq-style .item > dt:hover .faq-icon {
  background-color: var(--color_primary);
  color: #fff;
}

.faq-style .faq-inner {
  padding-top: 5px;
}

.faq-style .is-open .faq-icon {
  background-color: var(--color_primary);
  color: #fff;
}

.faq-style .is-open .faq-open-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-style .is-open .faq-open-icon::after {
  opacity: 0;
}

@media (max-width: 800px) {
  .faq-style {
    line-height: 1.5;
  }
  .faq-style dt {
    padding: 18px 30px 18px 50px;
  }
  .faq-style dt .faq-icon {
    top: 12px;
  }
  .faq-style dd {
    padding: 0 50px 30px;
  }
  .faq-style .faq-open-icon {
    right: 0;
    top: 7px;
  }
}
/*------------
Add
--------------*/
.privacy-ttl {
  font-size: 1.3333333333rem;
  margin-bottom: 15px;
}

.dl-privacy {
  display: grid;
  gap: 3rem;
}

.dl-privacy dt {
  border-top: 1px solid var(--color_border);
  font-size: 1.1333333333rem;
  padding-top: 25px;
  margin-bottom: 15px;
  position: relative;
}

.dl-privacy dd {
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}

/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

hr {
  max-width: 1024px;
  margin: 50px auto;
}

.fade {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

@media (any-hover: hover) {
  .fade:hover {
    opacity: 0.5;
  }
}
.fs11 {
  font-size: 0.7333333333rem;
}

.fs12 {
  font-size: 0.8rem;
}

.fs13 {
  font-size: 0.8666666667rem;
}

.fs14 {
  font-size: 0.9333333333rem;
}

.bold,
.strong {
  font-weight: bold;
}

.red {
  color: #F44336;
}

.green{
  color: #006400;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, var(--color_tertiary)));
  background: linear-gradient(transparent 50%, var(--color_tertiary) 50%);
}

.notice {
  font-size: 0.8666666667rem;
  text-indent: -1em;
  padding-left: 1em;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mbXS {
  margin-bottom: 5px !important;
}

.mbS {
  margin-bottom: 15px !important;
}

.mbM {
  margin-bottom: 30px !important;
}

.mbXM {
  margin-bottom: 45px;
}

.mbL {
  margin-bottom: 60px;
}

.mbXL {
  margin-bottom: 90px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.grid {
  display: grid;
}

.col2 {
  grid-template-columns: repeat(2, 1fr);
}

.col3 {
  grid-template-columns: repeat(3, 1fr);
}

.col4 {
  grid-template-columns: repeat(4, 1fr);
}

.gap0 {
  grid-gap: 0;
}

.gapXS {
  grid-gap: 10px;
}

.gapS {
  grid-gap: 15px;
}

.gapM {
  grid-gap: 30px;
}

.gapXM {
  grid-gap: 45px;
}

.gapL {
  grid-gap: 60px;
}

.gapXL {
  grid-gap: 90px;
}

@media (max-width: 800px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .sp-tac {
    text-align: center;
  }
  .sp-tar {
    text-align: right;
  }
  .sp-tal {
    text-align: left;
  }
  .mbS {
    margin-bottom: 5px;
  }
  .mbM {
    margin-bottom: 15px;
  }
  .mbXM {
    margin-bottom: 30px;
  }
  .mbL {
    margin-bottom: 45px;
  }
  .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);
  }
  .gapXS {
    grid-gap: 5px;
  }
  .gapS {
    grid-gap: 10px;
  }
  .gapM {
    grid-gap: 15px;
  }
  .gapXM {
    grid-gap: 30px;
  }
  .gapL {
    grid-gap: 45px;
  }
  .gapXL {
    grid-gap: 60px;
  }
}
/*------------
splide
-------------*/
.splide__container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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 {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
          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;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-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 {
  -webkit-transform: scaleX(-1);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  height: 8px;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #006400;
  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 {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.splide__toggle {
  cursor: pointer;
  background: #ccc;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  height: 20px;
  width: 20px;
}

.splide__toggle:hover {
  background: #D3D3D3;
}

.splide__toggle svg {
  fill: #fff;
  -webkit-transition: fill 0.2s ease;
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

.splide__toggle:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}
