@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #434343;
  --color_link: #434343;
  --color_border: #e9e9e9;
  --color_border02: #c6cfcb;
  --color_primary: #197149;
  --color_secondary: #DC010B;
  --color_tertiary: #EFFFEF;
  --color_bg01: #FDFBF7;
  --color_bg02: #eef4ef;
  --color_white: #fff;
  --color_black: #434343;
  --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:
    "Local Noto Sans JP",
    "Noto Sans JP",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    sans-serif;
  --font_jp: "Shippori Mincho", serif;
  --font_en: "Shippori Mincho", serif;
  --font_weight: normal;
  --font_size: 0.9375rem;
  --line_height: 2.0;
  --letter_spacing: .05em;
}

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

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

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

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

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

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

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

::selection {
  background: #d4dcd6;
}

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

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

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

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

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

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

em {
  font-style: normal;
}

:target {
  scroll-margin-top: 120px;
}

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

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

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

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

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

/*-----------------------------------------------------------
診療時間
-----------------------------------------------------------*/
.time-table {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-collapse: collapse;
  font-family: var(--font_jp);
  font-size: 1rem;
  table-layout: fixed;
  width: 100%;
}

@media (max-width: 800px) {
  .time-table {
    font-size: 0.875rem;
  }
}

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

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

@media (max-width: 800px) {

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

.time-table th {
  font-weight: 500;
}

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

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

.time-table tbody th {
  background-color: var(--color_tertiary);
}

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

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

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

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

/*-----------------------------------------------------------
診療カレンダー
-----------------------------------------------------------*/
:root {
  --event01: #DC010B;
  --event02: #1A724A;
}

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

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

.business-calendar-box-wrap .business-calendar caption {
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  margin: 0 0 10px;
  position: relative;
}

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

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

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

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

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

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

.business-calendar-box-wrap .business-calendar .attr0::before,
.business-calendar-box-wrap .business-calendar .attr1::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);
}

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

.list-event li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  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);
}

@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-more {
  display: inline-block;
  background-color: var(--color_primary);
  border-radius: 50px;
  box-shadow: 4px 4px 4px rgba(67, 67, 67, 0.15);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 0.875rem;
  font-weight: bold;
  min-height: 50px;
  min-width: 210px;
  padding: 13px 30px 11px 30px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s;
}

.btn-more.has-paren {
  padding: 13px 25px 11px 40px;
}

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

@media (any-hover: hover) {
  .btn-more:hover {
    background-color: oklch(from var(--color_primary) calc(l + 0.1) c h);
  }
}

.btn-more[target=_blank]::after {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.btn-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #DC010B;
  border-radius: 50px;
  box-shadow: 4px 4px 4px rgba(67, 67, 67, 0.15);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 0.875rem;
  font-weight: bold;
  height: 50px;
  width: 160px;
  padding: 11px 20px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .btn-icon:hover {
    background-color: oklch(from #DC010B calc(l - 0.1) c h);
  }
}

@media (max-width: 800px) {

  .btn-more,
  .btn-icon {
    width: 100%;
  }
}

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

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

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

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

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

.list-category-links>li>a {
  display: block;
  border-bottom: 1px solid var(--color_border);
  padding: 10px 0;
  transition: background-color 0.3s, padding-left 0.3s, border-radius 0.3s, border-color 0.3s;
}

@media (any-hover: hover) {
  .list-category-links>li>a:hover {
    border-radius: 10px;
    border-color: transparent;
    background-color: #f5efe3;
    padding-left: 10px;
  }
}

.list-category-links ul {
  margin-top: 15px;
  padding-left: 7px;
}

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

.list-category-links ul li::before {
  content: "";
  background-color: var(--color_primary);
  width: 7px;
  height: 1px;
  position: absolute;
  top: 10px;
  left: 0;
}

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

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

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

/*ブログ*/
.post-under-blog {
  margin-bottom: 50px;
}

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

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

  .post-under-blog a:hover::after {
    background-color: var(--color_primary);
  }
}

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

.post-under-blog a::after {
  content: "";
  background-color: #f6fbf9;
  border: 1px solid var(--color_primary);
  border-radius: 20px;
  width: 40px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 0;
  transition: background-color 0.3s;
}

.post-under-blog .post-img img {
  border: 1px solid var(--color_primary);
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 7/5;
}

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

.post-under-blog time {
  display: block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 0.875rem;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

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

.post-under-blog .category {
  display: inline-block;
  background-color: var(--color_primary);
  border-radius: 3px;
  color: var(--color_white);
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 0 10px 1px;
  text-align: center;
}

.post-under-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  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,
  .post-under-blog a::after {
    display: none;
  }

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

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

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

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

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

/*詳細ページ*/
.layout-single-post {
  background-color: var(--color_bg01);
  border-radius: 20px;
  box-shadow: 4px 4px 4px rgba(67, 67, 67, 0.1);
  padding: 5%;
  position: relative;
  width: min(90%, 1024px);
  margin: 50px auto 0;
}

.layout-single-post::before {
  content: "";
  background-color: var(--color_primary);
  height: 5px;
  position: absolute;
  top: 15px;
  left: 50px;
  right: 50px;
  border-radius: 10px;
}

.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;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 0.875rem;
  line-height: 1.5;
  text-box: trim-both cap alphabetic;
}

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

.layout-single-post .category {
  display: inline-block;
  background-color: var(--color_primary);
  border-radius: 3px;
  color: var(--color_white);
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 0 10px 1px;
  text-align: center;
}

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

@media (max-width: 800px) {
  .layout-single-post {
    margin: 30px auto 0;
    padding: 50px 15px 20px;
  }

  .layout-single-post::before {
    top: 10px;
    left: 15px;
    right: 15px;
  }

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

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

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

.post-number span:hover,
.post-number a:hover {
  color: #333;
}

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

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

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

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

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

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

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

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

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

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

.post-number-single .all {
  background: var(--color_primary);
  border-radius: 10px;
  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);
  border-radius: 10px;
  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_primary);
}

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

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

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  background-color: var(--color_white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 2.5%;
  height: 120px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.h-ttl {
  font-family: var(--font_base);
  font-size: 0.8125rem;
  font-weight: 400;
  margin-bottom: 5px;
}

.h-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.h-info .tel {
  font-size: 1.4375rem;
}

.h-info .tel img {
  width: 17px;
}

.h-info .tel-txt {
  font-size: 0.75rem;
  line-height: 1.3;
}

.h-btn {
  display: inline-block;
  background-color: var(--color_primary);
  border-radius: 50px;
  box-shadow: 4px 4px 4px rgba(67, 67, 67, 0.15);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 0.875rem;
  font-weight: bold;
  height: 50px;
  width: 160px;
  padding: 11px 20px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s;
}

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

.h-btn.icon {
  background-color: #DC010B;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.h-btn.icon::before {
  content: none;
}

@media (any-hover: hover) {
  .h-btn:hover {
    background-color: oklch(from var(--color_primary) calc(l + 0.1) c h);
  }

  .h-btn.icon:hover {
    background-color: oklch(from #DC010B calc(l - 0.1) c h);
  }
}

@media (max-width: 1200px) {
  .header {
    display: block;
    height: 86px;
    padding: 10px 80px 10px 2.5%;
  }

  .h-ttl {
    font-size: 0.6875rem;
    overflow-x: scroll;
    padding: 0;
    width: 100%;
    white-space: nowrap;
  }

  .h-logo img {
    max-height: 42px;
    width: auto;
  }

  .h-utility {
    display: none;
  }
}

/*------------
Gnavi
--------------*/
.gnavi-links {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  font-family: var(--font_jp);
  font-weight: bold;
}

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

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

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

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

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

.dropdown .sub-menu {
  display: grid;
  grid-gap: 5px;
  pointer-events: none;
  background-color: var(--color_bg01);
  border-radius: 20px;
  font-family: var(--font_base);
  font-weight: 400;
  padding: 40px;
  position: absolute;
  top: 30px;
  right: 50%;
  width: -moz-max-content;
  width: max-content;
  min-width: 150px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

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

.dropdown .sub-menu>li {
  padding-left: 17px;
  position: relative;
}

.dropdown .sub-menu>li::before {
  content: "";
  background-color: var(--color_primary);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 13px;
  left: 0;
}

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

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

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background-color: var(--color_bg01);
  margin-top: auto;
  position: relative;
  padding: 80px 0 0;
}

.f-contents {
  display: grid;
  grid-template-columns: 490px 1fr;
  gap: 30px;
  margin-inline: auto;
  margin-bottom: 75px;
  width: min(90%, 1024px);
}

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

.f-sns {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.f-txt {
  margin-bottom: 15px;
}

.site-map {
  display: flex;
  gap: 10px 60px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
}

.f-links {
  display: grid;
  gap: 7px;
}

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

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

.f-links .f-links-ttl {
  margin-bottom: 6px;
}

.f-links .sub-menu {
  display: grid;
  gap: 7px;
}

.f-links .sub-menu li {
  padding-left: 17px;
  position: relative;
}

.f-links .sub-menu li::before {
  content: "";
  background-color: var(--color_primary);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 13px;
  left: 0;
}

.f-bottom {
  background-color: var(--color_primary);
  color: var(--color_white);
}

.copyright {
  margin-inline: auto;
  text-align: center;
  width: min(90%, 1024px);
}

.copyright small {
  font-size: 0.75rem;
}

.pagetop {
  position: absolute;
  bottom: 70px;
  right: 20px;
  transition: transform 0.3s;
}

@media (any-hover: hover) {
  .pagetop:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 1024px) {
  .f-contents {
    grid-template-columns: 1fr;
  }

  .site-map {
    justify-content: flex-start;
  }
}

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

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

  .site-map {
    gap: 10px;
  }

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

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

.sp-navi {
  display: none;
}

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

  .sp-navi {
    display: block;
  }

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

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

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

  .sp-navi-btns .item:not(:last-child) {
    border-right: 1px solid var(--navi-border-color);
  }

  .sp-navi-btns .item:nth-child(2) {
    background-color: #DC010B;
  }

  .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: var(--color_primary);
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    position: fixed;
    top: 20px;
    right: 16px;
    z-index: 9999;
  }

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

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

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

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

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

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

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

  .sp-navi-drawer {
    pointer-events: none;
    visibility: hidden;
    background: var(--color_white);
    color: var(--color_black);
    font-size: 0.9375rem;
    padding: 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-logo img {
    width: min(300px, calc(100% - 65px));
  }

  .sp-navi-list {
    border-top: 1px solid var(--color_gray);
    font-family: var(--font_jp);
    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_primary);
    -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_primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    transition: 0.3s;
    transform-origin: 50% 0;
  }

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

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

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

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

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

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

.layout-sidebar .l-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  line-height: 1;
  margin-bottom: 15px;
}

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

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

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

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

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  margin-top: 120px;
  padding: 0 0 0 10%;
  position: relative;
}

.hero::before {
  content: "";
  background-color: var(--color_bg01);
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.hero .splide__slide img {
  aspect-ratio: 1620 / 565;
  border-radius: 20px 0 0 20px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero .splide__controls {
  position: absolute;
  bottom: 15px;
  right: 20px;
  gap: 10px;
  margin-top: 0;
}

@media (max-width: 1200px) {
  .hero {
    margin-top: 82px;
  }

  .hero .splide__controls {
    bottom: auto;
    top: 10px;
    right: 10px;
  }
}

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

  .hero .splide__slide img {
    aspect-ratio: 360 / 270;
    border-radius: 10px 0 0 10px;
  }
}

.contents {
  position: relative;
}

.hero-btn {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 3.3%;
  margin: auto;
  width: 100%;
}

.hero-btn a {
  display: grid;
  width: 199px;
  height: auto;
  aspect-ratio: 1;
  background-image: linear-gradient(-45deg, #fff 0%, #EAFFEA 50%, #fff 100%);
  background-size: 200% auto;
  background-position: left center;
  border: 2px solid var(--color_primary);
  border-radius: 50%;
  box-shadow: 0 0 8px 0 rgba(67, 67, 67, 0.2);
  padding: 30px 20px 40px;
  position: relative;
  transition: transform 0.3s, background-position 0.4s ease;
}

.hero-btn a::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-mask: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  width: 42px;
  height: 16px;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-btn a:last-child {
  background-image: linear-gradient(-45deg, #FBE5E6 0%, #FCCACC 50%, #FBE5E6 100%);
  border: 2px solid #DC010B;
}

.hero-btn a:last-child::before {
  background-color: #DC010B;
}

@media (any-hover: hover) {
  .hero-btn a:hover {
    background-position: right center;
    transform: translateY(-5px);
  }
}

.hero-btn .icon {
  display: grid;
  place-content: center;
  height: clamp(35px, 4.3vw, 78px);
  margin-inline: auto;
}

.hero-btn .txt {
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

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

  .hero-btn a {
    padding: 30px 15px 24px;
    width: 150px;
  }


  .hero-btn a::before {
    width: 31px;
    height: 12px;
    bottom: 18px;
  }

  .hero-btn .icon {
    height: clamp(35px, 2.3vw, 78px);
  }

  .hero-btn img {
    max-height: 50px;
    max-width: 54px;
  }

  .hero-btn .txt {
    font-size: 0.9375rem;
  }
}

@media (max-width: 800px) {
  .hero-btn {
    position: static;
    transform: none;
    gap: 12px 3%;
    margin: -30px 0 0;
    padding: 0 12px 0;
    width: 100%;
  }

  .hero-btn a {
    width: 31%;
    padding: 0;
    place-content: center;
    gap: 5px;
  }

  .hero-btn a::before {
    width: 18px;
    height: 7px;
    bottom: 9px;
  }

  .hero-btn .icon {
    height: clamp(35px, 10.5vw, 58px);
  }

  .hero-btn .txt {
    font-size: clamp(0.5625rem, 3vw, 1.25rem);
    line-height: 1.25;
  }
}

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

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

.t-h2 [lang=en] {
  color: var(--color_primary);
  font-size: 1.25rem;
  font-weight: bold;
}

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

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

  .t-h2 [lang=en] {
    font-size: 1rem;
  }
}

/*------------
Section
--------------*/
.sec01 {
  padding: 170px 0 90px;
  position: relative;
}

.sec01::before {
  content: "";
  background-color: var(--color_bg01);
  width: 100%;
  height: 100%;
  inset: 0;
  position: absolute;
  z-index: -1;
}

.l-sec01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "news calendar" "time-table time-table";
  gap: 20px 42px;
  margin-bottom: 50px;
}

.l-sec01 .col:nth-child(1) {
  grid-area: news;
}

.l-sec01 .col:nth-child(2) {
  grid-area: calendar;
}

.l-sec01 .col:nth-child(3) {
  grid-area: time-table;
}

.l-sec01 .l-ttl {
  border-bottom: 1px solid #EEEEEE;
  font-family: var(--font_jp);
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.l-sec01 .l-ttl .jp {
  font-size: 1.5625rem;
  letter-spacing: 0.1em;
}

.l-sec01 .l-ttl [lang=en] {
  color: var(--color_primary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

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

.sec01-box {
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  border-radius: 20px;
  padding: 50px 50px 35px;
}

.sec01-box .box-inner {
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.sec01-box .box-ttl {
  color: var(--color_primary);
  font-size: 1.3125rem;
  margin-bottom: 10px;
  text-align: center;
}

.sec01-box .box-txt {
  margin-bottom: 30px;
}

.sec01-box .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.sec01-box .sec01-list-disc>li {
  font-size: 1.0625rem;
  padding-left: 20px;
  position: relative;
}

.sec01-box .sec01-list-disc>li::before {
  content: "";
  background-color: var(--color_primary);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 14px;
  left: 0;
}

.sec01-box .l-box {
  background-color: var(--color_tertiary);
  border-radius: 10px;
  height: 100%;
  padding: 9px 40px;
  width: -moz-fit-content;
  width: fit-content;
}

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

  .l-sec01 {
    grid-template-columns: 1fr;
    grid-template-areas: "news" "calendar" "time-table";
    gap: 35px;
    margin-bottom: 30px;
  }

  .l-sec01 .l-ttl {
    margin-bottom: 15px;
  }

  .l-sec01 .l-ttl .jp {
    font-size: 1.3125rem;
  }

  .l-sec01 .l-ttl [lang=en] {
    font-size: 0.875rem;
  }

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

  .sec01-box {
    border-radius: 10px;
    padding: 30px 20px 25px;
  }

  .sec01-box .box-inner {
    width: 100%;
  }

  .sec01-box .box-ttl {
    font-size: 1.125rem;
    text-align: left;
  }

  .sec01-box .box-txt {
    margin-bottom: 20px;
  }

  .sec01-box .wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sec01-box .sec01-list-disc>li {
    font-size: 0.9375rem;
  }

  .sec01-box .sec01-list-disc>li::before {
    top: 11px;
  }

  .sec01-box .l-box {
    padding: 15px 20px;
    width: 100%;
  }
}

.sec02 {
  overflow: hidden;
  padding: 100px 0 45px;
  position: relative;
}

.sec02::before,
.sec02::after {
  content: "";
  background: url(../images/logo_bg.png) no-repeat center/contain;
  width: 435px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  z-index: -1;
}

.sec02::before {
  top: 0;
  right: 3%;
}

.sec02::after {
  bottom: 21%;
  left: 4.5%;
}

.sec02-anchor-link {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.sec02-anchor-link a {
  display: grid;
  place-content: center;
  background-color: #EFFFEF;
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  box-shadow: 4px 4px 4px rgba(67, 67, 67, 0.1);
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: bold;
  padding: 11px 47px 11px 27px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s;
}

.sec02-anchor-link a::before {
  content: "";
  background: url(../images/share/btn_arrow03.svg) no-repeat center/contain;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .sec02-anchor-link a:hover {
    background-color: var(--color_bg01);
  }
}

.l-sec02 {
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-areas: "img desc";
  gap: 5%;
  padding: 0 7.4% 0 0;
}

.l-sec02 .l-img {
  grid-area: img;
}

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

.l-sec02 .l-desc {
  grid-area: desc;
  display: flex;
  flex-direction: column;
}

.l-sec02 .l-ttl {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--color_primary);
  font-size: 1.875rem;
  margin: 55px 0 25px;
}

.l-sec02 .l-ttl::after {
  content: "";
  background-color: var(--color_primary);
  width: 100%;
  height: 1px;
  flex: 1;
}

.l-sec02 .l-txt {
  margin: 0 0 auto;
}

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

.l-sec02.reverse {
  grid-template-columns: 1fr 50%;
  grid-template-areas: "desc img";
}

.l-sec02+.l-sec02 {
  padding-top: 50px;
}

.sec02-box {
  display: flex;
  gap: 25px;
  background-color: var(--color_bg01);
  border-radius: 20px;
  box-shadow: 4px 4px 4px rgba(67, 67, 67, 0.1);
  margin: 65px 0 60px;
  padding: 40px;
  position: relative;
  transition: background-color 0.3s;
}

.sec02-box .box-img img {
  border-radius: 10px;
}

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

.sec02-box .label {
  background-color: var(--color_secondary);
  border-radius: 5px;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 10px;
  padding: 0 20px;
  width: -moz-fit-content;
  width: fit-content;
}

.sec02-box .box-ttl {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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

.sec02-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 28px;
}

.sec02-card .item {
  display: inline-block;
  border-radius: 10px;
}

.sec02-card .card-img {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.sec02-card .card-img img {
  transition: scale 0.3s;
  width: 100%;
}

.sec02-card .card-desc {
  background-color: var(--color_tertiary);
  border-radius: 0 0 10px 10px;
  padding: 8px 22px 20px;
  position: relative;
}

.sec02-card .card-desc::before {
  content: "";
  background-image: linear-gradient(to bottom, rgba(239, 255, 239, 0) 0%, rgb(239, 255, 239) 100%);
  width: 100%;
  height: 48px;
  position: absolute;
  top: -48px;
  left: 0;
}

.sec02-card .card-ttl {
  border-bottom: 1px solid #DBDBDB;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 18px;
  padding-bottom: 3px;
  position: relative;
}

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

.sec02-card .card-btn {
  font-family: var(--font_jp);
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-right: 36px;
  position: relative;
  text-align: right;
}

.sec02-card .card-btn::before {
  content: "";
  background: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

@media (any-hover: hover) {
  .sec02-card .item:hover .card-img img {
    scale: 1.1;
  }

  .sec02-card .item:hover .card-btn::before {
    transform: translate(5px, -50%);
  }
}

@media (max-width: 1200px) {
  .sec02-card .card-desc {
    padding: 8px 15px 20px;
  }

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

  .sec02-card .card-ttl::before {
    width: 60px;
  }
}

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

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

  .sec02::before,
  .sec02::after {
    width: 200px;
  }

  .sec02::before {
    right: -5%;
  }

  .sec02::after {
    bottom: auto;
    top: 30%;
    left: -8%;
  }

  .sec02-anchor-link {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-bottom: 40px;
  }

  .sec02-anchor-link a {
    font-size: 0.65rem;
    line-height: 1.3;
    padding: 10px 25px 8px 13px;
  }

  .sec02-anchor-link a::before {
    width: 14px;
    height: 14px;
    right: 9px;
  }

  .l-sec02 {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "desc";
    gap: 20px;
  }

  .l-sec02 .l-img img {
    border-radius: 10px;
  }

  .l-sec02 .l-ttl {
    gap: 12px;
    font-size: 1.375rem;
    margin: 0 0 15px;
  }

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

  .l-sec02.reverse {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "desc";
  }

  .l-sec02+.l-sec02 {
    padding-top: 40px;
  }

  .sec02-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    border-radius: 10px;
    margin: 40px 0 35px;
    padding: 25px 20px 35px;
  }

  .sec02-box::before {
    width: 30px;
    height: 30px;
    top: auto;
    bottom: 15px;
    right: 15px;
    transform: none;
  }

  .sec02-box .box-img {
    width: 100%;
  }

  .sec02-box .box-img img {
    width: 100%;
  }

  .sec02-box .label {
    font-size: 1rem;
    padding: 0 15px;
  }

  .sec02-box .box-ttl {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  .sec02-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .sec02-card .card-desc {
    padding: 8px 12px 16px;
  }

  .sec02-card .card-ttl {
    font-size: 0.875rem;
    margin-bottom: 12px;
  }

  .sec02-card .card-btn {
    font-size: 0.875rem;
    padding-right: 28px;
  }

  .sec02-card .card-btn::before {
    width: 20px;
    height: 20px;
  }
}

.sec03 {
  overflow: hidden;
  padding: 70px 0 130px;
  position: relative;
  z-index: 0;
}

.sec03::before,
.sec03::after {
  content: "";
  background: url(../images/logo_bg.png) no-repeat center/contain;
  width: 435px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  z-index: -1;
}

.sec03::before {
  top: 0;
  left: 2%;
}

.sec03::after {
  bottom: -12%;
  right: -3%;
}

.sec03-feature {
  display: grid;
  grid-template-columns: 46.5% 1fr;
  gap: 60px;
  align-items: center;
}

.sec03-img {
  height: 100%;
}

.sec03-img .sec03-img-target {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sec03-list {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
}

.sec03-item {
  border-bottom: 1px solid var(--color_border);
  position: relative;
}

.sec03-item::before {
  content: "";
  background-color: var(--color_primary);
  width: 100px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.sec03-item a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  height: 100%;
  padding: 24px 55px 24px 0;
  position: relative;
}

.sec03-item a::before {
  content: "";
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

.sec03-item a::after {
  content: "";
  border-top: 2px solid var(--color_primary);
  border-right: 2px solid var(--color_primary);
  width: 7px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s;
}

.sec03-thumb {
  display: none;
}

.sec03-item .num {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
}

.sec03-item .txt {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  color: #B8B8B7;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.sec03-item.is-active a::before {
  background-color: var(--color_primary);
}

.sec03-item.is-active a::after {
  border-color: var(--color_white);
}

.sec03-item.is-active .txt {
  color: var(--color_text);
}

@media (hover: none) and (pointer: coarse) {
  .sec03-item a::before {
    background-color: var(--color_primary);
  }

  .sec03-item a::after {
    border-color: var(--color_white);
  }

  .sec03-item .txt {
    color: var(--color_text);
  }
}

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

  .sec03::before,
  .sec03::after {
    width: 200px;
  }

  .sec03-feature {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sec03-img {
    display: none;
  }

  .sec03-thumb {
    display: block;
    flex-shrink: 0;
  }

  .sec03-thumb img {
    aspect-ratio: 114 / 133;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
  }

  .sec03-item::before {
    width: 60px;
  }

  .sec03-item a {
    gap: 16px;
    grid-template-columns: 30% 1fr;
    padding: 16px 50px 16px 0;
  }

  .sec03-item a::before {
    width: 28px;
    height: 28px;
    background-color: var(--color_white);
  }

  .sec03-item a::after {
    border-top: 1px solid var(--color_primary);
    border-right: 1px solid var(--color_primary);
    width: 5px;
    height: 5px;
    right: 13px;
  }

  .sec03-item.is-active a::before {
    background-color: var(--color_white);
  }

  .sec03-item.is-active a::after {
    border-color: var(--color_primary);
  }

  .sec03-item a:hover::before {
    background-color: var(--color_primary);
  }

  .sec03-item a:hover::after {
    border-color: var(--color_white);
  }

  .sec03-item .num {
    display: none;
  }

  .sec03-item .txt {
    font-size: 0.9375rem;
    color: var(--color_text);
  }
}

.sec04 {
  background: url(../images/sec04_bg.jpg) no-repeat center/cover;
  padding: 80px 0;
  position: relative;
  z-index: 0;
}

.sec04::before {
  content: "";
  background-color: rgba(253, 251, 247, 0.87);
  inset: 0;
  position: absolute;
  z-index: -1;
}

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

.sec04 .l-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 50px;
}

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

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

.sec05 {
  overflow: hidden;
  padding: 110px 0;
  position: relative;
  z-index: 0;
}

.sec05::before,
.sec05::after {
  content: "";
  background: url(../images/logo_bg.png) no-repeat center/contain;
  width: 435px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  z-index: -1;
}

.sec05::before {
  top: -7%;
  left: 1%;
}

.sec05::after {
  bottom: -4%;
  left: 2%;
}

.l-sec05 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 42px;
  padding-bottom: 110px;
}

.l-sec05 .l-ttl {
  border-bottom: 1px solid #EEEEEE;
  font-family: var(--font_jp);
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.l-sec05 .l-ttl .jp {
  font-size: 1.5625rem;
  letter-spacing: 0.1em;
}

.l-sec05 .l-ttl [lang=en] {
  color: var(--color_primary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

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

.sec05-box {
  background-color: var(--color_bg01);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 39.5%;
  grid-template-areas: "desc map";
  gap: 50px;
  padding: 60px 80px;
  position: relative;
}

.sec05-box::before {
  content: "";
  background: url(../images/logo_bg.png) no-repeat center/contain;
  width: 435px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  top: -50%;
  right: -24%;
  z-index: -1;
}

.sec05-box .box-map {
  grid-area: map;
}

.sec05-box .box-map iframe {
  height: 400px;
}

.sec05-box .box-desc {
  grid-area: desc;
}

.sec05-box .box-ttl {
  font-family: var(--font_jp);
  margin-bottom: 15px;
}

.sec05-box .box-ttl .jp {
  font-size: 1.5625rem;
  letter-spacing: 0.1em;
}

.sec05-box .box-ttl [lang=en] {
  color: var(--color_primary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.sec05-box .l-table th,
.sec05-box .l-table td {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  padding: 10px 20px;
  vertical-align: middle;
}

.sec05-box .l-table th {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: bold;
}

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

@media (max-width: 1024px) {
  .sec05-box {
    grid-template-columns: 1fr;
    grid-template-areas: "map" "desc";
  }
}

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

  .sec05::before,
  .sec05::after {
    width: 200px;
  }

  .l-sec05 {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 50px;
  }

  .l-sec05 .l-ttl {
    margin-bottom: 15px;
  }

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

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

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

  .sec05-box {
    border-radius: 10px;
    gap: 30px;
    padding: 30px 20px;
  }

  .sec05-box::before {
    display: none;
  }

  .sec05-box .box-map iframe {
    height: 250px;
  }

  .sec05-box .box-ttl .jp {
    font-size: 1.3125rem;
  }

  .sec05-box .box-ttl [lang=en] {
    font-size: 0.875rem;
  }

  .sec05-box .l-table colgroup,
  .sec05-box .l-table tbody,
  .sec05-box .l-table tr,
  .sec05-box .l-table th,
  .sec05-box .l-table td {
    display: block;
    width: 100%;
  }

  .sec05-box .l-table th,
  .sec05-box .l-table td {
    padding: 8px 12px;
  }

  .sec05-box .l-table th {
    font-size: 0.875rem;
  }

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

.t-news-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "ttl body" "btn body";
  gap: 0;
}

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

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

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

@media (max-width: 800px) {
  .t-news-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "ttl" "body" "btn";
    gap: 2.5rem;
  }
}

.post-top-news {
  display: grid;
}

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

.post-top-news time {
  display: inline-block;
  color: var(--color_primary);
  font-size: 0.8125rem;
  white-space: nowrap;
}

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

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

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

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

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

.post-top-blog a {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 15px;
  padding: 10px 0;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .post-top-blog a:hover {
    background-color: #eef3f1;
  }
}

.post-top-blog .post-img img {
  border: 1px solid var(--color_primary);
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 7/5;
}

.post-top-blog .post-desc {
  padding: 9px 0;
}

.post-top-blog .post-data {
  display: flex;
  align-items: baseline;
  gap: 5px 10px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.post-top-blog time {
  display: block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 0.8125rem;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

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

.post-top-blog .category {
  display: inline-block;
  background-color: var(--color_primary);
  border-radius: 3px;
  color: var(--color_white);
  font-size: 0.6875rem;
  line-height: 1.5;
  padding: 0 10px 1px;
  text-align: center;
}

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

.post-top-blog .post-txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  overflow-wrap: anywhere;
  line-height: 1.5;
}

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

@media (max-width: 800px) {
  .post-top-blog a {
    grid-template-columns: 100px 1fr;
    padding: 10px 0;
  }

  .post-top-blog .post-desc {
    padding: 3px 0;
  }

  .post-top-blog .post-ttl {
    font-size: 0.875rem;
  }

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

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  display: grid;
  align-items: center;
  background-color: var(--color_bg01);
  margin: 120px 0 0;
  padding: 110px 10%;
  position: relative;
  z-index: 0;
}

.page-header::before {
  content: "";
  background: url(../images/under/page-ttl-bg.jpg) no-repeat center/cover;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.page-ttl .jp {
  font-family: var(--font_jp);
  font-size: 3.125rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 2px var(--color_white), -1px 1px 2px var(--color_white), 1px -1px 2px var(--color_white), -1px -1px 2px var(--color_white);
  margin-bottom: 10px;
}

.page-ttl [lang=en] {
  text-box: trim-both cap alphabetic;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 2rem;
}

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

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

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

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

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

@media (max-width: 1200px) {
  .page-header {
    margin-top: 82px;
  }
}

@media (max-width: 800px) {
  .page-header {
    padding: 170px 3% 30px;
  }

  .page-header::before {
    width: 100%;
    height: 150px;
  }

  .page-ttl .jp {
    font-size: 1.625rem;
  }

  .page-ttl [lang=en] {
    font-size: 1.125rem;
  }

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

.u-h2,
.postdata h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  padding-bottom: 18px;
  position: relative;
  text-align: center;
}

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

.postdata h2 {
  font-size: 1.625rem;
  padding-bottom: 11px;
  text-align: left;
}

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

.u-h3,
.postdata h3 {
  font-size: 1.4375rem;
  margin-bottom: 30px;
  padding-left: 25px;
  position: relative;
}

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

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

.ttl-style01 {
  color: var(--color_primary);
  font-size: 1.4375rem;
  margin-bottom: 30px;
}

@media (max-width: 800px) {

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

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

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

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

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

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

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

.hidden {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

.list-check li {
  position: relative;
  background: var(--color_white);
  border: 1px solid #ccc;
  border-radius: 10px;
  font-weight: bold;
  padding: 10px 10px 10px 40px;
}

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

.list-check.col2 {
  gap: 10px 20px;
}

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

.list-check02 li {
  position: relative;
  font-weight: bold;
  padding: 0 0 5px 30px;
  border-bottom: 1px dashed var(--color_border02);
}

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

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

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

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

@media (max-width: 800px) {
  .list-check.col2 {
    gap: 10px 30px;
  }
}

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

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

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

.table-style01 .bg02 {
  background-color: var(--color_bg01);
  color: var(--color_text);
}

.table-style01 .th-img img {
  border-radius: 10px;
  border: 1px solid var(--color_border02);
  margin-bottom: 5px;
}

.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,
  .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 {
    width: 200%;
  }
}

.dl-infomation {
  display: grid;
  gap: 10px;
  background: var(--color_bg01);
  border-radius: 20px;
  box-shadow: 4px 4px 4px rgba(67, 67, 67, 0.1);
  padding: 30px;
}

.dl-infomation .item {
  display: grid;
  grid-template-columns: 30% 1fr;
}

.dl-infomation dt,
.dl-infomation dd {
  border-bottom: 1px solid var(--color_border02);
  padding: 15px 10px;
}

.dl-infomation dt {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-weight: bold;
}

@media (max-width: 800px) {
  .dl-infomation {
    padding: 20px 5%;
    gap: 0;
  }

  .dl-infomation dt,
  .dl-infomation dd {
    padding: 10px;
  }
}

.dl-style01 {
  display: grid;
  gap: 20px;
}

.dl-style01 .item {
  background-color: var(--color_bg02);
  border: 1px solid var(--color_border);
  border-radius: 10px;
  padding: 20px;
}

.dl-style01 dt {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin: 0 0 10px 0;
  padding-left: 20px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.dl-style01 dt::before {
  content: "";
  background-color: var(--color_primary);
  width: 13px;
  height: 1px;
  position: absolute;
  top: 24px;
  left: 0;
}

@media (max-width: 800px) {
  .dl-style01 .item {
    padding: 20px 5%;
  }

  .dl-style01 dt {
    font-size: 1.25rem;
  }

  .dl-style01 dt::before {
    top: 18px;
  }
}

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

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

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

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

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

.under-slider01 .splide__arrow--prev {
  background: var(--color_bg01) url(../images/share/splide_prev.svg) no-repeat 26px center/auto 25px;
  border-radius: 50%;
  box-shadow: 4px 4px 4px rgba(67, 67, 67, 0.1);
  width: 75px;
  height: 75px;
  left: calc((100% - 910px) / 2);
}

.under-slider01 .splide__arrow--next {
  background: var(--color_bg01) url(../images/share/splide_next.svg) no-repeat 33px center/auto 25px;
  border-radius: 50%;
  box-shadow: 4px 4px 4px rgba(67, 67, 67, 0.1);
  width: 75px;
  height: 75px;
  right: calc((100% - 910px) / 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;
}

@media (max-width: 800px) {
  .under-slider01 .splide__arrow {
    top: 22.5vw;
    transform: none;
  }

  .under-slider01 .splide__arrow--next {
    background: var(--color_bg01) url(../images/share/splide_next.svg) no-repeat 18px center / auto 10px;
    width: 40px;
    height: 40px;
    right: 0;
  }

  .under-slider01 .splide__arrow--prev {
    background: var(--color_bg01) url(../images/share/splide_prev.svg) no-repeat 15px center / auto 10px;
    width: 40px;
    height: 40px;
    left: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/*------------
Add
--------------*/
.faq-style {
  transition: 0.3s;
}

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

.faq-style .faq-summary {
  display: block;
  cursor: pointer;
  background-color: var(--color_white);
  border: 1px solid var(--color_secondary);
  border-radius: 15px;
  padding: 18px 50px 18px 80px;
  position: relative;
  transition: 0.3s;
}

.faq-style .faq-summary .faq-icon {
  top: 25px;
  left: 20px;
}

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

@media (any-hover: hover) {
  .faq-style .faq-summary:hover .faq-icon {
    background-color: var(--color_secondary);
    border-color: var(--color_secondary);
    color: var(--color_white);
  }
}

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

.faq-style .faq-inner {
  background-color: var(--color_white);
  border-right: 1px solid var(--color_secondary);
  border-bottom: 1px solid var(--color_secondary);
  border-left: 1px solid var(--color_secondary);
  border-radius: 0 0 15px 15px;
  padding: 18px 50px 18px 80px;
  position: relative;
}

.faq-style .faq-inner .faq-icon {
  border: 1px solid #ccc;
  background-color: #ccc;
  color: #fff;
  top: 22px;
  left: 20px;
}

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

.faq-style .faq-icon {
  border: 1px solid #aaa;
  border-radius: 10px;
  font-family: var(--font_en);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  padding: 3px 15px;
  text-align: center;
  position: absolute;
  transition: 0.3s;
}

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

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

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

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

.faq-style.is-open .faq-summary {
  border-radius: 15px 15px 0 0;
}

.faq-style.is-open .faq-summary .faq-icon {
  background-color: var(--color_secondary);
  border-color: var(--color_secondary);
  color: var(--color_white);
}

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

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

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

  .faq-style .faq-summary {
    padding: 15px 40px 15px 70px;
  }

  .faq-style .faq-summary .faq-icon {
    top: 16px;
    left: 12px;
  }

  .faq-style .faq-open-icon {
    right: 5px;
    top: 10px;
    width: 34px;
    height: 34px;
  }

  .faq-style .faq-inner {
    padding: 15px 20px 20px 70px;
  }

  .faq-style .faq-inner .faq-icon {
    top: 14px;
    left: 12px;
  }
}

.box-style01 {
  background-color: var(--color_bg01);
  box-shadow: 4px 4px 4px rgba(67, 67, 67, 0.1);
  border-radius: 20px;
  padding: 40px 50px;
}

.box-style01 .box-ttl {
  font-size: 1.75rem;
  margin: 0 0 40px;
  text-align: center;
}

.box-style01 .box-ttl .dot {
  color: var(--color_primary);
  display: inline-block;
  font-size: 2rem;
  font-feature-settings: normal;
  padding: 0 5px;
  position: relative;
}

.box-style01 .box-ttl .dot::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 8px;
  background-size: 1.1em 10px;
  background-repeat: repeat-x;
  background-position: 2px 0;
  background-image: radial-gradient(circle at center center, var(--color_primary) 0px, var(--color_primary) 3px, rgba(255, 255, 255, 0) 3px, rgba(255, 255, 255, 0) 100%);
}

.box-style01 .box-ttl:has(.dot) {
  font-size: 1.5rem;
}

.box-style01 .box-ttl02 {
  border-bottom: 1px solid var(--color_border02);
  font-size: 1.5rem;
  margin: 0 0 30px;
  padding-bottom: 10px;
  position: relative;
}

.box-style01 .box-ttl02::before {
  content: "";
  background-color: var(--color_primary);
  width: 60px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.box-style01.bg01 {
  background-color: var(--color_bg02);
  border: 1px solid var(--color_primary);
  box-shadow: none;
}

.box-style02 {
  background-color: var(--color_bg02);
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  padding: 30px;
}

.box-style02 .box-ttl {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.375rem;
  margin: 0 0 25px;
}

.box-style02 .box-ttl img {
  margin: 2px 0 0;
  width: 29px;
}

.box-style02 .l-box {
  display: grid;
  background-color: var(--color_tertiary);
  border-radius: 10px;
  height: 100%;
  padding: 9px 40px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.box-style02.bg01 {
  background-color: #f7f7f7;
  border: 1px solid #ccc;
}

.box-style02.bg02 {
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
}

.box-style03 {
  padding-top: 40px;
  position: relative;
}

.box-style03 .num-label {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 3.625rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 50px;
}

.box-style03 .box-inner {
  background-color: var(--color_bg01);
  border-radius: 20px;
  box-shadow: 4px 4px 4px rgba(67, 67, 67, 0.1);
  padding: 50px;
}

.box-style03 .box-ttl {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.box-style03 .l-imgR .l-img,
.box-style03 .l-imgL .l-img {
  width: 32%;
}

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

  .box-style01 .box-ttl {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }

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

  .box-style01 .box-ttl:has(.dot) {
    font-size: 1.125rem;
  }

  .box-style01 .box-ttl02 {
    font-size: 1.25rem;
    margin: 0 0 20px;
  }

  .box-style02 {
    padding: 20px 5%;
  }

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

  .box-style02 .box-ttl img {
    margin: 1px 0 0;
    width: 25px;
  }

  .box-style02 .l-box {
    padding: 9px 10px;
  }

  .box-style03 {
    padding-top: 25px;
  }

  .box-style03 .num-label {
    font-size: 2.5rem;
    left: 25px;
  }

  .box-style03 .box-inner {
    padding: 30px 5%;
  }

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

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

.l-style01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "desc img";
  gap: 60px;
  padding: 0 7.4% 86px 0;
  position: relative;
  z-index: 0;
}

.l-style01::before {
  content: "";
  background-color: var(--color_bg01);
  border-radius: 20px 0 0 20px;
  width: 100vw;
  height: 75%;
  position: absolute;
  bottom: 0;
  left: 83px;
  z-index: -1;
}

.l-style01 .l-img {
  grid-area: img;
}

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

.l-style01 .l-desc {
  grid-area: desc;
}

.l-style01 .l-ttl {
  color: var(--color_primary);
  font-size: 1.875rem;
  margin-bottom: 27px;
}

.tall:has(.l-style01) {
  overflow: hidden;
}

@media (max-width: 800px) {
  .l-style01 {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "desc";
    gap: 30px;
    padding: 0 0 50px 0;
  }

  .l-style01::before {
    left: -5%;
  }

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

.u-accordion {
  border: 1px solid var(--color_primary);
  border-radius: 10px;
}

.u-accordion summary {
  display: block;
  cursor: pointer;
  background: var(--color_white);
  border-radius: 10px;
  padding: 10px 55px 10px 25px;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
  transition: 0.3s;
}

.u-accordion summary::before,
.u-accordion summary::after {
  content: "";
  display: block;
  background: var(--color_primary);
  width: 16px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 27px;
}

.u-accordion summary::after {
  rotate: 90deg;
  transition: rotate 0.5s;
}

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

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

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

.u-accordion .accordion-inner {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 25px;
  position: relative;
}

.u-accordion .accordion-inner::before {
  content: "";
  width: calc(100% - 50px);
  height: 1px;
  background-color: var(--color_border02);
  position: absolute;
  top: 0;
  left: 25px;
}

.u-accordion .l-box {
  border: 1px solid var(--color_primary);
  padding: 20px;
}

.u-accordion .l-box .box-ttl {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

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

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

@media (max-width: 800px) {
  .u-accordion summary {
    font-size: 1rem;
    padding: 10px 50px 10px 15px;
  }

  .u-accordion summary::before,
  .u-accordion summary::after {
    width: 12px;
    right: 18px;
  }

  .u-accordion .accordion-inner {
    padding: 15px;
  }

  .u-accordion .accordion-inner::before {
    width: calc(100% - 30px);
    left: 15px;
  }
}

.list-anchor-link {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 30px;
}

.list-anchor-link li {
  padding-left: 25px;
  position: relative;
}

.list-anchor-link li::before {
  content: "";
  background: url(../images/share/btn_arrow_anchor.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 5px;
  left: 0;
}

.list-anchor-link 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) {
  .list-anchor-link a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

@media (max-width: 800px) {
  .list-anchor-link {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

.staff-layout {
  display: grid;
  grid-template-columns: 1fr 40%;
  grid-template-areas: "l-desc l-img";
  gap: 70px;
  align-items: center;
}

.staff-layout .l-img {
  grid-area: l-img;
}

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

.staff-layout .l-desc {
  grid-area: l-desc;
}

.staff-layout .l-name {
  display: flex;
  gap: 8px 20px;
  align-items: baseline;
  flex-wrap: wrap;
  font-family: var(--font_jp);
  margin-bottom: 30px;
}

.staff-layout .l-name .jp {
  font-size: 1.875rem;
  letter-spacing: 0.1em;
}

.staff-layout .l-name .en {
  color: #aaa;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}

.staff-layout .l-name .job {
  color: var(--color_primary);
  font-size: 0.875rem;
  line-height: 1.3;
  width: 100%;
}

.staff-card {
  background-color: var(--color_bg01);
  border-radius: 10px;
  box-shadow: 4px 4px 4px rgba(67, 67, 67, 0.1);
  padding: 30px;
}

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

.dl-career .item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  border-bottom: 1px solid #c6cfcb;
}

.dl-career dt,
.dl-career dd {
  padding: 5px 0;
}

@media (max-width: 800px) {
  .staff-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "l-img" "l-desc";
    gap: 25px;
  }

  .staff-layout .l-img img {
    margin-inline: auto;
    width: 75%;
  }

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

  .staff-layout .l-name .jp {
    font-size: 1.375rem;
  }

  .staff-layout .l-name .en {
    font-size: 0.75rem;
  }

  .staff-card {
    padding: 20px 5%;
  }

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

  .career-layout.col2 {
    gap: 0;
  }
}

.flow-style>li {
  display: grid;
  grid-template-columns: 15% 1fr;
  gap: 30px;
  padding: 20px 0;
}

.flow-style .flow-num {
  display: grid;
  place-content: center;
  background-color: var(--color_bg01);
  border-radius: 10px;
  box-shadow: 4px 4px 4px rgba(67, 67, 67, 0.1);
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1;
  padding: 20px;
  text-box: trim-both cap alphabetic;
  text-align: center;
}

.flow-style .flow-num .en {
  font-size: 0.8125rem;
}

.flow-style .flow-ttl {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  .flow-style li {
    grid-template-columns: 60px 1fr;
    gap: 25px;
  }

  .flow-style .flow-num {
    font-size: 1.25rem;
    padding: 20px 10px;
  }

  .flow-style .flow-num .en {
    font-size: 0.625rem;
    margin-bottom: 3px;
  }

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

.tel-layout02 {
  background-image: linear-gradient(-45deg, #EAFFEA 0%, #fff 100%);
  border: 1px solid var(--color_primary);
  border-radius: 20px;
  margin: auto;
  max-width: 800px;
  padding: 5%;
}

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

.tel-layout02 .l-ttl .large {
  font-size: 1.5rem;
  color: var(--color_primary);
}

.tel-layout02 .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.tel-layout02 .item+.item {
  position: relative;
}

.tel-layout02 .item+.item::before {
  content: "";
  background-color: var(--color_border02);
  width: 1px;
  height: calc(100% + 20px);
  position: absolute;
  top: -10px;
  left: -13px;
}

.tel-layout02 .item-ttl {
  font-size: 1rem;
  margin-bottom: 15px;
  text-align: center;
}

.tel-layout02 .l-tel .tel {
  justify-content: center;
  font-size: 1.875rem;
}

.tel-layout02 .l-tel .tel img {
  width: 20px;
}

.tel-layout02 .btn-icon {
  margin: auto;
  width: 280px;
}

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

  .tel-layout02 .l-ttl .large {
    font-size: 1.375rem;
  }

  .tel-layout02 .wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tel-layout02 .item+.item::before {
    width: 100%;
    height: 1px;
    position: absolute;
    top: -23px;
    left: 50%;
    transform: translateX(-50%);
  }

  .tel-layout02 .item-ttl {
    margin-bottom: 10px;
  }
}

.list-card01 .item {
  background-color: var(--color_bg01);
  border-radius: 20px;
  box-shadow: 4px 4px 4px rgba(67, 67, 67, 0.1);
  padding: 20px;
}

.list-card01 .list-img {
  margin-bottom: 15px;
}

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

.list-card01 .list-ttl {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.list-card01 .list-ttl .small {
  font-size: 0.75rem;
}

.list-card01.luggage-list .list-img img {
  border-radius: 0;
}

.list-card01.luggage-list .list-ttl {
  text-align: center;
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .list-card01 .item {
    padding: 15px;
  }
}

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

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

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

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

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

.sp-only {
  display: none;
}

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

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

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

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.fade {
  transition: opacity 0.5s;
}

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

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

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

.fo-red {
  color: var(--color_secondary);
}

.fo-green {
  color: var(--color_primary);
}

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

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

.img-round img {
  border-radius: 10px;
}

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 8px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin-bottom: 32px;
}

.mbXM {
  margin-bottom: 48px;
}

.mbL {
  margin-bottom: 64px;
}

.mbXL {
  margin-bottom: 96px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.col1 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

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

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

@media (max-width: 800px) {

  .col1,
  .col2,
  .col3,
  .col4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px;
  }
}

.gapXS {
  grid-gap: 8px;
}

.gapS {
  grid-gap: 16px;
}

.gapM {
  grid-gap: 32px;
}

.gapXM {
  grid-gap: 48px;
}

.gapL {
  grid-gap: 64px;
}

.gapXL {
  grid-gap: 96px;
}

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

  .sp-only {
    display: block;
  }

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

  .br-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: 5px;
  font-family: var(--font_en);
  font-size: 2.1875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

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

  .tel img {
    width: 16px;
  }
}

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

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

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

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

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

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

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

.splide__progress__bar {
  width: 0;
}

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

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

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

.splide__slide img {
  vertical-align: bottom;
}

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

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

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

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

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

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

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

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

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

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

.splide--rtl {
  direction: rtl;
}

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

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

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

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

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

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

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

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

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

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

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

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

.splide__pagination {
  gap: 8px;
}

.splide__pagination__page {
  background: var(--color_bg01);
  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: var(--color_white);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
  height: 20px;
  width: 20px;
}

.splide__toggle:hover {
  background: var(--color_tertiary);
}

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