@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #535353;
  --color_link: #214E45;
  --color_border: #D9D9D9;
  --color_primary: #214E45;
  --color_secondary: #F0EFE8;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
}

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

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

:root {
  --font_base: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_en: "Zen Kaku Gothic New", sans-serif;
  --font_weight: normal;
  --font_size: rem(16);
  --line_height: 2.0;
  --letter_spacing: .05em;
}

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

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

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

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

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

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

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

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

sup {
  vertical-align: text-top;
  font-size: 0.65em;
  line-height: 1;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.65em;
  line-height: 1;
}

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

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

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

::selection {
  background: #d4dcd6;
}

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

span,
small,
em,
time,
i {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: 0.2em;
}

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

th,
dt {
  font-weight: 500;
}

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

@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.ultra-wide02 {
  max-width: 1562px;
}

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

/*-----------------------------------------------------------
診療時間
-----------------------------------------------------------*/
.time-table {
  text-align: center;
  overflow: hidden;
  margin-bottom: 10px;
}

.time-table-head {
  color: #fff;
}

.time-table-head.black {
  color: var(--color_text);
}

.time-table-head .item {
  padding: 10px 0;
  font-size: 0.75rem;
}

.time-table-head .item:first-child {
  letter-spacing: 0;
  font-size: 0.875rem;
}

.time-table-body {
  border-top: 1px solid #fff;
}

.time-table-body.black {
  border-top: 1px solid #535353;
}

.time-table-body .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  font-size: 0.75rem;
}

.time-table-body .item:first-child {
  letter-spacing: 0.05em;
  font-size: 0.9375rem;
}

.time-table-head,
.time-table-body {
  display: grid;
  grid-template-columns: 165px repeat(7, 1fr);
}

.time-table-head .item,
.time-table-body .item {
  border-right: 1px solid #fff;
}

.time-table-head .item.black,
.time-table-body .item.black {
  border-right: 1px solid #535353;
}

.time-table-head .item:last-child,
.time-table-body .item:last-child {
  border-right: none;
}

.time-table.large .time-table-head,
.time-table.large .time-table-body {
  grid-template-columns: 220px repeat(7, 1fr);
}

.time-table-txt {
  font-size: 0.9375rem;
  letter-spacing: 0.2em;
}

@media (max-width: 800px) {
  .time-table-head .item {
    padding: 5px 0;
  }

  .time-table-head .item:first-child {
    font-size: 0.75rem;
  }

  .time-table-body .item {
    padding: 5px 0;
    font-size: 0.8125rem;
  }

  .time-table-body .item:first-child {
    line-height: 1.3;
    font-size: 0.625rem;
  }

  .time-table-head,
  .time-table-body {
    grid-template-columns: 65px repeat(6, 1fr) 45px !important;
  }
}

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

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

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

.business-calendar-box-wrap .business-calendar caption {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 15px;
  position: relative;
  letter-spacing: 0.05em;
}

.business-calendar-box-wrap .business-calendar caption span {
  line-height: 1;
  font-size: 1.5625rem;
  vertical-align: -1px;
  position: absolute;
  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;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  color: var(--color_primary);
}

.business-calendar-box-wrap .business-calendar th {
  background: var(--color_primary);
  border: 1px solid var(--color_border);
  color: #fff;
  text-align: center;
  font-family: 700;
  font-size: 1rem;
  width: 14%;
  padding: 7px;
}

.business-calendar-box-wrap .business-calendar td {
  background-clip: padding-box;
  border: 1px solid var(--color_border);
  position: relative;
  font-size: 0.8125rem;
  padding: 7px;
  z-index: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.business-calendar-hidden {
  font-weight: 700;
  display: none;
}

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

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

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

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

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

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

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

  .list-event {
    display: block;
  }

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

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

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

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

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

.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--color_primary);
  color: var(--color_primary);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  min-width: 210px;
  height: 50px;
  padding: 10px 40px;
  border-radius: 50px;
  position: relative;
  transition: 0.3s;
}

.btn-more::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--color_primary);
  border-right: 1px solid var(--color_primary);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.btn-more.white {
  color: #fff;
  border: 1px solid #fff;
}

.btn-more.white::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

@media (hover: hover) {
  .btn-more:is(:hover, :focus) {
    background-color: var(--color_primary);
    color: #fff;
  }

  .btn-more:is(:hover, :focus)::before {
    border-top-color: #fff;
    border-right-color: #fff;
  }

  .btn-more:is(:hover, :focus).white {
    background-color: #fff;
    color: var(--color_primary);
  }

  .btn-more:is(:hover, :focus).white::before {
    border-top-color: var(--color_primary);
    border-right-color: var(--color_primary);
  }
}

.btn-reserve {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--color_primary);
  color: var(--color_primary);
  font-size: 1.3125rem;
  font-weight: 500;
  padding: 10px 45px;
  min-width: 250px;
  height: 60px;
  border-radius: 10px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.btn-reserve::before {
  content: "";
  background: url(../images/share/icon_tel_g.svg) no-repeat center/contain;
  width: 16px;
  height: 20px;
}

@media (hover: hover) {
  .btn-reserve:is(:hover, :focus) {
    background-color: var(--color_primary);
    color: #fff;
  }

  .btn-reserve:is(:hover, :focus)::before {
    background: url(../images/share/icon_tel_w.svg) no-repeat center/contain;
  }
}

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

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

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

  .btn-reserve {
    width: 100%;
    min-width: 0;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  text-box: trim-both cap alphabetic;
  font-size: 1.0625rem;
  line-height: 1;
  margin-bottom: 17px;
}

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

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

.list-category-links>li::before {
  content: "";
  border-top: 1px solid var(--color_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.625rem;
}

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

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

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

/*ブログ*/
.post-under-blog: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;
  align-items: center;
  padding: 10px;
  position: relative;
  transition: background-color 0.3s;
}

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

.post-under-blog .post-img img {
  width: 100%;
  aspect-ratio: 7/5;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--color_border);
}

.post-under-blog time {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 5px;
  line-height: 1;
}

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

.post-under-blog .category {
  display: inline-block;
  background-color: var(--color_primary);
  color: #fff;
  border-radius: 100px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 3px 10px;
  text-align: center;
}

.post-under-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 5px;
}

.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 .post-img img {
    aspect-ratio: 7/5;
  }

  .post-under-blog time {
    flex-shrink: 0;
    font-size: 0.6875rem;
  }

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

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

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

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

.post-under-news a {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 80px 100px 1fr;
  gap: 30px;
  align-items: center;
  padding: 20px 70px 20px 10px;
  position: relative;
  transition: background-color 0.3s;
}

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

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

.post-under-news time {
  display: block;
  font-size: 0.8125rem;
  line-height: 1;
}

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

.post-under-news .category {
  display: block;
  border: 1px solid var(--color_border);
  background-color: var(--color_gray_light);
  border-radius: 100px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 2px 5px;
  text-align: center;
  width: 100%;
}

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

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

/*詳細ページ*/
.layout-single-post {
  margin-inline: auto;
}

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

.layout-single-post time {
  flex-shrink: 0;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5;
}

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

.layout-single-post .category {
  display: inline-block;
  background-color: var(--color_primary);
  color: #fff;
  border-radius: 100px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 3px 10px;
  text-align: center;
}

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

@media (max-width: 800px) {
  .layout-single-post .l-ttl {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }
}

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

.post-number span,
.post-number a {
  display: inline-block;
  color: #919594;
  font-size: 1rem;
  line-height: 1;
  position: relative;
  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%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}

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

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

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

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

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

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

.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;
  transition: background-color 0.3s;
  border-radius: 2px;
}

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

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

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

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

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

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

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  width: 100%;
  z-index: 100;
  position: fixed;
}

.header-layout {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 15px;
  padding: 18px 1.5%;
}

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

@media (max-width: 800px) {
  .header {
    position: static;
  }

  .header-layout {
    height: 82px;
    gap: 15px;
    padding: 23px 4%;
  }

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

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

@media (max-width: 1300px) {
  .h-utility {
    gap: 25px;
  }
}

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

.h-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid var(--color_primary);
  color: var(--color_primary);
  font-size: 1.0625rem;
  font-weight: 700;
  padding: 10px 42px;
  min-width: 210px;
  height: 50px;
  border-radius: 10px;
  line-height: 1.2;
}

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

@media (hover: hover) {
  .h-btn:is(:hover, :focus) {
    background-color: var(--color_primary);
    color: #fff;
  }

  .h-btn:is(:hover, :focus)::before {
    background: url(../images/share/icon_tel_w.svg) no-repeat center/contain;
  }
}

@media (max-width: 1300px) {
  .h-btn {
    min-width: 170px;
    padding: 10px 25px;
  }
}

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

.gnavi-links>li>a {
  display: inline-block;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.gnavi-links>li p {
  display: inline-block;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

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

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

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

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

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

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

.dropdown .sub-menu li a {
  color: #fff;
  text-decoration: underline;
  transition: 0.3s;
  font-size: 0.9375rem;
}

.dropdown .sub-menu li a:hover {
  text-decoration: none;
}

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

.dropdown {
  /*------------
  Gnavi Drawer
  --------------*/
}

.dropdown html.is-open {
  height: 100%;
  overflow: hidden;
}

.dropdown .h-menu-btn {
  cursor: pointer;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 110;
}

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

.dropdown .h-menu-btn-line span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color_black);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.dropdown .h-menu-btn-line span:nth-child(1) {
  top: 0;
}

.dropdown .h-menu-btn-line span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.dropdown .h-menu-btn-line span:nth-child(3) {
  top: auto;
  bottom: 0;
}

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

.dropdown .h-menu-btn.is-open .h-menu-btn-line span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(35deg);
}

.dropdown .h-menu-btn.is-open .h-menu-btn-line span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}

.dropdown .h-menu-btn.is-open .h-menu-btn-line span:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-35deg);
}

.dropdown .gnavi-drawer {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  will-change: opacity;
  z-index: 100;
}

.dropdown .gnavi-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}

.dropdown .gnavi-drawer-container {
  background-color: #F5F5F5;
  display: grid;
  align-items: center;
  gap: 5%;
  margin-left: auto;
  padding: 50px 2.5%;
  width: 350px;
  height: 100%;
  overflow-y: auto;
}

.dropdown .drawer-links {
  display: grid;
  gap: 15px;
  line-height: 1.5;
  font-size: 1.125rem;
}

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

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

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

  .dropdown .drawer-links {
    gap: 15px;
    font-size: 1rem;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background-color: var(--color_primary);
  color: var(--color_white);
  margin-top: auto;
  position: relative;
  padding: 80px 0 20px;
}

.f-contents {
  display: grid;
  grid-template-columns: 377px 1fr;
  margin-inline: auto;
  margin: 0 0 28px 7%;
  gap: 12.5%;
}

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

.f-txt {
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.site-map {
  margin: 0 0 80px 7%;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
}

.site-map>div+div {
  margin-top: 20px;
}

.site-map a {
  text-decoration: underline;
  transition: 0.3s;
}

.site-map a:hover {
  text-decoration: none;
}

.f-menu {
  display: flex;
  gap: 8.5%;
  align-items: flex-start;
}

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

.f-links p {
  margin-bottom: 12px;
}

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

.f-links .col2 {
  display: flex;
  gap: 65px;
}

.f-links-child li+li {
  margin-top: 16px;
}

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

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

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

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

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

.copyright {
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.copyright span {
  font-size: 0.875rem;
}

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

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

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

  .f-logo {
    margin: 0 auto 15px;
    max-width: 377px;
  }

  .site-map {
    margin: 0 0 50px 0;
  }

  .f-menu {
    flex-direction: column;
    align-items: normal;
    gap: 30px;
  }

  .f-links .col2 {
    gap: 50px;
  }

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

  .f-links-child li+li {
    margin-top: 10px;
  }

  .f-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .copyright {
    padding-top: 3.5rem;
  }

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

.sp-navi-btns {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sp-menu-btn.is-open span:nth-of-type(1) {
    transform: translate(-50%, 6px) rotate(-45deg);
  }

  .sp-menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
  }

  .sp-menu-btn.is-open span:nth-of-type(3) {
    transform: translate(-50%, -6px) rotate(45deg);
  }
}

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

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

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

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

.sp-navi-list>li>a,
.sp-navi-list>li>p {
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  padding: 15px 0;
}

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

.sp-navi-list>li.sp-dropdown::before,
.sp-navi-list>li.sp-dropdown::after {
  content: "";
  background-color: #535353;
  position: absolute;
  transition: 0.5s;
}

.sp-navi-list>li.sp-dropdown::before {
  width: 1px;
  height: 11px;
  top: 17px;
  right: 20px;
}

.sp-navi-list>li.sp-dropdown::after {
  width: 11px;
  height: 1px;
  top: 22px;
  right: 15px;
}

.sp-navi-list>li.sp-dropdown.is-on::before {
  transform: rotate(90deg);
}

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

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

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

.sp-navi-list .child>ul>li::before {
  content: "-";
  color: var(--color_primary);
  position: absolute;
  left: 0;
  top: 0;
}

.sp-navi-list .child>ul>li>a {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
}

.sp-navi-other .item+.item {
  margin: 15px 0 0;
}

.sp-navi-other .tel {
  text-align: center;
  color: #333;
  display: block;
  font-size: 23px;
  text-decoration: none;
  line-height: 1;
  margin: 0 0 10px;
}

.sp-navi-other .tel i {
  font-size: 15px;
}

.sp-navi-other .txt {
  text-align: center;
  font-size: 14px;
  line-height: 1;
}

.sp-navi-logo {
  margin: 0 auto 10px;
  width: 300px;
}

.sp-btn {
  background: var(--sp-btn-color);
  border-radius: 5px;
  color: #fff;
  display: block;
  padding: 10px;
  text-align: center;
  transition: 0.5s;
}

.layout-sidebar {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-areas: "sidebar body";
  gap: 5rem;
  align-items: flex-start;
  margin-inline: auto;
}

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

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

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

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

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

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 100px;
}

.hero picture,
.hero img {
  width: 100%;
}

.hero img {
  height: auto;
  display: block;
}

.hero-catch {
  position: absolute;
  bottom: 8%;
  left: 80px;
  color: #fff;
  z-index: 5;
  line-height: 1.3;
}

.hero-catch .ttl {
  font-size: 3.125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  text-shadow: 0 0 15px #000, 0 0 15px #000, 0 0 15px #000;
}

.hero-catch .sub-ttl {
  font-size: 1.5625rem;
  letter-spacing: 0.2em;
  text-shadow: 0 0 15px #000, 0 0 15px #000, 0 0 15px #000;
}

@media (max-width: 1300px) {
  .hero-catch {
    left: 60px;
  }

  .hero-catch .ttl {
    font-size: 2.5rem;
  }

  .hero-catch .sub-ttl {
    font-size: 1.25rem;
  }
}

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

  .hero-catch {
    bottom: 4%;
    left: 16px;
  }

  .hero-catch .ttl {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }

  .hero-catch .sub-ttl {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
  }
}

/*------------
Components
--------------*/
.t-h2 {
  margin-bottom: 32px;
}

.t-h2 .en {
  color: var(--color_primary);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
}

.t-h2 .jp {
  font-size: 2.1875rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1.6;
}

.t-h2.center {
  text-align: center;
}

@media (max-width: 1559px) {
  .t-h2 .jp {
    letter-spacing: 0.1em;
  }
}

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

  .t-h2 .en {
    margin-bottom: 0;
  }

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

/*------------
Section
--------------*/
.sec01 {
  padding: 90px 0 120px;
  background: var(--color_secondary);
  width: 100%;
  height: 100%;
  z-index: 0;
  position: relative;
}

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

.sec01-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4%;
}

.sec01-layout .item-ttl {
  border-bottom: 2px solid var(--color_border);
  padding-bottom: 14px;
  margin-bottom: 12px;
}

.sec01-layout .item-ttl .en {
  color: var(--color_primary);
  font-size: 1rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 5px;
}

.sec01-layout .item-ttl .jp {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.3;
}

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

.post-top-news {
  display: grid;
  margin-bottom: 30px;
}

.post-top-news a {
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--color_border);
  padding: 16px 0;
}

.post-top-news time {
  display: inline-block;
  white-space: nowrap;
  color: #969696;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  min-width: 65px;
}

.post-top-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

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

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

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

  .post-top-news .post-ttl {
    -webkit-line-clamp: 2;
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}

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

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

.sec02-layout {
  display: flex;
  gap: 4.6%;
  margin: 0;
  flex-direction: row-reverse;
  align-items: flex-start;
}

.sec02-layout .l-img {
  width: 39%;
  margin: 0 11% 60px 0;
  position: relative;
}

.sec02-layout .l-img>img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.sec02-layout .l-img .sub-img {
  position: absolute;
  right: -28%;
  bottom: -18%;
  width: 96%;
  z-index: 1;
}

.sec02-layout .l-img .sub-img img {
  width: 100%;
  border-radius: 20px;
}

.sec02-layout .l-desc {
  flex: 1;
  padding-top: 15px;
}

.sec02-layout .txt {
  line-height: 2.1;
  letter-spacing: 0.15em;
}

.sec02-layout .txt+.txt {
  margin-top: 35px;
}

.sec02-layout .txt:last-of-type {
  margin-bottom: 45px;
}

@media (max-width: 1439px) {
  .sec02-layout .txt+.txt {
    margin-top: 15px;
  }
}

@media (max-width: 1100px) {
  .sec02-layout .l-img {
    margin-right: 12%;
  }

  .sec02-layout .l-img .sub-img {
    width: 70%;
    right: -15%;
  }
}

@media (max-width: 800px) {
  .sec02-layout {
    flex-direction: column;
  }

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

  .sec02-layout .l-img .sub-img {
    right: -10%;
    bottom: -50px;
    width: 70%;
  }

  .sec02-layout .txt:last-of-type {
    margin-bottom: 30px;
  }
}

.sec03 {
  padding: 90px 0 120px;
}

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

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

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

.sec03-cardlayout {
  gap: 20px;
  margin-bottom: 60px;
}

.sec03-cardlayout>li {
  background: var(--color_primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 40px 50px 50px;
  border-radius: 20px;
}

.sec03-cardlayout .num {
  background: #fff;
  color: var(--color_primary);
  border-radius: 50px;
  display: table;
  font-size: 1.125rem;
  line-height: 25px;
  padding: 8px 22px;
  margin: 0 auto 13px;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.sec03-cardlayout .list-ttl {
  display: block;
  font-size: 1.3125rem;
  text-align: center;
  margin-bottom: 17px;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.sec03-cardlayout .txt {
  line-height: 2.12;
  letter-spacing: 0.15em;
}

@media (max-width: 1300px) {
  .sec03-cardlayout>li {
    padding: 30px;
  }
}

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

  .sec03-cardlayout>li {
    padding: 30px 20px;
  }

  .sec03-cardlayout .list-ttl {
    line-height: 1.5;
  }
}

.sec04 {
  padding: 125px 0 120px;
  background: var(--color_secondary);
  width: 100%;
  height: 100%;
  z-index: 0;
  position: relative;
}

.sec04 .t-h2 {
  margin-bottom: 50px;
}

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

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

.sec04-boxlayout {
  margin-bottom: 60px;
}

.sec04-boxlayout a {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr;
  -moz-column-gap: 0;
  column-gap: 0;
  padding-top: 7.3%;
  border-radius: 20px;
  transition: transform 0.5s;
}

.sec04-boxlayout a:hover {
  transform: translateY(-10px);
}

.sec04-boxlayout .l-img {
  grid-column: 2;
  grid-row: 1;
}

.sec04-boxlayout .l-img img {
  border-radius: 20px 0 20px 0;
  display: block;
}

.sec04-boxlayout .l-desc {
  grid-column: 1;
  padding: 0.5% 6.6%;
  position: relative;
}

.sec04-boxlayout .l-desc::before {
  content: "";
  border-style: solid;
  border-width: 0 0 34px 34px;
  border-color: transparent transparent var(--color_primary) transparent;
  position: absolute;
  bottom: 12px;
  right: 9px;
}

.sec04-boxlayout .l-ttl {
  margin-bottom: 20px;
  font-size: 2.1875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.sec04-boxlayout .l-txt {
  line-height: 2.1;
  letter-spacing: 0.15em;
}

.sec04-cardlayout {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.sec04-cardlayout>li {
  min-height: 386px;
  max-width: 443px;
  min-width: 443px;
}

.sec04-cardlayout>li a {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  height: 100%;
  padding: 60px 35px 45px;
  position: relative;
  transition: transform 0.5s;
  border-radius: 20px;
}

.sec04-cardlayout>li a::before {
  content: "";
  border-style: solid;
  border-width: 0 0 25px 25px;
  border-color: transparent transparent var(--color_primary) transparent;
  position: absolute;
  bottom: 12px;
  right: 9px;
}

.sec04-cardlayout>li a:hover {
  transform: translateY(-10px);
}

.sec04-cardlayout .card-img {
  text-align: center;
  margin-bottom: 5px;
}

.sec04-cardlayout .card-img img {
  display: inline-block;
}

.sec04-cardlayout .card-ttl {
  font-size: 1.8125rem;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.3;
}

.sec04-cardlayout .card-txt {
  font-size: 1.0625rem;
  letter-spacing: 0.15em;
  text-align: center;
}

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

  .sec04-boxlayout a {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding-top: 0;
  }

  .sec04-boxlayout .l-img {
    grid-column: 1;
    grid-row: 1;
  }

  .sec04-boxlayout .l-img img {
    width: 100%;
    border-radius: 20px 20px 0 0;
  }

  .sec04-boxlayout .l-desc {
    grid-column: 1;
    grid-row: 2;
    padding: 6% 6% 8%;
  }

  .sec04-boxlayout .l-desc::before {
    border-width: 0 0 18px 18px;
  }

  .sec04-boxlayout .l-desc .l-ttl {
    margin-bottom: 5px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }

  .sec04-cardlayout {
    gap: 20px;
    margin-bottom: 40px;
  }

  .sec04-cardlayout>li {
    flex: 0 0 100%;
    min-height: auto;
    max-width: 100%;
    min-width: 100%;
  }

  .sec04-cardlayout>li a {
    padding: 30px 20px 40px;
  }

  .sec04-cardlayout>li a::before {
    border-width: 0 0 18px 18px;
  }

  .sec04-cardlayout .card-ttl {
    margin-bottom: 5px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
}

.sec05 {
  padding: 120px 0;
}

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

.sec05-btnlayout {
  gap: 60px;
}

.sec05-btnlayout .btn-sec05 {
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  display: flex;
  flex-direction: column;
  padding: 65px 60px 70px;
  border-radius: 10px;
  position: relative;
}

.sec05-btnlayout .btn-sec05::before {
  content: "";
  display: block;
  background: url(../images/share/arrow_w.svg) no-repeat center/contain;
  width: 29px;
  height: 15px;
  position: absolute;
  right: 15%;
  top: 50%;
  transition: transform 0.2s ease;
  transform: translateY(-50%) translateX(0);
}

.sec05-btnlayout .btn-ttl {
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
}

.sec05-btnlayout .btn-ttl .en {
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.sec05-btnlayout .btn-ttl .jp {
  font-size: 1.8125rem;
  letter-spacing: 0.2em;
}

@media (hover: hover) {
  .btn-sec05:is(:hover, :focus) {
    background-color: var(--color_secondary);
  }

  .btn-sec05:is(:hover, :focus) .btn-ttl {
    color: var(--color_primary);
  }

  .btn-sec05:is(:hover, :focus)::before {
    background: url(../images/share/arrow_g.svg) no-repeat center/contain;
    transform: translateY(-50%) translateX(15px);
  }
}

@media (max-width: 800px) {
  .sec05-btnlayout {
    gap: 20px;
  }

  .sec05-btnlayout .btn-sec05 {
    padding: 20px 30px;
  }

  .sec05-btnlayout .btn-sec05::before {
    right: 8%;
  }

  .sec05-btnlayout .btn-ttl .en {
    margin-bottom: 5px;
    letter-spacing: 0.1em;
  }

  .sec05-btnlayout .btn-ttl .jp {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
}

.sec06 {
  padding: 120px 0;
  background: var(--color_secondary);
  width: 100%;
  height: 100%;
  z-index: 0;
  position: relative;
}

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

  .sec06 .t-h2 {
    margin-bottom: 0;
  }
}

.top-post-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-gap: 5%;
  min-height: 170px;
  position: relative;
}

.top-post-layout .l-ttl .en {
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
}

.top-post-layout .l-ttl .jp {
  font-size: 2.1875rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1.3;
}

.top-post-layout .l-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

.post-top-blog {
  border-top: 2px solid #919594;
}

.post-top-blog>li {
  border-bottom: 2px solid #919594;
}

.post-top-blog a {
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 50px;
  padding: 25px 0;
  align-items: center;
}

.post-top-blog a:hover .post-ttl {
  text-decoration: underline;
  font-weight: 500;
}

.post-top-blog .post-img {
  border-radius: 10px;
}

.post-top-blog .post-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.post-top-blog .post-desc {
  flex: 1;
}

.post-top-blog time {
  display: block;
  font-size: 1.125rem;
  line-height: 1.3;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}

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

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

.post-top-blog .category {
  display: inline-block;
  background-color: var(--color_primary);
  color: #fff;
  font-size: 0.875rem;
  padding: 2px 25px;
  border-radius: 50px;
}

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

  .top-post-layout .l-btn {
    position: static;
    text-align: center;
  }

  .post-top-blog a {
    grid-template-columns: 120px 1fr;
    gap: 10px;
    padding: 10px 0;
  }

  .post-top-blog a::before {
    display: none;
  }

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

  .post-top-blog .post-data {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
  }

  .post-top-blog time {
    flex-shrink: 0;
    font-size: 0.6875rem;
    margin-bottom: 5px;
  }

  .post-top-blog .category-wrap {
    gap: 7px;
  }

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

  .post-top-blog .post-ttl {
    -webkit-line-clamp: 2;
    font-size: 0.75rem;
    margin-bottom: 0;
  }

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

.sec07 {
  padding: 130px 0;
}

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

.sec07-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
  flex-direction: row-reverse;
  background-color: var(--color_primary);
  padding: 5.5% 5.5% 6%;
  border-radius: 20px;
}

.sec07-layout .l-img {
  width: 40%;
  margin-right: -15px;
}

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

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

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

.sec07-layout .l-ttl .en {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.sec07-layout .l-ttl .jp {
  color: #fff;
  font-size: 1.75rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1.6;
}

.sec07-layout .l-sub-ttl {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 50px;
}

.sec07-layout .l-txt {
  color: #fff;
  letter-spacing: 0.2em;
  line-height: 2.1;
  margin-bottom: 45px;
}

@media (max-width: 800px) {
  .sec07-layout {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

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

  .sec07-layout .l-ttl .en {
    line-height: 1.3;
  }

  .sec07-layout .l-sub-ttl {
    margin-bottom: 20px;
  }

  .sec07-layout .l-img {
    text-align: center;
    width: 100%;
  }

  .sec07-layout .l-txt {
    margin-bottom: 30px;
  }
}

.sec08-maplayout {
  display: grid;
  grid-template-columns: 1fr 400px;
}

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

.sec08-maplayout .t-h2 .en {
  margin-bottom: 2px;
}

.sec08-maplayout iframe {
  vertical-align: bottom;
  height: 100%;
  width: 100%;
}

.sec08-maplayout .l-desc {
  padding: 23.5% 17% 25% 19%;
  width: 100%;
  height: 100%;
}

.sec08-maplayout .l-desc>p {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}

.sec08-maplayout .l-desc>p+p {
  margin-top: 5px;
}

@media (max-width: 800px) {
  .sec08-maplayout {
    grid-template-columns: 1fr;
  }

  .sec08-maplayout .t-h2 .en {
    margin-bottom: 0;
  }

  .sec08-maplayout iframe {
    height: 300px;
  }

  .sec08-maplayout .l-desc {
    padding: 10% 8%;
  }
}

.sec09 {
  padding: 95px 0;
  background: var(--color_secondary);
  width: 100%;
  height: 100%;
  z-index: 0;
  position: relative;
}

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

.sec09-layout .l-ttl {
  margin-bottom: 20px;
}

.sec09-layout .l-ttl .en {
  color: var(--color_primary);
  font-size: 1rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1.3;
}

.sec09-layout .l-ttl .jp {
  font-size: 1.8125rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.6;
}

.sec09-layout .l-sub-ttl {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.sec09-layout .l-wrap {
  display: grid;
  grid-template-columns: 1fr 250px;
  grid-gap: 5%;
}

.sec09-layout .l-txt {
  font-size: 0.9375rem;
  letter-spacing: 0.2em;
  line-height: 1.7;
  padding-top: 12px;
}

.sec09-layout .btn-txt {
  font-size: 0.9375rem;
  letter-spacing: 0.2em;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 5px;
}

@media (max-width: 800px) {
  .sec09-layout .l-ttl {
    margin-bottom: 20px;
  }

  .sec09-layout .l-ttl .jp {
    font-size: 1.75rem;
  }

  .sec09-layout .l-wrap {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .sec09-layout .l-sub-ttl {
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .sec09-layout .l-txt {
    padding-top: 0;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  background-color: var(--color_secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding-top: 100px;
  height: 400px;
  width: 100%;
}

.page-ttl {
  font-size: 3.125rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.breadcrumb {
  position: relative;
  z-index: 1;
}

.breadcrumb ul {
  font-size: 0.875rem;
  padding: 5px 5vw;
}

.breadcrumb ul li {
  display: inline;
  font-weight: 500;
}

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

@media (max-width: 800px) {
  .page-header {
    height: 150px;
    padding: 10px;
  }

  .page-ttl {
    font-size: 1.875rem;
    letter-spacing: 0.1em;
  }
}

.u-h2 {
  font-size: 2.5rem;
  position: relative;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.5;
}

.u-h2::after {
  content: "";
  display: block;
  background: var(--color_primary);
  width: 40px;
  height: 2px;
  margin: 15px auto 0;
}

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

.u-h3::before {
  content: "";
  background: var(--color_primary);
  width: 20px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
}

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

@media (max-width: 800px) {
  .u-h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
    letter-spacing: 0.08em;
    line-height: 1.4;
  }

  .u-h2::after {
    margin: 10px auto 0;
  }

  .u-h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 0.08em;
    line-height: 1.4;
  }

  .u-h4 {
    letter-spacing: 0.08em;
    line-height: 1.4;
  }
}

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

.u-tel {
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
  color: var(--color_primary);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.u-tel::before {
  content: "";
  background: url(../images/share/icon_tel_g.svg) no-repeat center / contain;
  width: 16px;
  height: 20px;
}

.tall {
  padding-bottom: 80px;
}

.tall:first-child {
  padding-top: 80px;
}

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

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

.hidden {
  overflow: hidden;
}

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

  .tall:first-child {
    padding-top: 50px;
  }

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

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

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

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

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

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

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

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

.table-style01 th,
.table-style01 td {
  border: 1px solid var(--color_border);
  padding: 12px;
  vertical-align: middle;
}

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

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

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

@media (max-width: 800px) {
  .table-scroll-txt {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .table-scroll-txt::before {
    content: "";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat center/contain;
    width: 30px;
    height: 24.5px;
    margin-right: 10px;
  }

  .table-scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }

  .table-scroll::-webkit-scrollbar {
    height: 5px;
  }

  .table-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }

  .table-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }

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

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

  .table-style01.sp-col1 th,
  .table-style01.sp-col1 td {
    display: block;
    padding: 10px;
  }
}

/*------------
スライダー
--------------*/
.under-slider .splide {
  margin: 0 auto;
}

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

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

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

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

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

.under-slider .splide__slide img {
  width: 100%;
  border-radius: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.fl-wrap {
  display: flow-root;
}

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

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

.fl-imgR {
  float: right;
  margin: 0 0 15px 35px;
}

.fl-imgL {
  float: left;
  margin: 0 35px 15px 0;
}

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

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

.l-style01 .l-desc {
  background-color: #fff;
  padding: 45px 70px 50px 0;
  border-radius: 0 20px 20px 20px;
  width: 62.5%;
  margin-top: -68px;
  position: relative;
}

.l-style01 .l-ttl {
  margin-bottom: 30px;
}

.l-style01 .l-ttl .en {
  color: var(--color_primary);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
}

.l-style01 .l-ttl .jp {
  font-size: 2.1875rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1.3;
}

.l-style02 {
  display: flex;
  position: relative;
  z-index: 0;
}

.l-style02 .l-img {
  width: 50%;
  margin: 0 5.5% 0 -10%;
}

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

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

.l-style02 .l-ttl {
  font-size: 1.75rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

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

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

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

.l-style02.reverse .l-img {
  margin: 0 -10% 0 5.5%;
}

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

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

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

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

.staff-layout .l-ttl {
  border-bottom: 2px solid var(--color_primary);
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1;
  padding-bottom: 10px;
  margin-bottom: 35px;
}

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

.staff-layout .job {
  font-size: 0.9375rem;
}

.staff-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 50px 25px;
}

.staff-list .list-img {
  text-align: center;
  margin-bottom: 20px;
}

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

.staff-list .list-ttl {
  text-align: center;
}

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

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

.tel-layout .l-tel {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  justify-content: center;
  font-weight: 700;
  font-size: 2.1875rem;
  line-height: 1;
  margin: 0 auto;
  color: var(--color_primary);
}

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

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

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

@media (max-width: 1485px) {
  .l-style01 .l-ttl .jp {
    font-size: 1.875rem;
    letter-spacing: 0.1em;
  }

  .l-style01 .l-desc {
    padding: 45px 20px 50px 0;
  }
}

@media (max-width: 800px) {

  .l-imgR,
  .l-imgL {
    flex-direction: column;
    gap: 15px;
  }

  .l-imgR .l-img,
  .l-imgL .l-img {
    text-align: center;
    width: 100%;
  }

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

  .fl-imgR,
  .fl-imgL {
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }

  .fl-imgR.small,
  .fl-imgL.small {
    width: 100%;
  }

  .l-style01 .l-desc {
    padding: 15px 15px 15px 0;
    border-radius: 0 20px 20px 20px;
    width: 85%;
    margin-top: -30px;
  }

  .l-style01 .l-ttl .en {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .l-style01 .l-ttl .jp {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }

  .l-style02 {
    display: block;
  }

  .l-style02 .l-img {
    width: 100%;
    margin: 0 0 25px;
  }

  .l-style02 .l-ttl {
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
  }

  .l-style02 .l-sub-ttl {
    margin-bottom: 20px;
  }

  .l-style02.reverse .l-img {
    margin: 0 0 25px;
  }

  .staff-layout .wrapper {
    flex-direction: column;
    gap: 30px;
  }

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

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

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

  .staff-layout .job {
    font-size: 0.875rem;
  }

  .staff-list {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }

  .staff-list .list-img {
    margin-bottom: 10px;
  }

  .tel-layout .l-ttl {
    font-size: 0.9375rem;
    margin: 0 auto 25px;
  }

  .tel-layout .l-tel {
    font-size: 1.875rem;
  }

  .tel-layout .l-tel img {
    width: 22px;
  }
}

/*------------
カード
--------------*/
.list-card01>li {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color_border);
  padding: 25px;
  border-radius: 20px;
}

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

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

.list-card01 .list-ttl {
  border-bottom: 1px solid;
  font-size: 1.125rem;
  padding-bottom: 10px;
  margin-bottom: 20px;
  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>li {
  background: var(--color_secondary);
  display: flex;
  flex-direction: column;
  padding: 25px;
  border-radius: 20px;
}

.list-card02 .list-img {
  text-align: center;
  margin-bottom: 15px;
}

.list-card02 .list-img img {
  border-radius: 20px;
}

.list-card02 .num {
  background: var(--color_primary);
  border-radius: 50px;
  display: table;
  color: #fff;
  font-weight: 500;
  font-size: 0.6875rem;
  line-height: 25px;
  padding: 0 20px;
  margin: 0 auto 10px;
}

.list-card02 .list-ttl {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.5;
}

.list-card02 .list-btn {
  text-align: center;
  margin-top: auto;
  padding-top: 15px;
}

.list-card02 .btn-more {
  min-width: 0;
  width: 100%;
}

.list-card03>li {
  background: var(--color_primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 20px;
}

.list-card03 .num {
  background: #fff;
  color: var(--color_primary);
  border-radius: 50px;
  display: table;
  font-size: 1.125rem;
  line-height: 25px;
  padding: 8px 22px;
  margin: 0 auto 13px;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.list-card03 .list-ttl {
  display: block;
  font-size: 1.3125rem;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 0.2em;
  line-height: 1.4;
  font-weight: 500;
}

@media (max-width: 1300px) {
  .list-card03>li {
    padding: 30px;
  }
}

@media (max-width: 800px) {
  .list-card01 .list-ttl {
    letter-spacing: 0.1em;
  }

  .list-card02 .list-ttl {
    letter-spacing: 0.1em;
  }

  .list-card03>li {
    padding: 30px 20px;
  }

  .list-card03 .list-ttl {
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
}

/*------------
ボックス
--------------*/
.box-style01 {
  border: 2px solid var(--color_primary);
  background: #fff;
  padding: 5%;
  border-radius: 20px;
}

.box-style01>.box-ttl {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 30px;
}

.box-style01>.box-ttl02 {
  font-size: 1.25rem;
  padding-left: 25px;
  margin-bottom: 15px;
  position: relative;
}

.box-style01>.box-ttl02::before {
  content: "";
  background: var(--color_primary);
  width: 8px;
  height: 60%;
  position: absolute;
  left: 0;
  top: 7.5px;
}

.box-style02 {
  background: var(--color_secondary);
  padding: 5%;
  border-radius: 20px;
}

.box-style02>.box-ttl {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.box-style02>.box-ttl img {
  margin-right: 15px;
}

@media (max-width: 800px) {
  .box-style01>.box-ttl {
    margin-bottom: 15px;
  }

  .box-style01>.box-ttl02 {
    font-size: 18px;
  }

  .box-style02>.box-ttl {
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
  }
}

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

.merit-demerit .item {
  background: #f7f7f7;
  border-top: 5px solid var(--color_primary);
  padding: 35px;
  border-radius: 0 0 20px 20px;
}

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

.merit-demerit .item-ttl {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1;
  margin-bottom: 25px;
}

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

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

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

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

  .merit-demerit .item-ttl::after {
    font-size: 0.75rem;
  }
}

/*------------
フロー
--------------*/
.flow-style01 {
  display: grid;
  gap: 40px;
}

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

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

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

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

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

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

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

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

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

.flow-style01 .flow-ttl {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.flow-style02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
}

.flow-style02>li {
  background-color: var(--color_secondary);
  padding: 22px;
  position: relative;
  border-radius: 20px;
}

.flow-style02>li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent var(--color_primary);
  position: absolute;
  top: 50%;
  right: -21px;
  transform: translateY(-50%);
}

.flow-style02 .flow-num {
  color: var(--color_primary);
  font-size: 1.5625rem;
  line-height: 1;
  position: absolute;
  top: -15px;
  left: 22px;
}

.flow-style02 .flow-img {
  margin-bottom: 15px;
}

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

.flow-style02 .flow-ttl {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}

.flow-style02 .list-btn {
  text-align: center;
  margin-top: auto;
  padding-top: 15px;
}

.flow-style02 .btn-more {
  min-width: 0;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

  .flow-style02 {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .flow-style02>li:not(:last-child)::after {
    top: auto;
    bottom: -30px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }
}

/*------------
アンカーリンク
--------------*/
.list-anchor-link {
  display: flex;
  flex-wrap: wrap;
}

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

.list-anchor-link li::after {
  content: "";
  display: inline-block;
  background: #e0e0e0;
  width: 2px;
  height: 15px;
  margin: 0 16px;
  vertical-align: -1px;
}

.list-anchor-link a {
  display: inline-block;
  position: relative;
  font-weight: 700;
  padding-right: 25px;
}

.list-anchor-link a::before {
  content: "";
  background: url(../images/share/icon_anchor_link.svg) no-repeat 0 0 / contain;
  width: 22px;
  height: 22px;
  position: absolute;
  right: -3px;
  top: 5px;
}

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

/*------------
Q&A
--------------*/
.faq-style .item+.item {
  border-top: 1px dashed var(--color_border);
  margin-top: 30px;
  padding-top: 30px;
}

.faq-style dt {
  font-weight: 700;
  font-size: 1.25rem;
  padding-left: 60px;
  margin-bottom: 15px;
  position: relative;
}

.faq-style dd {
  position: relative;
  padding-left: 60px;
}

.faq-style dd .faq-icon {
  background-color: var(--color_secondary);
  color: #535353;
}

.faq-style .faq-icon {
  color: #fff;
  display: grid;
  place-items: center;
  background-color: var(--color_primary);
  border-radius: 3px;
  width: 35px;
  height: 35px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 800px) {
  .faq-style .item+.item {
    margin-top: 15px;
    padding-top: 15px;
  }

  .faq-style dt {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}

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

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

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

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

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

.sp-only {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

hr {
  max-width: 1024px;
  margin: 50px auto;
}

.fade {
  transition: opacity 0.5s;
}

@media (hover: hover) {
  .fade:hover {
    opacity: 0.5;
  }
}

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

.bold,
.strong {
  font-weight: 700;
}

.red {
  color: #F44336;
}

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

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

.mb0 {
  margin-bottom: 0 !important;
}

.mbXS {
  margin-bottom: 5px;
}

.mbS {
  margin-bottom: 15px;
}

.mbM {
  margin-bottom: 30px;
}

.mbXM {
  margin-bottom: 50px;
}

.mbL {
  margin-bottom: 60px;
}

.mbXL {
  margin-bottom: 90px;
}

.mt0 {
  margin-top: 0 !important;
}

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

.gap10 {
  grid-gap: 10px;
}

.gap15 {
  grid-gap: 15px;
}

.gap20 {
  grid-gap: 20px;
}

.gap25 {
  grid-gap: 25px;
}

.gap30 {
  grid-gap: 30px;
}

.gap35 {
  grid-gap: 35px;
}

.gap40 {
  grid-gap: 40px;
}

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

  .mbM {
    margin-bottom: 15px;
  }

  .mbXM {
    margin-bottom: 20px;
  }

  .mbL {
    margin-bottom: 30px;
  }

  .mbXL {
    margin-bottom: 50px;
  }

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

  .sp-gap15 {
    grid-gap: 15px;
  }

  .sp-gap20 {
    grid-gap: 20px;
  }

  .sp-gap25 {
    grid-gap: 25px;
  }

  .sp-gap30 {
    grid-gap: 30px;
  }

  .sp-gap35 {
    grid-gap: 35px;
  }

  .sp-gap40 {
    grid-gap: 40px;
  }
}

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

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

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

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

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

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

.splide__progress__bar {
  width: 0;
}

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

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

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

.splide__slide img {
  vertical-align: bottom;
}

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

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

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

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

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

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

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

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

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

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

.splide--rtl {
  direction: rtl;
}

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

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

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

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

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

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

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

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

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

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

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

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

.splide__pagination {
  gap: 8px;
}

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

.splide__pagination__page.is-active {
  background: #707070;
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
}

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

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

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

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

.splide__slide:focus {
  outline: 0;
}

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

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

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

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

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

.splide__toggle {
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.splide__toggle:hover {
  background: #D3D3D3;
}

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

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