@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #333;
  --color_link: #333;
  --color_border: #DFDFDF;
  --color_primary: #143384;
  --color_secondary: #00A1E9;
  --color_light_blue: #C2EAFC;
  --color_bg: #E7F3F8;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
}

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

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

:root {
  --font_base:
    "FOT-筑紫A丸ゴシック Std R",
    TsukuARdGothicStd-R,
    "FOT-筑紫A丸ゴシック Std B",
    TsukuARdGothicStd-B,
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Local Noto Sans JP",
    "Noto Sans JP",
    sans-serif;
  --font_jp: "FOT-筑紫A丸ゴシック Std B",
    TsukuARdGothicStd-B,
    serif;
  --font_en: "Quicksand", serif;
  --font_weight: normal;
  --font_size: 0.9375rem;
  --line_height: 1.8;
  --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;
  line-height: 1.3;
}

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

img {
  display: inline-block;
}

figure:has(img) {
  line-height: 1;
}

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

.link[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  margin-left: 5px;
}

.link:is(:hover, :focus) {
  text-decoration: none;
}

.no-link {
  pointer-events: none;
}

a[href^=tel] {
  cursor: default;
}

:target {
  scroll-margin-top: 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 {
  background-color: #FEFEFE;
  border-collapse: collapse;
  font-family: var(--font_jp);
  font-size: 1rem;
  table-layout: fixed;
  width: 100%;
}

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

.time-table th,
.time-table td {
  text-align: center;
  padding: 15px 0;
  line-height: 1.2;
}

@media (max-width: 800px) {

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

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

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

.time-table tbody th:first-child {
  background-color: #727E9D;
  color: var(--color_white);
}

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

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

.time-table-note {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 10px;
}

/*-----------------------------------------------------------
診療カレンダー
-----------------------------------------------------------*/
:root {
  --event01: #143384;
  --event02: #00A1E9;
  --event03: #E98F00;
}

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

.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-family: var(--font_jp);
  font-size: 1rem;
  text-align: center;
  margin: 0 0 10px;
  position: relative;
}

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

.business-calendar-box-wrap .business-calendar caption span.business-calendar-past {
  left: 0;
}

.business-calendar-box-wrap .business-calendar caption span.business-calendar-future {
  right: 0;
}

.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
  cursor: pointer;
  color: var(--color_primary);
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

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

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

.business-calendar-box-wrap .business-calendar td {
  background: #FFFFFF;
  border: 1px solid var(--color_border);
  position: relative;
  font-family: var(--font_jp);
  font-size: 0.8125rem;
  padding: 8px 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 {
  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 {
  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);
}

.list-event {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.8125rem;
}

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

@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: transparent;
  border: 1px solid var(--color_primary);
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  line-height: 1.5;
  min-height: 50px;
  min-width: 210px;
  padding: 13px 15px 13px 25px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

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

.btn-more .small {
  font-size: 0.75rem;
}

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

  .btn-more:hover::before {
    border-color: var(--color_white);
  }
}

.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_black);
  border-right: 1px solid var(--color_black);
  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;
}

.post-under-blog .list-img img {
  box-shadow: 0 0 10px rgba(20, 51, 132, 0.2);
  aspect-ratio: 7 / 5;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

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

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

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

.post-under-blog time {
  display: block;
  color: #96C6DB;
  font-family: var(--font_en);
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1;
}

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

.post-under-blog .category {
  text-box: trim-both cap alphabetic;
  background-color: var(--color_primary);
  color: var(--color_white);
  display: inline-block;
  font-size: 0.625rem;
  line-height: 1;
  padding: 4px 8px;
}

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

.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;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 5px;
  }

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

  .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;
  color: #96C6DB;
  font-family: var(--font_en);
  font-weight: bold;
  line-height: 1;
}

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

.layout-single-post .category {
  display: inline-block;
  text-box: trim-both cap alphabetic;
  background-color: var(--color_primary);
  color: var(--color_white);
  display: inline-block;
  font-size: 0.625rem;
  line-height: 1;
  padding: 4px 8px;
}

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

@media (any-hover: hover) {

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

.post-number .current {
  color: var(--color_primary);
  text-decoration: underline;
  text-underline-offset: 15px;
}

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

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

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

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

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

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

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

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

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

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

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

.u-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.u-gallery .item a {
  display: block;
}

.u-gallery .item a .post-img {
  overflow: hidden;
}

.u-gallery .item a img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  transition: scale 0.3s;
}

@media (any-hover: hover) {
  .u-gallery .item a:hover img {
    scale: 1.1;
  }
}

@media (max-width: 800px) {
  .u-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.post-under-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px 15px;
  margin-bottom: 50px;
}

.post-under-gallery a {
  display: block;
  height: 100%;
}

.post-under-gallery .no-post {
  grid-column: 1 / -1;
}

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

.post-under-gallery .post-img {
  overflow: hidden;
  margin-bottom: 10px;
}

.post-under-gallery .post-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform 0.3s;
}

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

.post-under-gallery time {
  display: inline-block;
  color: #96C6DB;
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
}

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

.post-under-gallery .category {
  text-box: trim-both cap alphabetic;
  background-color: var(--color_primary);
  color: var(--color_white);
  display: inline-block;
  font-size: 0.625rem;
  line-height: 1;
  padding: 4px 8px;
}

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

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

@media (max-width: 800px) {
  .post-under-gallery {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
  }

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

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

  .post-under-gallery .post-ttl {
    margin-bottom: 5px;
  }

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

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  position: fixed;
  top: 5px;
  left: 50px;
  width: calc(100% - 100px);
  padding: 6px 2.5%;
  z-index: 999;
}

.h-logo {
  line-height: 1;
}

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

.h-layout .l-item {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 5px;
}

.h-layout .l-dl {
  display: grid;
  grid-template-columns: 4.375rem 1fr;
  gap: 9px;
  font-size: 0.8125rem;
}

.h-layout .l-dl dt {
  background-color: var(--color_primary);
  border-radius: 2px;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 0.6875rem;
  padding: 2px 10px;
  text-align: center;
}

.h-layout .l-text {
  font-size: 0.8125rem;
}

@media (max-width: 1024px) {
  .header {
    left: 15px;
    width: calc(100% - 30px);
  }

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

  .h-utility {
    gap: 15px;
  }
}

@media (max-width: 800px) {
  .header {
    padding: 10px 2.5%;
    position: static;
    width: 100%;
  }

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

  .h-utility {
    display: none;
  }
}

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

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

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

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

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

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

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

.gnavi-menu-btn-txt {
  display: block;
}

.gnavi-menu-btn-txt::before {
  content: "MENU";
  color: var(--color_primary);
  font-size: 0.84375rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  margin-top: 3px;
  white-space: nowrap;
}

.gnavi-menu-btn.is-open .gnavi-menu-btn-line {
  width: 20px;
}

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

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

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

.gnavi-menu-btn.is-open .gnavi-menu-btn-txt::before {
  content: "Close";
}

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

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

.gnavi-drawer-container {
  background-color: #EBFDFF;
  margin-left: auto;
  padding: 146px 110px 98px;
  width: 777px;
  height: 100%;
  overflow-y: auto;
}

.drawer-item01 {
  margin-bottom: 60px;
}

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

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

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

.drawer-links a[aria-current=page] {
  background-position: 0 100%;
  background-size: 100% 1px;
}

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

.drawer-item02 .l-logo {
  text-align: center;
  margin-bottom: 25px;
}

.drawer-item02 .l-text {
  line-height: 2;
  text-align: center;
  margin-bottom: 13px;
}

.drawer-item02 .sns-links {
  justify-content: center;
  margin-bottom: 35px;
}

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

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

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background: url(../images/share/f_bg01.jpg) no-repeat center/cover;
  margin-top: auto;
  position: relative;
  padding: 60px 0 0;
  z-index: 0;
}

.footer::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  inset: 0;
  z-index: -1;
}

.f-box01 {
  background: #fff url(../images/share/f_bg02.png) no-repeat center/cover;
  padding: 52px 50px 57px;
  margin-bottom: 40px;
}

.f-box01 .l-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--color_primary);
  font-size: 1.875rem;
  margin-bottom: 15px;
}

.f-box01 .l-item p {
  font-family: var(--font_jp);
}

.f-box01 .l-item .tel {
  font-size: 1.875rem;
}

.f-box01 .l-text {
  font-size: 1rem;
  margin-bottom: 5px;
  text-align: center;
}

.f-box01 .l-dl {
  display: grid;
  grid-template-columns: 4.375rem 1fr;
  gap: 9px;
  font-size: 1rem;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.f-box01 .l-dl dt {
  background-color: var(--color_primary);
  border-radius: 2px;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 0.875rem;
  padding: 1px 10px 0;
  text-align: center;
}

.f-contents01 {
  display: grid;
  grid-template-columns: 1fr 52%;
  margin-bottom: 75px;
}

.f-contents01 .time-table th:first-child {
  width: 130px;
}

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

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

.f-contents02 {
  margin-bottom: 70px;
}

.site-map {
  display: flex;
  gap: 80px;
  margin-bottom: 48px;
}

.f-links {
  display: grid;
  gap: 12px;
  line-height: 1.5;
  font-size: 1rem;
  margin-bottom: auto;
}

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

.f-links a[aria-current=page] {
  background-position: 0 100%;
  background-size: 100% 1px;
}

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

.f-bnr {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.f_bnr_slider .splide__slide figure {
  text-align: center;
}

.f_bnr_slider .splide__slide img {
  width: auto;
  height: 107px;
  -o-object-fit: contain;
  object-fit: contain;
}

.f_bnr_slider .splide-wrapper {
  position: relative;
}

.f_bnr_slider .splide__arrows {
  position: relative;
  z-index: 10;
}

.f_bnr_slider .splide__arrow {
  position: absolute;
  top: 33px;
  width: 44px;
  height: 44px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 10;
}

.f_bnr_slider .splide__arrow svg {
  display: none;
}

.f_bnr_slider .splide__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.f_bnr_slider .splide__arrow--prev {
  background: url(../images/share/f_splide_prev.svg) no-repeat center/auto 40px;
  left: -65px;
}

.f_bnr_slider .splide__arrow--next {
  background: url(../images/share/f_splide_next.svg) no-repeat center/auto 40px;
  right: -65px;
}

.f_bnr_slider .splide__pagination {
  margin-top: 22px;
}

.f_bnr_slider .splide__track {
  overflow: hidden;
}

.f_bnr_slider .splide__list {
  justify-content: normal;
}

.f-bottom {
  background-color: var(--color_primary);
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 2px 20px;
}

.copyright {
  font-size: 0.9375rem;
}

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

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

.pagetop {
  position: absolute;
  bottom: 50px;
  right: 20px;
}

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

  .f-box01 {
    background: #fff url(../images/share/f_bg02.png) no-repeat bottom center/cover;
    padding: 30px 5%;
  }

  .f-box01 .l-item {
    flex-direction: column;
    gap: 5px;
    font-size: 1.5rem;
  }

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

  .f-contents01 .time-table th:first-child {
    width: 90px;
  }

  .site-map {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 40px;
  }

  .f-bnr {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }

  .f_bnr_slider .splide__arrow {
    width: 20px;
    height: 30px;
    top: 40px;
  }

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

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

  .f_bnr_slider .splide__pagination {
    margin-top: 10px;
  }

  .copyright+.f-bottom-links::before {
    content: "";
  }

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

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

.sp-navi {
  display: none;
}

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

  .sp-navi {
    display: block;
  }

  .sp-navi-btns {
    display: flex;
    background-color: #143384;
    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(--font_jp);
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

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

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

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

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

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

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

  .sp-menu-btn.is-open span:nth-of-type(1) {
    transform: translate(-50%, 5px) 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%, -5px) rotate(45deg);
  }

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

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

  .sp-logo {
    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 {
    background-color: rgba(0, 0, 0, 0.015);
    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_black);
    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%);
  }
}

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

.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-family: var(--font_en);
  font-size: 1.0625rem;
}

.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;
  z-index: 0;
}

.hero .hero-catch {
  position: absolute;
  bottom: 10%;
  left: 5%;
  z-index: 5;
}

.hero .hero-ttl {
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: clamp(2.25rem, 2.7vw, 3.125rem);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.hero .hero-video {
  position: relative;
}

.hero .hero-video::before {
  content: "";
  /* background-color: rgba(0, 0, 0, 0.3); */
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero .hero-video video {
  width: 100%;
  height: auto;
}

@media (max-width: 800px) {
  .hero .hero-catch {
    left: 10%;
    bottom: 5%;
  }

  .hero .hero-ttl {
    font-size: 1.625rem;
  }

  .hero .hero-video video {
    aspect-ratio: 400/297;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

/*------------
Components
--------------*/
.t-h2 {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: clamp(3.6875rem, 5.1vw, 5.875rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 40px;
  padding: 30px 0;
  position: relative;
}

.t-h2::before {
  content: "";
  background: url(../images/share/logo-icon.png) no-repeat center/contain;
  width: clamp(147px, 12vw, 198px);
  height: auto;
  aspect-ratio: 198/196;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media (max-width: 800px) {
  .t-h2 {
    font-size: 3.25rem;
    margin-bottom: 20px;
    padding: 20px 0;
  }

  .t-h2::before {
    width: 109px;
  }
}

/*------------
Section
--------------*/
.sec01 {
  padding: 50px 0 70px;
}

.l-sec01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 48px;
  margin: 80px 0 0;
}

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

  .l-sec01 {
    grid-template-columns: 1fr;
    margin: 60px 0 0;
  }
}

.t-news-layout {
  display: grid;
  gap: 14px 0;
}

.t-news-layout .l-ttl {
  grid-area: 1/1/2/2;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: clamp(3.125rem, 3.8vw, 4.375rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 37px 0;
  position: relative;
}

.t-news-layout .l-ttl::before {
  content: "";
  background: url(../images/share/logo-icon.png) no-repeat center/contain;
  width: clamp(137px, 9.3vw, 168px);
  height: auto;
  aspect-ratio: 168/166;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.t-news-layout .l-body {
  grid-area: 2/1/3/3;
}

.t-news-layout .l-btn {
  display: grid;
  align-items: end;
  justify-content: flex-end;
  grid-area: 1/2/2/3;
  margin-bottom: 10px;
}

.t-news-layout .btn-more {
  min-width: 170px;
}

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

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

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

.post-top-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: 400;
}

.post-top-news .no-post {
  padding: 18px 0;
}

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

@media (max-width: 800px) {
  .t-news-layout {
    gap: 30px 0;
  }

  .t-news-layout .l-ttl {
    font-size: 2.5rem;
    padding: 28px 0;
  }

  .t-news-layout .l-ttl::before {
    width: 109px;
  }

  .t-news-layout .l-body {
    grid-area: 2/1/3/2;
  }

  .t-news-layout .l-btn {
    grid-area: 3/1/4/2;
    display: block;
    text-align: center;
    margin-bottom: 0;
  }

  .post-top-news a {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }

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

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

.sec02 {
  background: url(../images/bg_wave.png) no-repeat center/cover;
  overflow: hidden;
  padding: 60px 0 75px;
  position: relative;
  z-index: 0;
}

.sec02 .container {
  position: relative;
}

.sec02-deco {
  color: #F4F8FA;
  font-family: var(--font_en);
  font-size: clamp(6.875rem, 8.8vw, 9.0625rem);
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-max-content;
  width: max-content;
  z-index: 0;
}

.sec02-ttl {
  margin-bottom: 72px;
  padding: clamp(88px, 8.4vw, 125px) 0 0;
  text-align: center;
}

.sec02-ttl [lang=en] {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 2.1875rem;
  line-height: 1.2;
  margin: 0 0 10px;
}

.sec02-ttl .jp {
  font-size: clamp(1.75rem, 2.6vw, 3.0rem);
}

.l-sec02 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.l-sec02 .l-img {
  max-width: 60%;
}

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

.l-sec02 .l-card {
  background-color: var(--color_white);
  box-shadow: 0 0 20px rgba(20, 51, 132, 0.2);
  font-size: 1rem;
  margin: 0 -70px 0 auto;
  max-width: 569px;
  padding: 60px 60px 50px;
  position: relative;
  z-index: 0;
}

.l-sec02 .l-card::before {
  content: "";
  background: url(../images/share/deco_wave.png) no-repeat center/contain;
  width: 122px;
  height: auto;
  aspect-ratio: 122/83;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 0;
}

.l-sec02 .l-btn {
  margin: 40px 0 0;
}

@media (max-width: 800px) {
  .sec02 {
    background: url(../images/bg_wave.png) no-repeat center right/cover;
    padding: 0 0 50px;
  }

  .sec02-deco {
    font-size: 2.875rem;
    top: 30px;
  }

  .sec02-ttl {
    margin-bottom: 30px;
    padding: 50px 0 0 0;
  }

  .sec02-ttl [lang=en] {
    margin: 0 0 5px;
  }

  .sec02-ttl .jp {
    font-size: 1.375rem;
  }

  .l-sec02 {
    flex-direction: column;
  }

  .l-sec02 .l-img {
    max-width: 100%;
  }

  .l-sec02 .l-card {
    margin: -30px 0 0;
    padding: 30px 20px;
  }

  .l-sec02 .l-card::before {
    width: 100px;
    bottom: 10px;
    right: 10px;
  }

  .l-sec02 .l-btn {
    margin: 30px 0 0;
    text-align: center;
  }
}

.sec03 {
  padding: 40px 0 0;
}

.sec03 .t-h2 {
  margin: 0 0 -25px 0;
}

.sec03-img {
  display: block;
}

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

.sec03_slider {
  margin: -132px 0 0;
}

.sec03_slider .splide__list {
  justify-content: center;
}

.sec03_slider .item-img {
  background-color: var(--color_white);
  border-radius: 125px;
  width: 232px;
  height: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto -12px;
}

.sec03_slider .item-desc {
  max-width: 350px;
  margin: 0 auto;
  padding: 0 10px;
}

.sec03_slider .item-desc p {
  font-size: 1rem;
}

.sec03_slider .l-btn {
  margin-top: 30px;
  text-align: center;
}

.sec03_slider .btn-more {
  min-width: 170px;
}

@media (max-width: 800px) {
  .sec03 .t-h2 {
    margin: 0 0 -15px 0;
  }

  .sec03_slider .splide-wrapper {
    position: relative;
  }

  .sec03_slider .splide__arrows {
    position: relative;
    z-index: 10;
  }

  .sec03_slider .splide__arrow {
    position: absolute;
    top: 150px;
    width: 44px;
    height: 44px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    z-index: 10;
  }

  .sec03_slider .splide__arrow:disabled {
    opacity: 0.3;
    cursor: default;
  }

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

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

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

  .sec03_slider .splide__track {
    overflow: hidden;
  }

  .sec03_slider .splide__list {
    justify-content: normal;
  }

  .sec03_slider .splide__slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .sec03_slider .item-desc {
    max-width: 100%;
    padding: 0 20px;
  }
}

.sec04 {
  background: url(../images/bg_wave.png) no-repeat center/cover;
  padding: 100px 0;
}

.l-sec04 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 4%;
  margin-bottom: 60px;
}

.l-sec04 .l-img {
  margin-bottom: 30px;
  position: relative;
  z-index: 0;
}

.l-sec04 .l-img img {
  box-shadow: 0 0 10px rgba(20, 51, 132, 0.2);
}

.l-sec04 .l-label {
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.375rem;
  padding: 0 15px;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.l-sec04 .l-txt {
  font-size: 1rem;
}

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

.sec04-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 33px;
}

.sec04-list a {
  display: block;
  background-color: var(--color_bg);
  padding: 40px 15px 35px;
  transition: background-color 0.3s;
}

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

.sec04-list .l-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  text-align: center;
}

@media (any-hover: hover) {
  .sec04-list a:hover {
    background-color: var(--color_light_blue);
  }
}

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

  .l-sec04 {
    grid-template-columns: 1fr;
  }

  .l-sec04 .l-img {
    margin-bottom: 15px;
  }

  .l-sec04 .l-label {
    font-size: 1.125rem;
    padding: 0 10px;
  }

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

  .sec04-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .sec04-list a {
    padding: 20px 5% 15px;
  }

  .sec04-list .l-img {
    margin-bottom: 5px;
  }

  .sec04-list .l-img img {
    width: 75%;
  }

  .sec04-list .l-ttl {
    font-size: 1.125rem;
  }
}

.sec05 {
  position: relative;
  padding: 39px 0 0;
}

.sec05::before {
  content: "";
  background: url(../images/sec05_bg.png) no-repeat center/cover;
  position: absolute;
  top: 39px;
  width: 95%;
  height: auto;
  aspect-ratio: 1722/1253;
  z-index: -1;
}

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

.l-sec05 {
  display: flex;
}

.l-sec05 .l-img {
  width: min(57%, 800px);
}

.l-sec05 .l-desc {
  flex: 1;
  margin: 11% 0 0 6%;
}

.l-sec05 .l-desc p {
  font-size: 1rem;
}

.l-sec05 .l-ttl {
  color: var(--color_primary);
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.l-sec05 .l-btn {
  margin-top: 50px;
}

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

.l-sec05.reverse .l-desc {
  margin: 11% 6% 0 0;
}

.l-sec05+.l-sec05 {
  margin-top: 60px;
}

@media (max-width: 1200px) {
  .l-sec05 .l-desc {
    margin: 5% 0 0 6%;
  }

  .l-sec05.reverse .l-desc {
    margin: 5% 6% 0 0;
  }
}

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

  .sec05::before {
    top: auto;
    bottom: 0;
  }

  .sec05 .t-h2 {
    margin-bottom: 20px;
  }

  .l-sec05 {
    flex-direction: column;
  }

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

  .l-sec05 .l-desc {
    margin: 15px 0 0 0;
  }

  .l-sec05 .l-ttl {
    font-size: 1.625rem;
    margin-bottom: 15px;
  }

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

  .l-sec05.reverse {
    flex-direction: column;
  }

  .l-sec05.reverse .l-desc {
    margin: 15px 0 0 0;
  }
}

.sec06 {
  padding: 70px 0 95px;
}

.sec06-ttl {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 25px;
  text-align: center;
}

.gallery_slider .splide__slide img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.gallery_slider .splide__list:has(.no-post) {
  justify-content: center;
  transform: none !important;
}

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

  .sec06-ttl {
    font-size: 2.5rem;
    line-height: 1.1;
  }
}

.sec07 {
  background: url(../images/sec07_bg.jpg) no-repeat center/cover;
  padding: 47px 0 60px;
  position: relative;
  z-index: 0;
}

.sec07::before {
  content: "";
  background-color: rgba(51, 74, 136, 0.6);
  inset: 0;
  position: absolute;
  z-index: -1;
}

.sec07-ttl {
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 5.875rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 20px;
  text-align: center;
}

.sec07-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.sec07-btns .btn-more {
  color: var(--color_white);
  border: 1px solid var(--color_white);
  min-width: 250px;
}

.sec07-btns .btn-more::before {
  border-color: var(--color_white);
}

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

  .sec07-btns .btn-more:hover::before {
    border-color: var(--color_primary);
  }
}

@media (max-width: 800px) {
  .sec07-ttl {
    font-size: 2.5rem;
  }

  .sec07-btns {
    flex-direction: column;
    gap: 10px;
  }

  .sec07-btns .btn-more {
    min-width: 100%;
  }
}

.top_bg01 {
  position: relative;
  z-index: 0;
}

.top_bg01::before {
  content: "";
  background: url(../images/top_bg01.png) no-repeat bottom center/cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1800/867;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.sec08 {
  padding: 70px 0 0;
}

.sec08-box {
  background: #fff url(../images/sec08_bg.png) no-repeat center/cover;
  box-shadow: 0 0 20px rgba(20, 51, 132, 0.1);
  display: flex;
  gap: 54px;
  padding: 75px 50px 75px 17%;
}

.sec08-box .l-ttl {
  display: flex;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 4.1875rem;
  font-weight: 400;
  letter-spacing: 0;
  padding: 20px 0;
  position: relative;
}

.sec08-box .l-ttl::before {
  content: "";
  background: url(../images/share/logo-icon.png) no-repeat center/contain;
  width: 148px;
  height: auto;
  aspect-ratio: 198/196;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.sec08-box .l-ttl span {
  font-size: 5.125rem;
  line-height: 1.2;
}

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

@media (max-width: 800px) {
  .sec08-box {
    background: url(../images/sec08_bg.png) no-repeat left center/cover;
    flex-direction: column;
    gap: 20px;
    padding: 30px 5%;
  }

  .sec08-box .l-ttl {
    justify-content: center;
    font-size: 2.5rem;
    padding: 10px 0;
  }

  .sec08-box .l-ttl::before {
    width: 80px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .sec08-box .l-ttl span {
    font-size: 2.9375rem;
  }

  .sec08-box .l-btn {
    text-align: center;
  }
}

.sec09 {
  padding: 57px 0 100px;
}

.sec09-ttl {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: clamp(3.125rem, 3.8vw, 4.375rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 30px;
  padding: 37px 0;
  position: relative;
}

.sec09-ttl::before {
  content: "";
  background: url(../images/share/logo-icon.png) no-repeat center/contain;
  width: clamp(137px, 9.3vw, 168px);
  height: auto;
  aspect-ratio: 168/166;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.sec09-btn {
  margin-top: 50px;
  text-align: center;
}

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

  .sec09-ttl {
    font-size: 2.5rem;
    padding: 28px 0;
  }

  .sec09-ttl::before {
    width: 109px;
  }

  .sec09-btn {
    margin-top: 30px;
  }
}

.post-top-blog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.post-top-blog a {
  display: block;
}

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

.post-top-blog .post-img img {
  box-shadow: 0 0 10px rgba(20, 51, 132, 0.2);
  aspect-ratio: 7/5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: scale 0.3s;
}

.post-top-blog time {
  display: inline-block;
  color: #96C6DB;
  font-family: var(--font_en);
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
}

.post-top-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: var(--font_base);
  font-size: 1.1875rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

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

.post-top-blog .category {
  text-box: trim-both cap alphabetic;
  background-color: var(--color_primary);
  color: var(--color_white);
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 6px 13px;
}

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

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

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

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

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

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

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

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

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

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

.top-map {
  position: relative;
}

.top-map .google-map iframe {
  height: 520px;
}

.top-map .l-desc {
  background-color: var(--color_white);
  box-shadow: 0 0 10px rgba(20, 51, 132, 0.2);
  padding: 50px 30px 60px;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 400px;
}

.top-map .l-ttl {
  color: var(--color_primary);
  font-size: 1.875rem;
  margin-bottom: 25px;
  text-align: center;
}

.top-map .l-txt {
  font-size: 1rem;
  text-align: center;
}

.top-map .l-btn {
  margin-top: 40px;
  text-align: center;
}

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

  .top-map .l-desc {
    width: 100%;
    padding: 30px 5%;
    position: static;
    transform: none;
  }

  .top-map .l-ttl {
    font-size: 1.625rem;
    margin-bottom: 20px;
  }

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

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  background: url(../images/under/page-ttl_bg.png) no-repeat center/cover;
  height: 415px;
  padding: 218px 5% 116px;
}

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

.breadcrumb {
  position: relative;
}

.breadcrumb ul {
  padding: 5px 5vw;
  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;
}

.u-contents p+p {
  margin-top: 1em;
}

@media (max-width: 800px) {
  .page-header {
    display: grid;
    place-content: center;
    height: 150px;
    padding: 50px 3%;
  }

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

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

.u-h2,
.postdata h2 {
  font-size: 2.125rem;
  letter-spacing: 0.15em;
  margin-bottom: 50px;
  padding-bottom: 10px;
  position: relative;
  text-align: center;
}

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

.u-h3,
.postdata h3 {
  border-bottom: 1.5px solid var(--color_border);
  font-size: 1.45rem;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}

.u-h3::before,
.postdata h3::before {
  content: "";
  background-color: var(--color_primary);
  width: 50px;
  height: 1.5px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.u-h4,
.postdata h4 {
  color: var(--color_primary);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
  padding-left: 15px;
  position: relative;
}

.u-h4::before,
.postdata h4::before {
  content: "";
  background-color: var(--color_primary);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
}

.ttl-style01 {
  margin-bottom: 50px;
  text-align: center;
}

.ttl-style01 [lang=en] {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 2.1875rem;
  line-height: 1.2;
  margin: 0 0 10px;
}

.ttl-style01 .jp {
  font-size: 2.3125rem;
  line-height: 1.7;
}

@media (max-width: 800px) {

  .u-h2,
  .postdata h2 {
    font-size: 1.625rem;
    margin-bottom: 30px;
  }

  .u-h3,
  .postdata h3 {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }

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

  .u-h4::before,
  .postdata h4::before {
    width: 7px;
    height: 7px;
  }

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

  .ttl-style01 [lang=en] {
    margin: 0 0 5px;
  }

  .ttl-style01 .jp {
    font-size: 1.375rem;
  }
}

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

.tall.bg01 {
  background-color: var(--color_bg);
  padding: 100px 0;
}

.tall.bg02 {
  background: url(../images/bg_wave.png) no-repeat top center/cover;
  padding: 100px 0;
}

.tall.bg02:first-child {
  padding: 0;
}

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

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

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

.hidden {
  overflow: hidden;
}

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

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

  .tall.bg02 {
    background: url(../images/bg_wave.png) no-repeat center right/cover;
    padding: 50px 0;
  }

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

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

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

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

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

.list-disc li::marker {
  color: var(--color_primary);
  font-size: 0.9375rem;
}

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

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

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

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

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

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

.list-diamond li::before {
  content: "";
  background-color: var(--color_primary);
  width: 8px;
  height: 8px;
  position: absolute;
  top: 10px;
  left: 0;
  transform: rotate(45deg);
}

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

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

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

.price-style {
  display: grid;
  grid-gap: 20px;
}

.price-style .list-intro {
  border-bottom: 1px dotted #333;
  display: flex;
  align-items: flex-end;
  grid-gap: 10px;
  justify-content: space-between;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  padding: 0 0 5px;
}

.price-style .list-desc {
  color: #747474;
  font-size: 13px;
  margin-top: 8px;
}

@media (max-width: 800px) {
  .price-style .list-intro {
    flex-direction: column;
    gap: 0;
    font-size: 1rem;
  }
}

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

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

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

.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 colgroup {
    display: none;
  }

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

  .table-scroll-txt {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

  .l-imgR .l-img.small02,
  .l-imgL .l-img.small02 {
    width: 70%;
    margin: 0 auto;
  }

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

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

/*------------
Add
--------------*/
.card-style01 .item {
  padding-top: 54px;
  position: relative;
}

.card-style01 .list-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.card-style01 .list-desc {
  border: 1px solid #ccc;
  height: 100%;
  padding: 75px 25px 30px;
}

.card-style01 .list-ttl {
  font-size: 1.25rem;
  margin-bottom: 10px;
  text-align: center;
}

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

.card-style02 .list-icon {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background-color: var(--color_white);
  border: 1.5px solid var(--color_primary);
  border-radius: 50%;
  display: grid;
  place-content: center;
  margin-bottom: 10px;
}

.card-style02 .list-icon img {
  max-height: 118px;
  max-width: 118px;
  aspect-ratio: 1;
}

.card-style02 .list-txt {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  text-align: center;
}

.card-style03 .item {
  background-color: var(--color_bg);
  display: grid;
  place-content: center;
  padding: 20px;
}

.card-style03 .list-txt {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
}

.card-style04 .card-img {
  margin-bottom: 15px;
  text-align: center;
}

.card-style04 .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
}

.card-style04 .item:has(p) .card-ttl {
  margin-bottom: 10px;
}

.card-style05.border .item {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  padding: 20px;
}

.card-style05 .card-img {
  margin-bottom: 15px;
  text-align: center;
}

.card-style05 .card-ttl {
  border-bottom: 1.5px solid var(--color_border);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
  padding-bottom: 10px;
  position: relative;
}

.card-style05 .card-ttl::before {
  content: "";
  background-color: var(--color_primary);
  width: 50px;
  height: 1.5px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.card-style06 .item {
  background-color: var(--color_bg);
  padding: 20px;
}

.card-style06 .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.card-style06 .card-ttl.center {
  text-align: center;
}

.card-style06 .card-ttl02 {
  border-bottom: 1px solid var(--color_border);
  font-size: 1.25rem;
  padding-bottom: 7px;
  margin-bottom: 15px;
}

.card-style06 .card-img {
  margin-bottom: 15px;
  text-align: center;
}

@media (max-width: 800px) {
  .card-style01 .item {
    padding-top: 35px;
  }

  .card-style01 .list-icon {
    width: 70px;
  }

  .card-style01 .list-desc {
    padding: 45px 5% 25px;
  }

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

  .card-style02 .list-icon {
    margin-bottom: 3px;
  }

  .card-style02 .list-icon img {
    max-height: 80px;
    max-width: 80px;
  }

  .card-style02 .list-txt {
    font-size: 1.125rem;
  }

  .card-style03 .item {
    padding: 15px;
  }

  .card-style03 .list-txt {
    font-size: 1rem;
  }

  .card-style04.gapM {
    gap: 32px;
  }

  .card-style04 .card-ttl {
    font-size: 1.125rem;
  }

  .card-style04 .item:has(p) .card-ttl {
    margin-bottom: 5px;
  }

  .card-style05.gapM {
    gap: 32px;
  }

  .card-style05.border .item {
    padding: 15px;
  }

  .card-style05 .card-ttl {
    font-size: 1.125rem;
  }

  .card-style06 .card-ttl02 {
    font-size: 1.125rem;
  }
}

.list-modal>li {
  cursor: pointer;
}

.list-modal>li>button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: inherit;
}

.list-modal .list-img {
  margin-bottom: 10px;
  position: relative;
  transition: opacity 0.5s;
  z-index: 0;
}

.list-modal .list-img::before {
  content: "";
  background: #fff url(../images/share/icon_zoom.svg) no-repeat center / 70%;
  width: 26px;
  height: 26px;
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 1;
}

.list-modal .list-ttl {
  font-size: 1.125rem;
}

@media (any-hover: hover) {
  .list-modal .list-img:hover {
    opacity: 0.5;
  }
}

body:has(dialog:modal) {
  overscroll-behavior: none;
}

.modal-contents {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  width: 90%;
  max-width: 1024px;
  margin: auto;
}

.modal-contents[open] {
  animation: slide-up 0.4s ease-out;
}

.modal-contents::backdrop {
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal-close-top {
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  top: 15px;
  width: 50px;
  height: 50px;
  z-index: 10;
  transition: 0.5s;
}

.modal-close-top::before,
.modal-close-top::after {
  background: var(--color_primary);
  content: "";
  display: block;
  width: 40%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.modal-close-top::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close-top::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (any-hover: hover) {
  .modal-close-top:hover {
    border-color: var(--color_primary);
  }
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translate(0, 15px);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.modal-layout {
  display: flex;
  gap: 35px;
  padding: 40px;
}

.modal-layout .l-img {
  width: 38%;
}

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

.modal-layout .l-ttl {
  color: var(--color_primary);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .list-modal.gapS {
    gap: 25px;
  }

  .modal-layout {
    flex-direction: column;
    gap: 20px;
    padding: 50px 5% 30px;
  }

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

  .modal-layout .l-ttl {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }

  .modal-close-top {
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
  }

  .modal-close-top::before, .modal-close-top::after {
    width: 50%;
  }
}

.box-style01 {
  background-color: var(--color_white);
  box-shadow: 0 0 20px rgba(20, 51, 132, 0.2);
  padding: 60px 60px 54px;
  position: relative;
  z-index: 0;
}

.box-style01::before {
  content: "";
  background: url(../images/share/deco_wave.png) no-repeat center/contain;
  width: 122px;
  height: auto;
  aspect-ratio: 122/83;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: -1;
}

.box-style01 .box-ttl {
  font-size: 1.875rem;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  text-align: center;
}

.box-style01 p {
  line-height: 1.8;
}

.box-style02 {
  padding-top: 17px;
  position: relative;
}

.box-style02 .label {
  background-color: var(--color_white);
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.875rem;
  letter-spacing: 0;
  line-height: 1.2;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 12px;
  position: absolute;
  top: 0;
  left: 50px;
}

.box-style02 .l-inner {
  border: 1px solid var(--color_primary);
  padding: 80px 40px;
}

.box-style02 .box-btns {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.box-style02 .btn-more {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1.125rem;
  min-width: 390px;
  padding: 18px 25px;
}

.box-style02 .btn-more::before {
  border-color: var(--color_white);
}

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

  .box-style02 .btn-more:hover::before {
    border-color: var(--color_primary);
  }
}

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

  .box-style01::before {
    width: 100px;
    bottom: 10px;
    right: 10px;
  }

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

  .box-style02 .label {
    left: 10px;
  }

  .box-style02 .l-inner {
    padding: 45px 5% 30px;
  }

  .box-style02 .box-btns {
    flex-direction: column;
    gap: 15px;
  }

  .box-style02 .btn-more {
    font-size: 1rem;
    min-width: auto;
    width: 100%;
    padding: 13px 25px;
  }
}

.l-style01 {
  display: flex;
  gap: 7.5%;
  margin: 0 0 0 -10%;
}

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

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

.l-style01.reverse {
  flex-direction: row-reverse;
  margin: 0 -10% 0 0;
}

.l-style01 .l-en {
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 4.375rem;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 5px;
}

.l-style01 .l-ttl {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.l-style02 {
  display: flex;
}

.l-style02 .l-img {
  position: relative;
  width: 45%;
  z-index: 0;
}

.l-style02 .l-desc {
  background: var(--color_bg);
  padding: 55px 55px 55px 150px;
  margin: 50px 0 0 -100px;
  min-height: 320px;
  flex: 1;
}

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

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

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

@media (max-width: 800px) {
  .l-style01 {
    flex-direction: column;
    gap: 25px;
    margin: 0 -5vw;
  }

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

  .l-style01.reverse {
    flex-direction: column;
    margin: 0 -5vw;
  }

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

  .l-style01 .l-en {
    font-size: 3.5rem;
  }

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

  .l-style02 {
    flex-direction: column;
  }

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

  .l-style02 .l-desc {
    padding: 120px 5vw 30px;
    margin: -80px -5vw 0;
    min-height: auto;
  }

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

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

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

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

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

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

.staff-layout .job {
  font-family: var(--font_jp);
  margin-bottom: 25px;
}

.staff-layout .l-ttl {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1;
  margin-bottom: 35px;
}

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

.staff-layout .kana {
  color: var(--color_primary);
  font-family: var(--font_en);
  letter-spacing: 0;
  font-size: 1.125rem;
}

.card-profile {
  background-color: var(--color_bg);
  border-radius: 5px;
  padding: 30px;
}

.card-profile .card-ttl {
  color: var(--color_primary);
  border-bottom: 1px dashed var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.dl-career {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px 0;
  line-height: 1.5;
}

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

.staff-list .staff-name {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  margin-bottom: 10px;
  text-align: center;
}

@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-ttl {
    margin-bottom: 25px;
  }

  .staff-layout .job {
    margin-bottom: 10px;
  }

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

  .staff-layout .kana {
    font-size: 1rem;
  }

  .card-profile {
    padding: 20px;
  }

  .dl-career {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dl-career dd+dt {
    margin-top: 10px;
  }
}

.petpass-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-around;
}

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

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

.flow-style {
  border: 2px solid var(--color_border);
  background: #fff;
  padding: 5%;
}

.flow-style>li+li {
  border-top: 1px solid #ccc;
  padding-top: 70px;
  margin-top: 70px;
  position: relative;
}

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

.flow-style .flow-ttl {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid var(--color_border);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.flow-style .flow-ttl .num {
  background: var(--color_primary);
  display: inline-block;
  color: var(--color_white);
  font-size: 0.75rem;
  line-height: 23px;
  padding: 0 10px;
  margin-top: 3px;
}

.flow-style .wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 5%;
}

.flow-style .flow-img {
  text-align: center;
  width: 30%;
}

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

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

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

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

.flow-style02 .flow-num {
  font-family: var(--font_en);
  font-size: 1.5625rem;
  font-weight: bold;
  color: var(--color_secondary);
  line-height: 1;
  position: absolute;
  top: -15px;
  left: 20px;
}

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

.flow-style02 .flow-ttl {
  font-size: 1.125rem;
  font-family: var(--font_jp);
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.flow-style02 .flow-ttl.center {
  text-align: center;
}

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

  .flow-style>li+li {
    padding-top: 50px;
    margin-top: 50px;
  }

  .flow-style .flow-ttl {
    flex-direction: column;
    gap: 10px;
    font-size: 1.25rem;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .flow-style .flow-ttl .num {
    margin: 0;
  }

  .flow-style .wrap {
    flex-direction: column;
    gap: 20px;
  }

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

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

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

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
}

.before-after .item {
  text-align: center;
}

.before-after .item+.item .item-img::before {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 17px;
  border-color: transparent transparent transparent var(--color_secondary);
  position: absolute;
  top: 50%;
  left: -33px;
  transform: translateY(-50%);
}

.before-after .item-img {
  display: grid;
  place-items: center;
  position: relative;
  height: 350px;
}

.before-after .item-img img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  max-height: 350px;
}

.before-after .item-ttl {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  margin-top: 5px;
}

.before-after .item-ttl::before, .before-after .item-ttl::after {
  content: "-";
  margin: 0 5px;
}

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

  .before-after .item+.item .item-img::before {
    top: -38px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .before-after .item-img {
    height: auto;
  }
}

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

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

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

.tel-layout .tel {
  font-size: 2.125rem;
}

.tel-layout .tel img {
  width: 20px;
}

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

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

.tel-layout .l-time dt {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color_primary);
  border-radius: 2px;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 0.6875rem;
  padding: 2px 10px;
}

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

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

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

.anchor-btn {
  display: flex;
  gap: 10px;
}

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

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

.faq-style dt {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  padding-left: 60px;
  margin-bottom: 15px;
  position: relative;
}

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

.faq-style dd .faq-icon {
  background-color: var(--color_secondary);
  top: -4px;
}

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

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

  .faq-style dt {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 15px;
    padding-left: 50px;
  }

  .faq-style dd {
    padding-left: 50px;
  }

  .faq-style .faq-icon {
    top: -5px;
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: none;
  }
}

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

.dl-privacy dt {
  border-top: 1px solid var(--color_border);
  font-family: var(--font_jp);
  font-size: 1.625rem;
  letter-spacing: 0.15em;
  line-height: 1.5;
  padding-top: 40px;
  margin-bottom: 20px;
  position: relative;
}

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

@media (max-width: 800px) {
  .dl-privacy dt {
    font-size: 1.375rem;
  }
}

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

.sp-only {
  display: none;
}

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

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.fade {
  transition: opacity 0.5s;
}

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

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

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

.c-red {
  color: #e90000;
}

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

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

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 8px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin-bottom: 32px;
}

.mbXM {
  margin-bottom: 48px;
}

.mbL {
  margin-bottom: 64px;
}

.mbXL {
  margin-bottom: 96px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.grid {
  display: grid;
}

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

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

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

.gapXS {
  grid-gap: 8px;
}

.gapS {
  grid-gap: 16px;
}

.gapM {
  grid-gap: 32px;
}

.gapXM {
  grid-gap: 48px;
}

.gapL {
  grid-gap: 64px;
}

.gapXL {
  grid-gap: 96px;
}

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

  .sp-only {
    display: block;
  }

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

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

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

  .mbXS {
    margin-bottom: 4px;
  }

  .mbS {
    margin-bottom: 8px;
  }

  .mbM {
    margin-bottom: 16px;
  }

  .mbXM {
    margin-bottom: 32px;
  }

  .mbL {
    margin-bottom: 48px;
  }

  .mbXL {
    margin-bottom: 64px;
  }

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

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

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

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

  .gapXS {
    grid-gap: 4px;
  }

  .gapS {
    grid-gap: 8px;
  }

  .gapM {
    grid-gap: 16px;
  }

  .gapXM {
    grid-gap: 32px;
  }

  .gapL {
    grid-gap: 48px;
  }

  .gapXL {
    grid-gap: 64px;
  }
}

.tel {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.4375rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.sns-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

/*------------
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: 80px;
  height: 80px;
}

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

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

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

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

.splide__pagination__page.is-active {
  background: var(--color_primary);
  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;
}
