@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #FCF8EF;
  --color_text: #333;
  --color_link: #333;
  --color_border: #CCCCCC;
  --color_primary: #1B4EA1;
  --color_secondary: #67A9CB;
  --color_tertiary: #D1E3FF;
  --color_quaternary: #E6EDF5;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
}

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

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

:root {
  --font_base:
    "FOT-筑紫ゴシック Pr5N M",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Local Noto Sans JP",
    "Noto Sans JP",
    sans-serif;
  --font_jp: "FOT-筑紫A丸ゴシック Std B", sans-serif;
  --font_en: "Quicksand", sans-serif;
  --font_weight: normal;
  --font_size: 17px;
  --line_height: 2.0;
  --letter_spacing: .05em;
}

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

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

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

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

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

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

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

::selection {
  background: #d4dcd6;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.05em;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

html.fp-loading {
  scroll-behavior: auto;
  overflow-anchor: none;
}

/*-----------------------------------------------------------
診療時間
-----------------------------------------------------------*/
.time-table {
  background-color: var(--color_white);
  border-radius: 10px;
  border-spacing: 0;
  width: 100%;
}

.time-table thead th:first-child {
  border-radius: 10px 0 0 0;
}

.time-table thead tr:first-child th:last-child {
  border-radius: 0 10px 0 0;
}

.time-table tbody tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}

.time-table tbody tr:last-child th:first-child {
  border-radius: 0 0 0 10px;
}

.time-table tbody tr:last-child {
  border-top: 1px solid var(--color_border);
}

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

.time-table thead th {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  font-weight: bold;
}

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

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

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

@media (max-width: 800px) {

  .time-table th,
  .time-table td {
    font-size: 0.75rem;
    padding: 10px 0;
  }

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

/*-----------------------------------------------------------
診療カレンダー
-----------------------------------------------------------*/
:root {
  --event-color01: #1B4EA1;
  --event-color02: #67A9CB;
  --event-color03: #1B4EA1;
}

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

.business-calendar-wrap {
  background: var(--color_white);
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  padding: 30px;
}

.business-calendar-wrap.calendar-col2 {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

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

.business-calendar-wrap.calendar-col2 .business-calendar-box>div {
  background: var(--color_white);
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  padding: 30px;
}

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

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

.business-calendar-box .business-calendar caption {
  font-family: var(--font_en);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color_primary);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 10px;
  overflow: hidden;
}

.business-calendar-box .business-calendar caption span {
  line-height: 1;
  font-family: var(--font_en);
  font-size: 1.5625rem;
  font-weight: 700;
  margin: 0 10px;
}

.business-calendar-box .business-calendar-past {
  float: left;
}

.business-calendar-box .business-calendar-future {
  float: right;
}

.business-calendar-box .business-calendar-past a,
.business-calendar-box .business-calendar-future a {
  display: inline-block;
  cursor: pointer;
}

.business-calendar-box .business-calendar th {
  color: var(--color_white);
  background: var(--color_primary);
  font-size: 1rem;
  font-weight: normal;
  padding: 8px 5px;
  width: 14%;
}

.business-calendar-box .business-calendar th:first-child {
  border-radius: 4px 0 0 4px;
}

.business-calendar-box .business-calendar th:last-child {
  border-radius: 0 4px 4px 0;
}

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

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

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

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

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

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

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

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

.list-event {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  margin-top: 15px;
}

.list-event li {
  font-size: 0.875rem;
  line-height: 1.5;
}

.list-event .icon {
  margin: 0 5px 0 0;
}

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

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

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

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

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

  .business-calendar-wrap.calendar-col2 .business-calendar-box>div {
    padding: 20px;
  }

  .business-calendar-box .business-calendar caption span {
    margin: 0 30px;
  }

  .business-calendar-box .business-calendar th {
    font-size: 0.875rem;
  }

  .business-calendar-box .business-calendar td {
    font-size: 0.8125rem;
  }
}

/*ボタン*/
.btn-out {
  position: relative;
  transition: background-size 0.3s;
  background: linear-gradient(to top, currentColor 0px, currentColor 1px, transparent 1px) no-repeat right bottom;
  background-size: 0% auto;
  padding: 0 0 2px;
}

.btn-out[target=_blank]::after {
  content: "";
  background: currentColor;
  -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;
  margin-left: 5px;
}

.btn-out:hover {
  background-position: left bottom;
  background-size: 100% auto;
}

.btn-more {
  display: inline-block;
  border: 1px solid var(--color_primary);
  background: var(--color_primary);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.1;
  border-radius: 10px;
  padding: 18px 40px;
  position: relative;
  min-width: 290px;
  text-align: center;
  transition: 0.2s;
}

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

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

  .btn-more:is(:hover, :focus):after {
    content: "";
    border-color: var(--color_primary);
  }
}

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

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

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

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

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

.tel-link {
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.8125rem;
  font-weight: 700;
  line-height: 1;
}

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

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

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

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

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

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

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

.list-category-links ul li::before {
  content: "└";
  position: absolute;
  top: 5px;
  left: 0;
  color: var(--color_secondary);
  font-family: sans-serif;
  font-weight: bold;
  font-size: 0.625rem;
}

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

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

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

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

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

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

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

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

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

.post-under-list time {
  display: block;
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
}

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

.post-under-list .category {
  display: inline-block;
  color: var(--color_secondary);
  font-family: var(--font_jp);
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.5;
}

.post-under-list .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
}

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

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

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

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

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

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

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

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

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

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

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

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

.layout-single-post .category {
  width: 100%;
  display: inline-block;
  color: var(--color_secondary);
  font-family: var(--font_jp);
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.5;
}

.layout-single-post .l-ttl {
  font-family: var(--font_jp);
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-number-single .all {
  background: var(--color_primary);
  color: var(--color_white);
  border: 1px solid var(--color_primary);
  font-size: 0.8125rem;
  font-family: var(--font_en);
  font-weight: bold;
  line-height: 28px;
  max-width: 200px;
  height: 30px;
  width: 100%;
  border-radius: 3px;
  transition: background-color 0.3s, color 0.3s;
}

.post-number-single .all:hover {
  background: var(--color_base);
  color: var(--color_primary);
  border-radius: 3px;
}

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

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

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

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

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

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

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

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: min(20px, 1vw) min(30px, 2vw);
  position: sticky;
  top: 0;
  left: 2.5%;
  right: 2.5%;
  width: 95%;
  z-index: 100;
  border-radius: 100px;
  transition: top 0.5s, background-color 0.3s;
  background-color: var(--color_base);
}

.header.is-fixed {
  top: 10px;
  background-color: var(--color_white);
}


.header .tel-link {
  margin-bottom: 5px;
}

@media (max-width: 800px) {
  .header {
    padding: 10px 5%;
    posistion: static;
  }

  .header.is-fixed {
    top: auto;
    background-color: var(--color_base);
  }
}

.h-logo {
  background-color: var(--color_white);
  mix-blend-mode: multiply;
}

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

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

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

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

.gnavi-links>li>a,
.gnavi-links>li>.no-link {
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: bold;
  transition: color 0.3s;
}

@media (any-hover: hover) {

  .gnavi-links>li>a:is(:hover, :focus),
  .gnavi-links>li>.no-link:is(:hover, :focus) {
    color: var(--color_secondary);
  }
}

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

.dropdown::after {
  content: "";
  background-color: var(--color_primary);
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  width: 6px;
  height: 6px;
}

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

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

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

.dropdown .sub-menu>ul {
  display: grid;
  grid-gap: 5px;
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  padding: 30px 40px;
  margin-top: 30px;
}

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

.dropdown .sub-menu>ul>li:before {
  content: "";
  display: block;
  width: 8px;
  height: 2px;
  border-radius: 2;
  background-color: var(--color_secondary);
  position: absolute;
  left: 0;
  top: 16px;
}

.dropdown .sub-menu>ul>li>a {
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: bold;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .dropdown .sub-menu>ul>li>a:is(:hover, :focus) {
    color: var(--color_secondary);
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background: url(../images/share/footer_deco.png) no-repeat left bottom/13.7%, url(../images/share/footer_bg.jpg) no-repeat center bottom/cover;
  position: relative;
  padding: 100px 0 25px;
}

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

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

.f-tel {
  display: block;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 1.8125rem;
  font-weight: 700;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  padding: 18px 25px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.f-tel:before {
  content: "" /"Tel";
  background: url(../images/share/icon_tel.svg) no-repeat center/contain;
  filter: brightness(0) invert(1);
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  margin-right: 8px;
  vertical-align: -1px;
}

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

.f-links {
  display: grid;
  grid-gap: 10px;
  line-height: 1.5;
  border-left: 3px solid var(--color_primary);
  padding: 0 0 0 20px;
}

.f-links>li>a,
.f-links>li>.no-link {
  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;
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: bold;
}

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

.f-links>li>ul {
  display: grid;
  grid-gap: 10px;
  line-height: 1.5;
  margin-top: 10px;
}

.f-links>li>ul>li {
  position: relative;
  padding: 0 0 0 18px;
}

.f-links>li>ul>li:before {
  content: "";
  display: block;
  width: 8px;
  height: 2px;
  border-radius: 2;
  background-color: var(--color_secondary);
  position: absolute;
  left: 0;
  top: 14px;
}

.f-links>li>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;
  padding-bottom: 0.02rem;
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: bold;
}

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

.copyright {
  font-size: 0.8125rem;
  margin: 0 auto;
  width: min(90%, 1024px);
}

.pagetop {
  position: absolute;
  bottom: 45px;
  right: 2.5%;
}

@media (max-width: 800px) {
  .footer {
    background: url(../images/share/footer_deco.png) no-repeat left top 15px/25% auto, url(../images/share/footer_bg.jpg) no-repeat center bottom/cover;
    position: relative;
    padding: 50px 0 25px;
  }

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

  .f-logo {
    margin: 0 auto 15px;
    width: -moz-fit-content;
    width: fit-content;
  }

  .f-tel {
    margin: 0 auto 15px;
  }

  .site-map {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-gap: 20px;
  }

  .f-links {
    border-bottom: 2px solid var(--color_primary);
    border-left: none;
    padding: 0 0 20px;
  }

  .copyright {
    font-size: 0.8125rem;
    padding: 0 0 65px;
  }

  .pagetop {
    position: absolute;
    bottom: 170px;
    right: 2.5%;
    width: 25px;
  }
}

.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  :root {
    --navi-background: #1B4EA1;
    --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: 65px;
    z-index: 10000;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
  padding: 0 2.5%;
  background: url(../images/hero_deco01_pc.png) no-repeat left top 15%, url(../images/hero_deco02_pc.png) no-repeat right top 20%;
}

.hero:before {
  content: "";
  background: url(../images/wave_top.png) repeat-x center top/auto 15px, linear-gradient(to bottom, var(--color_base) 0%, var(--color_base) 15px, var(--color_quaternary) 15px, var(--color_quaternary) 100%);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 205px;
  z-index: -1;
}

.hero .hero-ttl {
  color: #fff;
  font-family: var(--font_jp);
  font-size: 2.44vw;
  font-weight: bold;
  line-height: 1.7;
  text-shadow: 0 0 20px #000;
  position: absolute;
  bottom: 18%;
  left: 8%;
  z-index: 10;
}

.hero .splide__slide img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

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

.hero .splide__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 0 15px;
}

@media (max-width: 800px) {
  .hero {
    position: relative;
    padding: 0 5%;
    background: url(../images/hero_deco01_sp.png) no-repeat left top 30%/11vw auto, url(../images/hero_deco02_sp.png) no-repeat right top 35%/7vw auto;
  }

  .hero:before {
    height: 40%;
  }

  .hero .hero-ttl {
    font-size: 5vw;
    bottom: 15%;
    left: 13%;
  }

  .hero .splide__slide img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
}

/*------------
Components
--------------*/
.t-h2 {
  font-family: var(--font_jp);
  font-size: 2.75rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 60px;
}

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

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

.sec01-ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font_jp);
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 25px;
}

.sec01-ttl:before {
  content: "";
  display: block;
  background: url(../images/sec01_ttl.svg) no-repeat center/contain;
  width: 32px;
  height: 34px;
}

.sec01-tel {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 2.3125rem;
  font-weight: 700;
  line-height: 1;
  padding: 18px 25px;
  border-radius: 10px;
  margin-bottom: 15px;
  text-align: center;
  min-height: 84px;
}

.sec01-tel:before {
  content: "" /"Tel";
  background: url(../images/share/icon_tel.svg) no-repeat center/contain;
  filter: brightness(0) invert(1);
  width: 2.25rem;
  height: 2.25rem;
  display: inline-block;
  margin-right: 8px;
}

.sec01-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color_secondary);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  padding: 18px 25px;
  border-radius: 10px;
  text-align: center;
  min-height: 84px;
  transition: 0.2s;
}

@media (hover: hover) {
  .sec01-btn:is(:hover, :focus) {
    background-color: oklch(from var(--color_secondary) calc(l - 0.05) c h);
  }
}

.sec01-layout+.sec01-layout {
  margin-top: 50px;
}

.sec01-layout .l-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

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

  .sec01-ttl {
    font-size: 1.5625rem;
    margin-bottom: 25px;
  }

  .sec01-tel {
    font-size: 1.8125rem;
    padding: 18px 25px;
    min-height: 0;
  }

  .sec01-tel:before {
    width: 1.25rem;
    height: 1.25rem;
  }

  .sec01-btn {
    min-height: 65px;
  }

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

  .sec01-layout .l-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.t-news-layout {
  padding: 55px;
  background: var(--color_white);
  border-radius: 10px;
  border: 1px solid var(--color_primary);
}

.t-news-layout .l-btn {
  text-align: center;
  margin-top: 20px;
}

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

.post-top-news {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.post-top-news a {
  display: block;
  padding: 0 0 15px;
  border-bottom: 2px dotted var(--color_secondary);
}

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

.post-top-news time {
  display: block;
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
}

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

@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 .no-post {
    padding: 10px 0;
  }

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

.sec02 {
  background: url(../images/wave_bottom.png) repeat-x center top/auto 15px;
  padding: 160px 0 140px;
  position: relative;
}

.sec02:after {
  content: "";
  background: url(../images/sec02_deco.png) no-repeat center/contain;
  display: block;
  width: 254px;
  height: 131px;
  position: absolute;
  bottom: -25px;
  left: 6%;
  z-index: 2;
}

.sec02 .t-h2 {
  position: relative;
  padding: 20px 75px 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.sec02 .t-h2:before {
  content: "";
  background: url(../images/sec02_ttl.svg) no-repeat center/contain;
  display: block;
  width: 90px;
  height: 88px;
  position: absolute;
  top: 0;
  right: 0;
}

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

/*sec02-layout*/
.sec02-layout {
  display: flex;
  align-items: flex-start;
}

.sec02-layout+.sec02-layout {
  margin-top: 46px;
}

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

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

.sec02-layout .l-desc {
  background: #fff;
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  padding: 65px 55px 65px 200px;
  margin: 50px 0 0 -160px;
  flex: 1;
  position: relative;
}

.sec02-layout .num {
  display: block;
  color: var(--color_secondary);
  font-family: var(--font_en);
  font-size: 4.375rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  top: -0.6em;
  left: 200px;
}

.sec02-layout .l-ttl {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

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

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

.sec02-layout.reverse .l-desc {
  padding: 65px 200px 65px 55px;
  margin: 50px -160px 0 0;
}

.sec02-layout.reverse .num {
  left: 55px;
}

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

  .sec02:after {
    display: block;
    width: 127px;
    height: 67px;
    bottom: -15px;
  }

  .sec02 .t-h2 {
    padding: 45px 0 0;
    font-size: 1.4375rem;
  }

  .sec02 .t-h2:before {
    width: 45px;
    height: 44px;
  }

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

  .sec02-layout {
    display: block;
  }

  .sec02-layout .l-img {
    width: 100%;
    margin: 0;
  }

  .sec02-layout .l-desc {
    padding: 25px;
    margin: -50px auto 0;
    position: relative;
    z-index: 1;
    width: 90%;
  }

  .sec02-layout .num {
    font-size: 2.5rem;
    left: 25px;
    text-shadow: 0 0 5px #fff;
  }

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

  .sec02-layout.reverse .l-desc {
    padding: 25px;
    margin: -50px auto 0;
  }

  .sec02-layout.reverse .num {
    left: 25px;
  }
}

.sec03 {
  background: url(../images/sec03_deco.png) no-repeat right bottom 15%, url(../images/sec03_bg.jpg) no-repeat center/cover;
  padding: 140px 0 170px;
}

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

.sec03-card-layout .card-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  background: var(--color_white);
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  padding: 20px;
  overflow: clip;
  position: relative;
  transition: background-color 0.2s;
}

.sec03-card-layout .card-item:after {
  content: "";
  background: var(--color_primary);
  display: block;
  width: 26px;
  height: 26px;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  right: -1px;
  bottom: -1px;
}

@media (hover: hover) {
  .sec03-card-layout .card-item:is(:hover, :focus) {
    background-color: var(--color_quaternary);
  }
}

.sec03-card-layout .card-item .card-img {
  text-align: center;
  margin-bottom: 20px;
}

.sec03-card-layout .card-item .card-img img {
  display: inline-block;
}

.sec03-card-layout .card-item .card-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .sec03 {
    background: url(../images/sec03_deco.png) no-repeat right bottom 15%/33% auto, url(../images/sec03_bg.jpg) no-repeat center/cover;
    padding: 70px 0;
  }

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

  .sec03-card-layout .card-item:after {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 800px) and (hover: hover) {
  .sec03-card-layout .card-item:is(:hover, :focus) {
    background-color: var(--color_quaternary);
  }
}

@media (max-width: 800px) {
  .sec03-card-layout .card-item .card-img {
    margin: 0 auto 10px;
    max-width: 90px;
  }

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

.sec04 {
  background: url(../images/sec04_bg.jpg) no-repeat center/cover;
  padding: 100px 0;
  overflow: hidden;
}

.sec04-layout {
  background: var(--color_white);
  border-radius: 10px;
  padding: min(70px, 4vw) min(80px, 4vw);
  position: relative;
}

.sec04-layout:after {
  content: "";
  background: url(../images/sec04_deco.png) no-repeat center/contain;
  display: block;
  width: 202px;
  height: 97px;
  position: absolute;
  bottom: 40px;
  right: -140px;
  z-index: 2;
}

.sec04-layout .l-btn {
  margin-top: 60px;
  text-align: center;
}

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

  .sec04-layout {
    padding: 25px;
  }

  .sec04-layout:after {
    width: 101px;
    height: 48px;
    bottom: 20px;
    right: -70px;
  }

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

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

.post-top-blog article,
.post-related-blog article {
  min-width: 0;
}

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

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

.post-top-blog .post-ttl,
.post-related-blog .post-ttl {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.5;
  font-size: 1rem;
  font-family: var(--font_jp);
  font-weight: bold;
  margin-bottom: 10px;
}

.post-top-blog .post-txt,
.post-related-blog .post-txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 2;
  margin-bottom: 10px;
}

.post-top-blog .category,
.post-related-blog .category {
  display: inline-block;
  color: var(--color_secondary);
  font-family: var(--font_jp);
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.5;
}

.post-top-blog .no-post,
.post-related-blog .no-post {
  white-space: nowrap;
}

@media (any-hover: hover) {

  .post-top-blog a:hover .post-ttl,
  .post-top-blog a:hover .post-txt,
  .post-related-blog a:hover .post-ttl,
  .post-related-blog a:hover .post-txt {
    text-decoration: underline;
  }
}

@media (max-width: 800px) {

  .post-top-blog,
  .post-related-blog {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--color_border);
  }

  .post-top-blog a,
  .post-related-blog a {
    border-bottom: 1px solid var(--color_border);
    padding: 15px 0;
  }

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

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

  .post-top-blog .category,
  .post-related-blog .category {
    font-size: 0.625rem;
  }
}

.sec05 {
  position: relative;
}

.sec05-layout {
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  padding: min(50px, 3vw) min(40px, 2vw);
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.sec05-layout .t-h2 {
  text-align: center;
  margin-bottom: 20px;
}

.sec05-layout .l-btn {
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 800px) {
  .sec05-layout {
    padding: 25px;
    position: static;
    transform: none;
    max-width: 90%;
    margin: 25px auto 0;
  }

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

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

.sec06 {
  background: url(../images/sec06_deco.png) no-repeat left 5% bottom;
  padding: 90px 0 110px;
  position: relative;
}

.sec06:before {
  content: "";
  background: url(../images/wave_top.png) repeat-x center top/auto 15px, linear-gradient(to bottom, var(--color_base) 0%, var(--color_base) 15px, var(--color_quaternary) 15px, var(--color_quaternary) 100%);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 76%;
  z-index: -1;
}

.sec06-layout {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin: 0 auto 0 calc(50% - 512px);
  gap: 0 6%;
}

.sec06-layout .l-img {
  width: 60%;
}

.sec06-layout .l-img img {
  border-radius: 10px 0 0 10px;
  width: 100%;
  height: 580px;
  -o-object-fit: cover;
  object-fit: cover;
}

.sec06-layout .l-desc .l-txt {
  margin-bottom: 50px;
}

.sec06-layout .l-desc .l-list li {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 0 0 25px 35px;
  position: relative;
}

.sec06-layout .l-desc .l-list li:before {
  content: "";
  border: 6px solid var(--color_primary);
  display: block;
  background-color: #fff;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 2;
}

.sec06-layout .l-desc .l-list li::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 9px;
  background-color: var(--color_primary);
  width: 2px;
  height: 100%;
  z-index: 1;
}

.sec06-layout .l-desc .l-list li:last-child {
  padding-bottom: 0;
}

.sec06-layout .l-desc .l-list li:last-child::after {
  display: none;
}

.sec06-layout .l-desc .l-btn {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 800px) {
  .sec06 {
    background: url(../images/sec06_deco.png) no-repeat left 5% bottom/25% auto;
    padding: 45px 0 55px;
  }

  .sec06:before {
    height: 80%;
  }

  .sec06-layout {
    display: block;
    margin: 0 auto;
    max-width: 90%;
  }

  .sec06-layout .l-img {
    width: 100%;
    margin: 0 auto 25px;
  }

  .sec06-layout .l-img img {
    border-radius: 10px;
    height: auto;
  }

  .sec06-layout .l-desc .l-txt {
    margin-bottom: 30px;
  }

  .sec06-layout .l-desc .l-list li {
    font-size: 1.125rem;
    padding: 0 0 15px 25px;
  }

  .sec06-layout .l-desc .l-list li:before {
    border: 5px solid var(--color_primary);
    width: 15px;
    height: 15px;
    top: 7px;
    left: 0;
  }

  .sec06-layout .l-desc .l-list li::after {
    top: 7px;
    left: 6px;
  }

  .sec06-layout .l-desc .l-btn {
    margin-top: 30px;
    gap: 15px;
  }
}

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

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

.sec03-card-layout .card-item.is-fade {
  transition: opacity 0.7s, transform 0.7s, background-color 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  .is-fade {
    transition: none !important;
    -webkit-transition: none !important;
    opacity: 1 !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;
    transform: none !important;
    -webkit-transform: none !important;
    transition-delay: 0s !important;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  display: flex;
  flex-direction: row-reverse;
  gap: 0 5%;
  padding: 0 0 0 10%;
}

.page-ttl {
  line-height: 1.5;
  align-self: center;
  font-family: var(--font_jp);
  font-weight: bold;
  flex: 1;
}

.page-ttl .jp {
  font-size: 3vw;
  line-height: 1.5;
}

.page-img {
  width: 60%;
}

.page-img img {
  border-radius: 20px 0 0 20px;
  width: 100%;
  height: auto;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  max-width: 1024px;
  width: 90%;
  margin: 10px auto 0;
}

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

.breadcrumb ul li {
  display: inline;
}

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

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

.u-contents:has(> .tall.bg01:last-child),
.u-contents:has(> .tall.bg02:last-child) {
  padding-bottom: 0;
}


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

@media (max-width: 800px) {
  .page-header {
    display: block;
    padding: 0 5% 30px;
  }

  .page-ttl {
    margin-top: 20px;
  }

  .page-ttl .jp {
    font-size: 1.5625rem;
    line-height: 1.5;
  }

  .page-img {
    width: 100%;
  }

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

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

.u-h2 {
  font-family: var(--font_jp);
  font-size: 2.75rem;
  font-weight: bold;
  text-align: center;
  padding: 0 0 20px;
  margin: 0 0 40px;
  position: relative;
}

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

.u-h3 {
  border-bottom: 1px solid var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.875rem;
  font-weight: bold;
  padding: 0 0 10px;
  margin: 0 0 30px;
}

.u-h4 {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0 0 0 1rem;
  margin: 0 0 20px;
  position: relative;
}

.u-h4::before {
  content: "";
  background: var(--color_primary);
  border-radius: 15px;
  width: 5px;
  height: 1em;
  position: absolute;
  top: 0.4em;
  left: 0;
}

.u-h5 {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 15px;
}

.u-catch {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .u-h2 {
    font-size: 1.5625rem;
    line-height: 1.4;
    padding: 0 0 10px;
    margin: 0 0 30px;
  }

  .u-h2::after {
    width: 40px;
  }

  .u-h3 {
    font-size: 1.375rem;
    line-height: 1.4;
    margin: 0 0 20px;
  }

  .u-h4 {
    font-size: 1.25rem;
    line-height: 1.4;
    position: relative;
    margin: 0 0 15px;
  }

  .u-h4::before {
    top: 0.25em;
  }

  .u-h5 {
    font-size: 1.125rem;
    line-height: 1.4;
    margin: 0 0 15px;
  }

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

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

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

.tall.bg02 {
  background: url(../images/share/footer_bg.jpg) no-repeat center bottom/cover;
  padding: 120px 0;
}

.tall.bg01+.tall.bg02,
.tall.bg02+.tall.bg01 {
  margin-top: 0;
}

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

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

.hidden {
  overflow: hidden;
}

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

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

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

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

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

.list-disc {
  padding-left: 1.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-style01 th {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-weight: bold;
  text-align: left;
}

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

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

.table-style01 td {
  background-color: var(--color_white);
  font-size: 17px;
}

.table-style01.vertical-top td {
  vertical-align: top;
}

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

@media (max-width: 800px) {
  .table-style01 {
    border: 1px solid var(--color_border);
  }

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

  .table-style01 td {
    font-size: 1rem;
  }

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

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

  .table-style01.sp-block td {
    background-color: var(--color_white);
    font-size: 0.9375rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dl-time {
  display: grid;
  grid-template-columns: 5.625rem 1fr;
  grid-gap: 10px 15px;
  line-height: 1.5;
  align-items: flex-start;
}

.dl-time dt {
  border: 1px solid var(--color_primary);
  text-align: center;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  padding: 2px 0;
}

.deco {
  border-radius: 10px;
}

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

.google-map {
  overflow: hidden;
}

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

.google-map.small iframe {
  height: auto;
  aspect-ratio: 800/590;
}

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

  .google-map.small iframe {
    height: 300px;
    aspect-ratio: unset;
  }
}

/*------------
レイアウト
--------------*/
.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;
}

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

  .l-imgR .l-img.sp-small,
  .l-imgL .l-img.sp-small {
    width: 70% !important;
    margin-inline: auto;
  }

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

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

/*------------
intro-layout
--------------*/
.intro-layout {
  display: flex;
  flex-direction: row-reverse;
  gap: 5%;
  padding: 0 max(5%, 50% - 512px) 100px;
  position: relative;
}

.intro-layout[data-en]:before {
  content: attr(data-en);
  display: block;
  line-height: 1;
  font-family: var(--font_en);
  font-weight: bold;
  font-size: 5rem;
  color: var(--color_primary);
  position: absolute;
  bottom: -0.5em;
  left: max(5%, 50% - 512px);
}

.intro-layout:after {
  content: "";
  display: block;
  height: 60%;
  background: var(--color_quaternary);
  border-radius: 10px 0 0 10px;
  position: absolute;
  inset: auto 0 0 max(5%, 50% - 290px);
  z-index: -1;
}

.intro-layout .l-img {
  width: 36%;
}

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

.intro-layout .l-ttl {
  border-bottom: 1px solid var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.875rem;
  font-weight: bold;
  padding: 0 0 10px;
  margin: 0 0 30px;
}

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

@media (max-width: 800px) {
  .intro-layout {
    display: block;
    padding: 0 5% 50px;
  }

  .intro-layout[data-en]:before {
    font-size: 8vw;
    left: 5%;
  }

  .intro-layout:after {
    height: auto;
    border-radius: 0;
    inset: 100px 0 0;
  }

  .intro-layout .l-img {
    width: 90%;
    margin: 0 auto 25px;
  }

  .intro-layout .l-ttl {
    font-size: 1.375rem;
    line-height: 1.4;
    padding: 0 0 10px;
    margin: 0 0 20px;
  }
}

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

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

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

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

.card-style01 .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: center;
}

.card-style01 .card-desc {
  margin-bottom: 15px;
}

.card-style01 .card-btn {
  text-align: center;
  margin-top: auto;
}

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

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

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

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

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

.card-style02 .card-img img {
  border-radius: 10px;
}

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

.card-style02 .card-desc {
  margin-bottom: 15px;
}

.card-style02 .card-btn {
  text-align: center;
  margin-top: auto;
}

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

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

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

.card-style03>li {
  background: var(--color_white);
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
}

.card-style03 .card-sub {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
}

.card-style03 .card-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 0;
}

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

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

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

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

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

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

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

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

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

.card-style04 .card-num {
  display: block;
  color: var(--color_secondary);
  font-family: var(--font_jp);
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5px;
}

.card-style04 .card-ttl {
  border-bottom: 1px solid var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.card-style04 .card-desc {
  margin-bottom: 15px;
}

.card-style04 .card-btn {
  text-align: center;
  margin-top: auto;
}

@media (max-width: 800px) {
  .card-style04>li {
    padding: 15px;
  }

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

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

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

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

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

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

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

.flow-style01 .flow-ttl {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 15px;
}

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

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

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

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

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

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

.flow-style02 .flow-num {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

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

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

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

.flow-style02 .flow-img img {
  border-radius: 10px;
}

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

.flow-style02 .flow-ttl {
  font-family: var(--font_jp);
  font-size: 1.4375rem;
  font-weight: bold;
  margin-bottom: 15px;
}

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

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

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

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

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

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

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

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

  .flow-style02 .flow-ttl {
    margin-bottom: 10px;
    font-size: 1.1875rem;
  }

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


/*flow-style03*/
.flow-style03 {
  display: grid;
  gap: 50px 30px;
  padding-top: 15px;
}

.flow-style03>li {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  position: relative;
}

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

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

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

.flow-style03 .flow-img img {
  border-radius: 10px;
}

.flow-style03 .flow-ttl {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 15px;
}

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

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

/*------------
box-style
--------------*/
/*box-style01*/
.box-style01 {
  background: var(--color_quaternary);
  padding: 48px;
  border-radius: 10px;
  position: relative;
}

.box-style01>.box-num {
  font-family: var(--font_en);
  font-weight: bold;
  line-height: 1;
  font-size: 3.75rem;
  color: var(--color_secondary);
  opacity: 0.5;
  position: absolute;
  top: -0.5em;
  left: 48px;
}

.box-style01>.box-num[data-num]:before {
  content: attr(data-num);
  font-size: 2.5rem;
  margin-right: 10px;
}

.box-style01>.box-ttl {
  border-bottom: 1px solid var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.875rem;
  font-weight: bold;
  padding: 0 0 10px;
  margin: 0 0 30px;
}

.box-style01>.box-ttl02 {
  font-family: var(--font_jp);
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
}

.box-style01.box-small {
  padding: 25px;
}

.box-style01.box-small:has(.box-num) {
  padding-top: 30px;
}

.box-style01.box-small>.box-num {
  font-size: 3.125rem;
  left: 25px;
}

.box-style01.box-small>.box-num[data-num]:before {
  font-size: 1.875rem;
}

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

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

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

  .box-style01:has(.box-num) {
    padding-top: 40px;
  }

  .box-style01>.box-num {
    font-size: 3.125rem;
    left: 25px;
  }

  .box-style01>.box-num[data-num]:before {
    font-size: 1.875rem;
  }

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

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

  .box-style01.box-small>.box-ttl {
    font-size: 1.125rem;
  }

  .box-style01.box-small>.box-ttl02 {
    font-size: 1.125rem;
  }
}

/*box-style02*/
.box-style02 {
  background-color: var(--color_white);
  padding: 48px;
  border-radius: 10px;
}

.box-style02+.box-style02 {
  margin-top: 20px;
}

.box-style02>.box-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 15px;
}

.box-style02>.box-ttl-num {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 20px;
  line-height: 1.5;
}

.box-style02>.box-ttl-num.mb0 {
  margin-bottom: 0;
}

.box-style02>.box-ttl-num .num {
  color: var(--color_primary);
  font-size: 1.875rem;
  line-height: 1.2;
}

.box-style02.box-small {
  padding: 25px;
}

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

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

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

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

  .box-style02>.box-ttl-num .num {
    font-size: 1.5625rem;
  }

  .box-style02.box-small>.box-ttl {
    font-size: 1.125rem;
  }
}

/*box-style03*/
.box-style03 {
  background: var(--color_white);
  border: 1px solid var(--color_primary);
  padding: 48px;
  border-radius: 10px;
}

.box-style03>.box-ttl {
  font-family: var(--font_jp);
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
}

.box-style03>.box-ttl02 {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 15px;
}

.box-style03>.box-catch {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: bold;
}

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

.box-style03.box-small>.box-catch {
  font-size: 1.125rem;
}

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

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

  .box-style03>.box-ttl02 {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }

  .box-style03>.box-catch {
    font-size: 1rem;
  }

  .box-style03.box-small>.box-catch {
    font-size: 1rem;
  }
}

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

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

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

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

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

  .dl-style01 dt {
    padding: 15px 20px;
  }

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

/*------------
merit-demerit
--------------*/
.merit-demerit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4%;
}

.merit-demerit .item-ttl {
  font-family: var(--font_jp);
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 25px;
}

.merit-demerit .item-ttl::after {
  content: attr(data-en);
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-left: 15px;
}

.merit-demerit .item {
  background: var(--color_quaternary);
  border-top: 5px solid var(--color_primary);
  padding: 35px;
}

.merit-demerit .item:nth-of-type(2) {
  border-color: var(--color_secondary);
}

.merit-demerit .item:nth-of-type(2) .item-ttl::after {
  color: var(--color_secondary);
}

.merit-demerit .item:nth-of-type(2) .list-disc li::marker {
  color: var(--color_secondary);
}

@media (max-width: 800px) {
  .merit-demerit {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }

  .merit-demerit .item {
    padding: 35px 25px;
  }

  .merit-demerit .item-ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .merit-demerit .item-ttl::after {
    font-size: 12px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.accordion-style.pc-block summary {
  pointer-events: none;
  cursor: default;
  padding: 20px;
}

.accordion-style.pc-block summary::before,
.accordion-style.pc-block summary::after {
  content: none;
}

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

  .accordion-style summary {
    padding: 10px 15px 10px 50px;
    font-size: 1.125rem;
  }

  .accordion-style summary::before {
    width: 12px;
  }

  .accordion-style summary::after {
    width: 13px;
  }

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

  .accordion-style.pc-block summary {
    padding: 10px 15px 10px 50px;
    pointer-events: auto;
    cursor: auto;
  }

  .accordion-style.pc-block summary::before,
  .accordion-style.pc-block summary::after {
    content: "";
  }
}

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

.staff-layout .l-img {
  width: 410px;
  margin-left: 65px;
}

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

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

.staff-layout .job {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.staff-layout .name {
  border-bottom: 1px solid var(--color_border);
  line-height: 1;
  padding-bottom: 35px;
  margin-bottom: 30px;
}

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

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

.dl-career {
  border-top: 1px dotted var(--color_primary);
  display: flex;
  flex-wrap: wrap;
  font-size: 17px;
  line-height: 1.7;
}

.dl-career dt {
  border-bottom: 1px dotted var(--color_primary);
  padding: 10px 0;
  width: 25%;
}

.dl-career dd {
  border-bottom: 1px dotted var(--color_primary);
  padding: 10px 0;
  width: 75%;
}

.card-profile {
  display: grid;
  grid-gap: 5%;
}

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

.card-profile .card-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 20px;
}

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

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

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

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

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

  .staff-layout .jp {
    font-size: 1.5625rem;
    margin-right: 15px;
  }

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

  .dl-career {
    font-size: 1rem;
  }

  .card-profile {
    grid-gap: 25px;
  }

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

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

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

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

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

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

.before-after .item-ttl {
  font-family: var(--font_en);
  font-weight: bold;
  margin-top: 5px;
}

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

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

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

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

.privacy-ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5625rem;
}

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

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

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

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

.sp-only {
  display: none;
}

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

.fs20 {
  font-size: 20px;
}

.fs24 {
  font-size: 24px;
}

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

.underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.c-red {
  color: #E44747;
}

.c-blue {
  color: #1B4EA1;
}

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

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

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 8px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin-bottom: 32px;
}

.mbXM {
  margin-bottom: 48px;
}

.mbL {
  margin-bottom: 64px;
}

.mbXL {
  margin-bottom: 96px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.grid {
  display: grid;
}

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

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

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

.gapXS {
  grid-gap: 8px;
}

.gapS {
  grid-gap: 16px;
}

.gapM {
  grid-gap: 32px;
}

.gapXM {
  grid-gap: 48px;
}

.gapL {
  grid-gap: 64px;
}

.gapXL {
  grid-gap: 96px;
}

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

  .sp-only {
    display: block;
  }

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

/*------------
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;
  border-radius: 50%;
}

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

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

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

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

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

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

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

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

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

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

.splide__pagination {
  gap: 8px;
}

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

.splide__pagination__page.is-active {
  background: #707070;
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
}

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

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

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

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

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

.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

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

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.splide__toggle {
  cursor: pointer;
  background: #ccc;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
  height: 20px;
  width: 20px;
}

.splide__toggle:hover {
  background: #D3D3D3;
}

.splide__toggle svg {
  fill: #fff;
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

.splide__toggle:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.arrow {
  width: 116px;
  height: 39px;
  content: "";
  display: block;
  margin: 0 auto;
  background: url(../images/sec03_bg02.png) 0 0 no-repeat;
  position: absolute;
  bottom: -78px;
  left: 0;
  right: 0;
}


@media (max-width: 800px) {
  .arrow {
    padding: 20px 10px;
    flex-direction: column;
    gap: 10px;
  }
}
