@charset "UTF-8";

/* ====================================================
【Mixin】
==================================================== */
/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #F7F7FF;
  --color_text: #444365;
  --color_link: #444365;
  --color_border: #D1D1D1;
  --color_main: #FF3623;
  --color_sub01: #6E005C;
  --color_sub02: #FFF0EF;
  --color_sub03: #F9D0D3;
  --color_bg01: #fff;
  --color_gradient01: linear-gradient(90deg, #FF3623 0%, #FF7C6F 100%);
  --color_gradient02: linear-gradient(90deg, #FF7C6F 0%, #FFB8B1 100%);
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
}

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

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

:root {
  --font_base:
    "Zen Kaku Gothic New",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Local Noto Sans JP",
    "Noto Sans JP",
    sans-serif;
  --font_jp: "Zen Kaku Gothic New", sans-serif;
  --font_en: "Poppins", sans-serif;
  --font_weight: 500;
  --font_size: 1rem;
  --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: 130px;
}

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

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

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

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

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

/*-----------------------------------------------------------
診療時間
-----------------------------------------------------------*/
.time-table {
  background-color: #fff;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

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

.time-table th,
.time-table td {
  text-align: center;
  padding: 15px 0;
  line-height: 1.2;
  font-family: var(--font_jp);
}

@media (max-width: 800px) {

  .time-table th,
  .time-table td {
    padding: 10px 0;
  }
}

.time-table thead th {
  background-color: var(--color_main);
  color: #fff;
}

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

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

.time-table img {
  margin-inline: auto;
  max-height: 12px;
  width: auto;
}

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

.time-table-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 5px;
}

.time-table-note>li {
  display: flex;
  gap: 5px;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 10px;
}

.time-table-note>li img {
  margin-top: 4px;
  max-height: 12px;
  width: auto;
}

/*-----------------------------------------------------------
診療カレンダー
-----------------------------------------------------------*/
:root {
  --event-color01: #80B24E;
  --event-color02: #FFC586;
  --event-color03: #60432A;
}

.business-calendar-hidden {
  font-family: var(--font_base);
  display: none;
}

.business-calendar-box-wrap {
  background-color: #fff;
  padding: 25px;
}

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

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

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

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

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

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

.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.25rem;
  text-align: center;
  margin: 0 0 10px;
}

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

.business-calendar-box .business-calendar th {
  font-size: 0.9375rem;
  font-weight: normal;
  padding: 8px 5px;
  width: 14%;
}

.business-calendar-box .business-calendar td {
  background-clip: padding-box;
  position: relative;
  font-size: 0.8125rem;
  padding: 8px 5px;
  z-index: 0;
}

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

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

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

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

.business-calendar-box .business-calendar .attr0::before {
  background: var(--event-color01);
}

.business-calendar-box .business-calendar .attr1::before {
  background: var(--event-color02);
}

.business-calendar-box .business-calendar .attr2::before {
  background: var(--event-color03);
}

.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_main);
  border-right: 2px solid var(--color_main);
  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: 20px;
  flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/
.btn-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  border-radius: 50px;
  border: 2px solid var(--color_main);
  background: #fff;
  isolation: isolate;
  text-align: center;
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 13px 45px;
  transition: color 0.3s ease;
  z-index: 2;
}

.btn-more::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -2;
  background: var(--color_gradient01);
  opacity: 1;
  border-radius: 50px;
  transition: opacity 0.3s ease;
}

.btn-more::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 50%;
  transition: background 0.3s ease;
}

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

  .btn-more:is(:hover, :focus)::before {
    opacity: 0;
  }

  .btn-more:is(:hover, :focus)::after {
    background: var(--color_main);
  }
}

.btn-more.btn-small {
  padding: 3px 22px;
  min-width: 97px;
  font-size: 0.9375rem;
}

.btn-more.btn-small::after {
  right: 8px;
  width: 6px;
  height: 6px;
}

.layout-sidebar .btn-more {
  min-width: 200px;
}

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

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

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

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

@media (max-width: 800px) {
  .btn-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.tel-link {
  display: inline-block;
  font-family: var(--font_en);
  font-size: 1.4375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

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

.dl-contact dt {
  font-family: var(--font_jp);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  background-color: var(--color_main);
  border-radius: 5px;
  padding: 5px 15px;
  margin-bottom: 10px;
}

.dl-contact .mail-link {
  font-family: var(--font_en);
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1;
}

.btn-contact {
  position: relative;
  display: inline-block;
  width: 100%;
  min-width: 161px;
  border-radius: 100px;
  border: 2px solid var(--color_main);
  background: #fff;
  isolation: isolate;
  color: #fff;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  padding: 16px 20px;
  transition: color 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 2;
}

.btn-contact::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -2;
  background: var(--color_gradient01);
  opacity: 1;
  border-radius: 100px;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {

  .btn-contact:is(:hover, :focus) {
    color: var(--color_main);
  }

  .btn-contact:is(:hover, :focus)::before {
    opacity: 0;
  }
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 35px;
  align-items: center;
}

.contact-links .contact-links-item {
  flex: 0 0 auto;
}

@media screen and (max-width: 800px) {
  .contact-links {
    justify-content: center;
    gap: 10px;
  }

  .contact-links .contact-links-item {
    width: calc((100% - 10px) / 2);
    text-align: center;
  }

  .dl-contact .mail-link {
    font-size: 0.9375rem;
  }

  .dl-contact .tel-link {
    font-size: 1rem;
  }

  .contact-links .btn-contact {
    min-width: 0;
    padding: 10px 16px;
  }
}

.txt-access {
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 700;
}

.txt-access:before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.9375rem;
  background: url(../images/share/icon_access.svg) no-repeat center/contain;
  margin-right: 8px;
  vertical-align: -9px;
}

@media screen and (max-width: 800px) {
  .txt-access {
    font-size: 0.9375rem;
  }

  .txt-access:before {
    width: 1rem;
    height: 1.5625rem;
    margin-right: 7px;
    vertical-align: -6px;
  }
}

.bnr-recruit {
  width: -moz-fit-content;
  width: fit-content;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  font-family: var(--font_jp);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .category-ttl {
    font-size: 1.5625rem;
    margin-bottom: 20px;
  }
}

/*カテゴリーリスト*/
.list-category-links {
  display: grid;
  gap: 10px;
  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_main);
  border-right: 1px solid var(--color_main);
  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_sub01);
  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: 0.5s ease;
}

@media (any-hover: hover) {

  .list-category-links a:hover,
  .list-category-links a:focus {
    color: var(--color_main);
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

/*-----------------------------------------------------------
TOP投稿
-----------------------------------------------------------*/
.post-top-type01 {
  display: grid;
}

.post-top-type01 a {
  display: flex;
  align-items: center;
  gap: 25px;
}

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

.post-top-type01 time {
  display: inline-block;
  white-space: nowrap;
  color: var(--color_main);
  font-size: 0.9375rem;
}

.post-top-type01 .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 500;
}

@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 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.post-top-type02 .post-img {
  overflow: hidden;
  margin-bottom: 10px;
}

.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 {
  color: var(--color_gray_dark);
  font-size: 0.8125rem;
  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;
  margin-bottom: 15px;
}

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

.post-top-type02 .category {
  display: inline-block;
  border: 2px solid var(--color_main);
  background-color: #fff;
  border-radius: 100px;
  color: var(--color_main);
  font-size: 0.6875rem;
  line-height: 1.5;
  padding: 0.3125em 1.125em;
  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;
  }
}

@media (max-width: 800px) {
  .post-top-type02 {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    border-top: 1px solid var(--color_border);
  }

  .post-top-type02 a {
    border-bottom: 1px solid var(--color_border);
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 15px;
    align-items: flex-start;
    padding: 10px 0;
  }

  .post-top-type02 .post-img {
    margin-bottom: 0;
  }

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

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

  .post-top-type02 time {
    text-box: trim-both cap alphabetic;
    font-size: 0.6875rem;
    margin-bottom: 5px;
  }

  .post-top-type02 .post-ttl {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }

  .post-top-type02 .category {
    font-size: 0.625rem;
    padding: 3px 6px;
  }
}

/*-----------------------------------------------------------
下層投稿
-----------------------------------------------------------*/
.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 minmax(0, 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_bg01);
  }
}

.post-under-type01 a::before {
  content: "";
  background: var(--color_main);
  -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;
  color: var(--color_gray_dark);
  font-size: 0.875rem;
  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;
  border: 2px solid var(--color_main);
  background-color: #fff;
  border-radius: 100px;
  color: var(--color_main);
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 0.3125em 1.125em;
  text-align: center;
}

.post-under-type01 .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 700;
  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 minmax(0, 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;
    color: var(--color_gray_dark);
    font-size: 0.6875rem;
    line-height: 1;
  }

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

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

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

.post-under-type02 {
  border-top: 1px solid var(--color_border);
  margin-bottom: 50px;
}

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

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

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

.post-under-type02 time {
  display: block;
  color: var(--color_gray_dark);
  font-size: 0.8125rem;
  line-height: 1;
}

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

.post-under-type02 .category {
  display: inline-block;
  border: 2px solid var(--color_main);
  background-color: #fff;
  border-radius: 100px;
  color: var(--color_main);
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 0.3125em 1.125em;
  text-align: center;
  width: 100%;
}

.post-under-type02 .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  word-break: break-all;
}

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

  .post-under-type02 a {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px 16px;
    padding: 16px 40px 16px 0;
  }

  .post-under-type02 .category {
    width: auto;
  }

  .post-under-type02 .post-ttl {
    grid-column: 1/-1;
  }
}

.post-under-type03 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.post-under-type03 .article {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 30px;
}

.post-under-type03 .post-ttl {
  font-family: var(--font_jp);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color_main);
  margin-bottom: 20px;
}

.post-under-type03 .post-data time {
  color: var(--color_gray_dark);
  font-size: 1.125rem;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.post-under-type03 .post-data .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-under-type03 .post-data .category {
  display: inline-block;
  border: 2px solid var(--color_main);
  background-color: #fff;
  border-radius: 100px;
  color: var(--color_main);
  font-size: 0.9375rem;
  line-height: 1.5;
  padding: 0.3125em 1.125em;
  text-align: center;
}

.post-under-type03 .post-btn {
  margin-top: 40px;
  text-align: center;
}

.post-under-type03 .post-btn .btn-more {
  min-width: 0;
  width: 100%;
}

@media (max-width: 800px) {
  .post-under-type03 {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .post-under-type03 .article {
    padding: 20px;
  }

  .post-under-type03 .post-ttl {
    font-size: 1.125rem;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .post-under-type03 .post-data time {
    font-size: 0.875rem;
    margin-bottom: 8px;
  }

  .post-under-type03 .post-data .category-wrap {
    gap: 6px;
  }

  .post-under-type03 .post-data .category {
    font-size: 0.6875rem;
  }

  .post-under-type03 .post-btn {
    margin-top: 24px;
  }

  .post-under-type03 .post-btn .btn-more {
    min-width: 180px;
  }
}

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

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

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

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

.layout-single-post .category {
  display: inline-block;
  border: 2px solid var(--color_main);
  background-color: #fff;
  border-radius: 100px;
  color: var(--color_main);
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 0.3125em 1.125em;
  text-align: center;
}

.layout-single-post .l-ttl {
  font-family: var(--font_jp);
  font-size: 2.1875rem;
  font-weight: 700;
  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.5625rem;
    margin-bottom: 20px;
  }
}

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

.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_main);
  color: #fff;
  border: 1px solid var(--color_main);
  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_main);
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_main);
  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_main);
  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_main);
}

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

.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 {
  background-color: var(--color_base);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 2.5%;
  width: 100%;
  z-index: 100;
  position: sticky;
  top: 0;
  left: 0;
  transition: background 0.3s ease;
}

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

@media (max-width: 800px) {
  .header {
    gap: 15px;
    padding: 15px 5%;
  }

  .header.t-header {
    position: fixed;
  }
}

.h-logo {
  max-width: 287px;
  width: 15.9vw;
}

@media (max-width: 800px) {
  .h-logo {
    width: 142px;
  }
}

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

.h-utility .dl-contact {
  display: flex;
  gap: 10px;
  align-items: center;
}

.h-utility .dl-contact dt {
  padding: 5px;
  margin-bottom: 0;
  min-width: 70px;
}

.h-utility .contact-links {
  gap: 20px;
  justify-content: flex-end;
}

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

/*------------
Gnavi
--------------*/
.gnavi-links {
  display: flex;
  justify-content: flex-end;
  gap: min(30px, 1.66vw);
}

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

@media (any-hover: hover) {
  .gnavi-links>li>a:is(:hover, :focus) {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

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

.dropdown::after {
  content: "";
  display: block;
  background-color: var(--color_main);
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
}

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

.dropdown .sub-menu {
  pointer-events: none;
  position: absolute;
  top: 100%;
  right: 50%;
  width: -moz-max-content;
  width: max-content;
  min-width: 631px;
  overflow: hidden;
  border-radius: 20px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  display: grid;
  grid-template-columns: 367px 1fr;
  opacity: 0;
  z-index: 5;
}

.dropdown .sub-menu .menu-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.dropdown .sub-menu .menu-desc {
  background-color: #fff;
  padding: 40px;
}

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

.dropdown .sub-menu-list li {
  margin-bottom: 5px;
  padding: 0 0 0 1.0625rem;
  position: relative;
}

.dropdown .sub-menu-list li::before {
  content: "";
  display: block;
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 50%;
  background-color: var(--color_main);
  position: absolute;
  left: 0;
  top: 0.8em;
}

.dropdown .sub-menu-list li 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) {
  .dropdown .sub-menu-list li a:is(:hover, :focus) {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

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

.gnavi-menu-btn {
  background: linear-gradient(to bottom, #FF3623 0%, #FF4A38 30%, #FF7C6F 100%);
  cursor: pointer;
  display: grid;
  place-items: center;
  width: 85px;
  height: 85px;
  border-radius: 10px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  position: relative;
  color: #fff;
  z-index: 110;
  flex: 0 0 auto;
}

.gnavi-menu-btn-line {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 38px;
}

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

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

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

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

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

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

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

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

.gnavi-drawer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  will-change: opacity;
  z-index: 100;
  background-color: var(--color_sub02);
  overflow-y: auto;
  padding: 100px 0;
}

.gnavi-drawer.is-open {
  opacity: 1;
  pointer-events: all;
  overflow-y: auto;
}

.gnavi-drawer-container {
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 35px;
  width: min(1024px, 100%);
  margin-inline: auto;
  grid-template-areas: "access btn" "navi navi";
}

.gnavi-drawer-container .access-area {
  grid-area: access;
}

.gnavi-drawer-container .btn-area {
  grid-area: btn;
}

.gnavi-drawer-container .navi-area {
  grid-area: navi;
}

.navi-logo {
  margin-bottom: 35px;
}

.gnavi-drawer-container .txt-access {
  margin-bottom: 20px;
}

.gnavi-drawer-container .contact-links {
  margin-bottom: 35px;
}

.header-btn-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.header-btn-list>li>a {
  background-color: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: grid;
  grid-template-columns: 97px 1fr;
  gap: 25px;
  align-items: center;
  position: relative;
  transition: color 0.3s ease, scale 0.3s ease;
}

.header-btn-list>li>a:after {
  content: "";
  display: block;
  background: url(../images/share/link_arrow.svg) no-repeat center/contain;
  width: 38px;
  height: 29px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.header-btn-list>li>a .list-ttl {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

@media (hover: hover) {
  .header-btn-list>li>a:is(:hover, :focus) {
    color: var(--color_main);
    scale: 1.02;
  }
}

.drawer-links-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 25px;
}

.drawer-links {
  font-size: 1rem;
}

.drawer-links>li {
  margin-bottom: 5px;
  padding: 0 0 0 1.0625rem;
  position: relative;
}

.drawer-links>li::before {
  content: "";
  display: block;
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 50%;
  background-color: var(--color_main);
  position: absolute;
  left: 0;
  top: 0.8em;
}

.drawer-links>li>a,
.drawer-links>li>span {
  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) {

  .drawer-links>li>a:is(:hover, :focus),
  .drawer-links>li>span:is(:hover, :focus) {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.drawer-links>li>ul>li {
  margin-bottom: 5px;
  padding: 0 0 0 1.0625rem;
  position: relative;
}

.drawer-links>li>ul>li::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 1px;
  background-color: var(--color_main);
  position: absolute;
  left: 0;
  top: 1.1em;
}

.drawer-links>li>ul>li>a,
.drawer-links>li>ul>li>span {
  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) {

  .drawer-links>li>ul>li>a:is(:hover, :focus),
  .drawer-links>li>ul>li>span:is(:hover, :focus) {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

@media (max-width: 800px) {
  .gnavi-menu-btn {
    width: 50px;
    height: 50px;
    border-radius: 5px;
  }

  .gnavi-menu-btn-line {
    width: 20px;
    height: 16px;
  }

  .gnavi-menu-btn-line span {
    height: 1px;
  }

  .gnavi-drawer {
    padding: 55px 2.5%;
  }

  .gnavi-drawer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    grid-template-areas: none;
  }

  .gnavi-drawer-container .access-area {
    grid-area: auto;
  }

  .gnavi-drawer-container .btn-area {
    grid-area: auto;
  }

  .gnavi-drawer-container .navi-area {
    grid-area: auto;
  }

  .navi-logo {
    width: 200px;
    margin: 0 auto 20px;
  }

  .gnavi-drawer-container .txt-access {
    text-align: center;
  }

  .gnavi-drawer-container .contact-links {
    margin-bottom: 30px;
  }

  .header-btn-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-btn-list>li {
    width: calc(50% - 5px);
  }

  .header-btn-list>li>a {
    padding: 15px 10px;
    grid-template-columns: 40px 1fr;
    gap: 10px;
    align-items: center;
    border-radius: 10px;
    height: 100%;
  }

  .header-btn-list>li>a:after {
    width: 17px;
    height: 13px;
    right: 5px;
    bottom: 5px;
  }

  .header-btn-list>li>a .list-ttl {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
  }

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

  .drawer-links>li>ul {
    -moz-column-count: 2;
    column-count: 2;
  }

  .drawer-links>li>ul>li {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  border-top: 1px solid var(--color_border);
  margin-top: auto;
  position: relative;
  padding: 80px 0 0;
}

.f-contents {
  display: grid;
  grid-template-columns: 463px 1fr;
  gap: 0 60px;
  margin-inline: auto;
  padding: 0 0 60px;
  margin: 0 auto 60px;
  border-bottom: 1px solid var(--color_main);
  width: min(90%, 1024px);
}

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

.f-contents .txt-access {
  margin-bottom: 20px;
}

.f-contents .contact-links {
  margin-bottom: 35px;
}

.f-hours {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
}

.f-hours-ttl {
  background: var(--color_gradient02);
  color: #fff;
  text-align: center;
  padding: 14px 8px;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  position: relative;
}

.f-hours-desc {
  background: #fff;
  padding: 50px 25px;
}

.f-hours-time {
  text-align: center;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.f-hours-time p+p {
  margin-top: 25px;
}

.f-hours-break {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--color_text);
}

.f-hours-break-label {
  display: inline-block;
  background: var(--color_main);
  color: #fff;
  padding: 4px 16px;
  font-size: 1rem;
  border-radius: 7px;
  font-weight: 700;
  margin-right: 8px;
}

.f-hours-break-text {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
}

.f-hours-note {
  color: var(--color_main);
  text-align: center;
  margin-top: 20px;
}

.site-map {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(90%, 1024px);
  margin-inline: auto;
}

.f-links {
  font-size: 1rem;
}

.f-links>li {
  margin-bottom: 5px;
  padding: 0 0 0 1.0625rem;
  position: relative;
}

.f-links>li::before {
  content: "";
  display: block;
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 50%;
  background-color: var(--color_main);
  position: absolute;
  left: 0;
  top: 0.8em;
}

.f-links>li>a,
.f-links>li>span {
  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) {

  .f-links>li>a:is(:hover, :focus),
  .f-links>li>span:is(:hover, :focus) {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.f-links>li>ul>li {
  margin-bottom: 5px;
  padding: 0 0 0 1.0625rem;
  position: relative;
}

.f-links>li>ul>li::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 1px;
  background-color: var(--color_main);
  position: absolute;
  left: 0;
  top: 1.1em;
}

.f-links>li>ul>li>a,
.f-links>li>ul>li>span {
  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) {

  .f-links>li>ul>li>a:is(:hover, :focus),
  .f-links>li>ul>li>span:is(:hover, :focus) {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.copyright {
  color: #fff;
  font-size: 0.75rem;
  background: var(--color_gradient01);
  padding: 3px 5%;
  text-align: center;
  margin-top: 40px;
}

.pagetop {
  position: absolute;
  bottom: 53px;
  right: 20px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  z-index: 10;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .pagetop:is(:hover, :focus) {
    scale: 1.05;
  }
}

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

  .f-contents {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 0 0 40px;
  }

  .f-logo {
    width: 200px;
    margin: 0 auto 20px;
  }

  .f-contents .txt-access {
    text-align: center;
  }

  .f-contents .contact-links {
    margin-bottom: 30px;
  }

  .f-hours-ttl {
    padding: 11px 7px;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }

  .f-hours-desc {
    padding: 40px 20px;
  }

  .f-hours-time {
    font-size: 1.375rem;
  }

  .f-hours-time p+p {
    margin-top: 0;
  }

  .f-hours-break {
    gap: 10px;
    padding-top: 20px;
    margin-top: 20px;
  }

  .f-hours-break-text {
    font-size: 1.25rem;
  }

  .f-hours-note {
    color: var(--color_main);
    text-align: center;
    margin-top: 16px;
  }

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

  .f-links>li>ul {
    -moz-column-count: 2;
    column-count: 2;
  }

  .f-links>li>ul>li {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }

  .copyright {
    padding-bottom: 68px;
  }

  .pagetop {
    bottom: 110px;
  }
}

.sp-navi {
  display: none;
}

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

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

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

  .sp-navi-btns>*+* {
    border-left: 1px solid #fff;
  }

  .sp-navi-btns .item {
    font-family: var(--font_jp);
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

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

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

  .sp-navi-btns .item .img svg {
    -o-object-fit: cover;
    object-fit: cover;
    height: 20px;
    margin-bottom: 8px;
    fill: #fff;
  }

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

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

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

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

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

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

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

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

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

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

:root {
  --sticky-width: 250px;
}

.layout-sidebar {
  container: sticky-layout/inline-size;
  position: relative;
  height: 100%;
}

.layout-sidebar .l-sidebar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: var(--sticky-width);
  width: 100%;
  background-color: rgba(247, 247, 255, 0.8);
  z-index: 1;
}

.layout-sidebar .l-sidebar-inner {
  position: sticky;
  top: 150px;
  left: 0;
  z-index: 2;
  max-height: calc(100svh - 150px);
  overflow: auto;
  padding: 0 30px 30px;
}

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

.layout-sidebar .l-label [lang=en] {
  color: var(--color_main);
  font-family: var(--font_en);
  font-size: 1.0625rem;
  font-weight: 700;
}

.layout-sidebar .l-label .jp {
  font-family: var(--font_jp);
  font-size: 0.75rem;
  font-weight: 700;
}

@container sticky-layout (max-width:1500px) {
  .layout-sidebar .tall {
    padding-left: var(--sticky-width);
  }
}

@media (max-width: 800px) {
  .layout-sidebar .tall {
    padding-left: 0;
  }

  .layout-sidebar .l-sidebar {
    position: static;
    padding: 0 5%;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .layout-sidebar .l-sidebar-inner {
    padding-bottom: 0;
  }
}

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

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

.list-links>li::before {
  content: "";
  border-top: 1px solid var(--color_main);
  border-right: 1px solid var(--color_main);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 9px;
  left: 0;
  rotate: 45deg;
}

.list-links ul {
  margin-top: 10px;
}

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

.list-links ul li::before {
  content: "└";
  position: absolute;
  top: 5px;
  left: 0;
  color: var(--color_sub01);
  font-size: 0.625rem;
}

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

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

@media (any-hover: hover) {

  .list-links a:hover,
  .list-links a:focus {
    color: var(--color_main);
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.list-links a.is-current {
  color: var(--color_main);
  background-position: 0 100%;
  background-size: 100% 1px;
}

.layout-post-sidebar {
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-areas: "sidebar body";
  gap: 5rem;
  align-items: flex-start;
  margin: auto;
  width: min(90%, 1200px);
}

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

.layout-post-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: 1.5rem;
}

.layout-post-sidebar .l-label [lang=en] {
  color: var(--color_main);
  font-family: var(--font_en);
  font-size: 1.0625rem;
  font-weight: 700;
}

.layout-post-sidebar .l-label .jp {
  font-family: var(--font_jp);
  font-size: 0.75rem;
  font-weight: 700;
}

.layout-post-sidebar .l-body {
  grid-area: body;
  width: min(90%, 1200px);
}

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

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

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

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  background: url(../images/hero_bg_pc01.png) no-repeat left bottom/22.7% auto, url(../images/hero_bg_pc02.png) no-repeat right top/23.8% auto, url(../images/hero_bg_pc03.png) no-repeat right bottom/25.8% auto;
  position: relative;
  padding: 0 2.5%;
}

.hero .splide {
  padding: min(60px, 3.33vw) 0 min(90px, 5vw) 0;
}

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

.hero .splide__pagination__page:not(.is-active) {
  background: #fff;
}

.hero .splide__pagination__page {
  width: 30px;
}

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

.hero .splide__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  padding: 0;
  position: absolute;
  bottom: min(40px, 2.22vw);
  right: 0;
  z-index: 5;
}

.hero-desc {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6%;
  z-index: 5;
}

.hero-txt01 {
  font-family: var(--font_jp);
  font-weight: 700;
  font-size: min(3.0625rem, 2.72vw);
  line-height: 1.7;
  filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 6px #fff);
}

.hero-txt01 .big {
  font-size: min(65px, 3.61vw);
  background: var(--color_gradient01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-txt02 {
  font-family: var(--font_jp);
  font-weight: 700;
  font-size: min(1.375rem, 1.22vw);
  line-height: 2;
  margin-top: min(30px, 1.67vw);
  filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 6px #fff);
}

.hero-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 14px;
  margin-top: 30px;
  max-width:615px;
}

.hero-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px 0;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 8px;
  border-radius: 100px;
}

.hero-list li .txt {
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
}

.hero-img {
  width: 76.7%;
  margin: 0 0 0 auto;
}

.hero-img .img-wrap {
  display: flex;
  align-items: flex-end;
  gap: 1%;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

.hero-img .img-wrap .img01 {
  width: 52.8%;
}

.hero-img .img-wrap .img02 {
  width: 46.2%;
}

@media (max-width: 800px) {
  .hero {
    background: url(../images/hero_bg_sp01.png) no-repeat right top/49.3% auto, url(../images/hero_bg_sp02.png) no-repeat left bottom/28.3% auto, url(../images/hero_bg_sp03.png) no-repeat right bottom/48.6% auto;
    padding: 20.5vw 2.5% 14.5vw;
  }

  .hero .splide {
    padding: 0;
  }

  .hero .splide__controls {
    position: absolute;
    bottom: calc(-100% - 30px);
    right: 0;
  }

  .hero-desc {
    position: relative;
    inset: auto;
    transform: none;
    z-index: 10;
    margin-top: -28vw;
  }

  .hero-txt01 {
    font-size: 7vw;
  }

  .hero-txt01 .big {
    font-size: 9vw;
  }

  .hero-txt02 {
    font-size: 3vw;
    margin-top: 5vw;
  }

  .hero-list {
    gap: 10px;
    margin-top: 5vw;
    max-width:100%;
  }

  .hero-list li {
    display: grid;
    grid-template-columns: 6vw 1fr;
    padding: 8px;
  }

  .hero-list li .txt {
    font-size: 0.625rem;
    letter-spacing: 0;
  }

  .hero-img {
    width: 100%;
    margin: 0 auto;
  }

  .hero-img .img-wrap {
    display: block;
  }

  .hero-img .img-wrap .img01 {
    width: 100%;
  }

  .hero-img .img-wrap .img02 {
    display: none;
  }
}

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

.t-h2 [lang=en] {
  font-family: var(--font_en);
  font-size: 5rem;
  font-weight: 700;
  background: var(--color_gradient01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 25px;
}

.t-h2 .jp {
  font-family: var(--font_jp);
  font-size: 1.875rem;
  font-weight: 700;
}

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

  .t-h2 [lang=en] {
    font-size: 2.5rem;
    margin-bottom: 18px;
  }

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

/*------------
Section
--------------*/
.sec00 {
  background-color: #fff;
  padding: 5px 0;
}

.t-news-layout {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 100px;
  gap: 0 40px;
  align-items: center;
}

.t-news-layout .l-ttl {
  background: var(--color_gradient01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: var(--font_en);
  font-size: 2.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

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

  .t-news-layout {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    grid-template-areas: "ttl btn" "body body";
  }

  .t-news-layout .l-ttl {
    grid-area: ttl;
  }

  .t-news-layout .l-btn {
    grid-area: btn;
  }

  .t-news-layout .l-body {
    grid-area: body;
  }
}

.sec01 {
  background-color: var(--color_sub02);
}

.sec01-card-layout {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid #FABAB9;
  width: min(90%, 1200px);
  margin-inline: auto;
}

.sec01-card-layout .card-item {
  border-right: 1px solid #FABAB9;
  padding: 20px 5px;
}

.sec01-card-layout .card-item .card-img {
  width: 60px;
  margin: 0 auto 20px;
}

.sec01-card-layout .card-item .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.sec01-card-layout .card-item .card-txt01 {
  font-size: 1.125rem;
  line-height: 1.44;
  text-align: center;
}

.sec01-card-layout .card-item .card-txt02 {
  font-size: 0.9375rem;
  text-align: center;
  line-height: 2;
  min-height: 4em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sec01-card-layout .card-item .card-notice {
  color: var(--color_main);
  font-size: 0.875rem;
  line-height: 1.42;
  text-align: center;
  margin-top: 10px;
}

.sec01-card-layout .card-item .list-disc {
  font-size: 1.125rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.sec01-card-layout .card-item .card-btn {
  text-align: center;
  margin-top: 20px;
}

.sec01-card-layout .card-item .card-btn .btn-more {
  min-width: 131px;
}

@media (max-width: 800px) {
  .sec01-card-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-left: none;
    width: 100%;
    border-top: 2px solid #FABAB9;
  }

  .sec01-card-layout .card-item {
    border-bottom: 2px solid #FABAB9;
    border-right: 2px solid #FABAB9;
    padding: 20px 10px;
  }

  .sec01-card-layout .card-item:nth-child(even) {
    border-right: none;
  }

  .sec01-card-layout .card-item .card-img {
    width: 60px;
    margin: 0 auto 10px;
  }

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

  .sec01-card-layout .card-item .card-txt01 {
    font-size: 1rem;
    line-height: 1.5;
  }

  .sec01-card-layout .card-item .card-txt02 {
    font-size: 0.875rem;
    line-height: 1.5;
    min-height: 4.5em;
  }

  .sec01-card-layout .card-item .card-notice {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-top: 10px;
  }

  .sec01-card-layout .card-item .list-disc {
    font-size: 1rem;
  }
}

.sec02 {
  padding: 100px 0 0;
}

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

.sec02-layout {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
  overflow: hidden;
  padding: 50px 90px;
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 0 70px;
  align-items: center;
  position: relative;
}

.sec02-layout:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 15px;
  height: 100%;
  background: linear-gradient(to bottom, #FF3623, #FF7C6F);
  z-index: 1;
}

.sec02-layout .l-ttl {
  font-family: var(--font_jp);
  font-size: 1.75rem;
  font-weight: 700;
  border-bottom: 2px solid;
  -o-border-image: var(--color_gradient01) 1;
  border-image: var(--color_gradient01) 1;
  letter-spacing: 0.15em;
  padding: 0 0 10px;
  margin: 0 0 30px;
}

.sec02-layout .l-btn {
  margin-top: 25px;
}

@media (max-width: 800px) {
  .sec02-layout {
    display: block;
    padding: 30px 16px;
  }

  .sec02-layout:before {
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, #FF3623, #FF7C6F);
  }

  .sec02-layout .l-img {
    margin: 0 auto 20px;
    width: -moz-fit-content;
    width: fit-content;
  }

  .sec02-layout .l-ttl {
    font-size: 1.375rem;
    padding: 0 0 8px;
    margin: 0 0 18px;
  }

  .sec02-layout .l-btn {
    margin-top: 30px;
  }
}

.sec03 {
  background: url(../images/sec03_deco01.png) no-repeat left center/26.6% auto, url(../images/sec03_deco02.png) no-repeat right top 170px/27.38% auto;
  padding: 135px 0;
}

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

.sec03-txt {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 70px;
}

@media (max-width: 800px) {
  .sec03-txt {
    font-size: 0.9375rem;
    margin-bottom: 30px;
  }
}

.sec03-card-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sec03-card-layout .card-item a {
  background-color: #fff;
  display: block;
  height: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  padding: 30px 20px 45px;
  position: relative;
  transition: all 0.3s ease;
}

.sec03-card-layout .card-item a:after {
  content: "";
  position: absolute;
  display: block;
  right: 10px;
  bottom: 10px;
  width: 38px;
  height: 29px;
  background: url(../images/share/link_arrow.svg) no-repeat center/contain;
  z-index: 1;
}

@media (hover: hover) {
  .sec03-card-layout .card-item a:is(:hover, :focus) {
    transform: translateY(-10px);
  }
}

.sec03-card-layout .card-item .card-img {
  width: 96px;
  margin: 0 auto 20px;
}

.sec03-card-layout .card-item .card-ttl {
  border-bottom: 1px solid var(--color_main);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0 0 10px;
  margin: 0 0 20px;
  text-align: center;
}

.sec03-card-layout .card-item .card-txt {
  text-align: center;
}

@media (max-width: 800px) {
  .sec03-card-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sec03-card-layout .card-item a {
    padding: 20px 12px 32px;
  }

  .sec03-card-layout .card-item a:after {
    right: 8px;
    bottom: 8px;
    width: 24px;
    height: 18px;
  }

  .sec03-card-layout .card-item .card-img {
    width: 64px;
    margin: 0 auto 12px;
  }

  .sec03-card-layout .card-item .card-ttl {
    font-size: 1rem;
    padding: 0 0 8px;
    margin: 0 0 12px;
  }

  .sec03-card-layout .card-item .card-txt {
    font-size: 0.75rem;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }
}

.sec04 {
  background: url(../images/sec04_deco01.png) no-repeat right top/30.7% auto, url(../images/sec04_deco02.png) no-repeat left 40px bottom 40px/24.2% auto, url(../images/sec04_bg.jpg) no-repeat center/cover;
  padding: 135px 0;
}

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

.sec04-card-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 27px;
}

.sec04-card-layout .card-item {
  width: calc(33.3% - 18px);
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 380px;
}

.sec04-card-layout .card-item .card-ttl {
  background: var(--color_gradient02);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 17px;
}

.sec04-card-layout .card-item .card-desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

.sec04-card-layout .card-item .card-num {
  font-family: var(--font_jp);
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.15em;
}

.sec04-card-layout .card-item .card-num+.card-num {
  margin-left: 70px;
}

.sec04-card-layout .card-item .card-num .num {
  font-family: var(--font_en);
  font-size: 6.9375rem;
  font-weight: 700;
  color: #fff;
  -webkit-text-stroke: 4px var(--color_main);
  margin-right: 5px;
}

.sec04-card-layout .card-item .card-txt {
  text-align: center;
  margin-top: 30px;
}

@media (max-width: 800px) {
  .sec04-card-layout {
    gap: 16px;
  }

  .sec04-card-layout .card-item {
    width: 100%;
    min-height: 0;
  }

  .sec04-card-layout .card-item .card-ttl {
    font-size: 1.25rem;
    padding: 14px;
  }

  .sec04-card-layout .card-item .card-desc {
    padding: 25px 0;
  }

  .sec04-card-layout .card-item .card-num {
    font-size: 1.75rem;
  }

  .sec04-card-layout .card-item .card-num+.card-num {
    margin-left: 40px;
  }

  .sec04-card-layout .card-item .card-num .num {
    font-size: 5rem;
    -webkit-text-stroke: 3px var(--color_main);
  }

  .sec04-card-layout .card-item .card-txt {
    margin-top: 20px;
  }
}

.sec05 {
  background: url(../images/sec05_deco01.png) no-repeat right top 25%/24.8% auto, url(../images/sec05_deco02.png) no-repeat left bottom 40px/23.2% auto;
  padding: 135px 0;
}

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

.sec05-txt {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 800px) {
  .sec05-txt {
    font-size: 0.9375rem;
    margin-bottom: 30px;
  }
}

.sec05-sub-section+.sec05-sub-section {
  margin-top: 40px;
}

@media (max-width: 800px) {
  .sec05-sub-section+.sec05-sub-section {
    margin-top: 30px;
  }
}

.sec05-ttl {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 30px;
}

.sec05-ttl::before {
  content: "";
  display: block;
  width: 70px;
  height: 107px;
  background: url("../images/sec05_img01.svg") no-repeat center/contain;
}

.sec05-ttl .ttl-border {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid;
  -o-border-image: var(--color_gradient01) 1;
  border-image: var(--color_gradient01) 1;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 800px) {
  .sec05-ttl {
    grid-template-columns: 45px 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }

  .sec05-ttl::before {
    width: 45px;
    height: 69px;
  }

  .sec05-ttl .ttl-border {
    font-size: 1.125rem;
    padding-bottom: 6px;
  }
}

.sec05-list-link {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px 30px;
}

.sec05-list-link li a {
  position: relative;
  display: block;
  border-radius: 50px;
  border: 2px solid var(--color_main);
  background: #fff;
  isolation: isolate;
  color: var(--color_main);
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  text-align: center;
  padding: 13px 28px;
  transition: color 0.3s ease;
  z-index: 2;
}

.sec05-list-link li a::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -2;
  background: var(--color_gradient01);
  opacity: 0;
  border-radius: 50px;
  transition: opacity 0.3s ease;
}

.sec05-list-link li a::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background: var(--color_main);
  border-radius: 50%;
  transition: background 0.3s ease;
}

@media (hover: hover) {
  .sec05-list-link li a:is(:hover, :focus) {
    color: #fff;
  }

  .sec05-list-link li a:is(:hover, :focus)::before {
    opacity: 1;
  }

  .sec05-list-link li a:is(:hover, :focus)::after {
    background: #fff;
  }
}

@media (max-width: 800px) {
  .sec05-list-link {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sec05-list-link li a {
    font-size: 0.8125rem;
    padding: 12px 22px 12px 14px;
  }

  .sec05-list-link li a::after {
    right: 10px;
    width: 7px;
    height: 7px;
  }
}

.sec06 {
  background: url(../images/sec06_deco01.png) no-repeat right top 60px/25.5% auto, url(../images/sec06_deco02.png) no-repeat left bottom 60px/18.2% auto, url(../images/sec06_bg.jpg) no-repeat center/cover;
  padding: 135px 0;
}

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

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

.sec06-card-layout .card-item {
  width: calc(33.3% - 20px);
}

.sec06-card-layout .card-item a {
  background-color: #fff;
  display: block;
  height: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  padding: 40px 20px 45px;
  position: relative;
  transition: all 0.3s ease;
}

.sec06-card-layout .card-item a:after {
  content: "";
  position: absolute;
  display: block;
  right: 10px;
  bottom: 10px;
  width: 38px;
  height: 29px;
  background: url(../images/share/link_arrow.svg) no-repeat center/contain;
  z-index: 1;
}

@media (hover: hover) {
  .sec06-card-layout .card-item a:is(:hover, :focus) {
    transform: translateY(-10px);
  }
}

.sec06-card-layout .card-item .card-img {
  width: 96px;
  margin: 0 auto 20px;
}

.sec06-card-layout .card-item .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 800px) {
  .sec06-card-layout {
    gap: 12px;
  }

  .sec06-card-layout .card-item {
    width: calc(50% - 6px);
  }

  .sec06-card-layout .card-item a {
    padding: 25px 10px 30px;
  }

  .sec06-card-layout .card-item a:after {
    width: 24px;
    height: 18px;
  }

  .sec06-card-layout .card-item .card-img {
    width: 64px;
    margin: 0 auto 12px;
  }

  .sec06-card-layout .card-item .card-ttl {
    font-size: 0.9375rem;
  }
}

.sec07 {
  background: url(../images/sec07_deco01.png) no-repeat right top 126px/15.2% auto, url(../images/sec07_deco02.png) no-repeat left bottom/16.7% auto;
  padding: 135px 0 0;
}

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

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

.sec07-card-layout .card-item {
  width: calc(33.3% - 20px);
}

.sec07-card-layout .card-item a {
  background-color: #fff;
  display: block;
  height: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  padding: 40px 20px 45px;
  position: relative;
  transition: all 0.3s ease;
}

.sec07-card-layout .card-item a:after {
  content: "";
  position: absolute;
  display: block;
  right: 10px;
  bottom: 10px;
  width: 38px;
  height: 29px;
  background: url(../images/share/link_arrow.svg) no-repeat center/contain;
  z-index: 1;
}

@media (hover: hover) {
  .sec07-card-layout .card-item a:is(:hover, :focus) {
    transform: translateY(-10px);
  }
}

.sec07-card-layout .card-item .card-img {
  width: 96px;
  margin: 0 auto 20px;
}

.sec07-card-layout .card-item .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 800px) {
  .sec07-card-layout {
    gap: 12px;
  }

  .sec07-card-layout .card-item {
    width: calc(50% - 6px);
  }

  .sec07-card-layout .card-item a {
    padding: 25px 10px 30px;
  }

  .sec07-card-layout .card-item a:after {
    width: 24px;
    height: 18px;
  }

  .sec07-card-layout .card-item .card-img {
    width: 64px;
    margin: 0 auto 12px;
  }

  .sec07-card-layout .card-item .card-ttl {
    font-size: 0.9375rem;
  }
}

.sec08 {
  background: url(../images/sec08_deco01.png) no-repeat left 20px top 45px/18.8% auto, url(../images/sec08_deco02.png) no-repeat right 20px bottom 45px/30.2% auto;
  padding: 145px 0;
}

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

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

.sec08-card-layout .card-item {
  width: calc(33.3% - 20px);
}

.sec08-card-layout .card-item a {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  padding: 40px 20px 45px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 20px;
  overflow: hidden;
  min-height: 243px;
}

.sec08-card-layout .card-item a:after {
  content: "";
  position: absolute;
  display: block;
  right: 10px;
  bottom: 10px;
  width: 38px;
  height: 29px;
  background: url(../images/share/link_arrow.svg) no-repeat center/contain;
  z-index: 1;
}

@media (hover: hover) {
  .sec08-card-layout .card-item a:is(:hover, :focus) {
    transform: translateY(-10px);
  }
}

.sec08-card-layout .card-item .card-img {
  position: absolute;
  inset: 0;
  background-color: #fff;
  z-index: 1;
}

.sec08-card-layout .card-item .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.2;
}

.sec08-card-layout .card-item .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 800px) {
  .sec08-card-layout {
    gap: 16px;
  }

  .sec08-card-layout .card-item {
    width: calc(50% - 8px);
  }

  .sec08-card-layout .card-item a {
    padding: 30px 20px;
    min-height: 0px;
    border-radius: 10px;
  }

  .sec08-card-layout .card-item a:after {
    width: 24px;
    height: 18px;
  }

  .sec08-card-layout .card-item .card-ttl {
    font-size: 1rem;
  }
}

.sec09 {
  background: url(../images/sec09_deco01.png) no-repeat right top 50px/24.7% auto, url(../images/sec09_deco02.png) no-repeat left bottom/25.1% auto, url(../images/sec09_bg.jpg) no-repeat center/cover;
  padding: 135px 0;
}

.sec09 .t-h2 {
  margin-bottom: 50px;
  text-align: left;
}

.sec09 .t-h2 [lang=en] {
  margin-left: 0;
}

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

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

.sec09-txt-wrap {
  text-align: center;
  margin-bottom: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sec09-txt-wrap .sec09-txt {
  font-size: 1.25rem;
}

@media (max-width: 800px) {
  .sec09-txt-wrap {
    display: block;
    margin-bottom: 40px;
  }

  .sec09-txt-wrap .sec09-txt {
    font-size: 0.9375rem;
    margin-bottom: 20px;
  }
}

.sec09-slider {
  overflow: hidden;
}

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

.sec09-slider .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec09-card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 1;
  display: block;
  width: 100%;
  transform: rotate(-10deg);
  transition: 0.5s ease;
  scale: 0.8;
}

@media (hover: hover) {
  a.sec09-card:is(:hover, :focus) {
    background-color: var(--color_sub02);
  }

  a.sec09-card:is(:hover, :focus) .card-img img {
    scale: 1.1;
  }

  a.sec09-card:is(:hover, :focus) .card-name {
    color: var(--color_main);
  }
}

.card-img {
  position: relative;
  overflow: hidden;
}

.card-img .card-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 9px;
  background: var(--color_gradient01);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  min-width: 120px;
  text-align: center;
  border-radius: 0 5px 0 0;
}

.card-img img {
  width: 100%;
  transition: 0.5s ease;
}

.card-cont {
  padding: 30px 7%;
}

.card-name {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 15px;
  transition: 0.5s ease;
}

.card-prof {
  font-size: 1rem;
  line-height: 2;
}

.sec09-slider .splide__slide.is-prev .sec09-card,
.sec09-slider .splide__slide.is-next .sec09-card {
  transform: rotate(10deg);
}

.sec09-slider .splide__slide.is-active .sec09-card {
  transform: rotate(0deg);
  scale: 1;
}

.sec09-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin: 40px max(5%, 50% - 600px) 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  padding: 0 0 8px;
}

.sec09-slider-counter {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
}

.sec09-slider .splide__arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 800px) {
  .sec09-card {
    transform: rotate(6deg);
  }

  .sec09-slider .splide__slide.is-prev .sec09-card,
  .sec09-slider .splide__slide.is-next .sec09-card {
    transform: rotate(6deg);
  }

  .sec09-slider-nav {
    margin: 40px auto 0;
  }
}

.sec10 {
  padding: 135px 0;
  background: url(../images/sec10_deco01.png) no-repeat right top 30%/25.3% auto, url(../images/sec10_deco02.png) no-repeat left bottom/32% auto;
}

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

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

.sec10-layout .l-img {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

.sec10-layout .l-desc {
  max-width: 468px;
}

.sec10-layout .l-ttl {
  font-family: var(--font_jp);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.78;
  border-bottom: 2px solid;
  -o-border-image: var(--color_gradient01) 1;
  border-image: var(--color_gradient01) 1;
  padding: 0 0 5px;
  margin: 0 0 45px;
}

.sec10-layout .l-btn {
  margin-top: 45px;
}

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

  .sec10-layout .l-img {
    margin-bottom: 25px;
  }

  .sec10-layout .l-desc {
    max-width: none;
  }

  .sec10-layout .l-ttl {
    font-size: 1.375rem;
    line-height: 1.6;
    margin: 0 0 25px;
  }

  .sec10-layout .l-btn {
    margin-top: 30px;
  }
}

.sec11 {
  padding: 0 0 135px;
  background: url(../images/sec11_deco01.png) no-repeat left 40px top 20%/18.8% auto, url(../images/sec11_deco02.png) no-repeat right bottom 100px/30.2% auto;
}

.sec11-layout {
  display: grid;
  grid-template-columns: 54% 1fr;
  gap: 0 3.25%;
}

.sec11-layout .l-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 560px;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.sec11-layout .l-btn {
  margin-top: 45px;
}

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

  .sec11-layout {
    display: block;
  }

  .sec11-layout .l-map {
    margin-bottom: 25px;
  }

  .sec11-layout .l-map iframe {
    height: 300px;
    border-radius: 10px;
  }

  .sec11-layout .l-btn {
    margin-top: 25px;
  }
}

.sec11-list>li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 0 10px;
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

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

@media (max-width: 800px) {
  .sec11-list>li {
    font-size: 0.875rem;
    margin-bottom: 15px;
  }
}

.sec12 {
  padding: 135px 0;
  background: url(../images/sec12_deco01.png) no-repeat left top 130px/22.7% auto, url(../images/sec12_deco02.png) no-repeat right bottom 40px/21% auto;
  background-color: var(--color_sub02);
}

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

.sec12-card-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sec12-card-layout .card-item a {
  background-color: #fff;
  display: block;
  height: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.sec12-card-layout .card-item a:after {
  content: "";
  position: absolute;
  display: block;
  right: 10px;
  bottom: 10px;
  width: 38px;
  height: 29px;
  background: url(../images/share/link_arrow.svg) no-repeat center/contain;
  z-index: 1;
}

@media (hover: hover) {
  .sec12-card-layout .card-item a:is(:hover, :focus) {
    transform: translateY(-10px);
  }
}

.sec12-card-layout .card-desc {
  padding: 20px;
}

.sec12-card-layout .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}

.sec12-card-layout .card-txt {
  line-height: 1.5;
}

@media (max-width: 800px) {
  .sec12-card-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sec12-card-layout .card-item a:after {
    width: 24px;
    height: 18px;
  }

  .sec12-card-layout .card-desc {
    padding: 15px 12px 25px;
  }

  .sec12-card-layout .card-ttl {
    font-size: 0.875rem;
    margin-bottom: 6px;
  }

  .sec12-card-layout .card-txt {
    font-size: 0.75rem;
  }
}

/*-----------------------------------------------------------
		TOP アニメーション
-----------------------------------------------------------*/
.is-mask {
  display: inline-block;
  -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
  transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
  vertical-align: middle;
}

.is-mask.is-action {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}

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

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

.is-fade-l {
  opacity: 0;
  transition: 0.7s;
  transform: translate(-15%, 0);
}

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

.is-fade-r {
  opacity: 0;
  transition: 0.7s;
  transform: translate(15%, 0);
}

.is-fade-r.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.is-action>* {
  opacity: 1;
  transform: translate(0, 0);
}

.is-ttl span {
  opacity: 0;
  transition: 0.7s;
}

.is-ttl.is-action span {
  opacity: 1;
}

.js-parallax-bg {
  overflow: hidden;
}

.js-parallax-bg img {
  transform: scale(1.3);
}

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

  .is-mask,
  .is-fade,
  .is-fade-l,
  .is-fade-r,
  .is-card>*,
  .is-ttl span {
    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-color: var(--color_bg01);
  padding: 50px 5%;
  position: relative;
  min-height: 250px;
}

.page-ttl {
  line-height: 1.5;
  font-family: var(--font_jp);
  font-size: 3.0625rem;
  font-weight: 700;
  text-align: center;
}

.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 {
    overflow: hidden;
    padding: 50px 3%;
    min-height: 150px;
  }

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

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

.u-h2,
.postdata h2 {
  font-family: var(--font_jp);
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  padding: 0 0 20px;
  margin: 0 0 40px;
  position: relative;
}

.u-h2::after,
.postdata h2::after {
  content: "";
  background: var(--color_main);
  width: 30px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.postdata h2 {
  text-align: left;
  font-size: 2rem;
}

.postdata h2::after {
  left: 0;
  transform: none;
}

.u-h3,
.postdata h3 {
  border-bottom: 1px solid var(--color_main);
  font-family: var(--font_jp);
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0 0 10px;
  margin: 0 0 30px;
}

.u-h4,
.postdata h4 {
  color: #000;
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 0 0 0 16px;
  margin: 0 0 20px;
  position: relative;
}

.u-h4::before,
.postdata h4::before {
  content: "";
  background: var(--color_main);
  border-radius: 4px;
  width: 4px;
  height: 29px;
  position: absolute;
  top: 3px;
  left: 0;
}

.point-ttl {
  border-bottom: 1px solid var(--color_main);
  font-family: var(--font_jp);
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 50px 0 10px;
  margin: 0 0 30px;
  position: relative;
}

.point-ttl::before {
  content: attr(data-point);
  color: var(--color_sub03);
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  font-family: var(--font_en);
  font-size: 5rem;
  font-weight: 700;
  z-index: -1;
}

.u-catch {
  font-family: var(--font_jp);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.5;
}

@media (max-width: 800px) {

  .u-h2,
  .postdata h2 {
    font-size: 1.4375rem;
    padding: 0 0 10px;
    margin: 0 0 30px;
  }

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

  .u-h4,
  .postdata h4 {
    font-size: 1.125rem;
    margin: 0 0 20px;
  }

  .u-h4::before,
  .postdata h4::before {
    height: 1em;
    top: 0.35em;
  }

  .point-ttl {
    font-size: 1.25rem;
    padding: 20px 0 10px;
    margin: 0 0 20px;
  }

  .point-ttl::before {
    font-size: 2.1875rem;
  }

  .u-catch {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.list-disc li>ul {
  font-size: 87.5%;
  margin-top: 5px;
}

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

.list-check li {
  position: relative;
  padding-left: 1.25em;
  margin-bottom: 5px;
}

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

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

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

.list-num>li {
  padding-left: 1.875em;
  position: relative;
  margin-bottom: 5px;
}

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

.list-num>li:before {
  background-color: var(--color_main);
  border-radius: 1.364em;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 0.6875em;
  letter-spacing: 0;
  position: absolute;
  top: 0.545em;
  left: 0;
  line-height: 1.818em;
  text-align: center;
  width: 1.818em;
  height: 1.818em;
}

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

.list-col2>li {
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}

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

.list-col3>li {
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}

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

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

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

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

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

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

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

.table-style01 td {
  background-color: #fff;
}

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

@media (max-width: 800px) {

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

  .table-style01.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: 800px;
  }
}

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

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

.under-slider01 .item-ttl {
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.under-slider02 .item-img {
  position: relative;
}

.under-slider02 .item-img img {
  border-radius: 20px;
}

.under-slider02 figcaption {
  background: #fff;
  font-size: 0.6875rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  padding: 3px 5px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.under-slider02 .splide__pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

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

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

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

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

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

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

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

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

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

.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-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_bg01);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 25px;
}

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

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

.card-style01 .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}

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

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

/*card-style03*/
.card-style03 {
  display: grid;
  gap: 20px;
}

.card-style03>li {
  background: var(--color_bg01);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
}

.card-style03 .card-num {
  color: var(--color_main);
  font-family: var(--font_en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

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

.card-style03 .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

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

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

  .card-style03 .card-num {
    font-size: 0.625rem;
  }

  .card-style03 .card-num span {
    font-size: 1rem;
  }

  .card-style03 .card-ttl {
    font-size: 0.9375rem;
  }
}

/*card-style04*/
.card-style04 {
  display: grid;
  gap: 25px;
}

.card-style04>li {
  border: 3px solid var(--color_main);
  background-color: #fff;
  padding: 25px;
}

.card-style04 .card-ttl {
  background-color: var(--color_main);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  margin: -25px -25px 25px;
}

.card-style04 .card-img {
  margin-bottom: 30px;
}

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

.card-style04 .price {
  font-family: var(--font_jp);
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

.card-style04 .tax {
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  font-weight: 700;
}

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

.flow-style01>li {
  background: var(--color_bg01);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  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_main);
  position: absolute;
  top: 50%;
  right: -21px;
  transform: translateY(-50%);
}

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

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

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

.flow-style01 .flow-ttl {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 700;
  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-style02*/
.flow-style02 {
  display: grid;
  grid-gap: 30px;
}

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

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

.flow-style02 .flow-num {
  background: var(--color_main);
  border-radius: 50px;
  display: table;
  color: #fff;
  font-weight: bold;
  font-family: var(--font_jp);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 25px;
  padding: 0 20px;
  margin: 0 auto 10px;
}

.flow-style02 .flow-ttl {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

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

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

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

.flow-style03>li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  grid-gap: 50px;
  position: relative;
  min-height: 150px;
}

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

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

.flow-style03 .flow-num {
  color: var(--color_main);
  font-family: var(--font_en);
  font-size: 1.875rem;
  font-weight: 700;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

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

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

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

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

.flow-style03 .flow-ttl {
  color: #000;
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 15px;
}

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

  .flow-style03>li {
    grid-template-columns: 50px minmax(0, 1fr);
    grid-gap: 15px;
  }

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

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

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

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

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

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

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

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

/*flow-style04*/
.flow-style04 li {
  background-color: #fff;
  border: 1px solid var(--color_main);
  padding: 20px 20px 20px 0;
  display: grid;
  align-items: center;
  grid-template-columns: 120px minmax(0, 1fr);
  position: relative;
}

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

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

.flow-style04 li+li::after {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--color_bg01);
  position: absolute;
  left: 50%;
  top: -42px;
  transform: translateX(-50%);
  z-index: 1;
}

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

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

.flow-style04 .flow-ttl {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

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

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

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

@media (max-width: 800px) {
  .flow-style04 li {
    padding: 20px 20px 20px 0;
    grid-template-columns: 50px minmax(0, 1fr);
  }

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

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

  .flow-style04 .flow-ttl {
    margin-bottom: 5px;
  }

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

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

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

/*------------
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-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 700;
  padding-right: 25px;
}

.list-anchor-link01 a::before {
  content: "";
  background: var(--color_main);
  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;
}

/*list-anchor-link02*/
.list-anchor-link02 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 15px;
}

.list-anchor-link02 a {
  display: flex;
  align-items: center;
  background-color: var(--color_sub02);
  border-radius: 3px;
  color: var(--color_main);
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding: 0 35px 0 15px;
  min-height: 60px;
  transition: opacity 0.3s;
}

.list-anchor-link02 a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color_main);
  border-bottom: 2px solid var(--color_main);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}

.list-anchor-link02 a:hover {
  opacity: 0.7;
}

@media (max-width: 800px) {
  .list-anchor-link02 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 10px;
  }

  .list-anchor-link02 a {
    font-family: var(--font_jp);
    font-size: 0.8125rem;
    font-weight: 700;
    justify-content: center;
    text-align: center;
    padding: 8px 8px 20px;
    min-height: 0;
    height: 100%;
  }

  .list-anchor-link02 a::after {
    top: auto;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%) rotate(45deg);
  }

  .list-anchor-link02 a:hover {
    opacity: 0.7;
  }
}

/*------------
box-style
--------------*/
/*box-style01*/
.box-style01 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: var(--color_bg01);
  padding: 5%;
  border-radius: 20px;
}

.box-style01 .box-ttl {
  font-family: var(--font_jp);
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  padding: 0 0 20px;
  margin: 0 0 45px;
  position: relative;
}

.box-style01 .box-ttl::after {
  content: "";
  background: var(--color_main);
  width: 30px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

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

  .box-style01 .box-ttl {
    font-size: 1.4375rem;
    padding: 0 0 10px;
    margin: 0 0 30px;
  }
}

/*box-style02*/
.box-style02 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: var(--color_bg01);
  padding: 5%;
  border-radius: 20px;
}

.box-style02 .box-ttl {
  font-family: var(--font_jp);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color_main);
}

.box-style02 .box-ttl02 {
  font-family: var(--font_jp);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  padding-left: 28px;
  position: relative;
}

.box-style02 .box-ttl02::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 14px;
  height: 23px;
  background: url(../images/share/box-ttl02_arrow.svg) no-repeat center/contain;
}

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

  .box-style02 .box-ttl {
    font-size: 1.25rem;
    padding: 0 0 10px;
    margin: 0 0 20px;
  }

  .box-style02 .box-ttl02 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    padding-left: 20px;
    position: relative;
  }

  .box-style02 .box-ttl02::before {
    top: 0.4em;
    width: 10px;
    height: 16px;
  }
}

/*box-style03*/
.box-style03 {
  background: var(--color_bg01);
  padding: 40px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
}

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

.box-style03.bg-dark {
  background: var(--color_main);
  color: #fff;
}

.box-style03.bg-dark .box-ttl {
  color: #fff;
}

.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_main);
  background: #fff;
}

.box-style04 .box-ttl {
  background-color: var(--color_main);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.375rem;
  font-weight: 700;
  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%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  overflow: hidden;
}

.dl-style01 dt {
  background: var(--color_main);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  font-weight: 700;
  padding: 20px;
}

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

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

  .dl-style01 .item {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

.dl-style02 dt {
  background: var(--color_main);
  color: #fff;
  border-radius: 5px;
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 20px;
  text-align: center;
  margin-bottom: 20px;
  max-width: 280px;
}

.dl-style02.center dt {
  margin-inline: auto;
}

.dl-style02 dd+dt {
  margin-top: 50px;
}

@media (max-width: 800px) {
  .dl-style02 dt {
    max-width: 100%;
  }

  .dl-style02 dd+dt {
    margin-top: 30px;
  }
}

/*------------
faq-style
--------------*/
.faq-style {
  border-top: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
  transition: 0.3s;
}

.faq-style+.faq-style {
  margin-top: -1px;
}

.faq-style .faq-summary {
  display: block;
  cursor: pointer;
  padding: 18px 50px;
  position: relative;
}

.faq-style .faq-summary .faq-icon {
  top: 15px;
  left: 0;
}

.faq-style .faq-summary::-webkit-details-marker {
  display: none;
}

.faq-style .faq-summary:hover .faq-icon {
  background-color: var(--color_main);
  color: #fff;
}

.faq-style .faq-content {
  overflow: hidden;
}

.faq-style .faq-inner {
  padding: 5px 50px 30px;
  position: relative;
}

.faq-style .faq-inner .faq-icon {
  border: 1px solid var(--color_sub01);
  background-color: var(--color_sub01);
  color: #fff;
  top: 0;
  left: 0;
}

.faq-style .faq-ttl {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
}

.faq-style .faq-icon {
  border: 1px solid var(--color_main);
  border-radius: 50px;
  color: var(--color_main);
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  font-weight: 700;
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  position: absolute;
  transition: 0.3s;
}

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

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

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

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

.faq-style.is-open .faq-summary .faq-icon {
  background-color: var(--color_main);
  color: #fff;
}

.faq-style.is-open .faq-open-icon {
  transform: rotate(180deg);
}

.faq-style.is-open .faq-open-icon::after {
  opacity: 0;
}

@media (max-width: 800px) {
  .faq-style {
    line-height: 1.5;
  }

  .faq-style .faq-summary {
    padding: 18px 30px 18px 50px;
  }

  .faq-style .faq-ttl {
    font-size: 1rem;
  }

  .faq-style .faq-open-icon {
    right: 0;
    top: 11px;
  }

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

/*------------
tel-layout
--------------*/
.tel-layout {
  background: var(--color_bg01);
  max-width: 800px;
  padding: 5%;
  margin: 0 auto;
}

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

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

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

.tel-layout .l-time .item {
  display: grid;
  grid-template-columns: 4.375rem minmax(0, 1fr);
  grid-gap: 10px;
  font-size: 0.875rem;
}

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

.tel-layout .l-txt {
  margin: 20px auto 0;
  font-size: 0.875rem;
}

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

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

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

/*------------
accordion-style
--------------*/
.accordion-style+.accordion-style {
  margin-top: 20px;
}

.accordion-style summary {
  display: block;
  cursor: pointer;
  background-color: var(--color_main);
  border: 2px solid var(--color_main);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.1875rem;
  font-weight: 700;
  padding: 20px 20px 20px 50px;
  position: relative;
  transition: 0.2s;
}

.accordion-style summary::-webkit-details-marker {
  display: none;
}

.accordion-style:not(.is-open) summary:is(:hover, :focus) {
  opacity: 0.5;
}

.accordion-style summary::before,
.accordion-style summary::after {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 20px;
}

.accordion-style summary::before {
  width: 16px;
  height: 1px;
}

.accordion-style summary::after {
  width: 16px;
  height: 1px;
  rotate: 90deg;
  transition: rotate 0.5s;
}

.accordion-style.is-open summary::after {
  rotate: 0deg;
}

.accordion-style .accordion-content {
  overflow: hidden;
}

.accordion-style .accordion-inner {
  background-color: #fff;
  padding: 20px;
  border: 2px solid var(--color_main);
}

.accordion-style .accordion-content:not([hidden=until-found]):target {
  display: revert;
}

@media (scripting: none) {
  .accordion-style .accordion-contentl:target {
    display: revert;
  }
}

.accordion-style.pc-block summary {
  pointer-events: none;
  cursor: default;
  padding: 20px;
}

.accordion-style.pc-block summary::before,
.accordion-style.pc-block summary::after {
  content: none;
}

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

  .accordion-style summary {
    padding: 15px 15px 15px 50px;
    font-size: 1rem;
  }

  .accordion-style summary::before {
    width: 12px;
  }

  .accordion-style summary::after {
    width: 13px;
  }

  .accordion-style .accordion-inner {
    padding: 15px;
  }

  .accordion-style.pc-block summary {
    padding: 15px 15px 15px 50px;
    pointer-events: auto;
    cursor: auto;
  }

  .accordion-style.pc-block summary::before,
  .accordion-style.pc-block summary::after {
    content: "";
  }
}

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

.staff-layout .l-img {
  width: 410px;
  margin-left: 65px;
}

.staff-layout .l-img img {
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.staff-layout .l-desc {
  margin-top: 20px;
  flex: 1;
}

.staff-layout .job {
  background: var(--color_gradient01);
  color: #fff;
  padding: 6px 20px;
  border-radius: 5px;
  font-family: var(--font_jp);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 5px;
  width: -moz-fit-content;
  width: fit-content;
}

.staff-layout .name {
  border-bottom: 1px solid var(--color_border);
  line-height: 1;
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.staff-layout .jp {
  display: inline;
  font-family: var(--font_jp);
  font-size: 1.5625rem;
  font-weight: 700;
  margin-right: 25px;
}

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

.dl-career {
  border-top: 1px dotted var(--color_main);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875rem;
  line-height: 1.7;
}

.dl-career dt {
  border-bottom: 1px dotted var(--color_main);
  padding: 10px 0;
  width: 25%;
}

.dl-career dd {
  border-bottom: 1px dotted var(--color_main);
  padding: 10px 0;
  width: 75%;
}

.card-profile {
  margin-top: 50px;
  display: grid;
  grid-gap: 5%;
  font-size: 0.875rem;
}

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

.card-profile .card-ttl {
  color: var(--color_main);
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
}

@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-card-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 40px;
}

.staff-card-layout .card-item {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
}

.staff-card-layout .card-item:has(.job)+.card-item:not(:has(.job)) .card-ttl .name {
  margin-top: 45px;
}

.staff-card-layout .card-ttl {
  margin-bottom: 24px;
  width: 100%;
}

.staff-card-layout .card-ttl .job {
  background: var(--color_gradient01);
  color: #fff;
  padding: 6px 20px;
  border-radius: 5px;
  font-family: var(--font_jp);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 5px;
  width: -moz-fit-content;
  width: fit-content;
}

.staff-card-layout .card-ttl .jp {
  display: inline;
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 700;
  margin-right: 25px;
}

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

.staff-card-layout .card-img {
  width: 54.8%;
}

.staff-card-layout .card-img img {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
}

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

.staff-card-layout .card-dl dt {
  border-bottom: 1px solid var(--color_main);
  color: #000;
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 0 0 10px;
  margin: 0 0 15px;
}

.staff-card-layout .card-dl dd+dt {
  margin-top: 40px;
}

@media (max-width: 800px) {
  .staff-card-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-gap: 40px;
  }

  .staff-card-layout .card-item {
    display: block;
  }

  .staff-card-layout .card-item:has(.job)+.card-item:not(:has(.job)) .card-ttl .name {
    margin-top: 0;
  }

  .staff-card-layout .card-img {
    width: 80%;
    margin: 0 auto 16px;
  }

  .staff-card-layout .card-img img {
    width: 100%;
    height: auto;
  }

  .staff-card-layout .card-desc {
    width: 100%;
  }

  .staff-card-layout .card-ttl {
    margin-bottom: 12px;
  }

  .staff-card-layout .card-ttl .job {
    font-size: 0.75rem;
    padding: 3px 12px;
    margin-bottom: 5px;
  }

  .staff-card-layout .card-ttl .jp {
    font-size: 1.0625rem;
    margin-right: 10px;
  }

  .staff-card-layout .card-ttl p[lang=en] {
    font-size: 0.8125rem;
  }

  .staff-card-layout .card-dl dt {
    font-size: 0.875rem;
    padding: 0 0 7px;
    margin: 0 0 8px;
  }

  .staff-card-layout .card-dl dd+dt {
    margin-top: 20px;
  }
}

/*------------
Add
--------------*/
.guide-card-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.guide-card-layout .card-txt {
  color: #000;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
  padding-bottom: 37px;
}

.guide-card-layout .card-txt .marker {
  padding-bottom: 5px;
}

.guide-card-layout .card-txt::after {
  content: "";
  display: block;
  width: 27px;
  height: 27px;
  background: url("../images/share/card_arrow.svg") no-repeat center/contain;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.guide-card-layout .card-desc {
  padding: 35px 25px;
  border-radius: 20px;
  background: var(--color_bg01);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.guide-card-layout .card-ttl {
  color: #000;
  letter-spacing: 0.15em;
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}

.guide-card-layout .card-btn {
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 800px) {
  .guide-card-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .guide-card-layout .card-desc {
    padding: 25px 15px;
    border-radius: 15px;
  }

  .guide-card-layout .card-ttl {
    font-size: 1.125rem;
  }

  .guide-card-layout .card-txt {
    font-size: 1rem;
    padding-bottom: 30px;
  }

  .guide-card-layout .card-txt::after {
    width: 22px;
    height: 22px;
  }

  .guide-card-layout .card-btn {
    margin-top: 15px;
  }
}

.privacy-ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
}

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

.dl-privacy dt {
  border-top: 1px solid var(--color_border);
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  font-weight: 700;
  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 {
  display: flow-root;
  overflow-x: clip;
}

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

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

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

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 8px !important;
}

.mbS {
  margin-bottom: 16px !important;
}

.mbM {
  margin-bottom: 32px !important;
}

.mbXM {
  margin-bottom: 48px !important;
}

.mbL {
  margin-bottom: 64px !important;
}

.mbXL {
  margin-bottom: 96px;
}

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

.pb0 {
  padding-bottom: 0 !important;
}

.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, minmax(0, 1fr));
}

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

.col4 {
  grid-template-columns: repeat(4, minmax(0, 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 !important;
  }

  .mbXM {
    margin-bottom: 32px !important;
  }

  .mbL {
    margin-bottom: 48px !important;
  }

  .mbXL {
    margin-bottom: 64px !important;
  }

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

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

  .sp-col3 {
    grid-template-columns: repeat(3, minmax(0, 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_main);
  /* ドット（Pagination） */
  --splide-dot-color: var(--color_bg01);
  --splide-dot-active-color: var(--color_main);
  /* 再生停止ボタン（Toggle） */
  --splide-toggle-bg-color: #fff;
  --splide-toggle-bg-hover: var(--color_bg01);
  --splide-toggle-svg-color: #fff;
  /* スクロールバー（Progress） */
  --splide-progress-color: var(--color_main);
}

.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);
  display: inline-block;
  transition: transform 0.2s linear;
  border-radius: 2px;
  height: 3px;
  width: 15px;
}

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