@charset "UTF-8";

/* ====================================================
【Mixin】
==================================================== */
/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #333;
  --color_link: #333;
  --color_border: #CBCBCB;
  --color_gradient: linear-gradient(to right, #2B86C9, #1760A0);
  --color_primary_dark: #1760A0;
  --color_primary: #3989D4;
  --color_secondary: #FFD900;
  --color_tertiary: #FF6E61;
  --color_quaternary: #ECF2F8;
  --color_quinary: #D6EBF7;
  --color_senary: #FDF3DA;
  --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:
    "Noto Sans JP",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Local Noto Sans JP",
    "Noto Sans JP",
    sans-serif;
  --font_jp: "Noto Sans JP", serif;
  --font_en: "Montserrat", serif;
  --font_weight: 500;
  --font_size: 1.0625rem;
  --line_height: 2.0;
  --letter_spacing: .05em;
}

@media (max-width: 800px) {
  :root {
    --font_size: 0.875rem;
    --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: none;
  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 {
  letter-spacing: 0.05em;
  line-height: 1.6;
}

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

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

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

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

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

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

.time-table 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;
    font-size: 0.75rem;
  }
}

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

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

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

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

@media (max-width: 800px) {
  .time-table img {
    width: 15px;
  }
}

.time-table tbody th:first-child {
  border-bottom: 1px solid var(--color_text);
}

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

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

/*-----------------------------------------------------------
診療カレンダー
-----------------------------------------------------------*/
.business-calendar-hidden {
  font-family: var(--font_base);
  display: none;
}

.business-calendar-wrap {
  background-color: var(--color_white);
  padding: 25px;
  border: 1px solid var(--color_border);
}

.business-calendar-wrap:has(.business-calendar-box > div + div) {
  background: none;
  padding: 0;
}

.business-calendar-wrap:has(.business-calendar-box > div + div) .business-calendar-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.business-calendar-wrap:has(.business-calendar-box > div + div) .business-calendar-box>div {
  background-color: var(--color_white);
  padding: 25px;
}

@media (max-width: 800px) {
  .business-calendar-wrap {
    padding: 20px 15px;
  }

  .business-calendar-wrap:has(.business-calendar-box > div + div) .business-calendar-box {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .business-calendar-wrap:has(.business-calendar-box > div + div) .business-calendar-box>div {
    padding: 20px 15px;
  }
}

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

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

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

@media (max-width: 800px) {
  .business-calendar-box .business-calendar caption {
    font-size: 1rem;
  }
}

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

@media (max-width: 800px) {
  .business-calendar-box .business-calendar caption span {
    margin: 0 30px;
    font-size: 1.25rem;
    vertical-align: 0;
  }
}

.business-calendar-box .business-calendar th {
  background-color: var(--color_primary_dark);
  color: var(--color_white);
  font-size: 0.8125rem;
  font-weight: bold;
  padding: 10px 5px;
  width: 14%;
}

@media (max-width: 800px) {
  .business-calendar-box .business-calendar th {
    font-size: 0.6875rem;
  }
}

.business-calendar-box .business-calendar td {
  border-bottom: 1px solid var(--color_text);
  background-clip: padding-box;
  position: relative;
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 10px 5px;
  z-index: 0;
}

@media (max-width: 800px) {
  .business-calendar-box .business-calendar td {
    font-size: 0.6875rem;
  }
}

.business-calendar-box .business-calendar td::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1em;
  margin: 5px auto 0;
  text-decoration: none;
  opacity: 0;
}

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

.business-calendar-box .business-calendar .sunday {
  color: var(--color_tertiary);
}

.business-calendar-box .business-calendar .saturday {
  color: var(--color_primary);
}

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

.business-calendar-box .business-calendar .attr0::after {
  content: "×" /"休診日";
}

.business-calendar-box .business-calendar .attr1::after {
  content: "▲" /"午前休診";
}

.business-calendar-box .business-calendar .attr2::after {
  content: "■" /"午後休診";
}

.business-calendar-box .business-calendar .attr3::after {
  content: "◆" /"時間変更あり";
}

.business-calendar-box .business-calendar .attr4::after {
  content: "★" /"完全予約制";
}

.business-calendar-box .business-calendar .business-calendar-past a,
.business-calendar-box .business-calendar .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 .business-calendar .business-calendar-past a::before,
.business-calendar-box .business-calendar .business-calendar-future a::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color_primary);
  border-right: 2px solid var(--color_primary);
  transform: rotate(45deg);
  position: absolute;
  top: 7px;
  left: 7px;
}

.business-calendar-box .business-calendar .business-calendar-past a::before {
  transform: rotate(45deg) scale(-1);
}

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

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

.list-event li::before {
  content: "";
}

.list-event .event01::before {
  content: "×";
}

.list-event .event02::before {
  content: "▲";
}

.list-event .event03::before {
  content: "■";
}

.list-event .event04::before {
  content: "◆";
}

.list-event .event05::before {
  content: "★";
}

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

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

/*ボタン*/
.btn-more {
  display: inline-block;
  border: 1px solid var(--color_primary);
  background: var(--color_gradient);
  border-radius: 3px;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.3;
  padding: 15px 40px;
  position: relative;
  min-width: 200px;
  text-align: center;
  transition: 0.2s;
}

.btn-more:after {
  content: "";
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.2s;
}

.btn-more.small {
  min-width: 180px;
  font-size: 1rem;
  padding: 19px 40px;
}

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

  .btn-more:is(:hover, :focus):after {
    border-top: 2px solid var(--color_primary);
    border-right: 2px solid var(--color_primary);
  }
}

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

.btn-more02 {
  color: var(--color_primary_dark);
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.1;
  position: relative;
  text-align: left;
  transition: 0.2s;
  min-height: 3.125rem;
  text-decoration: underline;
  text-decoration-color: transparent;
}

.btn-more02:after {
  content: "";
  display: block;
  background: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  width: 3.125rem;
  height: 3.125rem;
  transition: 0.2s;
  z-index: 2;
}

@media (hover: hover) {
  .btn-more02:is(:hover, :focus) {
    text-decoration-color: currentColor;
  }
}

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

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

.btn-wrap.tar {
  justify-content: flex-end;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px 20px;
  border-radius: 100px;
  color: var(--color_white);
  font-size: 1.0625rem;
  font-weight: bold;
  min-width: 300px;
  border-radius: 3px;
  transition: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-icon.btn-blue {
  background: var(--color_gradient);
}

.btn-icon.btn-red {
  background: linear-gradient(to right, #FF6E61, #EF5547);
}

@media (any-hover: hover) {
  .btn-icon:is(:hover, :focus) {
    filter: brightness(1.2) saturate(1.2);
  }
}

.btn-icon {
  transition: background 0.3s, filter 0.3s, box-shadow 0.3s;
}

.tel-link {
  display: inline-block;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1;
}

.tel-link:before {
  content: "" /"Tel";
  background: url(../images/share/icon_tel.svg) no-repeat center/contain;
  width: 0.94em;
  height: 0.94em;
  display: inline-block;
  margin-right: 0.3em;
  vertical-align: -2px;
}

@media (max-width: 800px) {
  .tel-link {
    font-size: 1.75rem;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  font-size: 1.6875rem;
  font-weight: bold;
  padding: 0 0 0 20px;
  margin: 0 0 30px;
  position: relative;
}

.category-ttl::before {
  content: "";
  background: var(--color_secondary);
  width: 2px;
  height: 1em;
  position: absolute;
  top: 0.3em;
  left: 0;
}


@media (max-width: 800px) {
  .category-ttl {
    font-size: 1rem;
    padding: 0 0 0 16px;
    margin: 0 0 20px;
  }

  .category-ttl::before {
    width: 2px;
    height: 1em;
    top: 0.3em;
  }
}

/*カテゴリーリスト*/
.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: var(--color_secondary);
  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;
  }
}

.search-area .search_container {
  box-sizing: border-box;
  position: relative;
  height: 50px;
  max-width: 300px;
  width: auto;
  display: flex;
}

.search-area .search_container input[type=text] {
  border: none;
  border: 1px solid #EDEDED;
  background: #EDEDED;
  font-size: 1rem;
  color: var(--color_text);
  border-radius: none;
  width: calc(100% - 50px);
  padding: 0 10px;
  height: 50px;
}

.search-area .search_container input[type=text]:focus {
  outline: 0;
}

.search-area .search_container input[type=submit] {
  cursor: pointer;
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  outline: none;
  background: var(--color_primary) url(../images/share/icon_search.svg) no-repeat center/30px auto;
  transition: background-color 0.3s ease;
}

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

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

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

.post-under-type01 a::before {
  content: "";
  background: 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-type01 .post-img img {
  border: 1px solid var(--color_border);
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 7/5;
}

.post-under-type01 .post-data {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.post-under-type01 time {
  display: block;
  display: inline-block;
  color: var(--color_gray_dark);
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}

.post-under-type01 .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 5px;
}

.post-under-type01 .category {
  display: inline-block;
  color: var(--color_tertiary);
  font-size: 0.625rem;
  line-height: 1.5;
  text-align: center;
}

.post-under-type01 .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  word-break: break-all;
}

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

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

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

  .post-under-type01 a::before {
    display: none;
  }

  .post-under-type01 .post-img img {
    aspect-ratio: 7/5;
  }

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

  .post-under-type01 time {
    flex-shrink: 0;
    display: block;
    display: inline-block;
    color: var(--color_gray_dark);
    font-family: var(--font_en);
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: 1;
  }

  .post-under-type01 .category {
    font-size: 0.5rem;
  }

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

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

/*詳細ページ*/
.layout-single-post {
  width: min(90%, 800px);
  margin-inline: auto;
}

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

.layout-single-post time {
  flex-shrink: 0;
  display: inline-block;
  color: var(--color_gray_dark);
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  flex: 0 0 auto;
}

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

.layout-single-post .category {
  display: inline-block;
  color: var(--color_tertiary);
  font-size: 0.625rem;
  line-height: 1.5;
  text-align: center;
}

.layout-single-post .l-ttl {
  font-size: 2.8125rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
  word-break: break-all;
}

.layout-sidebar .layout-single-post {
  width: 100%;
}

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

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

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

.post-number span:hover,
.post-number a:hover {
  color: var(--color_text);
}

.post-number .current {
  color: var(--color_text);
  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: var(--color_text);
  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;
  font-family: var(--font_en);
  line-height: 28px;
  max-width: 200px;
  height: 30px;
  width: 100%;
  transition: background-color 0.3s, color 0.3s;
}

.post-number-single .all:hover {
  background: var(--color_base);
  color: var(--color_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;
}

.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 {
  content: "";
  right: 8px;
}

.post-number-single .next::before {
  content: "";
  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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: 0.5s;
}

.header.is-fixed {
  background-color: var(--color_white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header.is-fixed .gnavi-links>li {
  color: var(--color_black);
}

@media (max-width: 800px) {
  .header {
    background-color: var(--color_white);
    padding: 10px 2.5%;
    position: sticky;
  }
}

.h-logo {
  background-color: var(--color_white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 91px;
}

@media (max-width: 800px) {
  .h-logo {
    max-width: 245px;
    width: 100%;
    height: auto;
  }
}

.h-utility {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-right: 45px;
}

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

.h-btn {
  display: inline-block;
  transition: 0.3s;
}

@media (hover: hover) {
  .h-btn:is(:hover, :focus) {
    opacity: 0.7;
  }
}

/*------------
Gnavi
--------------*/
.gnavi-links {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  color: var(--color_white);
}

.gnavi-links>li>a,
.gnavi-links>li>p {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: bold;
  transition: 0.3s;
  position: relative;
}

.gnavi-links>li>a::before,
.gnavi-links>li>p::before {
  content: "";
  display: block;
  background-color: var(--color_secondary);
  width: 90%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 5%;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

@media (hover: hover) {

  .gnavi-links>li>a:is(:hover, :focus)::before,
  .gnavi-links>li>p:is(:hover, :focus)::before {
    transform: scaleX(1);
  }
}

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

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

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

.dropdown .sub-menu {
  position: absolute;
  top: 100%;
  right: 50%;
  width: -moz-max-content;
  width: max-content;
  min-width: 200px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 100;
  padding: 10px 0 0;
  pointer-events: none;
}

.dropdown .sub-menu>ul {
  display: grid;
  grid-gap: 5px;
  background: var(--color_gradient);
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.dropdown .sub-menu>ul>li {
  padding: 0 0 0 1em;
  position: relative;
}

.dropdown .sub-menu>ul>li::before {
  content: "";
  display: block;
  background-color: var(--color_white);
  width: 6px;
  height: 1px;
  position: absolute;
  top: 1.2em;
  left: 0;
}

.dropdown .sub-menu>ul>li>a {
  display: inline-block;
  color: var(--color_white);
  font-size: 1rem;
  transition: 0.3s;
  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) {
  .dropdown .sub-menu>ul>li>a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

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

/*------------
Guide Bar
--------------*/
.guide-bar {
  display: block;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s;
  transform: translateY(calc(100% - 61px));
  z-index: 100;
  max-width: 396px;
}

.guide-bar.is-open {
  transform: translateY(0);
}

.guide-bar-ttl {
  padding: 10px 25px;
  display: flex;
  align-items: center;
  color: var(--color_primary_dark);
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
  border-bottom: 1px solid var(--color_border);
}

.guide-bar-ttl img {
  width: 28px;
  height: auto;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  margin-right: 12px;
}

.guide-bar-ttl .arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(0%) rotate(-135deg);
  transform-origin: top;
}

.guide-bar-ttl .arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 2px;
  background: var(--color_primary_dark);
  border-radius: 1px;
}

.guide-bar-ttl .arrow::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 10px;
  background: var(--color_primary_dark);
  border-radius: 1px;
}

.is-open .guide-bar-ttl .arrow {
  transform: rotate(135deg) translateY(-50%);
}

.is-open .guide-bar-ttl .arrow::before {
  left: 50%;
  top: 50%;
  width: 20px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.is-open .guide-bar-ttl .arrow::after {
  left: 50%;
  top: 50%;
  width: 1px;
  height: 20px;
  transform: translate(-50%, -50%);
}

.guide-bar-contents {
  background-color: var(--color_white);
  padding: 25px 15px;
}

.guide-bar-contents .item+.item {
  margin-top: 15px;
}

.guide-bar-contents .item+.guide-bar-sub-ttl {
  margin-top: 15px;
}

.guide-bar-contents .guide-bar-sub-ttl {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 5px;
}

.guide-bar-contents a {
  display: flex;
  align-items: center;
  line-height: 1;
  padding: 0 10px;
}

.guide-bar-contents a .ttl {
  font-size: 1.125rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: 0.3s;
}

.guide-bar-contents a .ttl .small {
  font-size: 0.875rem;
}

@media (any-hover: hover) {
  .guide-bar-contents a:is(:hover, :focus) .ttl {
    text-decoration-color: var(--color_primary_dark);
  }
}

.guide-bar-contents .img {
  margin-right: 10px;
}

.guide-bar-contents .img img {
  -o-object-fit: scale-down;
  object-fit: scale-down;
  width: 35px;
  height: auto;
  -o-object-position: left center;
  object-position: left center;
}

@media (max-width: 800px) {
  .guide-bar {
    max-width: 100%;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background-color: var(--color_quaternary);
  position: relative;
}

.f-contact {
  background: url(../images/share/f-contact_bg.jpg) no-repeat center/cover;
  padding: 100px 0;
  margin-bottom: 90px;
}

.f-contact .f-contact-layout {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 30px 50px;
  align-items: center;
  color: var(--color_white);
  border-bottom: 1px solid var(--color_white);
  padding-bottom: 20px;
  margin: 0 auto 50px;
}

.f-contact .f-contact-layout .l-ttl {
  line-height: 1.5;
}

.f-contact .f-contact-layout .l-ttl [lang=en] {
  display: inline-block;
  font-family: var(--font_en);
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 5px;
  padding: 15px 0 0;
  position: relative;
  z-index: 1;
}

.f-contact .f-contact-layout .l-ttl [lang=en]:before {
  content: "";
  background: url(../images/share/icon_paw.svg) no-repeat left top/contain;
  display: block;
  width: 70px;
  height: 63px;
  position: absolute;
  top: 0;
  left: -30px;
  z-index: -1;
}

.f-contact .f-contact-layout .l-ttl .jp {
  font-size: 2.5rem;
  font-weight: bold;
}

.f-contact .f-contact-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px 30px;
  margin-bottom: 30px;
}

.f-contact .f-contact-link li .tel-link {
  color: var(--color_white);
}

.f-contact .f-contact-time {
  display: flex;
  justify-content: center;
  align-items: center;
}

.f-contact .f-contact-time dt {
  font-size: 1.0625rem;
  background: var(--color_white);
  padding: 2px 12px;
  margin-right: 15px;
  line-height: 1.2;
  display: inline-block;
  min-width: 84px;
  text-align: center;
}

.f-contact .f-contact-time dd {
  font-size: 1rem;
  display: inline-block;
  color: var(--color_white);
  margin-right: 40px;
}

.f-contents {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 50px;
  margin-inline: auto;
  margin-bottom: 100px;
  width: min(90%, 1024px);
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color_primary_dark);
  padding-bottom: 40px;
}

.f-logo-area {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 20px;
}

.f-txt {
  line-height: 1.5;
}

.site-map {
  display: flex;
  gap: 6rem;
  width: min(90%, 1024px);
  margin: 0 auto 80px;
}

.site-map>.item {
  border-left: 1px solid var(--color_primary_dark);
  padding-left: 30px;
}

.site-map>.item .item-ttl {
  font-size: 1.0625rem;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.site-map>.item .item-ttl:before {
  content: "";
}

.f-links {
  font-size: 1.0625rem;
  line-height: 1.5;
}

.f-links>li {
  margin-bottom: 10px;
  padding: 0 0 0 1em;
  position: relative;
}

.f-links>li::before {
  content: "";
  display: block;
  background-color: var(--color_primary_dark);
  width: 6px;
  height: 1px;
  position: absolute;
  top: 0.9em;
  left: 0;
}

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

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

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

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

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

.f-bottom-links a {
  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.8125rem;
}

.pagetop {
  position: absolute;
  bottom: 95px;
  right: 5%;
}

@media (max-width: 800px) {
  .f-contact {
    padding: 50px 0;
    margin-bottom: 50px;
  }

  .f-contact .f-contact-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 15px;
  }

  .f-contact .f-contact-layout .l-ttl {
    text-align: center;
  }

  .f-contact .f-contact-layout .l-ttl [lang=en] {
    font-size: 2.5rem;
    padding-top: 10px;
  }

  .f-contact .f-contact-layout .l-ttl [lang=en]:before {
    width: 50px;
    height: 45px;
    left: -15px;
  }

  .f-contact .f-contact-layout .l-ttl .jp {
    font-size: 1.5rem;
  }

  .f-contact .f-contact-link {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 25px;
  }

  .f-contact .f-contact-link li {
    width: 100%;
    text-align: center;
  }

  .f-contact .f-contact-link li .tel-link {
    font-size: 1.75rem;
  }

  .f-contact .f-contact-link li .btn-icon {
    min-width: 0;
    width: 100%;
    font-size: 0.9375rem;
    padding: 12px 15px;
  }

  .f-contact .f-contact-time {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 12px;
    justify-content: center;
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
  }

  .f-contact .f-contact-time dt {
    font-size: 0.9375rem;
    margin-right: 0;
    min-width: 76px;
  }

  .f-contact .f-contact-time dd {
    font-size: 0.875rem;
    margin-right: 0;
    text-align: left;
  }

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

  .site-map {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-map>.item {
    border-left: none;
    border-bottom: 1px solid var(--color_primary_dark);
    padding: 0 0 30px;
  }

  .site-map>.item .item-ttl {
    font-size: 1.0625rem;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
  }

  .site-map>.item .item-ttl:before {
    content: "";
  }

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

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

.sp-navi {
  display: none;
}

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

  .sp-menu-btn {
    background-color: var(--color_primary_dark);
    border: none;
    cursor: pointer;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 50px;
    height: 50px;
    right: 15px;
    top: 15px;
    z-index: 210;
  }

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

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

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

  .sp-menu-btn span: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_text);
    font-size: 0.9375rem;
    padding: 50px 25px 25px;
    position: fixed;
    inset: 0;
    transform: translateX(60px);
    transition: 0.5s var(--ease);
    opacity: 0;
    z-index: 200;
  }

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

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

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

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

  .sp-navi-list>li>a::after {
    content: "";
    background-color: var(--color_primary_dark);
    -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 {
    padding-top: 0;
  }

  .sp-details::details-content {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 15px;
    transition: 0.3s ease;
  }

  .sp-details[open]::details-content {
    grid-template-rows: 1fr;
    padding: 15px;
  }

  .sp-details[open] .plus {
    rotate: 45deg;
  }

  .sp-details-btn {
    display: flex;
    align-items: center;
    padding: 10px 30px 10px 0;
    position: relative;
    min-height: 50px;
    width: 100%;
  }

  .sp-details-btn .text {
    display: block;
  }

  .sp-details-btn .plus {
    display: block;
    background-color: var(--color_primary_dark);
    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;
    font-weight: bold;
  }

  .sp-sub-menu a {
    display: block;
    position: relative;
    padding-left: 20px;
  }

  .sp-sub-menu a::before {
    content: "";
    position: absolute;
    border-radius: 100%;
    background-color: var(--color_primary_dark);
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    transform: translateY(-50%);
  }
}

.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 15.625rem;
  grid-template-areas: "body sidebar";
  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-sidebar-item+.l-sidebar-item {
  margin-top: 2.5rem;
}

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

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

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

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

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

.hero::before {
  content: "";
  position: absolute;
  inset: 63% 0 0;
  background: var(--color_gradient);
  z-index: -1;
  pointer-events: none;
}

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

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

.hero .splide__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 0;
  position: absolute;
  left: 2.5%;
  bottom: 20px;
  z-index: 10;
}

.hero .splide__pagination__page {
  background: #fff;
}

.hero .splide__toggle {
  background: #fff;
}

.hero-scroll {
  position: absolute;
  bottom: 0;
  left: 1%;
  z-index: 10;
}

.hero-img {
  position: relative;
  width: 97%;
  margin: 0 0 0 auto;
}

.hero-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.17);
  z-index: 2;
  pointer-events: none;
}

.hero-ttl {
  color: #fff;
  font-family: var(--font_jp);
  position: absolute;
  bottom: 10%;
  left: 5%;
  z-index: 15;
}

.hero-ttl .ttl {
  font-size: min(4.0625rem, 4vw);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: min(2.5rem, 2vw);
}

.hero-ttl .txt {
  font-size: min(1.3125rem, 1vw);
  font-weight: 500;
  line-height: 1.7;
}

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

  .hero::before {
    inset: 40% 0 0;
  }

  .hero .splide__controls {
    left: 2.5%;
    bottom: 10px;
  }

  .hero-img {
    position: relative;
    width: 86.25%;
  }

  .hero-scroll {
    left: 5%;
  }

  .hero-ttl {
    bottom: 20%;
    left: 0;
    width: 100%;
    padding: 0 2.5%;
  }

  .hero-ttl .ttl {
    font-size: 8vw;
  }

  .hero-ttl .txt {
    font-size: 0.625rem;
  }
}

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

.t-h2 [lang=en] {
  display: inline-block;
  color: var(--color_primary_dark);
  font-family: var(--font_en);
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 5px;
  padding: 20px 0 0 8px;
  background: url(../images/share/icon_paw.svg) no-repeat left top;
}

.t-h2 .jp {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

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

  .t-h2 [lang=en] {
    font-size: 1.625rem;
    padding: 10px 0 0 8px;
    background-size: 40px auto;
    min-height: 40px;
  }

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

.post-top-type01 {
  display: grid;
  border-top: 1px solid var(--color_border);
}

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

.post-top-type01 .no-post {
  white-space: nowrap;
  border-bottom: 1px solid var(--color_border);
  padding: 25px 0;
}

.post-top-type01 time {
  display: inline-block;
  white-space: nowrap;
  display: inline-block;
  color: var(--color_gray_dark);
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}

.post-top-type01 .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: 1.0625rem;
}

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

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

  .post-top-type01 .no-post {
    padding: 10px 0;
  }

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

.post-top-type02 .post-img {
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid var(--color_border);
}

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

.post-top-type02 time {
  display: inline-block;
  color: var(--color_gray_dark);
  font-family: var(--font_en);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}

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

.post-top-type02 .category {
  display: inline-block;
  color: var(--color_tertiary);
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}

.post-top-type02 .no-post {
  white-space: nowrap;
}

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

.t-post-layout01 {
  background-color: var(--color_white);
  padding: 60px;
  position: relative;
}

.t-post-layout01:after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--color_primary);
  pointer-events: none;
  opacity: 0.52;
}

.t-post-layout01 .l-ttl {
  line-height: 1.5;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.t-post-layout01 .l-ttl [lang=en] {
  display: inline-block;
  color: var(--color_primary_dark);
  font-family: var(--font_en);
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 1.1;
  padding: 0 0 0 45px;
  background: url(../images/share/icon_paw.svg) no-repeat left center/27px auto;
}

.t-post-layout01 .l-ttl .jp {
  display: inline-block;
  font-size: 1.375rem;
  font-weight: bold;
}

.t-post-layout01 .l-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 0 30px;
  position: absolute;
  top: 60px;
  right: 90px;
}

@media (max-width: 800px) {
  .t-post-layout01 {
    display: block;
    padding: 30px;
  }

  .t-post-layout01:after {
    inset: 5px;
  }

  .t-post-layout01 .l-ttl {
    line-height: 1.4;
    margin-bottom: 25px;
    gap: 12px;
  }

  .t-post-layout01 .l-ttl [lang=en] {
    font-size: 1.5625rem;
    background-size: 20px auto;
    padding: 0 0 0 25px;
  }

  .t-post-layout01 .l-ttl .jp {
    font-size: 0.9375rem;
  }

  .t-post-layout01 .l-btn {
    position: static;
    margin-top: 30px;
    justify-content: center;
    gap: 15px;
  }
}

.t-post-layout02 {
  margin: 0 auto 0 max(5%, 50% - 512px);
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas: "ttl body" "btn body";
  gap: 0 30px;
}

.t-post-layout02 .l-ttl {
  grid-area: ttl;
  line-height: 1.5;
  margin-bottom: 90px;
}

.t-post-layout02 .l-ttl [lang=en] {
  color: var(--color_primary_dark);
  font-family: var(--font_en);
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 5px;
}

.t-post-layout02 .l-ttl .jp {
  font-size: 1.375rem;
  font-weight: bold;
}

.t-post-layout02 .l-body {
  grid-area: body;
}

.t-post-layout02 .l-btn {
  grid-area: btn;
}

@media (max-width: 800px) {
  .t-post-layout02 {
    display: block;
    margin: 0 auto;
  }

  .t-post-layout02 .l-ttl {
    line-height: 1.4;
    margin-bottom: 35px;
    padding: 0 5%;
  }

  .t-post-layout02 .l-ttl [lang=en] {
    font-size: 1.5625rem;
    margin-bottom: 4px;
    padding-left: 0;
    background: none;
  }

  .t-post-layout02 .l-ttl .jp {
    font-size: 1.125rem;
  }

  .t-post-layout02 .l-body {
    padding-left: 5%;
  }

  .t-post-layout02 .l-btn {
    margin-top: 30px;
    text-align: center;
    padding: 0 5%;
  }
}

.post-top-type02-slider .splide__arrows {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  gap: 15px;
}

.post-top-type02-slider .splide__arrows .splide__arrow:disabled {
  opacity: 0.5;
}

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

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

/*sec02*/
.sec02 {
  background-color: var(--color_quinary);
  padding: 100px 0;
}

.sec02 .t-h2 {
  margin-bottom: 40px;
}

.sec02-ttl {
  font-size: 1.6875rem;
  font-weight: bold;
  padding: 0 0 0 20px;
  margin: 0 0 20px;
  position: relative;
}

.sec02-ttl::before {
  content: "";
  background: var(--color_secondary);
  width: 2px;
  height: 1em;
  position: absolute;
  top: 0.3em;
  left: 0;
}

.sec02-txt {
  margin-bottom: 50px;
  text-align: center;
}

.sec02-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 3.3%;
  margin-bottom: 60px;
  margin-bottom: 60px;
}

.sec02-layout>.item {
  background-color: var(--color_white);
  border: 1px solid var(--color_primary_dark);
  padding: 50px;
}

.sec02-layout>.item .business-calendar-wrap {
  border: none;
  border-top: 1px solid var(--color_text);
  padding: 15px 0 0;
}

.sec02-dl {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.sec02-dl dt {
  font-weight: bold;
}

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

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

  .sec02-ttl {
    font-size: 1.25rem;
    padding: 0 0 0 15px;
    margin: 0 0 15px;
  }

  .sec02-txt {
    margin-bottom: 30px;
    text-align: left;
  }

  .sec02-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 25px 0;
    margin-bottom: 30px;
  }

  .sec02-layout>.item {
    padding: 25px 20px;
  }

  .sec02-dl {
    grid-template-columns: 70px 1fr;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.875rem;
  }
}

/*sec03*/
.sec03 {
  background-color: var(--color_quinary);
  padding: 0 0 250px;
  position: relative;
}

.sec03:before {
  content: "";
  position: absolute;
  inset: 200px 0 0;
  background: linear-gradient(rgba(0, 0, 0, 0.13), rgba(0, 0, 0, 0.13)), url(../images/sec03_bg.jpg) no-repeat center/cover;
  z-index: 1;
}

.sec03-layout {
  position: relative;
  z-index: 5;
  background-color: var(--color_quaternary);
  margin: 0 auto 0 max(5%, 50% - 700px);
  padding: 110px max(5%, 50% - 600px) 110px 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 7.5%;
}

.sec03-layout .l-ttl {
  display: flex;
  align-items: center;
  gap: 7.5%;
  width: 100%;
  margin-bottom: 15px;
}

.sec03-layout .l-ttl [lang=en] {
  width: 42%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-family: var(--font_en);
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 1.1;
}

.sec03-layout .l-ttl [lang=en]::before,
.sec03-layout .l-ttl [lang=en]::after {
  content: "";
  background: currentColor;
  width: 0.5em;
  height: 1px;
}

.sec03-layout .l-ttl .jp {
  flex: 1;
  font-size: 2.8125rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 0 0 0 30px;
  position: relative;
}

.sec03-layout .l-ttl .jp::before {
  content: "";
  background: var(--color_secondary);
  width: 5px;
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(to bottom, #2B86C9, #1760A0);
}

.sec03-layout .l-img {
  width: 42%;
}

.sec03-layout .l-desc {
  flex: 1;
  padding: 45px 0 0;
}

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

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

  .sec03:before {
    inset: 60px 0 0;
  }

  .sec03-layout {
    margin: 0 5%;
    padding: 50px 5%;
    gap: 25px;
  }

  .sec03-layout .l-ttl {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }

  .sec03-layout .l-ttl [lang=en] {
    width: auto;
    gap: 10px;
    font-size: 1.75rem;
  }

  .sec03-layout .l-ttl .jp {
    font-size: 1.375rem;
    padding: 0 0 0 15px;
  }

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

  .sec03-layout .l-desc {
    padding: 0;
  }
}

/*sec04*/
.sec04 {
  padding: 100px 0;
}

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

.sec04-card-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.sec04-card-layout .card-item {
  display: flex;
  flex-direction: column;
}

.sec04-card-layout .card-item .card-ttl {
  margin-bottom: 20px;
}

.sec04-card-layout .card-item .card-ttl .num {
  color: var(--color_secondary);
  font-family: var(--font_en);
  font-size: 3.8125rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  margin: -0.5em 0 10px;
}

.sec04-card-layout .card-item .card-ttl .jp {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.sec04-card-layout .card-item .card-desc {
  margin-bottom: 20px;
}

.sec04-card-layout .card-item .card-btn {
  text-align: center;
  margin: auto 0 0;
}

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

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

  .sec04-card-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .sec04-card-layout .card-item .card-ttl {
    margin-bottom: 15px;
  }

  .sec04-card-layout .card-item .card-ttl .num {
    font-size: 2.5rem;
    margin: -0.3em 0 5px;
  }

  .sec04-card-layout .card-item .card-ttl .jp {
    font-size: 1.125rem;
  }

  .sec04-card-layout .card-item .card-desc {
    margin-bottom: 15px;
  }
}

/*sec05*/
.sec05 {
  background-color: var(--color_quinary);
  padding: 100px 0;
}

.sec05-layout {
  margin: 0 auto 112px max(5%, 50% - 700px);
  display: flex;
  flex-direction: row-reverse;
  gap: 6.25%;
}

.sec05-layout .l-img {
  width: 56.25%;
  padding-top: 1.5625rem;
  position: relative;
}

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

.sec05-layout .l-img .caption {
  position: absolute;
  left: -3.375rem;
  top: 0;
  z-index: 10;
}

.sec05-layout .l-img .caption .bg {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--color_gradient);
  color: #fff;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  padding: 1.125rem 1.25rem;
}

.sec05-layout .l-img .caption .bg+.bg {
  margin-top: 0.625rem;
}

.sec05-layout .l-ttl {
  margin-bottom: 60px;
  line-height: 1.2;
  padding: 0 0 0 30px;
  position: relative;
}

.sec05-layout .l-ttl::before {
  content: "";
  background: var(--color_secondary);
  width: 5px;
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(to bottom, #2B86C9, #1760A0);
}

.sec05-layout .l-ttl [lang=en] {
  color: var(--color_primary_dark);
  font-family: var(--font_en);
  font-size: 2.5rem;
  font-weight: 500;
}

.sec05-layout .l-ttl .jp {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

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

.sec05-layout .l-desc .l-txt p+p {
  margin-top: 40px;
}

.sec05-layout .l-desc .l-btn {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.sec05-card-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.sec05-card-layout .card-item a {
  background-color: var(--color_white);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 5px;
  align-items: center;
  position: relative;
  transition: 0.3s;
}

.sec05-card-layout .card-item a:hover,
.sec05-card-layout .card-item a:focus-visible {
  background-color: var(--color_senary);
  z-index: 2;
}

.sec05-card-layout .card-item a::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 10px;
  height: 10px;
  z-index: 1;
  background: var(--color_primary_dark);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.sec05-card-layout .card-item a .card-ttl {
  color: var(--color_primary_dark);
  font-size: clamp(1.25rem, 1vw, 1.625rem);
  font-weight: bold;
  line-height: 1.3;
}

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

  .sec05-layout {
    flex-direction: column;
    margin: 0 5% 50px;
    gap: 30px;
  }

  .sec05-layout .l-img {
    width: 100%;
    padding-top: 0.9375rem;
  }

  .sec05-layout .l-img .caption {
    left: 0;
  }

  .sec05-layout .l-img .caption .bg {
    font-size: 1rem;
    padding: 0.625rem 0.875rem;
  }

  .sec05-layout .l-img .caption .bg+.bg {
    margin-top: 0.3125rem;
  }

  .sec05-layout .l-ttl {
    margin-bottom: 25px;
    padding: 0 0 0 15px;
  }

  .sec05-layout .l-ttl [lang=en] {
    font-size: 1.625rem;
  }

  .sec05-layout .l-ttl .jp {
    font-size: 1.375rem;
  }

  .sec05-layout .l-desc .l-txt p+p {
    margin-top: 20px;
  }

  .sec05-layout .l-desc .l-btn {
    margin-top: 30px;
    justify-content: center;
    gap: 15px;
  }

  .sec05-card-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .sec05-card-layout .card-item a {
    grid-template-columns: 60px 1fr;
    padding: 8px 10px;
  }

  .sec05-card-layout .card-item a .card-ttl {
    font-size: 0.8125rem;
  }
}

/*sec06*/
.sec06 {
  background-color: var(--color_senary);
  padding: 100px 0;
}

.sec06-content+.sec06-content {
  margin-top: 75px;
}

.sec06-card-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.sec06-card-layout .card-item {
  display: flex;
  flex-direction: column;
}

.sec06-card-layout .card-item a {
  display: flex;
  flex-direction: column;
  background: var(--color_white);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  position: relative;
  transition: 0.3s;
  height: 100%;
}

.sec06-card-layout .card-item a::after {
  content: "";
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 41px;
  height: 41px;
  background: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  z-index: 2;
}

.sec06-card-layout .card-item a:hover,
.sec06-card-layout .card-item a:focus-visible {
  box-shadow: 0 4px 24px 0 rgba(41, 137, 212, 0.18);
  transform: translateY(-10px);
  z-index: 2;
}

.sec06-card-layout .card-item a .card-desc {
  font-size: 1rem;
  padding: 30px 20px 90px;
  display: flex;
  flex-direction: column;
}

.sec06-card-layout .card-item a .card-ttl {
  font-size: 1.3125rem;
  font-weight: bold;
  color: var(--color_primary_dark);
  text-align: center;
  margin-bottom: 20px;
}

.sec06-card-layout .card-item a .card-ttl .border {
  border-bottom: 2px solid var(--color_secondary);
}

.sec06-card-layout .card-img img {
  width: 100%;
}

.sec06-bnr>a {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 0;
  align-items: center;
  background-color: var(--color_white);
  padding: 60px;
  position: relative;
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.sec06-bnr>a:hover,
.sec06-bnr>a:focus-visible {
  box-shadow: 0 4px 24px 0 rgba(41, 137, 212, 0.18);
  transform: translateY(-10px);
  z-index: 2;
}

.sec06-bnr>a:before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--color_primary);
  pointer-events: none;
  opacity: 0.52;
}

.sec06-bnr>a::after {
  content: "";
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 41px;
  height: 41px;
  background: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  z-index: 2;
}

.sec06-bnr>a .l-ttl {
  line-height: 1.5;
}

.sec06-bnr>a .l-ttl [lang=en] {
  color: var(--color_primary_dark);
  font-family: var(--font_en);
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 5px;
}

.sec06-bnr>a .l-ttl .jp {
  font-size: 1.75rem;
  font-weight: bold;
}

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

  .sec06-content+.sec06-content {
    margin-top: 40px;
  }

  .sec06-card-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    margin-bottom: 25px;
  }

  .sec06-card-layout .card-item a::after {
    right: 15px;
    bottom: 15px;
    width: 32px;
    height: 32px;
  }

  .sec06-card-layout .card-item a .card-desc {
    font-size: 0.875rem;
    padding: 20px 15px 60px;
  }

  .sec06-card-layout .card-item a .card-ttl {
    font-size: 1.0625rem;
    margin-bottom: 15px;
  }

  .sec06-bnr>a {
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
    padding: 30px 20px 50px;
  }

  .sec06-bnr>a::after {
    right: 15px;
    bottom: 15px;
    width: 32px;
    height: 32px;
  }

  .sec06-bnr>a .l-ttl [lang=en] {
    font-size: 1.5625rem;
  }

  .sec06-bnr>a .l-ttl .jp {
    font-size: 1.125rem;
  }
}

/*sec07*/
.sec07 {
  padding: 85px 0 120px;
  position: relative;
}

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

.sec07-layout {
  position: relative;
  z-index: 5;
  background-color: var(--color_white);
  margin: 0 auto 0 max(5%, 50% - 700px);
  padding: 70px max(5%, 50% - 600px) 70px 100px;
}

.sec07-layout .l-ttl {
  margin-bottom: 40px;
  line-height: 1.2;
  padding: 0 0 0 30px;
  position: relative;
}

.sec07-layout .l-ttl::before {
  content: "";
  background: var(--color_secondary);
  width: 5px;
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(to bottom, #2B86C9, #1760A0);
}

.sec07-layout .l-ttl [lang=en] {
  color: var(--color_primary_dark);
  font-family: var(--font_en);
  font-size: 2.5rem;
  font-weight: 500;
}

.sec07-layout .l-ttl .jp {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.sec07-layout .l-btn {
  text-align: right;
  margin-top: 20px;
}

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

  .sec07:before {
    inset: 0 0 100px;
  }

  .sec07-layout {
    margin: 0 5%;
    padding: 40px 5%;
  }

  .sec07-layout .l-ttl {
    margin-bottom: 25px;
    padding: 0 0 0 15px;
  }

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

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

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

/*sec08*/
.sec08 {
  position: relative;
}

.sec08-ttl {
  position: absolute;
  left: 5%;
  top: -1.875rem;
  z-index: 10;
}

.sec08-ttl .bg {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--color_gradient);
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 1.875rem;
  font-weight: 500;
  padding: 1.125rem 1.25rem;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 1.125rem 1.25rem;
}

.sec08-ttl .bg+.bg {
  margin-top: 0.625rem;
}

.loop-slider img {
  width: 100%;
}

@media (max-width: 800px) {
  .sec08-ttl {
    left: 5%;
    top: -1.25rem;
  }

  .sec08-ttl .bg {
    font-size: 1.25rem;
    padding: 0.625rem 0.875rem;
  }

  .sec08-ttl .bg+.bg {
    margin-top: 0.3125rem;
  }
}

/*sec09*/
.sec09 {
  padding: 100px 0;
}

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

/*sec10*/
.sec10 {
  background: var(--color_gradient);
  padding: 100px 0;
}

.sec10-layout {
  display: grid;
  grid-template-columns: 44.9% 1fr;
  gap: 0;
}

.sec10-layout .l-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.sec10-layout .l-desc {
  background-color: var(--color_white);
  padding: 50px 8%;
}

.sec10-layout .l-desc .t-h2 {
  margin-bottom: 40px;
}

.sec10-layout .l-desc .t-h2 [lang=en] {
  padding-left: 30px;
}

.sec10-layout .l-desc .l-ttl {
  font-size: 1.3125rem;
  font-weight: bold;
  color: var(--color_primary_dark);
  margin-bottom: 20px;
}

.sec10-layout .l-desc .l-ttl .border {
  border-bottom: 2px solid var(--color_secondary);
}

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

.sec10-list li {
  border: 1px solid var(--color_border);
  padding: 20px 15px;
}

.sec10-list li .list-ttl {
  font-size: 1.3125rem;
  font-weight: bold;
  color: var(--color_primary_dark);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 10px;
}

.sec10-list li .list-txt {
  text-align: center;
  line-height: 1.5;
}

.sec10-list li .list-txt.small {
  font-size: 0.875rem;
}

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

  .sec10-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .sec10-layout .l-img img {
    width: 100%;
    height: auto;
  }

  .sec10-layout .l-desc {
    padding: 30px 5%;
  }

  .sec10-layout .l-desc .t-h2 {
    margin-bottom: 25px;
  }

  .sec10-layout .l-desc .t-h2 [lang=en] {
    padding-left: 0;
  }

  .sec10-layout .l-desc .l-ttl {
    font-size: 1.0625rem;
    margin-bottom: 20px;
  }

  .sec10-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .sec10-list li {
    padding: 15px;
  }

  .sec10-list li .list-ttl {
    font-size: 1.0625rem;
    margin-bottom: 5px;
  }

  .sec10-list li .list-txt.small {
    font-size: 0.75rem;
  }
}

/*sec11*/
.sec11 {
  background-color: var(--color_senary);
  padding: 100px 0;
}

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

/*sec12*/
.sec12 {
  padding: 100px 0;
}

.sec12-content {
  position: relative;
}

.sec12-content .t-h2 {
  margin-bottom: 40px;
}

.sec12-content+.sec12-content {
  margin-top: 75px;
}

.sec12-map {
  margin-bottom: 40px;
}

.sec12-map iframe {
  width: 100%;
  height: 540px;
}

.sec12-access {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.sec12-access .icon {
  flex: auto 0 0;
}

.sec12-btn {
  position: absolute;
  right: 0;
  top: 70px;
}

.sec12-layout {
  display: flex;
  gap: 8%;
}

.sec12-layout .l-img {
  width: 42.3%;
}

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

.sec12-layout .l-ttl {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 40px;
}

.sec12-layout+.sec12-layout {
  margin-top: 60px;
}

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

  .sec12-content .t-h2 {
    margin-bottom: 25px;
  }

  .sec12-content+.sec12-content {
    margin-top: 40px;
  }

  .sec12-map {
    margin-bottom: 25px;
  }

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

  .sec12-access {
    gap: 8px;
    font-size: 0.875rem;
  }

  .sec12-btn {
    position: static;
    text-align: center;
    margin-top: 30px;
  }

  .sec12-layout {
    flex-direction: column;
    gap: 20px;
  }

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

  .sec12-layout .l-ttl {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .sec12-layout+.sec12-layout {
    margin-top: 40px;
  }
}

/*sec13*/
.sec13 {
  padding: 100px 0;
}


.sec13-card-layout {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 24px;
}

.sec13-card-layout .card-item {
  background-color: var(--color_quaternary);
  width: calc(33.333% - 16px);
  text-align: center;
  padding: 50px 30px;
}

.sec13-card-layout .card-item .num {
  display: block;
  color: var(--color_secondary);
  font-family: var(--font_en);
  font-size: 2.5625rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  position: relative;
  width: fit-content;
  margin: 0 auto 10px;
  z-index: 1;
}

.sec13-card-layout .card-item .num:before {
  content: "";
  background-color: var(--color_white);
  mask: url(../images/share/icon_paw.svg) no-repeat left top / contain;
  display: block;
  width: 46px;
  height: 42px;
  position: absolute;
  top: -16px;
  left: -25px;
  z-index: -1;
}

.sec13-card-layout .card-item .ttl {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.7;
}


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

  .sec13-card-layout {
    gap: 15px;
  }

  .sec13-card-layout .card-item {
    width: 100%;
    padding: 25px;
  }

  .sec13-card-layout .card-item .ttl {
    font-size: 1.25rem;
  }

}

/*-----------------------------------------------------------
		TOP アニメーション
		-----------------------------------------------------------*/
.is-fade {
  opacity: 0;
  transition: 0.7s;
  transform: translate(0, 15%);
}

.is-fade.is-action {
  opacity: 1;
  transform: translate(0, 0);
}

.is-card>* {
  opacity: 0;
  transition: 0.7s;
  transform: translate(0, 15%);
}

.is-card>*:nth-child(2) {
  transition-delay: 0.1s;
}

.is-card>*:nth-child(3) {
  transition-delay: 0.2s;
}

.is-card>*:nth-child(4) {
  transition-delay: 0.3s;
}

.is-card>*:nth-child(5) {
  transition-delay: 0.4s;
}

.is-card>*:nth-child(6) {
  transition-delay: 0.5s;
}

.is-card>*:nth-child(7) {
  transition-delay: 0.6s;
}

.is-card>*:nth-child(8) {
  transition-delay: 0.7s;
}

.is-card>*:nth-child(9) {
  transition-delay: 0.8s;
}

.is-card>*:nth-child(10) {
  transition-delay: 0.9s;
}

.is-card>*:nth-child(11) {
  transition-delay: 1s;
}

.is-card>*:nth-child(12) {
  transition-delay: 1.1s;
}

.is-card>*:nth-child(13) {
  transition-delay: 1.2s;
}

.is-card>*:nth-child(14) {
  transition-delay: 1.3s;
}

.is-card>*:nth-child(15) {
  transition-delay: 1.4s;
}

.is-card>*:nth-child(16) {
  transition-delay: 1.5s;
}

.is-card.is-action>li {
  opacity: 1;
  transform: translate(0, 0);
}


@media (prefers-reduced-motion: reduce) {

  .is-fade,
  .is-card>* {
    transition: none !important;
    -webkit-transition: none !important;
    opacity: 1 !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;
    transform: none !important;
    -webkit-transform: none !important;
    transition-delay: 0s !important;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  display: grid;
  align-items: center;
  background: url(../images/under/page-ttl.jpg) no-repeat center/cover;
  padding: 50px max(5%, 50% - 685px);
  position: relative;
  min-height: 630px;
}

.page-header:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.17);
  z-index: 2;
  pointer-events: none;
}

.page-ttl {
  line-height: 1.5;
  font-size: 4.0625rem;
  font-weight: bold;
  color: var(--color_white);
  position: relative;
  z-index: 5;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  width: min(90%, 1024px);
  margin: 15px auto 0;
}

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

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

@media (max-width: 800px) {
  .page-header {
    padding: 30px 5%;
    min-height: 180px;
  }

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

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

.u-h2,
.postdata h2 {
  background: url(../images/share/icon_paw.svg) no-repeat top center;
  font-size: 2.8125rem;
  font-weight: bold;
  text-align: center;
  padding: 75px 0 0;
  margin: 0 0 40px;
  position: relative;
}

.postdata h2 {
  padding: 0 0 0 1.5625rem;
  background-position: left top;
  text-align: left;
}

.u-h3,
.postdata h3 {
  border-bottom: 1px solid var(--color_text);
  font-size: 2.25rem;
  font-weight: bold;
  padding: 0 0 10px;
  margin: 0 0 30px;
}

.u-h4,
.postdata h4 {
  font-size: 1.6875rem;
  font-weight: bold;
  padding: 0 0 0 20px;
  margin: 0 0 20px;
  position: relative;
}

.u-h4::before,
.postdata h4::before {
  content: "";
  background: var(--color_secondary);
  width: 2px;
  height: 1em;
  position: absolute;
  top: 0.3em;
  left: 0;
}

.num-ttl {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
}

.num-ttl .num {
  border-radius: 50px;
  background-color: var(--color_primary);
  color: #fff;
  font-family: var(--font_en);
  font-size: 1.125rem;
  font-weight: 500;
  flex: 0 0 38px;
  line-height: 38px;
  margin-top: 3px;
  text-align: center;
}

.u-catch {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.7;
}

.u-catch02 {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.7;
}

@media (max-width: 800px) {

  .u-h2,
  .postdata h2 {
    background-size: 40px auto;
    font-size: 1.5625rem;
    padding: 40px 0 0;
    margin: 0 0 30px;
  }

  .postdata h2 {
    padding: 0 0 0 0.9375rem;
  }

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

  .u-h4,
  .postdata h4 {
    font-size: 1rem;
    padding: 0 0 0 16px;
    margin: 0 0 15px;
  }

  .u-h4::before,
  .postdata h4::before {
    width: 2px;
    height: 1em;
    top: 0.3em;
  }

  .num-ttl {
    gap: 12px;
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .num-ttl .num {
    font-size: 0.75rem;
    flex: 0 0 28px;
    line-height: 28px;
    margin-top: 2px;
  }

  .u-catch {
    font-size: 1.1875rem;
    line-height: 1.6;
  }

  .u-catch02 {
    font-size: 1rem;
    line-height: 1.6;
  }
}

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

.tall.bg01 {
  background: var(--color_quaternary);
  padding: 120px 0;
}

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

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

.hidden {
  overflow: hidden;
}

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

  .tall.bg01 {
    padding: 60px 0;
  }

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

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

.list-disc li {
  list-style: disc;
  margin-left: 1.5em;
  line-height: 1.5;
  margin-bottom: 5px;
}

.list-disc li::marker {
  color: var(--color_primary);
}

.list-disc li:last-child {
  margin-bottom: 0;
}

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

.list-check li {
  position: relative;
  padding-left: 1.76em;
  line-height: 1.5;
  margin-bottom: 5px;
}

.list-check li:last-child {
  margin-bottom: 0;
}

.list-check li::before {
  content: "";
  background: var(--color_primary);
  -webkit-mask: url(../images/share/icon_check.svg) no-repeat center/contain;
  mask: url(../images/share/icon_check.svg) no-repeat center/contain;
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 0.94em;
  height: 0.94em;
}

.list-num {
  counter-reset: number;
}

.list-num>li {
  padding-left: 30px;
  position: relative;
  line-height: 1.5;
  margin-bottom: 5px;
}

.list-num>li:last-child {
  margin-bottom: 0;
}

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

.list-col2 {
  -moz-column-count: 2;
  column-count: 2;
}

.list-col3 {
  -moz-column-count: 3;
  column-count: 3;
}

@media (max-width: 800px) {
  .list-col2 {
    -moz-column-count: 1;
    column-count: 1;
  }

  .list-col3 {
    -moz-column-count: 1;
    column-count: 1;
  }
}

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

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

.table-style01 thead th {
  text-align: center;
}

.table-style01 thead+tbody th {
  background-color: var(--color_quaternary);
  color: var(--color_black);
}

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

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

@media (max-width: 800px) {

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

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

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

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

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

.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 {
  left: calc((100% - 875px) / 2);
}

.under-slider01 .splide__arrow--next {
  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;
  font-weight: bold;
  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;
}

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

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

/* Googleカレンダー */
.google-calendar {
  text-align: center;
}

.google-calendar iframe {
  width: 100%;
  height: 800px;
}

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

/*------------
レイアウト
--------------*/
.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.half,
.l-imgL .l-img.half {
  width: 50%;
}

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

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

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

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

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

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

/*------------
card-style
--------------*/
/*card-style01*/
.card-style01 {
  display: grid;
  gap: 16px;
}

.card-style01>li {
  background: var(--color_quaternary);
  padding: 25px;
  display: flex;
  flex-direction: column;
}

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

.card-style01 .card-icon {
  margin: 0 auto 25px;
  width: 70%;
}

.card-style01 .card-icon img {
  width: 100%;
}

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

.card-style01 .card-desc:has(+ .btn-wrap) {
  margin-bottom: 30px;
}

.card-style01 .card-desc+.btn-wrap {
  margin: auto 0 0;
}

.card-style01 .card-desc+.btn-wrap .btn-more {
  min-width: 0;
  width: 100%;
}

.card-style01.col4 .card-ttl {
  font-size: 1.0625rem;
}

.card-style01.col4 .card-desc {
  font-size: 0.875rem;
}

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

  .card-style01 .card-ttl {
    font-size: 1.0625rem;
  }
}

/*card-style02*/
.card-style02 {
  display: grid;
  gap: 16px;
}

.card-style02>li {
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  padding: 25px;
  display: flex;
  flex-direction: column;
}

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

.card-style02 .card-ttl {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.card-style02 .card-desc:has(+ .btn-wrap) {
  margin-bottom: 30px;
}

.card-style02 .card-desc+.btn-wrap {
  margin: auto 0 0;
}

.card-style02 .card-desc+.btn-wrap .btn-more {
  min-width: 0;
  width: 100%;
}

.card-style02.col4 .card-ttl {
  font-size: 1.0625rem;
}

.card-style02.col4 .card-desc {
  font-size: 0.875rem;
}

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

  .card-style02 .card-ttl {
    font-size: 1.0625rem;
  }
}

/*------------
flow-style
--------------*/
/*flow-style01*/
.flow-style01 {
  display: grid;
  gap: 50px 30px;
  padding: 15px 0 0;
}

.flow-style01>li {
  background: var(--color_quaternary);
  padding: 25px;
  position: relative;
}

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

.flow-style01.no-arrow {
  gap: 50px 16px;
}

.flow-style01.no-arrow>li:not(:last-child)::after {
  content: none;
}

.flow-style01 .flow-num {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.5625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  top: -15px;
  left: 30px;
}

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

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

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

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

  .flow-style01.no-arrow {
    gap: 35px;
  }

  .flow-style01.no-arrow>li:not(:last-child)::after {
    content: none;
  }
}

/*flow-style02*/
.flow-style02 {
  display: grid;
  gap: 40px;
}

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

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

.flow-style02>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-style02 .flow-num {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*------------
anchor-link
--------------*/
/*list-anchor-link01*/
.list-anchor-link01 {
  display: flex;
  flex-wrap: wrap;
}

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

.list-anchor-link01 li::after {
  content: "";
  display: inline-block;
  background: var(--color_gray);
  width: 2px;
  height: 15px;
  margin: 0 20px;
  vertical-align: -1px;
}

.list-anchor-link01 a {
  display: inline-block;
  position: relative;
  font-size: 1rem;
  font-weight: bold;
  padding-right: 25px;
}

.list-anchor-link01 a::before {
  content: "";
  background: var(--color_primary);
  width: 10px;
  height: 5px;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  right: -3px;
  top: 0.8em;
}

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

/*------------
box-style
--------------*/
/*box-style01*/
.box-style01 {
  border: 1px solid var(--color_border);
  background: var(--color_quaternary);
  padding: 5%;
}

.box-style01.bg-white {
  background-color: var(--color_white);
}

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

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

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

/*box-style02*/
.box-style02 {
  border: 1px solid var(--color_border);
  background: var(--color_quaternary);
  padding: 5%;
}

.box-style02.bg-white {
  background-color: var(--color_white);
}

.box-style02 .box-ttl {
  font-size: 1.375rem;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color_primary);
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .box-style02 {
    padding: 20px;
  }

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

/*box-style03*/
.box-style03 {
  background: var(--color_quaternary);
  padding: 40px;
}

.box-style03 .box-ttl {
  color: var(--color_primary);
  display: flex;
  gap: 15px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.box-style03.bg-dark {
  background: var(--color_primary);
  color: var(--color_white);
}

.box-style03.bg-dark .box-ttl {
  color: var(--color_white);
}

.box-style03.bg-dark .box-ttl img {
  filter: brightness(0) invert(1);
}

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

/*box-style04*/
.box-style04 {
  border: 1px solid var(--color_primary);
  background: #fff;
}

.box-style04 .box-ttl {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1.375rem;
  font-weight: bold;
  text-align: center;
  padding: 15px 40px;
}

.box-style04 .box-desc {
  padding: 50px 60px;
}

@media (max-width: 800px) {
  .box-style04 .box-ttl {
    font-size: 1.125rem;
    padding: 15px 30px;
  }

  .box-style04 .box-desc {
    padding: 25px 30px 30px;
  }
}

/*------------
dl-style
--------------*/
/*dl-style01*/
.dl-style01 {
  display: grid;
  grid-gap: 15px;
}

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

.dl-style01 dt {
  background: var(--color_primary);
  color: var(--color_white);
  font-size: 1.0625rem;
  font-weight: bold;
  padding: 20px;
}

.dl-style01 dd {
  background: var(--color_quaternary);
  font-size: 0.875rem;
  padding: 20px;
}

@media (max-width: 800px) {
  .dl-style01 .item {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0;
  }

  .dl-style01 dt {
    font-size: 1.0625rem;
    padding: 15px;
  }

  .dl-style01 dd {
    padding: 15px;
  }
}

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

.faq-style dt {
  font-size: 1.25rem;
  font-weight: bold;
  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_tertiary);
}

.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: 0.9375rem;
  font-weight: bold;
  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: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}

/*------------
tel-layout
--------------*/
.tel-layout {
  background: var(--color_quaternary);
  max-width: 900px;
  padding: 50px;
  margin: 0 auto;
}

.tel-layout .l-ttl {
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 25px;
  width: -moz-fit-content;
  width: fit-content;
}

.tel-layout .l-ttl .en {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 0.9375rem;
  font-weight: 500;
}

.tel-layout .l-ttl .jp {
  font-size: 1.875rem;
  font-weight: bold;
}

.tel-layout .wrap {
  display: flex;
  justify-content: center;
  grid-gap: 120px;
  text-align: center;
}

.tel-layout .wrap .col+.col {
  position: relative;
}

.tel-layout .wrap .col+.col::before {
  content: "";
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #333 2px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 8px);
  background-repeat: repeat-y;
  background-size: 2px 9px;
  position: absolute;
  top: 0;
  left: -60px;
}

.tel-layout .col-ttl {
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

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

.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-size: 0.625rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  .tel-layout {
    padding: 35px 25px;
  }

  .tel-layout .l-ttl {
    margin: 0 auto 25px;
  }

  .tel-layout .l-ttl .en {
    font-size: 12px;
  }

  .tel-layout .l-ttl .jp {
    font-size: 25px;
  }

  .tel-layout .wrap {
    flex-direction: column;
    grid-gap: 60px;
  }

  .tel-layout .wrap .col+.col::before {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #333 2px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 8px);
    background-repeat: repeat-x;
    background-size: 10px 2px;
    top: -30px;
    left: 0;
  }
}

.tel-layout02 {
  background: var(--color_quaternary);
  max-width: 800px;
  padding: 5%;
  margin: 0 auto;
}

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

.tel-layout02 .wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.tel-layout02 .l-time {
  display: grid;
  grid-gap: 10px;
  line-height: 1.5;
}

.tel-layout02 .l-time .item {
  display: grid;
  grid-template-columns: 4.375rem 1fr;
  grid-gap: 10px;
  font-size: 0.875rem;
}

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

@media (max-width: 800px) {
  .tel-layout02 .l-ttl {
    font-size: 15px;
    margin: 0 auto 25px;
  }

  .tel-layout02 .wrapper {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }

  .tel-layout02 .l-tel {
    font-size: 30px;
  }
}

/*------------
スタッフページ
--------------*/
.staff-layout {
  display: flex;
  flex-direction: row-reverse;
}

.staff-layout .l-img {
  width: 328px;
  margin-left: 80px;
}

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

.staff-layout .job {
  font-size: 1.0625rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.staff-layout .name {
  line-height: 1;
  margin-bottom: 30px;
}

.staff-layout .jp {
  display: inline;
  font-size: 1.875rem;
  font-weight: bold;
  margin-right: 25px;
}

.staff-layout p[lang=en] {
  display: inline;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.125rem;
  font-weight: 500;
}

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

  .staff-layout .l-img {
    text-align: center;
    margin: 0 0 30px;
    width: 100%;
  }

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

  .staff-layout .job {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }

  .staff-layout .name {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .staff-layout .jp {
    display: block;
    font-size: 1.5625rem;
    margin: 0 0 10px;
  }

  .staff-layout [lang=en] {
    font-size: 0.875rem;
  }
}

/*------------
layout-style
--------------*/
.layout-style {
  display: flex;
}

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

.layout-style .l-desc {
  background: var(--color_quaternary);
  padding: 55px 55px 55px 150px;
  margin: 50px 0 0 -100px;
  flex: 1;
  position: relative;
}

.layout-style .l-num {
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  top: -0.8em;
  left: 153px;
}

.layout-style.reverse {
  flex-direction: row-reverse;
}

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

.layout-style.reverse .l-num {
  left: 0;
}

.layout-style .l-ttl {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
}

.bg01 .layout-style .l-desc {
  background: var(--color_white);
}

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

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

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

  .layout-style.reverse {
    flex-direction: column;
  }

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

  .layout-style .l-num {
    font-size: 1.25rem;
    margin-bottom: 15px;
    position: static;
  }

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

/*-----------------------------------------------------------
Dialog Modal
-----------------------------------------------------------*/
.modal-button-wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.modal-button {
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  transition: 0.23s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-button img {
  margin-bottom: 15px;
  border-radius: 50%;
}

.modal-button:hover,
.modal-button:focus-visible {
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.15));
  transform: scale(1.02);
  color: var(--color_primary);
}

body:has(dialog[open]) {
  overflow: hidden;
}

.modal-style {
  border: none;
  outline: none;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  width: min(1024px, 100% - 32px);
  padding: 60px;
  margin: auto;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.modal-style::backdrop {
  background: rgba(0, 0, 0, 0);
  transition: background 0.22s ease;
}

.modal-style[open] {
  opacity: 0;
  transform: scale(0.96);
}

.modal-style[open].is-visible {
  opacity: 1;
  transform: scale(1);
}

.modal-style[open].is-visible::backdrop {
  background: rgba(0, 0, 0, 0.55);
}

.modal-style.is-closing {
  opacity: 0;
  transform: scale(0.96);
}

.modal-style.is-closing::backdrop {
  background: rgba(0, 0, 0, 0);
}

.modal-style .modal-content {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 40px;
}

.modal-style .modal-content .modal-img .img {
  margin-bottom: 15px;
}

.modal-style .modal-content .modal-img .img img {
  border-radius: 50%;
}

.modal-style .modal-content .modal-img .name {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
}

.modal-style .modal-ttl {
  border-bottom: 1px solid var(--color_text);
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0 0 10px 15px;
  margin: 0 0 15px;
  position: relative;
}

.modal-style .modal-ttl::before {
  content: "";
  background: var(--color_primary);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 0.7em;
  left: 0;
}

.modal-style .modal-desc-item+.modal-desc-item {
  margin-top: 30px;
}

.modal-style .modal-close {
  border-radius: 100%;
  background: var(--color_primary) url(../images/share/icon_modal_close.svg) no-repeat center/20px;
  width: 41px;
  height: 41px;
  position: absolute;
  top: 20px;
  right: 20px;
}

@media (max-width: 800px) {
  .modal-button-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .modal-button {
    font-size: 0.875rem;
  }

  .modal-button img {
    margin-bottom: 10px;
  }

  .modal-style {
    padding: 20px 20px 30px;
  }

  .modal-style .modal-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .modal-style .modal-content .modal-img .img {
    width: 60%;
    margin: 0 auto 15px;
  }

  .modal-style .modal-ttl {
    font-size: 1.125rem;
    padding: 0 0 5px 10px;
    margin: 0 0 15px;
  }

  .modal-style .modal-ttl::before {
    width: 5px;
    height: 5px;
    top: 0.72em;
    left: 0;
  }

  .modal-style .modal-close {
    top: 10px;
    right: 10px;
  }
}

.list-payment {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.list-payment li img {
  max-height: 60px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

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

  .list-payment li img {
    max-height: 40px;
    max-width: 80px;
  }
}

.privacy-ttl {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.9375rem;
}

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

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

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

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

.sp-only {
  display: none;
}

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

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

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

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.fade {
  transition: opacity 0.5s;
}

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

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

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

.c-red {
  color: #F44336;
}

.c-blue {
  color: var(--color_primary_dark);
}

.marker {
  background: linear-gradient(transparent 60%, var(--color_secondary) 60%);
}

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

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 8px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin-bottom: 32px;
}

.mbXM {
  margin-bottom: 48px;
}

.mbL {
  margin-bottom: 64px;
}

.mbXL {
  margin-bottom: 96px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

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

.gapS {
  grid-gap: 16px;
}

.gapM {
  grid-gap: 32px;
}

.gapXM {
  grid-gap: 48px;
}

.gapL {
  grid-gap: 64px;
}

.gapXL {
  grid-gap: 96px;
}

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

  .sp-only {
    display: block;
  }

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

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

  .sp-tac {
    text-align: center;
  }

  .sp-tar {
    text-align: right;
  }

  .sp-tal {
    text-align: left;
  }

  .mbM {
    margin-bottom: 16px;
  }

  .mbXM {
    margin-bottom: 32px;
  }

  .mbL {
    margin-bottom: 48px;
  }

  .mbXL {
    margin-bottom: 64px;
  }

  .sp-col1 {
    grid-template-columns: 1fr;
  }

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

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

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

  .gapXS {
    grid-gap: 4px;
  }

  .gapS {
    grid-gap: 8px;
  }

  .gapM {
    grid-gap: 16px;
  }

  .gapXM {
    grid-gap: 32px;
  }

  .gapL {
    grid-gap: 48px;
  }

  .gapXL {
    grid-gap: 64px;
  }
}

/*------------
splide
-------------*/
:root {
  /* 矢印（Arrow） */
  --splide-arrow-bg-color: var(--color_primary);
  /* ドット（Pagination） */
  --splide-dot-color: #D0D0C9;
  --splide-dot-active-color: var(--color_primary);
  /* 再生停止ボタン（Toggle） */
  --splide-toggle-bg-color: #ccc;
  --splide-toggle-bg-hover: #D3D3D3;
  --splide-toggle-svg-color: #fff;
  /* スクロールバー（Progress） */
  --splide-progress-color: var(--color_primary);
}

.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;
  border-radius: 50%;
}

.splide__arrow--prev {
  -webkit-mask: url(../images/share/splide_prev.svg) no-repeat center/contain;
  mask: url(../images/share/splide_prev.svg) no-repeat center/contain;
  background-color: var(--splide-arrow-bg-color);
}

.splide__arrow--next {
  -webkit-mask: url(../images/share/splide_next.svg) no-repeat center/contain;
  mask: url(../images/share/splide_next.svg) no-repeat center/contain;
  background-color: var(--splide-arrow-bg-color);
}

.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: var(--splide-dot-color);
  border-radius: 100px;
  display: inline-block;
  transition: transform 0.2s linear;
  height: 8px;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: var(--splide-dot-active-color);
  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: var(--splide-progress-color);
  height: 3px;
}

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

.splide__slide:focus {
  outline: 0;
}

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

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

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

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

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

.splide__toggle {
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.splide__toggle {
  cursor: pointer;
  background: var(--splide-toggle-bg-color);
  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: var(--splide-toggle-bg-hover);
}

.splide__toggle svg {
  fill: var(--splide-toggle-svg-color);
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

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