@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #454545;
  --color_link: #5AC2D7;
  --color_border: #AAA8A8;
  --color_primary: #5AC2D7;
  --color_secondary: #93D0AE;
  --color_tertiary: #F8B6C6;
  --color_white: #fff;
  --color_black: #454545;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
  --color_bg_primary: #F2F9FD;
  --color_bg_secondary: #F7FCF7;
}

/* ====================================================
【アニメーション】
==================================================== */
: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:
    "FOT-筑紫A丸ゴシック Std R",
    sans-serif;
  --font_jp: "FOT-筑紫A丸ゴシック Std B", sans-serif;
  --font_en: "Quicksand", sans-serif;
  --font_weight: normal;
  --font_size: 1.125rem;
  --line_height: 2.0;
  --letter_spacing: .1em;
}

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

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

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

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

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

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

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

::selection {
  background: #d4dcd6;
}

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

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

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

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

.link {
  display: inline-block;
  text-decoration: underline;
  word-break: break-all;
  position: relative;
  text-wrap: pretty;
  color: var(--color_link);
}

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

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

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

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

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

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

/*-----------------------------------------------------------
診療時間
-----------------------------------------------------------*/
.time-table-box {
  padding: 35px 30px 0;
  background-color: var(--color_white);
  border-radius: 30px;
}

.time-table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  font-family: var(--font_jp);
  font-size: 1.1875rem;
  font-size: clamp(0.9375rem, 1.06vw, 1.1875rem);
}

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

.time-table th,
.time-table td {
  text-align: center;
  line-height: 1.2;
  font-weight: normal;
}

.time-table td {
  height: 75px;
}

.time-table thead th {
  padding: 0 0 15px;
}

.time-table tbody tr {
  border-bottom: 1px solid;
}

.time-table tbody tr:nth-of-type(1) {
  border-color: #AADDE8;
}

.time-table tbody tr:nth-of-type(2) {
  border-color: #FEEAEA;
}

.time-table tbody tr:nth-of-type(3) {
  border: none;
}

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

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

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

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

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

  .time-table {
    font-size: 0.8125rem;
  }

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

  .time-table th:first-child {
    width: 100px;
  }

  .time-table img {
    width: 15px;
  }
}

.dl-time {
  display: grid;
  grid-gap: 10px;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
}

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

.dl-time dt {
  border: 1px solid var(--color_primary);
  text-align: center;
  font-family: var(--font_jp);
  font-weight: normal;
  font-size: 0.625rem;
  display: grid;
  place-content: center;
  background-color: var(--color_white);
  border-radius: 5px;
}

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

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

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

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

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

.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
  display: inline-block;
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 25px;
  height: 25px;
}

.business-calendar-box-wrap .business-calendar-past a::before,
.business-calendar-box-wrap .business-calendar-future a::before {
  display: inline-block;
  content: "";
  border-style: solid;
  border-width: 7px 6px 7px 0;
  border-color: transparent #333 transparent transparent;
  position: absolute;
  top: 10px;
  left: 10px;
}

.business-calendar-box-wrap .business-calendar-future a::before {
  transform: rotate(180deg);
}

.business-calendar-box-wrap .business-calendar th {
  background: #f1f3f4;
  border: 1px solid #dfdfdf;
  text-align: center;
  font-weight: bold;
  font-size: 0.9375rem;
  padding: 5px;
  width: 14%;
}

.business-calendar-box-wrap .business-calendar td {
  background: #FFFFFF;
  border: 1px solid #dfdfdf;
  position: relative;
  font-size: 0.8125rem;
  padding: 5px;
  z-index: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .list-event {
    display: block;
  }

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

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

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

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

@media (any-hover: hover) {
  .btn-out:hover::after {
    background-position: left bottom;
    background-size: 100% auto;
  }
}

.btn-more {
  display: inline-block;
  background-color: #AADDE8;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  padding: 15px 65px 15px 40px;
  border-radius: 100px;
  text-align: center;
  line-height: 1.7;
  min-width: 220px;
  position: relative;
  transition: 0.3s;
}

.btn-more::before,
.btn-more::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.btn-more::before {
  content: "";
  background-color: var(--color_white);
  width: 38px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  right: 10px;
}

.btn-more::after {
  content: "";
  -webkit-mask: url(../images/share/icon_paw.svg) no-repeat center/contain;
  mask: url(../images/share/icon_paw.svg) no-repeat center/contain;
  background-color: var(--color_primary);
  width: 20px;
  height: 18px;
  right: 18px;
  transition: transform 0.3s;
}

@media (any-hover: hover) {
  .btn-more:hover {
    background-color: var(--color_primary);
  }

  .btn-more:hover::after {
    transform: translateY(-50%) rotate(25deg);
    transform-origin: center;
  }
}

.btn-more:focus-visible {
  background-color: var(--color_primary);
}

.btn-more:focus-visible::after {
  transform: translateY(-50%) rotate(25deg);
  transform-origin: center;
}

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

.btn-more02 {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font_jp);
  transition: 0.3s;
}

.btn-more02::after {
  content: "";
  display: block;
  background: url(../images/share/icon_paw.svg) center/20px 18px no-repeat, var(--color_primary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: transform 0.3s;
}

@media (any-hover: hover) {
  .btn-more02:hover {
    color: var(--color_primary);
  }

  .btn-more02:hover::after {
    transform: rotate(25deg);
  }
}

.btn-more02:focus-visible {
  color: var(--color_primary);
}

.btn-more02:focus-visible::after {
  transform: rotate(25deg);
}

@media (max-width: 800px) {
  .btn-more02 {
    gap: 10px;
  }

  .btn-more02::after {
    background-size: 15px 13px;
    width: 28px;
    height: 28px;
  }
}

.btn-icon {
  display: inline-block;
  padding: 20px 45px 20px 70px;
  background-color: var(--color_white);
  border-radius: 100px;
  border: 2px solid var(--color_secondary);
  min-width: 245px;
  font-family: var(--font_jp);
  text-align: center;
  line-height: 1.4;
  position: relative;
  transition: 0.3s;
}

.btn-icon .icon {
  display: grid;
  place-content: center;
  width: 38px;
  height: auto;
  aspect-ratio: 1;
  background-color: var(--color_secondary);
  border-radius: 50%;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.btn-icon .icon svg {
  fill: var(--color_white);
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (any-hover: hover) {
  .btn-icon:hover {
    background-color: var(--color_secondary);
    color: var(--color_white);
  }

  .btn-icon:hover .icon {
    background-color: var(--color_white);
  }

  .btn-icon:hover svg {
    fill: var(--color_secondary);
  }
}

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

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

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

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  font-size: 1.0625rem;
  line-height: 1;
  margin-bottom: 17px;
}

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

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

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

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

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

.list-category-links ul li::before {
  content: "└";
  position: absolute;
  top: 5px;
  left: 0;
  color: #888;
  font-size: 0.625rem;
}

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

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

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

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

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

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

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

.post-under-blog .post-img img {
  border: 1px solid #eee;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 7/5;
  border-radius: 10px;
}

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

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

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

.post-under-blog .category {
  display: inline-block;
  border: 1px solid var(--color_primary);
  color: var(--color_primary);
  font-family: var(--font_jp);
  border-radius: 5px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 1px 5px;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {
  .post-under-news a {
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
    padding: 16px 40px 16px 10px;
  }
}

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

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

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

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

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

@media (max-width: 800px) {
  .post-under-news .category {
    width: auto;
  }
}

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

@media (max-width: 800px) {
  .post-under-news .post-ttl {
    grid-column: 1/-1;
  }
}

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

  .post-under-news a {
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
    padding: 16px 40px 16px 0;
  }

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

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

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

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

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

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

.layout-single-post .category {
  display: inline-block;
  border: 1px solid var(--color_primary);
  color: var(--color_primary);
  font-family: var(--font_jp);
  border-radius: 5px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 2px 8px;
  text-align: center;
  width: 100%;
}

.layout-single-post .l-ttl {
  font-size: 1.75rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

@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: #333;
}

.post-number .current {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 15px;
}

.post-number .prev,
.post-number .next {
  width: 10px;
  height: 10px;
  margin-top: 5px;
}

.post-number .prev {
  margin-right: 10px;
}

.post-number .next {
  margin-left: 10px;
}

.post-number .prev::before,
.post-number .next::before {
  content: "";
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}

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

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

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

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

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

.post-number-single .all {
  background-color: var(--color_primary);
  color: var(--color_white);
  border: 1px solid var(--color_primary);
  border-radius: 100px;
  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_black);
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_primary);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: relative;
  transition: background-color 0.3s;
}

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

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

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

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

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

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

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

/* post-under-column */
.post-under-column {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.post-under-column .post-img {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 10px;
  border: 1px solid var(--color_border);
}

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

.post-under-column time {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 10px;
  font-family: var(--font_en);
  font-weight: 700;
  color: var(--color_primary);
}

.post-under-column .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 15px;
  font-family: var(--font_jp);
}

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

.post-under-column .category {
  text-box: trim-both cap alphabetic;
  display: inline-block;
  border-radius: 10px;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 13px 15px;
  background-color: var(--color_bg_primary);
  font-family: var(--font_jp);
  color: var(--color_primary);
}

@media (any-hover: hover) {
  .post-under-column a:hover .post-img img {
    scale: 1.1;
  }
}

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

  .post-under-column a {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    align-items: flex-start;
    padding: 10px 0;
  }

  .post-under-column .post-img {
    margin-bottom: 0;
    border-radius: 10px;
  }

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

  .post-under-column .post-desc {
    line-height: 1;
  }

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

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

  .post-under-column .category {
    font-size: 0.625rem;
    padding: 5px;
    border-radius: 5px;
  }
}

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.h-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 25px 3.33% 0;
  transition: padding 0.5s;
}

.h-logo {
  max-width: 475px;
  width: 26.39vw;
}

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

.header.is-fixed .h-wrapper {
  padding: 20px 3.33%;
  background-color: var(--color_white);
}

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

  .h-wrapper {
    gap: 15px;
    padding: 15px 25px;
  }

  .h-logo {
    width: 210px;
  }

  .h-utility {
    display: none;
  }
}

/*------------
Gnavi
--------------*/
.gnavi {
  padding: 24px 60px;
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  border-radius: 100px;
}

.gnavi-links {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}

.gnavi-links>li>a,
.gnavi-links>li>p {
  display: inline-block;
  font-family: var(--font_jp);
  line-height: 1;
  white-space: nowrap;
}

@media (any-hover: hover) {
  .gnavi-links>li>a:hover {
    color: var(--color_secondary);
  }
}

.gnavi-links>li>a:focus-visible {
  color: var(--color_secondary);
}

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

.dropdown::after {
  content: "";
  display: block;
  background: url(../images/share/icon_dropdown.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  transform-origin: right;
}

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

.dropdown .sub-menu {
  display: grid;
  grid-gap: 5px;
  pointer-events: none;
  background-color: var(--color_white);
  border-radius: 5px;
  border-radius: 30px;
  padding: 30px;
  position: absolute;
  top: 80px;
  right: 50%;
  width: -moz-max-content;
  width: max-content;
  min-width: 210px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

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

.dropdown .sub-menu::after {
  content: "";
  background: url(../images/share/submenu_arrow.svg) no-repeat center/contain;
  width: 21px;
  height: 18px;
  position: absolute;
  left: 50%;
  top: -16px;
  transform: translateX(-50%);
}

@media (any-hover: hover) {
  .dropdown .sub-menu>li>a:hover {
    color: var(--color_primary);
  }
}

.dropdown .sub-menu>li>a:focus-visible {
  color: var(--color_primary);
}

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

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

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  margin-top: auto;
  position: relative;
}

.f-container {
  padding: 90px 0;
}

.f-contents {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 0 70px;
  margin-inline: auto;
  width: min(90%, 1400px);
}

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

.f-txt {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.f-cta-box {
  padding: 35px 40px;
  background-color: var(--color_white);
  border-radius: 25px;
  border: 1px solid var(--color_primary);
}

.f-cta-box .box-ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 15px;
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: oklch(from #5AC2D7 l c h/0.28);
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.site-map {
  display: grid;
  gap: 60px;
}

.site-map-ttl {
  font-family: var(--font_jp);
  line-height: 1.6;
  padding-bottom: 10px;
  border-bottom: 1px solid #AADDE8;
  margin-bottom: 25px;
}

.f-links {
  -moz-column-count: 2;
  column-count: 2;
  line-height: 1.5;
  font-size: 0.9375rem;
}

.f-links.col1 {
  -moz-column-count: 1;
  column-count: 1;
  gap: 0;
}

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

@media (any-hover: hover) {
  .f-links a:hover {
    color: var(--color_primary);
  }
}

.f-bottom {
  padding: 20px 0;
  background-color: var(--color_primary);
  color: var(--color_white);
}

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

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

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

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

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

.copyright {
  font-size: 0.75rem;
}

.pagetop {
  position: absolute;
  top: -120px;
  right: 105px;
  z-index: 2;
}

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

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

  .f-cta-box {
    padding: 25px;
  }

  .site-map {
    flex-direction: column;
    align-items: normal;
    gap: 30px;
  }

  .f-bottom {
    padding: 20px 0 70px;
  }

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

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

.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  :root {
    --navi-background: #5AC2D7;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --menu-btn: #fff;
    --navi-font: "FOT-筑紫A丸ゴシック Std B", sans-serif;
  }

  .sp-navi {
    display: block;
  }

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

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

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

  .sp-navi-btns .item+.item {
    border-left: 1px solid var(--navi-border-color);
  }

  .sp-navi-btns .item a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
    padding: 7px 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: 5px;
    stroke: var(--svg-stroke);
  }

  .sp-navi-btns .item .img.use-svg svg {
    stroke: none;
    fill: var(--svg-stroke);
  }

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

  .sp-menu-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 10px;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 10000;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: var(--navi-background);
  }

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

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

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

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

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

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

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

  .sp-navi-drawer {
    pointer-events: none;
    visibility: hidden;
    background: var(--color_white);
    color: var(--color_black);
    font-size: 0.9375rem;
    padding: 80px 25px 100px;
    position: fixed;
    inset: 0;
    transform: translateX(60px);
    transition: 0.5s var(--ease);
    opacity: 0;
    z-index: 1000;
  }

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

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

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

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

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

  .sp-navi-list>li>a::after {
    content: "";
    background-color: var(--color_black);
    -webkit-mask: url(../images/share/sp_navi_arrow.svg) no-repeat center/contain;
    mask: url(../images/share/sp_navi_arrow.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 11px;
    height: 11px;
    transform: translateY(-50%);
  }

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

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

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

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

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

  .sp-details-btn .plus {
    display: block;
    background-color: var(--color_primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    transition: 0.3s;
    transform-origin: 50% 0;
  }

  .sp-details-btn .plus::after {
    content: "";
    background-color: var(--color_white);
    -webkit-mask: url(../images/share/sp_navi_plus.svg) no-repeat center/contain;
    mask: url(../images/share/sp_navi_plus.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    transform: translate(-50%, -50%);
  }

  .sp-sub-menu {
    display: grid;
    grid-gap: 5px;
    font-size: 0.875rem;
  }

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

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

.gnavi-links [aria-current],
.drawer-links [aria-current],
.f-links [aria-current],
.f-bottom-links [aria-current],
.sp-navi-list [aria-current] {
  color: #ccc;
}

/* 追従メニュー */
.fixed-menu {
  position: fixed;
  right: -594px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.fixed-menu .item {
  display: grid;
  grid-template-columns: 85px 590px;
  border: 4px solid #B3DEC6;
  border-radius: 15px 0 0 15px;
  overflow: hidden;
  transition: transform 0.5s;
}

.fixed-menu .item:hover {
  transform: translateX(-586px);
}

.fixed-menu .item-ttl {
  background-color: #EEF8EE;
  writing-mode: vertical-rl;
  font-feature-settings: "vpal", "vkna";
  font-family: var(--font_jp);
  color: var(--color_secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.fixed-menu .item-ttl .icon {
  width: 44px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color_white);
  display: grid;
  place-content: center;
}

.fixed-menu .item-ttl svg {
  fill: currentColor;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

.fixed-menu .desc {
  padding: 20px;
  background-color: var(--color_white);
  border-left: 4px solid #B3DEC6;
}

.fixed-menu .item-catch {
  font-family: var(--font_jp);
  margin-bottom: 20px;
  text-align: center;
}

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

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

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

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

.layout-sidebar .l-label [lang=en] {
  font-size: 1.0625rem;
  color: var(--color_primary);
}

.layout-sidebar .l-label .jp {
  font-size: 0.625rem;
}

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

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

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

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

.hero-inner {
  position: relative;
  z-index: 0;
  background: url(../images/hero_bg_deco01.svg) top left/36.67vw no-repeat, url(../images/hero_bg_deco02.svg) bottom 220px left 2.78vw/13.89vw no-repeat, url(../images/hero_bg_deco03.svg) top 170px right/16.67vw no-repeat, url(../images/hero_bg_wave.svg) bottom center/1780px 115px repeat-x, #E5F5FE;
  padding: 210px 0 200px;
}

.hero-container {
  width: min(92%, 1400px);
  margin-inline: auto;
  position: relative;
  z-index: 0;
}

.hero-container::before,
.hero-container::after {
  content: "";
  background: no-repeat center/contain;
  height: auto;
  position: absolute;
  z-index: 2;
}

.hero-container::before {
  background-image: url(../images/hero_illust01.svg);
  width: clamp(95px, 14.44vw, 260px);
  aspect-ratio: 13/6;
  top: -60px;
  left: 5.56vw;
}

.hero-container::after {
  background-image: url(../images/hero_illust02.svg);
  width: clamp(105px, 16.39vw, 295px);
  aspect-ratio: 59/41;
  left: -3.11vw;
  bottom: -50px;
}

.hero .splide {
  max-width: 73.14%;
  margin-inline: auto;
  z-index: 0;
}

.hero .splide::before {
  content: "";
  background: url(../images/hero_img_bg.svg) no-repeat center/contain;
  position: absolute;
  inset: -50px -30px;
  z-index: -1;
}

.hero .splide__slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1024/623;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-mask: url(../images/hero_img_mask.svg) no-repeat center/contain;
  mask: url(../images/hero_img_mask.svg) no-repeat center/contain;
}

.hero .splide__pagination {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero .splide__pagination__page {
  background: var(--color_white);
}

.hero .splide__pagination__page.is-active {
  background: var(--color_primary);
}

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

.hero-catch {
  writing-mode: vertical-rl;
  font-feature-settings: "vpal", "vkna";
  font-family: var(--font_jp);
  font-size: 2.25rem;
  font-size: clamp(1.25rem, 2vw, 2.25rem);
  color: var(--color_white);
  letter-spacing: 0.15em;
  white-space: nowrap;
  display: grid;
  gap: 4px;
  position: absolute;
  right: 0;
  top: -50px;
  z-index: 2;
}

.hero-catch p {
  background-color: var(--color_primary);
  border-radius: 20px;
  line-height: 1;
  padding: 15px 15px 20px;
}

.hero-catch.open {
  writing-mode: horizontal-tb;
  right: 50%;
  transform: translateY(-50%);
  font-feature-settings: "vpal", "vkna";
  font-family: var(--font_jp);
  font-size: 2.25rem;
  font-size: clamp(1.25rem, 2vw, 2.25rem);
  color: var(--color_white);
  letter-spacing: 0.15em;
  white-space: nowrap;
  display: grid;
  gap: 4px;
  position: absolute;
  left: 230px;
  top: 500px;
  z-index: 2;
}

@media (max-width: 1600px) {
  .hero-catch {
    right: 3%;
  }
}

@media (max-width: 800px) {
  .hero-inner {
    padding: 140px 0 70px;
    background: url(../images/hero_bg_deco01.svg) top left/290px no-repeat, url(../images/hero_bg_deco02.svg) bottom 50px left -40px/85px no-repeat, url(../images/hero_bg_deco03.svg) top 70px right -10px/89px no-repeat, url(../images/hero_bg_wave.svg) bottom center/100% 25px no-repeat, #E5F5FE;
  }

  .hero-container::before {
    top: -25px;
    left: 0;
  }

  .hero-container::after {
    left: -12px;
    bottom: -45px;
  }

  .hero .splide {
    max-width: 100%;
    margin: 0 12.5vw 0 0;
  }

  .hero .splide::before {
    inset: -15px -10px;
  }

  .hero-catch {
    top: -15px;
    right: 0;
  }

  .hero-catch p {
    border-radius: 10px;
    padding: 10px;
  }
}

/* お知らせ */
.t-news-layout {
  position: absolute;
  right: calc((100% - 1650px) / 2);
  bottom: 130px;
  z-index: 2;
  width: clamp(430px, 28.33vw, 510px);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr;
  grid-template-areas: "ttl btn""body body";
  gap: 0 15px;
  padding: clamp(20px, 1.39vw, 25px) clamp(40px, 3.33vw, 60px) clamp(20px, 2.22vw, 40px);
  border-radius: 30px;
  background-color: var(--color_white);
  box-shadow: 0px 0px 15px oklch(from #310D0D l c h/0.2);
}

.t-news-layout::before {
  content: "";
  background: url(../images/hero_news_illust.svg) no-repeat center/contain;
  width: clamp(110px, 15.5vw, 280px);
  height: auto;
  aspect-ratio: 279/157;
  position: absolute;
  bottom: calc(100% - 5px);
  left: 105px;
  z-index: 3;
}

@media (max-width: 1700px) {
  .t-news-layout {
    right: 4.22vw;
  }
}

@media (max-width: 1500px) {
  .t-news-layout {
    right: 10vw;
  }
}

.t-news-layout .l-ttl {
  grid-area: ttl;
  display: flex;
  align-items: flex-end;
}

.t-news-layout .l-ttl [lang=en] {
  margin-right: 20px;
  font-family: var(--font_en);
  font-weight: 500;
  font-size: 1.875rem;
  color: var(--color_primary);
  letter-spacing: 0.1em;
}

.t-news-layout .l-ttl .jp {
  font-size: 1.125rem;
  padding-bottom: 10px;
}

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

.t-news-layout .l-btn {
  grid-area: btn;
  display: grid;
  place-items: center;
}

@media (max-width: 800px) {
  .t-news-layout {
    position: relative;
    bottom: auto;
    right: auto;
    width: 94%;
    margin-inline: auto;
    padding: 20px 40px;
  }

  .t-news-layout::before {
    width: 110px;
    height: 60px;
    left: auto;
    right: 15px;
  }

  .t-news-layout .l-ttl [lang=en] {
    font-size: 1.375rem;
    margin-right: 15px;
  }

  .t-news-layout .l-ttl .jp {
    font-size: 0.8125rem;
    padding-bottom: 7px;
  }
}

.post-top-news {
  display: grid;
  font-size: 0.9375rem;
}

.post-top-news a {
  display: flex;
  align-items: center;
  gap: 25px;
  background: linear-gradient(to right, var(--color_border) 5px, transparent 5px) repeat-x bottom left/10px 1px;
  padding: 11px 0;
}

.post-top-news time {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font_en);
  font-weight: 500;
  color: var(--color_primary);
}

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

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

@media (max-width: 800px) {
  .post-top-news a {
    gap: 20px;
    padding: 10px 0;
  }

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

  .post-top-news .post-ttl {
    font-size: 0.6875rem;
  }
}

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

.t-h2 [lang=en] {
  font-size: 4.375rem;
  color: var(--color_primary);
  line-height: 1.25;
  letter-spacing: 0.1em;
}

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

.top-ttl01 {
  font-size: 1.875rem;
  line-height: 1.46;
  padding-left: 45px;
  position: relative;
  margin-bottom: 20px;
}

.top-ttl01::before {
  content: "";
  background-color: var(--color_primary);
  width: 21px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 21px;
}

.top-ttl01::after {
  content: "";
  background-color: var(--color_primary);
  width: 16px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  left: 14px;
  top: 13px;
}

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

  .t-h2 [lang=en] {
    font-size: 2.1875rem;
    letter-spacing: 0.05em;
  }

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

  .top-ttl01 {
    font-size: 1.25rem;
    padding-left: 25px;
  }

  .top-ttl01::before {
    width: 15px;
    top: 14px;
  }

  .top-ttl01::after {
    width: 10px;
    left: 8px;
    top: 10px;
  }
}

/*------------
Section Wave
--------------*/
.bg-wave {
  background-color: var(--color_bg_primary);
  position: relative;
}

.bg-wave::before {
  content: "";
  -webkit-mask: url(../images/wave.svg) repeat-x bottom center/2990px 50px;
  mask: url(../images/wave.svg) repeat-x bottom center/2990px 50px;
  background-color: var(--color_bg_primary);
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 100%;
  left: 0;
}

.bg-wave.bg01 {
  background-color: var(--color_bg_secondary);
}

.bg-wave.bg01::before {
  background-color: var(--color_bg_secondary);
}

.bg-wave.bg02 {
  background-color: var(--color_white);
}

.bg-wave.bg02::before {
  background-color: var(--color_white);
}

@media (max-width: 800px) {
  .bg-wave::before {
    -webkit-mask-size: 800px 13px;
    mask-size: 800px 13px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    height: 25px;
  }
}

/*------------
Section
--------------*/
.bg-deco {
  position: relative;
  z-index: 0;
}

.bg-deco::before,
.bg-deco::after {
  content: "";
  -webkit-mask: url(../images/sec01_bg_deco.svg) no-repeat center/contain;
  mask: url(../images/sec01_bg_deco.svg) no-repeat center/contain;
  width: 592px;
  height: auto;
  aspect-ratio: 148/117;
  position: absolute;
  z-index: -1;
}

.bg-deco::before {
  background-color: #EEF8EE;
  bottom: 190px;
  left: -205px;
}

.bg-deco::after {
  background-color: oklch(from #E5F5FE l c h/0.57);
  right: -200px;
  top: 75px;
}

.bg-deco.bg01::before {
  background-color: oklch(from #F3F290 l c h/0.3);
  left: -11.39vw;
  bottom: auto;
  top: 80px;
}

.bg-deco.bg01::after {
  background-color: oklch(from #E5F5FE l c h/0.57);
  right: -11.11vw;
  top: auto;
  bottom: 100px;
}

.bg-deco.bg02::before {
  background-color: oklch(from #E5F5FE l c h/0.57);
  bottom: 430px;
}

.bg-deco.bg02::after {
  background-color: #EEF8EE;
  top: 190px;
}

@media (max-width: 800px) {

  .bg-deco::before,
  .bg-deco::after {
    width: 70%;
  }

  .bg-deco::before {
    left: -30%;
  }

  .bg-deco::after {
    right: -30%;
  }

  .bg-deco.bg01::after {
    bottom: 60px;
  }
}

.bg-illust {
  position: relative;
  z-index: 0;
}

.bg-illust::before,
.bg-illust::after {
  content: "";
  background: no-repeat center/contain;
  height: auto;
  position: absolute;
  z-index: -1;
}

.sec01,
.sec03 {
  max-width: 1800px;
  margin-inline: auto;
}

.sec01 {
  padding: 70px 0 145px;
}

.sec01 .bg-illust::before {
  background-image: url(../images/top_illust01.svg);
  max-width: 265px;
  width: 14.72vw;
  aspect-ratio: 265/147;
  top: 20px;
  left: 100px;
}

.sec01 .bg-illust::after {
  background-image: url(../images/top_illust02.svg);
  max-width: 250px;
  width: 13.89vw;
  aspect-ratio: 25/42;
  right: -150px;
  bottom: 120px;
}

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

  .sec01 .bg-illust::before {
    width: 25vw;
    top: 70px;
    left: 0;
  }

  .sec01 .bg-illust::after {
    display: none;
  }
}

.sec02 {
  padding: 120px 0 155px;
}

.sec02 .container::before {
  background-image: url(../images/top_illust03.svg);
  max-width: 130px;
  width: 7.22vw;
  aspect-ratio: 65/69;
  bottom: 70px;
  left: -6.07%;
}

.sec02 .container::after {
  background-image: url(../images/top_illust04.svg);
  max-width: 333px;
  width: 18.5vw;
  aspect-ratio: 111/64;
  bottom: -50px;
  right: -7.5%;
}

@media (max-width: 1650px) {
  .sec02 .container::after {
    right: -3%;
  }
}

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

  .sec02 .container::before {
    display: none;
  }

  .sec02 .container::after {
    width: 30vw;
    bottom: -80px;
  }
}

.sec03 {
  padding: 115px 0 175px;
  position: relative;
  z-index: 0;
}

.sec03 .container::before {
  content: "";
  background-image: url(../images/top_illust05.svg);
  width: 85px;
  height: 130px;
  bottom: -30px;
  left: -55px;
  z-index: 2;
}

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

  .sec03 .container::before {
    height: 100px;
    left: -5%;
    bottom: -70px;
  }
}

.sec04 {
  padding: 125px 0 210px;
}

.sec04 .bg-illust::before {
  background-image: url(../images/top_illust06.svg);
  max-width: 230px;
  width: 12.78vw;
  height: auto;
  aspect-ratio: 5/2;
  top: 65px;
  left: -13.75%;
}

.sec04 .bg-illust::after {
  background-image: url(../images/top_illust07.svg);
  max-width: 454px;
  width: 25.22vw;
  height: auto;
  aspect-ratio: 454/189;
  top: 20px;
  right: -22.5%;
}

@media (max-width: 1600px) {
  .sec04 .bg-illust::before {
    left: -10%;
  }

  .sec04 .bg-illust::after {
    right: -10%;
  }
}

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

  .sec04 .bg-illust::before {
    width: 22vw;
  }

  .sec04 .bg-illust::after {
    width: 42vw;
    top: 20px;
    right: -14%;
  }
}

.sec05 {
  padding: 115px 0;
}

.sec05 .bg-illust::before {
  background-image: url(../images/top_illust10.svg);
  width: 159px;
  height: 148px;
  top: 50px;
  right: -21.67%;
}

@media (max-width: 1750px) {
  .sec05 .bg-illust::before {
    right: -10%;
  }
}

@media (max-width: 1500px) {
  .sec05 .bg-illust::before {
    right: -5%;
  }
}

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

  .sec05 .bg-illust::before {
    display: none;
  }
}

.sec06 {
  padding: 0 0 215px;
}

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

/* top-layout */
.top-layout01 {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 0 4.77%;
  max-width: 1300px;
}

.top-layout01 .l-img {
  width: 43.85%;
}

.top-layout01 .l-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-layout01 .img-main {
  aspect-ratio: 558/553;
  margin-right: 12px;
}

.top-layout01 .img-main img {
  -webkit-mask: url(../images/sec01_mask01.svg) no-repeat center/contain;
  mask: url(../images/sec01_mask01.svg) no-repeat center/contain;
}

.top-layout01 .img-sub {
  width: 51.58%;
  aspect-ratio: 147/146;
  margin: -120px 0 0 auto;
  position: relative;
  z-index: 2;
}

.top-layout01 .img-sub img {
  -webkit-mask: url(../images/sec01_mask02.svg) no-repeat center/contain;
  mask: url(../images/sec01_mask02.svg) no-repeat center/contain;
}

.top-layout01 .l-desc {
  flex: 1;
  margin-top: 10px;
}

.top-layout01 .l-ttl {
  font-size: 2.1875rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.top-layout01 .l-btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 50px;
}

@media (max-width: 800px) {
  .top-layout01 {
    flex-direction: column;
    gap: 30px;
  }

  .top-layout01 .l-img {
    width: 100%;
  }

  .top-layout01 .l-desc {
    margin-top: 0;
  }

  .top-layout01 .l-ttl {
    font-size: 1.5625rem;
    margin-bottom: 30px;
  }

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

.top-layout02 {
  display: grid;
  grid-template-columns: 46.07% 1fr;
  align-items: flex-start;
  gap: 0 4%;
}

.top-layout02 .l-map {
  aspect-ratio: 1;
}

.top-layout02 .l-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

@media (max-width: 800px) {
  .top-layout02 {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.top-layout03 {
  display: flex;
  align-items: flex-start;
  gap: 0 6.67%;
}

.top-layout03 .l-img {
  width: 46.5%;
  aspect-ratio: 558/553;
  position: relative;
}

.top-layout03 .l-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-mask: url(../images/sec05_mask.svg) no-repeat center/contain;
  mask: url(../images/sec05_mask.svg) no-repeat center/contain;
}

.top-layout03 .l-img::before,
.top-layout03 .l-img::after {
  content: "";
  background: no-repeat center/contain;
  position: absolute;
  z-index: 2;
}

.top-layout03 .l-img::before {
  background-image: url(../images/top_illust08.svg);
  width: 101px;
  height: 107px;
  top: -7px;
  right: 0;
}

.top-layout03 .l-img::after {
  background-image: url(../images/top_illust09.svg);
  width: 136px;
  height: 120px;
  bottom: 0;
  left: 18.64%;
}

.top-layout03 .l-desc {
  flex: 1;
  margin-top: 40px;
}

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

.top-layout03 .l-btn {
  margin-top: 40px;
}

@media (max-width: 800px) {
  .top-layout03 {
    flex-direction: column;
    gap: 30px;
  }

  .top-layout03 .l-img {
    width: 100%;
  }

  .top-layout03 .l-img::after {
    width: 100px;
    height: 85px;
    left: 10%;
  }
}

/* t-column-layout */
.t-column-layout {
  padding: 80px 0 110px;
  background-color: #EEF8EE;
  border-radius: 50px;
  position: relative;
}

.t-column-layout::before {
  content: "";
  background: url(../images/top_illust11.svg) no-repeat center/contain;
  width: 285px;
  height: 284px;
  position: absolute;
  left: -108px;
  bottom: -60px;
}

.t-column-layout .l-container {
  width: min(90%, 1200px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 28.21% 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas: "ttl desc""btn desc";
  gap: 50px;
}

.t-column-layout .t-h2 {
  grid-area: ttl;
}

.t-column-layout .post-top-column {
  grid-area: desc;
}

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

@media (max-width: 800px) {
  .t-column-layout {
    padding: 30px 0;
    border-radius: 30px;
  }

  .t-column-layout::before {
    width: 160px;
    height: 160px;
    left: auto;
    bottom: auto;
    right: -3%;
    top: -50px;
    transform: scaleX(-1);
  }

  .t-column-layout .l-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "ttl""desc""btn";
    gap: 0;
  }

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

/* post-top-column */
.post-top-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.post-top-column .post-img {
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 10px;
}

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

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

.post-top-column .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 15px;
  font-family: var(--font_jp);
}

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

.post-top-column .category {
  text-box: trim-both cap alphabetic;
  display: inline-block;
  border-radius: 10px;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 13px 15px;
  background-color: var(--color_white);
  font-family: var(--font_jp);
  color: var(--color_primary);
}

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

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

  .post-top-column a {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    align-items: flex-start;
    padding: 10px 0;
  }

  .post-top-column .post-img {
    margin-bottom: 0;
    border-radius: 10px;
  }

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

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

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

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

  .post-top-column .category {
    font-size: 0.625rem;
    padding: 5px;
    border-radius: 5px;
  }
}

/* dl-info */
.dl-info .item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--color_primary);
}

.dl-info dt {
  font-family: var(--font_jp);
  font-weight: normal;
}

/* box */
.top-box01 {
  max-width: 795px;
  margin-inline: auto;
  padding: 35px 70px;
  background-color: var(--color_white);
  border-radius: 30px;
  border: 4px solid var(--color_primary);
  display: grid;
  grid-template-columns: 210px 1fr;
}

.top-box01 .box-ttl {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.625rem;
}

.top-box01 .box-ttl svg {
  fill: var(--color_tertiary);
}

@media (max-width: 800px) {
  .top-box01 {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px;
  }

  .top-box01 .box-ttl {
    font-size: 1.25rem;
  }

  .top-box01 .box-ttl svg {
    width: 20px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

/* card */
.top-card01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  font-size: 0.9375rem;
}

.top-card01 .card-item a {
  display: block;
  height: 100%;
  padding: 25px 25px 45px;
  background-color: var(--color_bg_secondary);
  border-radius: 20px;
  border: 4px solid #C4E9C6;
  position: relative;
}

.top-card01 .card-item a::after {
  content: "";
  background: url(../images/share/icon_paw.svg) no-repeat center/20px 18px, var(--color_primary);
  width: 38px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  bottom: 15px;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .top-card01 .card-item a:hover::after {
    background-color: var(--color_secondary);
    transform: rotate(25deg);
  }
}

.top-card01 .item-img {
  width: 150px;
  margin: 0 auto 13px;
  background-color: var(--color_white);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-content: center;
}

.top-card01 .item-ttl {
  font-size: 1.5rem;
  text-align: center;
}

@media (max-width: 800px) {
  .top-card01 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.top-card02 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 35px 0;
}

.top-card02 .card-item {
  width: 300px;
}

.top-card02 .card-item a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.top-card02 .item-img {
  width: 195px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color_primary);
  border: 4px solid var(--color_white);
  display: grid;
  place-content: center;
  margin: 0 auto 20px;
}

.top-card02 .item-txt {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  line-height: 1.2;
  padding-right: 50px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  transition: color 0.3s;
}

.top-card02 .item-txt::before,
.top-card02 .item-txt::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.top-card02 .item-txt::before {
  background-color: var(--color_white);
  width: 38px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  right: 0;
}

.top-card02 .item-txt::after {
  content: "";
  -webkit-mask: url(../images/share/icon_paw.svg) no-repeat center/contain;
  mask: url(../images/share/icon_paw.svg) no-repeat center/contain;
  background-color: var(--color_primary);
  width: 20px;
  height: 18px;
  right: 8px;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .top-card02 .card-item a:hover .item-txt {
    color: var(--color_primary);
  }

  .top-card02 .card-item a:hover .item-txt::after {
    transform: translateY(-50%) rotate(25deg);
    transform-origin: center;
  }
}

@media (max-width: 800px) {
  .top-card02 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }

  .top-card02 .card-item {
    width: 100%;
  }

  .top-card02 .item-img {
    width: 120px;
    margin-bottom: 10px;
  }

  .top-card02 .item-img img {
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .top-card02 .item-txt {
    font-size: 0.9375rem;
    padding-right: 35px;
  }

  .top-card02 .item-txt::before {
    width: 28px;
  }

  .top-card02 .item-txt::after {
    width: 15px;
    height: 13px;
    right: 6px;
  }
}

/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  display: grid;
  place-content: center;
  background: url(../images/under/pagettl_wave.svg) bottom center/1780px 115px repeat-x, url(../images/under/pagettl_deco.svg) top left/36.67% no-repeat, #E5F5FE;
  height: 600px;
  position: relative;
}

.page-ttl .title {
  font-family: var(--font_jp);
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: 0.2em;
}

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

.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 {
    height: 200px;
    background: url(../images/under/pagettl_wave.svg) bottom center/100% 25px repeat-x, url(../images/under/pagettl_deco.svg) top left/200px no-repeat, #E5F5FE;
    padding-top: 30px;
  }

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

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

.u-h2 {
  font-size: 2.1875rem;
  text-align: center;
  letter-spacing: 0.2em;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 50px;
}

.u-h2::after {
  content: "";
  background: url(../images/under/ttl_deco.svg) no-repeat center/contain;
  width: 88px;
  height: 16px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.u-h3 {
  font-size: 1.875rem;
  letter-spacing: 0.2em;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color_secondary);
  margin-bottom: 30px;
}

.u-h4 {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  padding-left: 25px;
  position: relative;
  margin-bottom: 20px;
}

.u-h4::before {
  content: "";
  background-color: var(--color_tertiary);
  width: 16px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 13px;
}

.ttl-num {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.875rem;
  margin-bottom: 30px;
}

.ttl-num::before {
  content: attr(data-num);
  display: grid;
  place-content: center;
  border-radius: 50px;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1.125rem;
  font-family: var(--font_en);
  font-weight: 700;
  flex: 0 0 38px;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  text-align: center;
  margin-top: 5px;
}

@media (max-width: 800px) {
  .u-h2 {
    font-size: 1.4375rem;
    margin-bottom: 30px;
  }

  .u-h2::after {
    height: 10px;
  }

  .u-h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .u-h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }

  .u-h4::before {
    width: 13px;
    top: 9px;
  }

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

  .ttl-num::before {
    flex: 0 0 35px;
    font-size: 0.9375rem;
    margin-top: 2px;
  }
}

.tall {
  padding: 50px 0;
}

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

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

.hidden {
  overflow: hidden;
}

.list-disc {
  display: grid;
  grid-gap: 5px !important;
}

.list-disc li {
  list-style: disc;
  margin-left: 1.5em;
}

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

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

.list-disc02 {
  display: grid;
  grid-gap: 5px !important;
}

.list-disc02 li {
  list-style: none;
  padding-left: 20px;
  line-height: 1.5;
  position: relative;
}

.list-disc02 li::before {
  content: "";
  background-color: var(--color_primary);
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

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

.list-check li {
  position: relative;
  padding-left: 20px;
}

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

@media (max-width: 800px) {
  .list-check li::before {
    top: 10px;
  }
}

.list-num {
  counter-reset: number;
  display: grid;
  grid-gap: 10px !important;
}

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

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

.table-style01 th,
.table-style01 td {
  border: 1px solid #c9c9c9;
  padding: 15px;
  vertical-align: middle;
}

.table-style01 th {
  background-color: #AADDE8;
}

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

.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-bottom: 1px solid #c9c9c9;
  }

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

  .table-style01.sp-block th,
  .table-style01.sp-block td {
    display: block;
  }

  .table-style01.sp-block td {
    border-width: 0 1px;
  }

  .table-scroll::before {
    content: "スクロールできます";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat left center/contain;
    width: 100%;
    height: 24.5px;
    margin-bottom: 5px;
    padding-left: 40px;
    position: sticky;
    top: 0;
    left: 0;
  }

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

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

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

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

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

.under-slider01 .splide {
  margin: 0 auto;
}

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

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

.under-slider01 .splide__slide img {
  border-radius: 20px;
}

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

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

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

.under-slider01 .splide__slide img {
  width: 100%;
}

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

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

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

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

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

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

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

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

.pdf {
  height: 800px;
}

.pdf iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  .pdf {
    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;
    align-items: stretch;
    gap: 15px;
  }

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

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

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

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

/*------------
Add
--------------*/
/* card */
.card-layout01 .l-item {
  padding: 15px 30px;
  background-color: var(--color_white);
  border: 4px solid var(--color_primary);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-layout01 .l-ttl-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-layout01 .l-ttl-wrap img {
  width: 65px;
  -o-object-fit: contain;
  object-fit: contain;
}

.card-layout01 .l-ttl {
  flex: 1;
  font-size: 1.875rem;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color_primary);
  letter-spacing: 0.1em;
}

.card-layout01 .l-desc {
  flex: 1;
}

@media (max-width: 800px) {
  .card-layout01 .l-item {
    padding: 25px;
  }

  .card-layout01 .l-ttl-wrap img {
    width: 40px;
  }

  .card-layout01 .l-ttl {
    font-size: 1.25rem;
  }
}

.card-style01 .card-item {
  border: 2px solid var(--color_primary);
  padding: 25px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

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

.card-style01 .card-ttl {
  text-align: center;
  font-size: 1.125rem;
  font-family: var(--font_jp);
}

.card-style01 .card-ttl02 {
  font-size: 1.125rem;
  padding-bottom: 5px;
  border-bottom: 1px dashed var(--color_primary);
}

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

.list-card01>li {
  padding: 5%;
  background-color: var(--color_bg_primary);
  border-radius: 20px;
  display: grid;
  place-content: center;
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .list-card01>li {
    padding: 25px;
    font-size: 1rem;
  }
}

.list-flow01 {
  padding-top: 15px;
}

.list-flow01>li {
  background: var(--color_bg_primary);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
  position: relative;
}

.list-flow01>li+li::before {
  content: "";
  background-color: var(--color_primary);
  width: 12px;
  height: 24px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
}

.list-flow01 .list-img {
  text-align: center;
}

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

.list-flow01 .num {
  font-family: var(--font_en);
  font-weight: 700;
  color: var(--color_primary);
  font-size: 1.5625rem;
  line-height: 1;
  position: absolute;
  top: -15px;
  left: 30px;
  z-index: 2;
}

.list-flow01 .list-ttl {
  display: block;
  font-size: 1.125rem;
  text-align: center;
}

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

.list-flow01.col3 li+li::before,
.list-flow01.col4 li+li::before {
  left: -6%;
}

.list-flow01.col2 {
  grid-gap: 40px;
}

.list-flow01.col3 {
  grid-gap: 30px;
}

.list-flow01.col4 {
  grid-gap: 20px;
}

@media (max-width: 800px) {

  .list-flow01.col2,
  .list-flow01.col3,
  .list-flow01.col4 {
    grid-gap: 15px;
  }

  .list-flow01 {
    grid-gap: 30px !important;
  }

  .list-flow01>li+li::before {
    left: 50% !important;
    top: -27px;
    transform: translateX(-50%) rotate(90deg);
  }

  .list-flow01.sp-scroll {
    display: flex;
    grid-gap: 0 !important;
    flex-wrap: nowrap;
    margin: 0 -5vw 30px 0;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 5vw);
    overflow-x: auto;
  }

  .list-flow01.sp-scroll>li {
    flex: 0 0 300px;
    margin: 0 5% 0 0;
    max-width: 100%;
  }

  .list-flow01.sp-scroll>li+li::before {
    top: 50%;
    left: -9px !important;
    transform: translateX(-50%);
  }
}

/* box */
.box-style01 {
  padding: 35px 40px 30px;
  background-color: var(--color_white);
  border: 4px solid var(--color_primary);
  border-radius: 30px;
}

.box-style01 .box-ttl {
  font-size: 2.1875rem;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 20px;
}

.box-style01 .box-ttl::after {
  content: "";
  background: url(../images/under/ttl_deco.svg) no-repeat center/contain;
  width: 88px;
  height: 16px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.box01-wrapper {
  padding-top: 120px;
  position: relative;
}

.box01-wrapper::before {
  content: "";
  background: url(../images/under/box_illust.svg) no-repeat center/contain;
  width: 300px;
  height: 160px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

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

  .box-style01 .box-ttl {
    font-size: 1.4375rem;
  }

  .box-style01 .box-ttl::after {
    height: 10px;
  }

  .box01-wrapper {
    padding-top: 70px;
  }

  .box01-wrapper::before {
    height: 100px;
  }
}

.box-style02 {
  background: var(--color_bg_secondary);
  border-radius: 30px;
  padding: 40px;
}

.box-style02 .box-ttl {
  display: flex;
  gap: 15px;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

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

/* img-layout */
.img-layout01 {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  position: relative;
  padding-bottom: 50px;
}

.img-layout01::after {
  content: "";
  background: url(../images/under/under_illust01.svg) no-repeat center/contain;
  width: 265px;
  height: 145px;
  position: absolute;
  bottom: 0;
  right: 35px;
}

.img-layout01 .l-img {
  width: 41%;
  position: relative;
  z-index: 2;
}

.img-layout01 .l-img img {
  border-radius: 30px;
}

.img-layout01 .l-desc {
  flex: 1;
  padding: 35px 360px 50px 50px;
  margin: 60px -320px 0 0;
  background-color: var(--color_bg_primary);
  border-radius: 30px;
  position: relative;
}

.img-layout01 .en {
  font-family: var(--font_en);
  font-weight: 500;
  font-size: 4.375rem;
  line-height: 1;
  color: var(--color_primary);
  letter-spacing: 0.1em;
  position: absolute;
  left: 10px;
  bottom: 98%;
}

.img-layout01 .l-ttl {
  font-size: 2.1875rem;
  letter-spacing: 0.15em;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 35px;
}

.img-layout01 .l-ttl::before {
  content: "";
  background: url(../images/under/ttl_deco.svg) no-repeat center/contain;
  width: 88px;
  height: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.img-layout01.reverse {
  flex-direction: row;
}

.img-layout01.reverse::after {
  right: auto;
  left: 35px;
  transform: scaleX(-1);
}

.img-layout01.reverse .l-desc {
  padding: 35px 50px 50px 360px;
  margin: 60px 0 0 -320px;
}

.img-layout01.reverse .en {
  left: auto;
  right: 10px;
}

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

  .img-layout01::after {
    width: 155px;
    height: 85px;
    right: 5vw;
  }

  .img-layout01.reverse::after {
    left: 5vw;
  }

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

  .img-layout01 .l-desc,
  .img-layout01.reverse .l-desc {
    padding: 85px 5vw 50px;
    margin: -50px -5vw 0;
    border-radius: 0;
  }

  .img-layout01 .en {
    position: static;
    font-size: 1.875rem;
    margin-bottom: 10px;
  }

  .img-layout01 .l-ttl {
    font-size: 1.4375rem;
  }

  .img-layout01 .l-ttl::before {
    width: 68px;
    height: 13px;
  }
}

.img-layout02 {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 50px 0 40px;
}

.img-layout02::after {
  content: "";
  background: no-repeat center/contain;
  position: absolute;
  bottom: 0;
}

.img-layout02.illust01::after {
  background-image: url(../images/under/under_illust02.svg);
  width: 113px;
  height: 107px;
  right: 0;
}

.img-layout02.illust02::after {
  background-image: url(../images/under/under_illust03.svg);
  width: 109px;
  height: 132px;
  left: 65px;
}

.img-layout02.illust03::after {
  background-image: url(../images/under/under_illust04.svg);
  width: 260px;
  height: 120px;
  bottom: auto;
  top: 25px;
  right: 10px;
}

.img-layout02 .l-img {
  width: 41%;
  position: relative;
  z-index: 2;
}

.img-layout02 .l-img img {
  border-radius: 30px;
}

.img-layout02 .l-desc {
  flex: 1;
  padding: 40px 50px 60px 350px;
  margin: 60px 0 0 -320px;
  background-color: var(--color_bg_primary);
  border-radius: 30px;
}

.img-layout02 .num {
  font-family: var(--font_en);
  font-weight: 500;
  font-size: 4.375rem;
  color: var(--color_primary);
  line-height: 1;
  letter-spacing: 0.1em;
  position: absolute;
  top: 5px;
  left: 20px;
  z-index: 2;
}

.img-layout02 .l-ttl {
  font-size: 1.875rem;
  line-height: 1.46;
  letter-spacing: 0.16em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color_secondary);
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .img-layout02 {
    display: block;
    padding: 0 0 40px;
  }

  .img-layout02.illust01::after {
    height: 75px;
  }

  .img-layout02.illust02::after {
    width: 60px;
    height: 70px;
    left: 20px;
  }

  .img-layout02.illust03::after {
    width: 155px;
    height: 70px;
    top: auto;
    bottom: 0;
  }

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

  .img-layout02 .l-desc {
    padding: 75px 5vw 30px;
    margin: -50px -5vw 0;
    border-radius: 0;
  }

  .img-layout02 .num {
    position: static;
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .img-layout02 .l-ttl {
    font-size: 1.25rem;
  }
}

/* dl-style */
.dl-style01 .item {
  display: flex;
  gap: 20px;
}

.dl-style01 .item+.item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #AADDE8;
}

.dl-style01 dt {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font_jp);
  font-weight: normal;
  font-size: 1.5rem;
  padding: 15px 20px 15px 0;
  border-right: 1px solid #AADDE8;
}

.dl-style01 dt img {
  width: 70px;
  -o-object-fit: contain;
  object-fit: contain;
}

.dl-style01 dd {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

  .dl-style01 dt {
    padding: 0;
    border-right: none;
    font-size: 1.125rem;
  }

  .dl-style01 dt img {
    width: 40px;
  }
}

.dl-style02 {
  display: grid;
  grid-gap: 15px;
}

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

.dl-style02 dt {
  background: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-weight: normal;
  padding: 20px;
  border-radius: 10px 0 0 10px;
}

.dl-style02 dd {
  background: var(--color_bg_primary);
  padding: 20px;
  border-radius: 0 10px 10px 0;
}

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

  .dl-style02 dt {
    border-radius: 10px 10px 0 0;
  }

  .dl-style02 dd {
    border-radius: 0 0 10px 10px;
  }
}

/* layout-style */
.layout-style {
  display: flex;
  align-items: flex-start;
  gap: 7.5%;
  margin: 0 0 0 -10%;
}

.layout-style .l-img {
  width: 56.64%;
  position: relative;
  padding-bottom: 100px;
}

.layout-style .l-img::before {
  content: "";
  background: no-repeat center/contain;
  width: 250px;
  height: 150px;
  position: absolute;
  left: 50px;
  bottom: 0;
}

.layout-style .l-img.illust01::before {
  background-image: url(../images/under/under_illust05.svg);
}

.layout-style .l-img.illust02::before {
  background-image: url(../images/under/under_illust06.svg);
  transform: scaleX(-1);
}

.layout-style .l-img img {
  border-radius: 30px;
}

.layout-style .l-desc {
  flex: 1;
  margin-top: 20px;
}

.layout-style.reverse {
  flex-direction: row-reverse;
  margin: 0 -10% 0 0;
}

.layout-style.reverse .l-img::before {
  left: auto;
  right: 50px;
}

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

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

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

.layout-style .l-sub-ttl::before {
  content: "";
  flex: 0 0 30px;
  background: var(--color_primary);
  width: 30px;
  height: 2px;
}

@media (max-width: 1350px) {
  .layout-style {
    margin: 0 0 0 -5%;
  }

  .layout-style.reverse {
    margin: 0 -5% 0 0;
  }
}

@media (max-width: 1200px) {
  .layout-style {
    margin: 0 0 0 -3%;
  }

  .layout-style.reverse {
    margin: 0 -3% 0 0;
  }
}

@media (max-width: 800px) {
  .layout-style {
    flex-direction: column;
    gap: 35px;
    margin: 0 -5vw;
  }

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

  .layout-style .l-img::before {
    width: 180px;
    height: 100px;
    left: auto;
    right: 5vw;
    bottom: -50px;
  }

  .layout-style .l-img.illust02::before {
    width: 125px;
  }

  .layout-style .l-img img {
    border-radius: 0;
  }

  .layout-style.reverse {
    flex-direction: column;
    margin: 0 -5vw;
  }

  .layout-style.reverse .l-img::before {
    bottom: -50px;
  }

  .layout-style .l-desc {
    padding: 0 5vw;
  }

  .layout-style .l-num {
    font-size: 20px;
    margin-bottom: 20px;
  }

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

  .layout-style .l-sub-ttl {
    gap: 20px;
    font-size: 18px;
    margin-bottom: 25px;
  }
}

/* staff-layout */
.staff-layout .wrapper {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 8%;
}

.staff-layout .l-img {
  width: 32%;
  position: relative;
}

.staff-layout .l-img::before {
  content: "";
  background: url(../images/under/under_illust07.svg) no-repeat center/contain;
  width: 100px;
  height: 100px;
  position: absolute;
  top: -30px;
  right: -5%;
}

.staff-layout .l-img::after {
  content: "";
  background: url(../images/under/under_illust08.svg) no-repeat center/contain;
  width: 100px;
  height: 130px;
  position: absolute;
  bottom: 0;
  left: -20%;
}

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

.staff-layout .l-img figcaption {
  color: var(--color_primary);
  font-family: var(--font_jp);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1;
}

.staff-layout .l-img .job {
  display: block;
  font-size: 0.875rem;
}

.staff-layout .l-img .name {
  font-size: 1.25rem;
}

.staff-layout .l-img .kana {
  font-size: 0.6875rem;
}

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

.staff-layout .l-ttl {
  color: var(--color_primary);
  border-bottom: 2px solid var(--color_primary);
  font-weight: bold;
  font-size: 1rem;
  padding-bottom: 5px;
  margin-bottom: 30px;
  width: -moz-fit-content;
  width: fit-content;
}

.staff-layout .l-message {
  font-size: 1.5625rem;
  font-family: var(--font_jp);
  margin-bottom: 30px;
}

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

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

.card-profile .item {
  background-color: var(--color_bg_primary);
  border-radius: 10px;
  padding: 30px;
}

.card-profile .card-ttl {
  color: var(--color_primary);
  border-bottom: 1px dashed var(--color_primary);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.dl-career {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px 20px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .staff-layout .wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .staff-layout .l-img {
    width: auto;
    max-width: 300px;
    margin: 0 auto;
  }

  .staff-layout .l-img::after {
    left: -10%;
  }

  .staff-layout .l-img figcaption {
    flex-direction: column;
    gap: 10px;
  }

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

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

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

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

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

/* flow */
.flow-style01>li {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 50px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 50px;
}

.flow-style01>li:not(:last-child)::before {
  content: "";
  border-left: 2px dotted var(--color_primary);
  position: absolute;
  top: 115px;
  bottom: 15px;
  left: 40px;
}

.flow-style01 .flow-num {
  font-family: var(--font_en);
  font-weight: 500;
  color: var(--color_primary);
  white-space: nowrap;
  background-color: var(--color_primary);
  border-radius: 100px;
  text-align: center;
  display: grid;
  place-items: center;
  line-height: 1;
  width: 80px;
  height: 80px;
  margin-top: 20px;
  position: relative;
}

.flow-style01 .flow-num::before {
  content: attr(data-en);
  font-size: 0.9375rem;
  font-weight: bold;
  letter-spacing: 0;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.flow-style01 .flow-num img {
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
  filter: invert(1);
}

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

@media (max-width: 800px) {
  .flow-style01>li {
    grid-gap: 20px;
    padding-bottom: 30px;
  }

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

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

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

.tel-layout .dl-time {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

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

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

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

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

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

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

.dl-privacy dd {
  line-height: 1.8;
  text-align: justify;
}

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

.sp-only {
  display: none;
}

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

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.fade {
  transition: opacity 0.5s;
}

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

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

.fs15 {
  font-size: 0.9375rem;
}

.bold,
.strong {
  font-family: var(--font_jp);
}

.c-red {
  color: #F44336;
}

.c-pink {
  color: #FFB5C6;
}

.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(255, 228, 0, 0.4);
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

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

.br-pc::before,
.br-sp::before {
  content: "\a";
  white-space: pre;
}

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

.br-sp {
  display: none;
}

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

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 8px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin-bottom: 32px;
}

.mbXM {
  margin-bottom: 48px;
}

.mbL {
  margin-bottom: 64px;
}

.mbXL {
  margin-bottom: 96px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.col1,
.col2,
.col3,
.col4 {
  display: grid;
}

.col1 {
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 30px;
}

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

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

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

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

  .sp-only {
    display: block;
  }

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

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

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

  .mbXM {
    margin-bottom: 32px;
  }

  .mbL {
    margin-bottom: 48px;
  }

  .mbXL {
    margin-bottom: 64px;
  }

  .col2,
  .col3,
  .col4 {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}

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

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

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

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

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

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

.splide__progress__bar {
  width: 0;
}

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

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

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

.splide__slide img {
  vertical-align: bottom;
}

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

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

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

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

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

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

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

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

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

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

.splide--rtl {
  direction: rtl;
}

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

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

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

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

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

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

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

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

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

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

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

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

.splide__pagination {
  gap: 8px;
}

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

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

.splide__pagination__page:hover {
  cursor: pointer;
}

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

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

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

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

.splide__slide:focus {
  outline: 0;
}

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

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

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

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

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

.splide__toggle {
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.splide__toggle:hover {
  background: #D3D3D3;
}

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

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

.top-carousel {
  margin-bottom: 120px;
}

.top-carousel img {
  width: 100%;
  border-radius: 30px;
}

.top-carousel .splide__slide:nth-child(2n) {
  margin-top: 40px;
}

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