@charset "UTF-8";
/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #F6EFDC;
  --color_text: #3D0000;
  --color_link: #3D0000;
  --color_border: #fff;
  --color_primary: #EB7314;
  --color_secondary: #FDD78C;
  --color_tertiary: #FFE485;
  --color_quaternary: #F6EFDC;
  --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"), local("Noto Sans CJK JP Regular");
}
:root {
  --font_base:
    "DNP 秀英丸ゴシック Std B",
    sans-serif;
  --font_jp: "DNP 秀英丸ゴシック Std B", sans-serif;
  --font_en: "Quicksand", sans-serif;
  --font_weight: Bold;
  --font_size: 1.0625rem;
  --line_height: 2.0;
  --letter_spacing: .05em;
}

@media (max-width: 800px) {
  :root {
    --font_size: 0.9375rem;
    --line_height: 1.8;
  }
}
/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

::selection {
  background: #d4dcd6;
}

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

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

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

[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,
:is(h2, h3, h4)[id] {
  scroll-margin-top: 155px;
}

@media (max-width: 800px) {
  html {
    scroll-padding-top: 86px;
  }

  :target,
  :is(h2, h3, h4)[id] {
    scroll-margin-top: 86px;
  }
}
.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}
.container.wide {
  max-width: 1200px;
}
.container.ultra-wide {
  max-width: 1540px;
}
.container.narrow {
  max-width: 900px;
}

/*-----------------------------------------------------------
診療時間
-----------------------------------------------------------*/
.time-table {
  background-color: var(--color_gray_light);
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
.time-table tr {
  border-bottom: 1px solid var(--color_border);
}
.time-table th,
.time-table td {
  text-align: center;
  padding: 15px 0;
  line-height: 1.2;
}
@media (max-width: 800px) {
  .time-table th,
  .time-table td {
    padding: 10px 0;
  }
}
.time-table thead th {
  background-color: var(--color_black);
  color: var(--color_white);
}
.time-table th:first-child {
  width: 25%;
}
@media (max-width: 800px) {
  .time-table th:first-child {
    width: 90px;
  }
}
.time-table img {
  margin-inline: auto;
}

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

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

.business-calendar-box-wrap {
  margin-bottom: 15px;
}
.business-calendar-box-wrap .business-calendar {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.business-calendar-box-wrap .business-calendar caption {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px;
}
.business-calendar-box-wrap .business-calendar caption span {
  line-height: 1;
  font-size: 1.5625rem;
  vertical-align: -1px;
}
.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
  display: inline-block;
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 25px;
  height: 25px;
}
.business-calendar-box-wrap .business-calendar-past a::before,
.business-calendar-box-wrap .business-calendar-future a::before {
  display: inline-block;
  content: "";
  border-style: solid;
  border-width: 7px 6px 7px 0;
  border-color: transparent #333 transparent transparent;
  position: absolute;
  top: 10px;
  left: 10px;
}
.business-calendar-box-wrap .business-calendar-future a::before {
  transform: rotate(180deg);
}
.business-calendar-box-wrap .business-calendar th {
  background: #f1f3f4;
  border: 1px solid #dfdfdf;
  text-align: center;
  font-weight: bold;
  font-size: 0.9375rem;
  padding: 5px;
  width: 14%;
}
.business-calendar-box-wrap .business-calendar td {
  background: #FFFFFF;
  border: 1px solid #dfdfdf;
  position: relative;
  font-size: 0.8125rem;
  padding: 5px;
  z-index: 0;
}
.business-calendar-box-wrap .business-calendar td::before {
  content: "";
  background: #ccc;
  border-radius: 50px;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
}
.business-calendar-box-wrap.large .business-calendar th,
.business-calendar-box-wrap.large .business-calendar td {
  padding: 10px;
  font-size: 0.9375rem;
}
.business-calendar-box-wrap.col2 {
  grid-template-columns: 1fr;
}
.business-calendar-box-wrap.col2 .business-calendar-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3%;
}
.business-calendar-box-wrap .business-calendar .today {
  text-decoration: underline;
}
.business-calendar-box-wrap .business-calendar .attr0,
.business-calendar-box-wrap .business-calendar .attr1,
.business-calendar-box-wrap .business-calendar .attr2,
.business-calendar-box-wrap .business-calendar .attr3 {
  color: #fff;
}
.business-calendar-box-wrap .business-calendar .attr0::before,
.business-calendar-box-wrap .business-calendar .attr1::before,
.business-calendar-box-wrap .business-calendar .attr2::before,
.business-calendar-box-wrap .business-calendar .attr3::before {
  opacity: 1;
}
.business-calendar-box-wrap .business-calendar .attr0::before {
  background: var(--event01);
}
.business-calendar-box-wrap .business-calendar .attr1::before {
  background: var(--event02);
}
.business-calendar-box-wrap .business-calendar .attr2::before {
  background: var(--event03);
}
.business-calendar-box-wrap .business-calendar .attr3::before {
  background: var(--event04);
}

.list-event {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.list-event li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}
.list-event li::before {
  content: "";
  background-color: var(--color_black);
  border-radius: 50%;
  width: 12px;
  height: 12px;
}
.list-event .event01::before {
  background-color: var(--event01);
}
.list-event .event02::before {
  background-color: var(--event02);
}
.list-event .event03::before {
  background-color: var(--event03);
}
.list-event .event04::before {
  background-color: var(--event04);
}

@media (max-width: 800px) {
  .business-calendar-box-wrap.col2 .business-calendar-box {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .list-event {
    display: block;
  }
  .list-event li + li {
    margin-top: 5px;
  }
}
/*ボタン*/
.btn-out {
  padding-right: 15px;
  position: relative;
}
.btn-out::before {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 0.2em;
  right: 0;
}
.btn-out::after {
  content: "";
  transition: background-size 0.3s;
  background: linear-gradient(to top, currentColor 0px, currentColor 1.1px, transparent 1px) no-repeat right bottom;
  background-size: 0% auto;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 100%;
}
@media (any-hover: hover) {
  .btn-out:hover::after {
    background-position: left bottom;
    background-size: 100% auto;
  }
}

.btn-more {
  display: inline-block;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: var(--color_white);
  font-weight: bold;
  line-height: 1.5;
  min-height: 60px;
  min-width: 210px;
  padding: 16px 38px;
  position: relative;
  border-radius: 100px;
  transition: 0.3s;
}
.btn-more::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
@media (any-hover: hover) {
  .btn-more:hover {
    opacity: 0.5;
    cursor: pointer;
  }
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  min-height: 82px;
  min-width: 240px;
  padding: 10px 38px;
  background: var(--color_primary);
  color: #fff;
  border-radius: 50px;
  position: relative;
  letter-spacing: 0.1em;
  transition: 0.3s;
}
.btn-icon img {
  margin-right: 12px;
}
.btn-icon:hover {
  opacity: 0.5;
  cursor: pointer;
}


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

@media (max-width: 800px) {
  .btn-icon {
    min-width: 100%;
    min-height: 70px;
  }

  .btn-wrap {
    gap: 15px;
  }
}
/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  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 50px 10px 10px;
  position: relative;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .post-under-blog a:hover {
    background-color: #F9E7B9;
  }
}
.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;
  transform: translateY(-50%);
  z-index: 1;
}
.post-under-blog .post-img img {
  border: 1px solid var(--color_border);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 7/5;
  border-radius: 10px;
}
.post-under-blog .post-data {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.post-under-blog time {
  color: var(--color_primary);
  display: block;
  font-size: 0.875rem;
  font-family: var(--font_en);
  line-height: 1;
  margin-bottom: 10px;
}
.post-under-blog .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.post-under-blog .category {
  display: inline-block;
  font-size: 0.6875rem;
  background: var(--color_secondary);
  padding: 5px 8px;
  border-radius: 50px;
  line-height: 1;
}
.post-under-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  overflow-wrap: anywhere;
  font-size: 1rem;
  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: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
  }
  .post-under-blog time {
    flex-shrink: 0;
    font-size: 0.6875rem;
  }
  .post-under-blog .category {
    font-size: 0.5rem;
    padding: 3px 8px;
  }
  .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: 100px 1fr;
  align-items: center;
  grid-gap: 25px;
  border-bottom: 1px solid var(--color_border);
  padding: 20px 0;
  transition: 0.3s;
}
.post-under-news a:hover .news-ttl {
  text-decoration: underline;
}
.post-under-news time {
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_en);
}
.post-under-news .news-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  overflow-wrap: anywhere;
}
.post-under-news time {
  display: block;
  line-height: 1;
}
.post-under-news .category-wrap {
  display: flex;
  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 {
  grid-area: body;
}
.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;
  color: var(--color_primary);
  font-family: var(--font_en);
}
.layout-single-post .category-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.layout-single-post .category {
  display: inline-block;
  background: var(--color_secondary);
  border-radius: 50px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 5px 8px;
  text-align: center;
  width: 100%;
}
.layout-single-post .l-ttl {
  font-size: 1.75rem;
  line-height: 1.5;
  margin-bottom: 30px;
  overflow-wrap: anywhere;
}

@media (max-width: 800px) {
  .layout-single-post .l-ttl {
    font-size: 1.5625rem;
    margin-bottom: 20px;
  }
}
/*ページャー*/
.post-number {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px auto 0;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font_en);
}

.post-number span,
.post-number a {
  display: inline-block;
  color: #c8c8c8;
  font-size: 1rem;
  line-height: 1;
  position: relative;
  transition: color 0.3s;
}
.post-number span:hover,
.post-number a:hover {
  color: 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: 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.8125rem;
  font-family: var(--font_en);
  line-height: 28px;
  max-width: 200px;
  height: 30px;
  width: 100%;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 3px;
}

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

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

/*投稿本文用CSS*/
.postdata {
  display: flow-root;
  overflow-wrap: break-word;
}

.postdata time {
  color: var(--color_primary);
  font-size: 0.9375rem;
  font-family: var(--font_en);
  line-height: 1;
}

.postdata .category {
  display: inline-block;
  font-size: 0.6875rem;
  background: var(--color_secondary);
  padding: 5px 8px;
  border-radius: 50px;
  line-height: 1;
  margin-left: 10px;
}

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

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

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

.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: #F9E7B9;
  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_primary) !important;
  color: var(--color_white) !important;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  text-align: left;
  font-size: 0.9375rem !important;
  line-height: 1 !important;
  min-width: 200px;
  padding: 10px 45px !important;
  line-height: 1.5;
  position: relative;
  transition: 0.3s;
  border-radius: 50px;
}

.wp-block-button__link::after {
  content: "";
  background-color: var(--color_black);
  -webkit-mask: url(../../images/share/post_arrow.svg) no-repeat center/contain;
          mask: url(../../images/share/post_arrow.svg) no-repeat center/contain;
  width: 18px;
  height: 11px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.wp-block-button__link:hover {
  opacity: 1;
  background-color: var(--color_primary) !important;
  color: var(--color_white) !important;
}

.wp-block-button__link:hover::after {
  background-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 {
  position: fixed;
  width: 100%;
  z-index: 100;
}

.header-layout {
  padding: 60px 4.3% 15px 4.2%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 155px;
  width: 100%;
  background: transparent;
  transition: background-color 0.3s ease;
}
.header-layout.is-scrolled {
  background: var(--color_quaternary);
  padding: 20px 4.3% 15px 4.2%;
  height: 115px;
}

.h-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-gap: 15px;
  line-height: 1.5;
  padding-top: 5px;
}

.h-tel {
  display: inline-flex;
  align-items: center;
  font-size: 1.625rem;
  font-family: var(--font_en);
  color: var(--color_primary);
  letter-spacing: 0.1em;
  gap: 8px;
}

@media (max-width: 1430px) {
  .header-layout {
    padding: 30px 3% 10px 3%;
    height: 130px;
  }
  .header-layout.is-scrolled {
    padding: 20px 3% 15px 3%;
    height: 115px;
  }
  .h-logo {
    max-width: 350px;
  }
}

@media (max-width: 1330px) {
  .h-logo {
    max-width: 300px;
  }
}

@media (max-width: 1075px) {
  .h-logo {
    max-width: 250px;
  }
}

@media (max-width: 800px) {
  .h-logo {
    max-width: 216px;
  }
  .header {
    z-index: 100;
  }
  .header-layout {
    padding: 0 25px;
    height: 86px;
    position: relative;
  }
  .header-layout.is-scrolled {
    padding: 0 25px;
    height: 86px;
  }
  .h-contact {
    display: none;
  }
  .gnavi {
    display: none;
  }
}
.h-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--color_black);
  color: var(--color_white);
  font-size: 0.9375rem;
  padding: 0 25px 0 20px;
  height: 50px;
}
.h-btn::before {
  content: "";
  background: url(../images/share/icon_mail.svg) no-repeat center/contain;
  width: 15px;
  height: 12px;
}

/*------------
Gnavi
--------------*/
.gnavi-links {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}
.gnavi-links > li > a {
  display: inline-block;
}

/*dropdown*/
.dropdown {
  font-size: 1.25rem;
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
}
.dropdown::after {
  content: "";
  display: block;
  border-bottom: 2px solid var(--color_primary);
  border-right: 2px solid var(--color_primary);
  width: 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: 5px;
  pointer-events: none;
  background-color: #F9E7B9;
  border-radius: 10px;
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
  padding: 35px 40px;
  position: absolute;
  top: 40px;
  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 li {
  display: grid;
  grid-template-columns: 15px 1fr;
}
.dropdown .sub-menu li::before {
  content: "-";
  margin-right: 6px;
  color: var(--color_primary);
}
.dropdown .sub-menu a {
  transition: 0.3s;
}
.dropdown .sub-menu a:hover {
  color: var(--color_primary);
}
.dropdown:last-child .sub-menu {
  right: 0;
  transform: translateX(0);
}

@media (max-width: 1275px) {
  .dropdown {
    font-size: 1rem;
  }
}

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

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

button.gnavi-menu-btn {
  cursor: pointer;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--color_primary);
  padding: 0;
  border-radius: 5px;
  position: relative;
  z-index: 110;
}

button.gnavi-menu-btn.sp-only {
  display: none;
}

.gnavi-menu-btn-line {
  position: relative;
  display: block;
  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;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.gnavi-menu-btn-line span:nth-child(1) {
  top: 0;
}
.gnavi-menu-btn-line span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.gnavi-menu-btn-line span:nth-child(3) {
  top: auto;
  bottom: 0;
}

.gnavi-menu-btn-txt {
  display: block;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: bold;
  text-align: center;
  margin-top: 5px;
}

.gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(35deg);
}
.gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}
.gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-35deg);
}

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

.gnavi-drawer-container {
  background-color: var(--color_quaternary);
  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: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  padding-bottom: 0.02rem;
}
@media (any-hover: hover) {
  .drawer-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

@media (max-width: 800px) {
  .gnavi-drawer-container {
    align-items: flex-start;
    padding: 25px 20px;
    width: 100%;
  }
  .drawer-links {
    gap: 15px;
    font-size: 1rem;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  margin-top: auto;
  position: relative;
  padding: 0;
}
.footer::before {
  content: "";
  background: url(../images/share/footer_bg.jpg) no-repeat center/cover;
  position: absolute;
  inset: 23.5% 0 0 0;
  z-index: -1;
}

.f-layout01 {
  background: #fff;
  padding: 70px 5%;
  border-radius: 20px;
  text-align: center;
  width: min(90%, 1200px);
  margin-inline: auto;
  margin-bottom: 65px;
}
.f-layout01 .l-ttl {
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.f-layout01 .l-ttl .jp {
  font-size: 2.25rem;
  margin-bottom: 10px;
}
.f-layout01 .l-ttl [lang=en] {
  font-size: 1rem;
  font-family: var(--font_en);
  color: var(--color_primary);
}
.f-layout01 .l-txt {
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.f-tel {
  display: inline-flex;
  align-items: center;
  font-size: 2.25rem;
  font-family: var(--font_en);
  color: var(--color_primary);
  letter-spacing: 0.1em;
  gap: 8px;
  margin-bottom: 10px;
}

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

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

.f-txt {
  letter-spacing: 0.05em;
}
.f-txt + .f-txt {
  margin-top: 7px;
}

.site-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6%;
  align-items: flex-start;
}

.f-links {
  display: grid;
  grid-gap: 16px;
  line-height: 1.5;
  font-size: 0.9375rem;
}
.f-links p {
  margin-bottom: 12px;
}
.f-links a {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  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;
}
.f-links .sub-menu li > a {
  justify-self: start;
}
@media (any-hover: hover) {
  .f-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}
.f-links .sub-menu li {
  display: grid;
  grid-template-columns: 12px 1fr;
}
.f-links .sub-menu li::before {
  content: "-";
  margin-right: 6px;
  color: var(--color_primary);
}
.f-links .sub-menu li + li {
  margin-top: 15px;
}

.f-bottom {
  display: flex;
  justify-content: space-between;
  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 {
  font-size: 0.75rem;
  background-color: var(--color_primary);
  color: #fff;
  padding: 4px 0;
  text-align: center;
}

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

@media (max-width: 1450px) {
  .f-layout01 {
    width: min(90%, 1024px);
  }
}

@media (max-width: 1200px) {
  .pagetop {
    top: auto;
    bottom: 70px;
  }
}

@media (max-width: 800px) {
  .footer {
    padding: 0 0 65px;
  }
  .footer::before {
    inset: 13% 0 0 0;
  }
  .f-layout01 {
    padding: 30px;
    text-align: left;
    margin-bottom: 50px;
  }
  .f-layout01 .l-ttl {
    margin-bottom: 15px;
  }
  .f-layout01 .l-ttl .jp {
    font-size: 1.625rem;
  }
  .f-tel {
    font-size: 1.625rem;
    margin-bottom: 15px;
  }
  .f-tel img {
    width: 22px;
    height: 28px;
  }
  .f-layout02 {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
  }
  .f-logo {
    max-width: 260px;
    margin: 0 auto 30px;
  }
  .site-map {
    grid-template-columns: 1fr;
    align-items: normal;
    gap: 12px;
  }
  .f-links {
    grid-gap: 12px;
  }
  .f-links p {
    margin-bottom: 10px;
  }
  .f-links .sub-menu li + li {
    margin-top: 12px;
  }
  .copyright {
    padding: 15px 0;
  }
  .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: flex;
    background: var(--color_primary);
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    z-index: 10000;
  }
  .sp-navi-btns > * {
    flex: 1;
    position: relative;
  }
  .sp-navi-btns .item {
    font-size: 0.625rem;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    border-right: 1px solid var(--color_white);
  }
  .sp-navi-btns .item:last-child {
    border-right: none;
  }
  .sp-navi-btns .item a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    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 .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-drawer {
    pointer-events: none;
    visibility: hidden;
    background: var(--color_white);
    color: var(--color_black);
    font-size: 0.9375rem;
    padding: 25px 25px 100px;
    position: fixed;
    inset: 0;
    transform: translateX(60px);
    transition: 0.5s var(--ease);
    opacity: 0;
    z-index: 1000;
  }
  .sp-navi-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    transform: translateX(0);
    opacity: 1;
    transition-timing-function: var(--ease);
  }
  .sp-logo {
    width: 250px;
    margin-bottom: 80px;
  }
  .sp-navi-list {
    border-top: 1px solid var(--color_gray);
    font-weight: bold;
    line-height: 1.5;
  }
  .sp-navi-list > li {
    position: relative;
    border-bottom: 1px solid var(--color_gray);
  }
  .sp-navi-list > li > a {
    display: grid;
    align-items: center;
    padding: 10px 25px 10px 0;
    position: relative;
    min-height: 50px;
  }
  .sp-navi-list > li > a::after {
    content: "";
    background-color: var(--color_black);
    -webkit-mask: url(../images/share/sp_navi_arrow.svg) no-repeat center/contain;
            mask: url(../images/share/sp_navi_arrow.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 11px;
    height: 11px;
    transform: translateY(-50%);
  }
  .sp-details .sp-sub-menu {
    max-height: 0;
    padding: 0 15px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .sp-details.is-open .sp-sub-menu {
    max-height: 500px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.015);
  }
  .sp-details.is-open .plus {
    rotate: 45deg;
  }
  .sp-details-btn {
    display: flex;
    align-items: center;
    padding: 10px 30px 10px 0;
    position: relative;
    min-height: 50px;
    width: 100%;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
    text-align: left;
    cursor: pointer;
  }
  .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;
    transform: translateY(-50%);
    transition: 0.3s;
    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;
    transform: translate(-50%, -50%);
  }
  .sp-sub-menu {
    display: grid;
    grid-gap: 5px;
    font-size: 0.875rem;
  }
  .sp-sub-menu a {
    display: block;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .sp-sub-menu a::before {
    content: "";
    position: absolute;
    border-radius: 100%;
    background-color: var(--color_primary);
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    transform: translateY(-50%);
  }
}
.layout-sidebar {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-areas: "sidebar body";
  gap: 5rem;
  align-items: flex-start;
  margin-inline: auto;
  width: min(90%, 1024px);
}
.layout-sidebar .l-sidebar {
  grid-area: sidebar;
  position: sticky;
  top: 50px;
}
.layout-sidebar .l-label {
  border-bottom: 1px solid var(--color_border);
  font-size: 1.125rem;
  line-height: 1;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.layout-sidebar .l-body {
  grid-area: body;
}
.layout-sidebar .l-ttl {
  overflow-wrap: anywhere;
}

@media (max-width: 800px) {
  .layout-sidebar {
    grid-template-columns: 1fr;
    grid-template-areas: "body" "sidebar";
    gap: 5rem;
  }
  .layout-sidebar .l-sidebar {
    position: static;
  }
}
/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  padding: 2%;
  overflow: hidden;
  position: relative;
  background: url(../images/hero_bg.jpg) no-repeat center/cover;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero .bg-color {
  background-color: var(--color_quaternary);
  padding: 130px 2% 40px 0;
  position: relative;
  z-index: -2;
}
.hero .bg-color::before {
  content: "";
  position: absolute;
  background: url(../images/hero_deco01.svg) no-repeat center/cover;
  right: 0;
  top: 0;
  width: 205px;
  height: 361px;
  z-index: -1;
}
.hero .bg-color::after {
  content: "";
  position: absolute;
  background: url(../images/hero_deco02.svg) no-repeat center/cover;
  left: 0;
  bottom: 0;
  width: 450px;
  height: 378px;
  z-index: -1;
}
.hero .wrapper {
  position: relative;
  padding-left: 28.5%;
}

.hero-catch {
  position: absolute;
  left: 4%;
  bottom: 36%;
  z-index: 5;
}
.hero-catch p {
  font-size: 2.9375rem;
  letter-spacing: 0.1em;
  line-height: 2.3;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.hero-catch p .background {
  display: inline;
  background-color: #fff;
  padding: 12px 30px;
  border-radius: 14px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-img img {
  border-radius: 50px;
}

@media (max-width: 800px) {
  .hero {
    padding: 3.5%;
  }
  .hero .wrapper {
    padding-left: 0;
  }
  .hero .bg-color {
    padding: 80px 4% 95px;
  }
  .hero .bg-color::before {
    width: 82px;
    height: 136px;
  }
  .hero .bg-color::after {
    width: 173px;
    height: 148px;
  }
  .hero-catch {
    left: 10px;
    bottom: -70px;
  }
  .hero-catch p {
    font-size: 1.625rem;
    line-height: 1.8;
  }
  .hero-catch p .background {
    padding: 1px 8px;
    border-radius: 8px;
  }
  .hero-img img {
    border-radius: 20px;
  }
}
/*------------
Components
--------------*/
.t-h2 {
  line-height: 1.5;
  margin-bottom: 50px;
}
.t-h2.center {
  text-align: center;
}
.t-h2 .jp {
  font-size: 2.25rem;
  margin-bottom: 10px;
}
.t-h2 [lang=en] {
  font-size: 1rem;
  font-family: var(--font_en);
  color: var(--color_primary);
}

@media (max-width: 800px) {
  .t-h2 {
    margin-bottom: 35px;
  }
  .t-h2 .jp {
    font-size: 1.75rem;
  }
  .t-h2 [lang=en] {
    font-size: 0.8125rem;
  }
}
/*------------
Section
--------------*/
.sec01 {
  padding: 110px 0;
  background: url(../images/sec01_bg.jpg) no-repeat center/cover;
  width: 100%;
  height: 100%;
}

.sec01-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 6.5%;
  min-height: 200px;
  color: #fff;
}
.sec01-layout .l-ttl .jp {
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.sec01-layout .l-ttl [lang=en] {
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: var(--font_en);
}
.sec01-layout .l-desc {
  padding-top: 2px;
}
.sec01-layout .l-txt {
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  line-height: 2.3;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 50px 0;
  }
  .sec01-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
  }
  .sec01-layout .l-ttl {
    margin-bottom: 15px;
  }
  .sec01-layout .l-ttl .jp {
    font-size: 1.75rem;
  }
}
.sec02 {
  padding: 90px 0 100px;
}

.sec02-cardlayout_01 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
  margin-bottom: 40px;
}
.sec02-cardlayout_01 > li {
  min-height: 261px;
}
.sec02-cardlayout_01 a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 30px 20px;
  position: relative;
  transition: transform 0.5s;
  border-radius: 10px;
}
.sec02-cardlayout_01 a:hover {
  transform: translateY(-10px);
}
.sec02-cardlayout_01 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;
  border-radius: 0 0 10px 0;
}
.sec02-cardlayout_01 a.card01 {
  background: #FDD78C;
}
.sec02-cardlayout_01 a.card02 {
  background: #FBD6C4;
}
.sec02-cardlayout_01 a.card03 {
  background: #FFE485;
}
.sec02-cardlayout_01 a.card04 {
  background: #FFBF8D;
}
.sec02-cardlayout_01 .card-ttl {
  width: 100%;
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.sec02-cardlayout_02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.sec02-cardlayout_02 > li {
  min-height: 230px;
}
.sec02-cardlayout_02 a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px 10%;
  position: relative;
  transition: transform 0.5s;
  border-radius: 10px;
}
.sec02-cardlayout_02 a:hover {
  transform: translateY(-10px);
}
.sec02-cardlayout_02 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;
  border-radius: 0 0 10px 0;
}
.sec02-cardlayout_02 a.card01 {
  background: #FFFBA2;
}
.sec02-cardlayout_02 a.card02 {
  background: #FFCDB2;
}
.sec02-cardlayout_02 .card-ttl-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 40px;
}
.sec02-cardlayout_02 .card-ttl-wrap .card-ttl {
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media (max-width: 800px) {
  .sec02 {
    padding: 50px 0;
  }
  .sec02-cardlayout_01 {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    margin-bottom: 20px;
  }
  .sec02-cardlayout_01 > li {
    min-height: auto;
  }
  .sec02-cardlayout_01 .card-ttl {
    font-size: 1.5rem;
  }
  .sec02-cardlayout_02 {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
  }
  .sec02-cardlayout_02 > li {
    min-height: auto;
  }
  .sec02-cardlayout_02 a {
    padding: 30px 20px;
  }
  .sec02-cardlayout_02 .card-ttl-wrap {
    gap: 20px;
  }
  .sec02-cardlayout_02 .card-ttl-wrap img {
    width: 100px;
    height: 100px;
  }
  .sec02-cardlayout_02 .card-ttl-wrap .card-ttl {
    font-size: 1.5rem;
  }
}
.sec03 {
  padding: 90px 0 100px;
  position: relative;
}
.sec03::before {
  content: "";
  background: url(../images/sec03_bg.jpg) no-repeat center/cover;
  position: absolute;
  inset: 0 max(2.5%, 50% - 700px) 0 0;
  border-radius: 0 20px 20px 0;
  z-index: -1;
}

.t-news-layout {
  display: grid;
  grid-template-columns: 265px 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "ttl body" "btn body";
  gap: 0;
}
.t-news-layout .l-ttl {
  grid-area: ttl;
  line-height: 1.5;
}
.t-news-layout .l-ttl .jp {
  font-size: 2rem;
}
.t-news-layout .l-ttl [lang=en] {
  font-size: 1rem;
  font-family: var(--font_en);
  color: var(--color_primary);
}
.t-news-layout .l-body {
  grid-area: body;
  padding-top: 10px;
}
.t-news-layout .l-btn {
  grid-area: btn;
  position: relative;
  bottom: -50px;
  left: 0;
}
.t-news-layout .btn-icon {
  min-width: 170px;
  min-height: 50px;
  background: #fff;
  padding: 10px 28px;
  color: var(--color_text);
  border: 2px solid var(--color_primary);
}

@media (max-width: 800px) {
  .sec03 {
    padding: 50px 0;
  }
  .t-news-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "ttl" "body" "btn";
    gap: 30px;
  }
  .t-news-layout .l-ttl .jp {
    font-size: 1.75rem;
  }
  .t-news-layout .l-ttl [lang=en] {
        font-size: 0.8125rem;
    }
  .t-news-layout .l-body {
    padding-top: 0;
  }
  .t-news-layout .l-btn {
    bottom: 0;
  }
  .t-news-layout .btn-icon {
    min-width: 100%;
  }
}
.post-top-news {
  display: grid;
  border-top: 1px solid var(--color_border);
}
.post-top-news a {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--color_border);
  padding: 15px 0;
}
.post-top-news time {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.9375rem;
  font-family: var(--font_en);
  color: var(--color_primary);
}
.post-top-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@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;
  }
}
.sec04 {
  padding: 90px 0 100px;
  position: relative;
}
.sec04::before {
  content: "";
  position: absolute;
  background: url(../images/sec04_img01.svg) no-repeat center/contain;
  width: 222px;
  height: 401px;
  right: 21.3%;
  bottom: 0;
  z-index: -1;
}
.sec04::after {
  content: "";
  position: absolute;
  background: url(../images/sec04_bg.jpg) no-repeat top center/100% 100%;
  inset: -170px 0 0 max(2.5%, 50% - 700px);
  border-radius: 20px 0 0 20px;
  z-index: -2;
}

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

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

@media (max-width: 1700px) {
  .sec04::before {
    right: 15%;
  }
}

@media (max-width: 1450px) {
  .sec04::before {
    right: 7%;
  }
}

@media (max-width: 1150px) {
  .sec04::before {
    right: 3%;
  }
}

@media (max-width: 800px) {
  .sec04 {
    padding: 50px 0;
  }
  .sec04::before {
    width: 111px;
    height: 201px;
    right: 10px;
    bottom: 300px;
  }
  .sec04-layout .l-txt {
    width: 64%;
  }
}
.sec05 {
  padding: 100px 0;
}

.sec05-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  background: url(../images/sec05_bg.jpg) no-repeat center/cover;
  width: 100%;
  height: 100%;
  text-align: center;
}
.sec05-layout iframe {
  vertical-align: bottom;
  height: 100%;
  width: 100%;
}
.sec05-layout .l-desc {
  padding: 70px 10% 50px;
}
.sec05-layout .t-h2 {
  margin-bottom: 20px;
}
.sec05-layout .t-h2 .jp {
  font-size: 2rem;
  margin-bottom: 0;
}
.sec05-layout .l-txt {
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .sec05 {
    padding: 50px 0 0;
  }
  .sec05-layout {
    grid-template-columns: 1fr;
  }
  .sec05-layout iframe {
    vertical-align: bottom;
    height: 300px;
    width: 100%;
  }
  .sec05-layout .l-desc {
    padding: 30px 10% 50px;
  }
}
.post-top-blog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.post-top-blog .post-img {
  overflow: hidden;
  margin-bottom: 10px;
}
.post-top-blog .post-img img {
  aspect-ratio: 7/5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.3s;
}
.post-top-blog time {
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1;
  margin-bottom: 10px;
}
.post-top-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 15px;
}
.post-top-blog .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.post-top-blog .category {
  text-box: trim-both cap alphabetic;
  border: 1px solid var(--color_border);
  display: inline-block;
  border-radius: 100px;
  font-size: 0.6875rem;
  line-height: 1;
  padding: 5px 8px;
}
@media (any-hover: hover) {
  .post-top-blog .post-img img:hover {
    scale: 1.1;
  }
}

@media (max-width: 800px) {
  .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;
    align-items: flex-start;
    padding: 10px 0;
  }
  .post-top-blog .post-img {
    margin-bottom: 0;
  }
  .post-top-blog .post-img img {
    aspect-ratio: 7/5;
  }
  .post-top-blog .post-desc {
    line-height: 1;
  }
  .post-top-blog time {
    text-box: trim-both cap alphabetic;
    font-size: 0.6875rem;
    margin-bottom: 5px;
  }
  .post-top-blog .post-ttl {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }
  .post-top-blog .category {
    font-size: 0.625rem;
    padding: 3px 6px;
  }
}
/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  padding: 155px 0 30px 0;
  overflow: hidden;
  position: relative;
}
.page-header::before {
  content: "";
  position: absolute;
  background: url(../images/under/page-header_deco01.svg) no-repeat center / cover;
  right: 0;
  top: 0;
  width: 174px;
  height: 285px;
  z-index: -1;
}
.page-header::after {
  content: "";
  position: absolute;
  background: url(../images/under/page-header_deco02.svg) no-repeat center / cover;
  left: -50px;
  bottom: 10px;
  width: 344px;
  height: 313px;
  z-index: -1;
}

.page-header .wrapper {
  position: relative;
  padding-left: 21%;
}

.page-header .wrapper img {
  border-radius: 35px 0 0 35px;
}

.page-ttl {
  position: absolute;
  font-size: 2.5625rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  bottom: 50%;
  transform: translateY(50%);
  left: 155px;
  z-index: 5;
}

.page-ttl .background {
  background-color: #fff;
  padding: 8px 30px;
  border-radius: 5px;
}

.breadcrumb {
  position: relative;
  z-index: 1;
}
.breadcrumb ul {
  font-size: 0.875rem;
  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;
  transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

.u-contents p+p {
  margin-top: 15px;
}

@media (max-width: 1430px) {
  .page-header {
    padding: 135px 0 30px 0;
  }
}

@media (max-width: 800px) {
  .page-header {
    overflow: hidden;
    padding: 90px 5% 30px 0;
  }
  .page-header::before {
    width: 100px;
    height: 164px;
  }
  .page-header::after {
    width: 250px;
    height: 227px;
  }
  .page-header .wrapper {
    padding-left: 85px;
  }
  .page-header .wrapper img {
    border-radius: 20px;
  }
  .page-ttl {
    font-size: 1.4375rem;
    left: 5%;
  }
  .page-ttl .background {
    padding: 1px 8px;
    border-radius: 8px;
  }
}
.u-h2 {
  font-size: 2.25rem;
  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-family: var(--font_jp);
  font-size: 1.625rem;
  border-bottom: 2px solid var(--color_secondary);
  padding-bottom: 5px;
  margin-bottom: 30px;
  line-height: 1.5;
}

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

@media (max-width: 800px) {
  .u-h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  .u-h2::after {
    margin: 10px auto 0;
  }
  .u-h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .u-h4 {
    margin-bottom: 10px;
  }
}
.tall {
  padding: 70px 0;
}

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

.tall:last-child {
  padding-bottom: 100px;
}

.tall.bg {
  background: var(--color_secondary);
}

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

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

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall  {
    padding: 50px 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: 0.9375rem;
}
.list-disc.center {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.list-check {
  display: grid;
}
.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);
  transform: rotate(-45deg);
  position: absolute;
  top: 8px;
  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.6875rem;
  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 var(--color_border);
  display: flex;
  align-items: flex-end;
  grid-gap: 10px;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.125rem;
  padding: 0 0 5px;
}

.list-price .list-desc {
  color: #747474;
  font-size: 0.8125rem;
  margin-top: 5px;
}

@media (max-width: 800px) {
   .list-price>li+li {
    margin-top: 15px;
  }
  .list-price .list-intro {
    font-size: 1rem;
  }
}

.dl-style01 {
  display: grid;
  grid-template-columns: 25% 75%;
  grid-gap: 10px 0;
}
.dl-style01 dt {
  background: var(--color_primary);
  color: #fff;
  font-weight: bold;
  padding: 20px;
  border-radius: 10px 0 0 10px;
}
.dl-style01 dd {
  background: #F9E7B9;
  padding: 20px;
  border-radius: 0 10px 10px 0;
}

.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.8125rem;
  display: flex;
  align-items: 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;
    border-radius: 10px 10px 0 0;
  }
  .dl-style01 > dd {
    padding: 15px;
    border-radius: 0 0 10px 10px;
  }
  .dl-style01 > dd + dt {
    margin-top: 15px;
  }
  .dl-style03 {
    grid-gap: 10px 15px;
  }
}

.table-style01 th,
.table-style01 td {
  border: 1px solid var(--color_gray);
  padding: 15px;
  vertical-align: middle;
}
.table-style01 th {
  background-color: var(--color_primary);
  color: #fff;
}
.table-style01 .bg01 {
  background-color: #F9E7B9;
  color: var(--color_text);
}
.table-style01 td {
  background-color: #fff;
}

.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 colgroup {
    display: none;
  }
  .table-style01.table-sp-col1 th,
  .table-style01.table-sp-col1 td {
    display: block;
    padding: 10px;
  }
  .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%;
  }
}

/*------------
カード
--------------*/
.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.col2 > li,
.list-card02.col2 > li,
.list-card01.col3 > li,
.list-card02.col3 > li,
.list-card01.col4 > li,
.list-card02.col4 > li {
  border-radius: 10px;
}

.list-card01.col2 .list-img img,
.list-card02.col2 .list-img img,
.list-card01.col3 .list-img img,
.list-card02.col3 .list-img img,
.list-card01.col4 .list-img img,
.list-card02.col4 .list-img img {
  border-radius: 10px;
}

.list-card01 {
  display: grid;
}
.list-card01 a {
  background: #fff;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color_primary);
  padding: 4% 4% 5%;
  position: relative;
  border-radius: 10px;
  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;
  border-radius: 0 0 10px 0;
}
.list-card01 .list-img {
  text-align: center;
  margin-bottom: 20px;
}
.list-card01 .list-ttl {
  text-align: center;
  font-size: 1.5rem;
  font-family: var(--font_base);
  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: #F9E7B9;
  display: flex;
  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.6875rem;
  line-height: 25px;
  padding: 0 20px;
  margin: 0 auto 10px;
}
.list-card02 .list-ttl {
  font-size: 1.25rem;
  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: 200px;
}
.list-card03 a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 25px 9%;
  position: relative;
  border-radius: 10px;
}
.list-card03 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;
  border-radius: 0 0 10px 0;
}
.list-card03 a.card01 {
  background: #FFFBA2;
}
.list-card03 a.card02 {
  background: #FFCDB2;
}
.list-card03 .card-ttl-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 40px;
}
.list-card03 .card-ttl-wrap .card-ttl {
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media (max-width: 800px) {
  .list-card01.col2,
  .list-card02.col2,
  .list-card01.col3,
  .list-card02.col3,
  .list-card01.col4,
  .list-card02.col4 {
    grid-gap: 15px;
  }

  .list-card01.col2 > li,
  .list-card02.col2 > li {
    border-radius: 10px;
  }

  .list-card01.col2 .list-img img,
  .list-card02.col2 .list-img img {
    border-radius: 10px;
  }

  .list-card01 a {
    padding: 22px;
    min-height: auto;
  }

  .list-card02 > li {
    padding: 22px;
  }

  .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 {
  background: #fff;
  border: 2px solid var(--color_primary);
  padding: 5%;
  border-radius: 20px;
}
.box-style01 .box-ttl {
  font-size: 1.625rem;
  text-align: center;
  margin-bottom: 25px;
}
.box-style01 .box-ttl02 {
  font-size: 1.625rem;
  margin-bottom: 10px;
}

.box-style02 {
  background: var(--color_primary);
  padding: 5%;
  border-radius: 20px;
  color: #fff;
}
.box-style02 .box-ttl {
  display: flex;
  gap: 15px;
  font-size: 1.25rem;
  font-family: var(--font_jp);
  margin-bottom: 15px;
}
.box-style02 .box-ttl img {
  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: #F9E7B9;
  padding: 50px 5%;
  border-radius: 10px;
}
.box-style03 .inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 8%;
}
.box-style03 .box-ttl {
  font-size: 1.3125rem;
  font-family: var(--font_jp);
  line-height: 1.5;
}
.box-style03 .dl-style02 {
  grid-gap: 25px 20px;
}

@media (max-width: 800px) {
  .box-style01 {
    padding: 20px;
  }
  .box-style01 .box-ttl {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
  .box-style01 .box-ttl02 {
    font-size: 1.125rem;
  }

  .box-style02 {
    padding: 20px;
  }

  .box-style03 {
    padding: 30px 20px;
  }
  .box-style03 .inner {
    grid-template-columns: 1fr;
        gap: 30px;
  }
}


.under-slider01 .splide {
  margin: 0 auto;
}
.under-slider01 .splide__track {
  overflow: visible;
}
.under-slider01 .splide__slide:not(.is-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
}
.under-slider01 .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.under-slider01 .splide__arrow--prev {
  background: url(../images/share/splide_prev.svg) no-repeat center/auto 25px;
  left: calc((100% - 875px) / 2);
}
.under-slider01 .splide__arrow--next {
  background: url(../images/share/splide_next.svg) no-repeat center/auto 25px;
  right: calc((100% - 875px) / 2);
}
.under-slider01 .splide__slide img {
  width: 100%;
}
.under-slider01 .item-desc {
  margin-top: 15px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.under-slider01 .item-ttl {
  font-size: 1rem;
  margin-bottom: 5px;
}

.under-slider02 .item-img {
  position: relative;
}
.under-slider02 figcaption {
  background: #fff;
  font-size: 0.6875rem;
  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: 15px;
  left: 50%;
  transform: translateX(-50%);
}

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

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

@media (max-width: 800px) {
  .google-map iframe {
    height: 300px;
  }
}
/*------------
レイアウト
--------------*/
.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-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 {
  display: flex;
  position: relative;
  z-index: 0;
}

.l-style01 .l-img {
  width: 52%;
  margin: 0 6% 0 -5%;
}

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

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

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

.l-style01 .l-ttl {
  font-size: 1.5625rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.l-style01 .l-sub-ttl {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
}

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

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

.l-style01.reverse .l-img {
  margin: 0 -5% 0 6%;
}

.l-style02 {
  display: flex;
  align-items: flex-start;
}

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

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

.l-style02 .l-desc {
  background: #F9E7B9;
  padding: 55px 55px 55px 150px;
  margin: 50px 0 0 -100px;
  flex: 1;
  border-radius: 20px;
}

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

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

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

.staff-layout .l-desc {
  background: #F9E7B9;
  padding: 50px 5%;
  border-radius: 10px;
  margin-bottom: 50px;
}

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

.staff-layout .l-name {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  line-height: 1;
  margin-top: 25px;
  color: var(--color_primary);
}

.staff-layout .job {
  display: block;
}

.staff-layout .jp {
  display: block;
  font-size: 1.25rem;
}

.staff-layout .en {
  display: block;
  font-family: var(--font_en);
}

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

.card-profile .item {
  background-color: #F9E7B9;
  border-radius: 10px;
  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: 100px 1fr;
  grid-gap: 12px 0;
  line-height: 1.5;
}

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

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

.flow-style01 li:before {
  content: "";
  background-color: var(--color_primary);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.flow-style01 li::after {
  content: "";
  border-left: 2px solid #3D0000;
  position: absolute;
  top: 1.2em;
  bottom: -40px;
  left: 14px;
  z-index: -1;
}

.flow-style01 li:last-child::after {
  bottom: -10px;
}

.flow-style01 .flow-ttl {
  font-size: 1.3125rem;
  margin-bottom: 20px;
}

.flow-style01 .wrap {
  display: flex;
  gap: 5%;
}

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

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

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

.flow-style02 li {
  background-color: #fff;
  border: 1px solid var(--color_primary);
  padding: 20px 20px 20px 0;
  display: grid;
  align-items: center;
  grid-template-columns: 120px 1fr;
  position: relative;
  border-radius: 10px;
}

.flow-style02 li + li {
  margin-top: 40px;
}

.flow-style02 li + li::before {
  content: "";
  width: 14px;
  height: 50px;
  background: url(../images/share/flow_arrow.svg) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
}

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

.flow-style02 .num::before {
  content: attr(data-en);
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 3px;
}

.flow-style02 .flow-ttl {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.flow-style02 .flow-desc {
  flex: 1;
  border-left: 1px solid var(--color_primary);
  padding-left: 50px;
  line-height: 1.7;
}

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

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

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

.flow-style02 p + p {
  margin-top: 1em;
}

.faq-style {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-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: 18px;
  left: 0;
}

.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);
  top: 5px;
  left: 0;
}

.faq-style .faq-ttl {
  font-weight: bold;
}

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

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

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

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

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

.faq-style .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 {
  transform: rotate(180deg);
}

.faq-style .is-open .faq-open-icon::after {
  opacity: 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 {
    display: block;
  }

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

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

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

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

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

  .l-style02 {
    display: block;
  }

  .l-style02 .l-img {
    width: 100vw;
    margin: 0 -5vw;
  }

  .l-style02 .l-img img {
    border-radius: 0;
  }

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

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

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

  .staff-layout .l-desc {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

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

  .staff-layout .l-name {
    margin-top: 15px;
  }

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

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

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

  .flow-style01 li {
    padding-left: 60px;
  }

  .flow-style01 .wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .flow-style02 li {
    padding: 20px 20px 20px 0;
    grid-template-columns: 50px 1fr;
  }

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

  .flow-style02 .num::before {
    font-size: 0.75rem;
  }

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

  .flow-style02 .flow-desc {
    padding-left: 20px;
    line-height: 1.5;
  }

  .flow-style02 .wrapper {
    display: block;
  }

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

  .faq-style {
    line-height: 1.5;
  }

  .faq-style dt {
    padding: 18px 35px 18px 50px;
  }

  .faq-style dt .faq-icon {
    top: 12px;
  }

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

  .faq-style .faq-open-icon {
    right: 0;
    top: 7px;
  }
}
/*------------
Add
--------------*/
.privacy-ttl {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.dl-privacy {
  display: grid;
  gap: 3rem;
}
.dl-privacy dt {
  border-top: 1px solid var(--color_border);
  font-size: 1.0625rem;
  padding-top: 25px;
  margin-bottom: 15px;
  position: relative;
}
.dl-privacy dd {
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: justify;
}

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

.sp-only {
  display: none;
}

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

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.fade {
  transition: opacity 0.5s;
}
@media (any-hover: hover) {
  .fade:hover {
    opacity: 0.5;
  }
}

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

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

.underline {
  text-decoration: underline;
}

.red {
  color: #F44336;
}

.orange {
  color: var(--color_primary);
}

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

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

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 5px;
}

.mbS {
  margin-bottom: 15px;
}

.mbM {
  margin-bottom: 30px;
}

.mbXM {
  margin-bottom: 45px;
}

.mbL {
  margin-bottom: 60px;
}

.mbXL {
  margin-bottom: 90px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.grid {
  display: grid;
}

.col2 {
  grid-template-columns: repeat(2, 1fr);
}

.col3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.gapXS {
  grid-gap: 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;
  }
  button.gnavi-menu-btn.sp-only {
    display: flex;
  }
  .sp-tac {
    text-align: center;
  }
  .sp-tar {
    text-align: right;
  }
  .sp-tal {
    text-align: left;
  }
  .mbS {
    margin-bottom: 10px;
  }
  .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);
  }
  .gapS {
    grid-gap: 10px;
  }
  .gapM {
    grid-gap: 15px;
  }
  .gapXM {
    grid-gap: 30px;
  }
  .gapL {
    grid-gap: 45px;
  }
  .gapXL {
    grid-gap: 60px;
  }
}
/*------------
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;
}
