@charset "UTF-8";
/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #000;
  --color_link: #333;
  --color_border: #DFDFDF;
  --color_primary_light: #68C1D7;
  --color_primary: #26659A;
  --color_secondary: #ED9318;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
  --color_bg_light: #E8FAFF;
}

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

/* ====================================================
【サイト全体の設定】
==================================================== */
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  --font_base:
  "Zen Maru Gothic",
  "Helvetica Neue",
  Arial,
  "Hiragino Kaku Gothic ProN",
  "Hiragino Sans",
  "Local Noto Sans JP",
  "Noto Sans JP",
  sans-serif;
  --font_jp: "Zen Maru Gothic", sans-serif;
  --font_en: "Zen Maru Gothic", sans-serif;
  --font_weight: normal;
  --font_size: 1rem;
  --line_height: 2.0;
  --letter_spacing: .05em;
}

@media (max-width: 800px) {
  :root {
    --font_size: 0.9375rem;
    --line_height: 1.8;
  }
}
/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

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

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

:where(a, input, button, textarea, select) {
  -ms-touch-action: manipulation;
      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;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

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

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

::selection {
  background: #d4dcd6;
}

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

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

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

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

.link {
  display: inline-block;
  text-decoration: underline;
  word-break: break-all;
  position: relative;
  text-wrap: pretty;
}
.link[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  margin-left: 5px;
}
.link:is(:hover, :focus) {
  text-decoration: none;
}

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

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

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

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 50px;
  }
}
.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}
.container.wide {
  max-width: 1200px;
}
.container.ultra-wide {
  max-width: 1540px;
}
.container.narrow {
  max-width: 900px;
}

/*-----------------------------------------------------------
診療時間
-----------------------------------------------------------*/
.time-table {
  background-color: var(--color_gray_light);
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
.time-table tr {
  border-bottom: 1px solid var(--color_border);
}
.time-table th,
.time-table td {
  text-align: center;
  padding: 15px 0;
  line-height: 1.2;
}
@media (max-width: 800px) {
  .time-table th,
  .time-table td {
    padding: 10px 0;
  }
}
.time-table thead th {
  background-color: var(--color_black);
  color: var(--color_white);
}
.time-table th:first-child {
  width: 25%;
}
@media (max-width: 800px) {
  .time-table th:first-child {
    width: 90px;
  }
}
.time-table img {
  margin-inline: auto;
}

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

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

.business-calendar-box-wrap {
  margin-bottom: 15px;
}
.business-calendar-box-wrap .business-calendar {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.business-calendar-box-wrap .business-calendar caption {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px;
}
.business-calendar-box-wrap .business-calendar caption span {
  line-height: 1;
  font-size: 1.5625rem;
  vertical-align: -1px;
}
.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
  display: inline-block;
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 25px;
  height: 25px;
}
.business-calendar-box-wrap .business-calendar-past a::before,
.business-calendar-box-wrap .business-calendar-future a::before {
  display: inline-block;
  content: "";
  border-style: solid;
  border-width: 7px 6px 7px 0;
  border-color: transparent #333 transparent transparent;
  position: absolute;
  top: 10px;
  left: 10px;
}
.business-calendar-box-wrap .business-calendar-future a::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.business-calendar-box-wrap .business-calendar th {
  background: #f1f3f4;
  border: 1px solid #dfdfdf;
  text-align: center;
  font-weight: bold;
  font-size: 0.9375rem;
  padding: 5px;
  width: 14%;
}
.business-calendar-box-wrap .business-calendar td {
  background: #FFFFFF;
  border: 1px solid #dfdfdf;
  position: relative;
  font-size: 0.8125rem;
  padding: 5px;
  z-index: 0;
}
.business-calendar-box-wrap .business-calendar td::before {
  content: "";
  background: #ccc;
  border-radius: 50px;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
}
.business-calendar-box-wrap.large .business-calendar th,
.business-calendar-box-wrap.large .business-calendar td {
  padding: 10px;
  font-size: 0.9375rem;
}
.business-calendar-box-wrap.col2 {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.business-calendar-box-wrap.col2 .business-calendar-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3% 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3%;
}
.business-calendar-box-wrap .business-calendar .today {
  text-decoration: underline;
}
.business-calendar-box-wrap .business-calendar .attr0,
.business-calendar-box-wrap .business-calendar .attr1,
.business-calendar-box-wrap .business-calendar .attr2,
.business-calendar-box-wrap .business-calendar .attr3 {
  color: #fff;
}
.business-calendar-box-wrap .business-calendar .attr0::before,
.business-calendar-box-wrap .business-calendar .attr1::before,
.business-calendar-box-wrap .business-calendar .attr2::before,
.business-calendar-box-wrap .business-calendar .attr3::before {
  opacity: 1;
}
.business-calendar-box-wrap .business-calendar .attr0::before {
  background: var(--event01);
}
.business-calendar-box-wrap .business-calendar .attr1::before {
  background: var(--event02);
}
.business-calendar-box-wrap .business-calendar .attr2::before {
  background: var(--event03);
}
.business-calendar-box-wrap .business-calendar .attr3::before {
  background: var(--event04);
}

.list-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list-event li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  line-height: 1;
}
.list-event li::before {
  content: "";
  background-color: var(--color_black);
  border-radius: 50%;
  width: 12px;
  height: 12px;
}
.list-event .event01::before {
  background-color: var(--event01);
}
.list-event .event02::before {
  background-color: var(--event02);
}
.list-event .event03::before {
  background-color: var(--event03);
}
.list-event .event04::before {
  background-color: var(--event04);
}

@media (max-width: 800px) {
  .business-calendar-box-wrap.col2 .business-calendar-box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .list-event {
    display: block;
  }
  .list-event li + li {
    margin-top: 5px;
  }
}
/*ボタン*/
.btn-out {
  padding-right: 15px;
  position: relative;
}
.btn-out::before {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 0.2em;
  right: 0;
}
.btn-out::after {
  content: "";
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
  background: linear-gradient(to top, currentColor 0px, currentColor 1.1px, transparent 1px) no-repeat right bottom;
  background-size: 0% auto;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 100%;
}
@media (any-hover: hover) {
  .btn-out:hover::after {
    background-position: left bottom;
    background-size: 100% auto;
  }
}

.btn-more {
  display: inline-block;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 0.9375rem;
  line-height: 1;
  padding: 10px 25px;
}
@media (any-hover: hover) {
  .btn-more:hover {
    background-color: var(--color_secondary);
  }
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.btn-wrap.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

/*カテゴリーリスト*/
.list-category-links {
  display: -ms-grid;
  display: grid;
  gap: 5px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.list-category-links > li {
  position: relative;
  padding-left: 15px;
}
.list-category-links > li::before {
  content: "";
  border-top: 1px solid var(--color_black);
  border-right: 1px solid var(--color_black);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 9px;
  left: 0;
  rotate: 45deg;
}
.list-category-links ul {
  margin-top: 5px;
}
.list-category-links ul li {
  position: relative;
  padding-left: 15px;
}
.list-category-links ul li::before {
  content: "└";
  position: absolute;
  top: 5px;
  left: 0;
  color: #888;
  font-size: 0.625rem;
}
.list-category-links ul ul {
  margin-top: 5px;
  margin-bottom: 5px;
}
.list-category-links a {
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentcolor), to(currentcolor));
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s ease;
  transition: background-size 0.5s ease;
}
@media (any-hover: hover) {
  .list-category-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

/*ブログ*/
.post-under-blog {
  border-top: 1px solid var(--color_border);
  margin-bottom: 50px;
}
.post-under-blog a {
  border-bottom: 1px solid var(--color_border);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 150px 15px 1fr;
  grid-template-columns: 150px 1fr;
  gap: 15px;
  padding: 10px 70px 10px 10px;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .post-under-blog a:hover {
    background-color: var(--color_gray_light);
  }
}
.post-under-blog a::before {
  content: "";
  background: url(../images/share/post_arrow.svg) no-repeat center/contain;
  width: 15px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.post-under-blog .post-img img {
  border: 1px solid #eee;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 7/5;
}
.post-under-blog .post-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.post-under-blog time {
  display: block;
  font-size: 0.875rem;
  line-height: 1;
}
.post-under-blog .category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.post-under-blog .category {
  display: inline-block;
  border: 1px solid var(--color_border);
  background-color: var(--color_gray_light);
  border-radius: 100px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 1px 5px;
  text-align: center;
}
.post-under-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.5;
}
.post-under-blog .no-post {
  padding: 25px 0;
}

@media (max-width: 800px) {
  .post-under-blog {
    margin-bottom: 30px;
  }
  .post-under-blog a {
    -ms-grid-columns: 120px 10px 1fr;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    padding: 10px 0;
  }
  .post-under-blog a::before {
    display: none;
  }
  .post-under-blog .post-img img {
    aspect-ratio: 7/5;
  }
  .post-under-blog .post-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin-bottom: 5px;
  }
  .post-under-blog time {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 0.6875rem;
  }
  .post-under-blog .category {
    font-size: 0.5rem;
    padding: 0 4px;
  }
  .post-under-blog .post-ttl {
    -webkit-line-clamp: 3;
    font-size: 0.8125rem;
  }
  .post-under-blog .no-post {
    padding: 25px 0;
  }
}
/*お知らせ*/
.post-under-news {
  border-top: 1px solid var(--color_border);
  margin-bottom: 50px;
}
.post-under-news a {
  border-bottom: 1px solid var(--color_border);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 30px 100px 30px 1fr;
  grid-template-columns: 80px 100px 1fr;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 70px 20px 10px;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (max-width: 800px) {
  .post-under-news a {
    -ms-grid-columns: auto 16px 1fr;
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
    padding: 16px 40px 16px 10px;
  }
}
@media (any-hover: hover) {
  .post-under-news a:hover {
    background-color: var(--color_gray_light);
  }
}
.post-under-news a::before {
  content: "";
  background: url(../images/share/post_arrow.svg) no-repeat center/contain;
  width: 10px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.post-under-news time {
  display: block;
  font-size: 0.8125rem;
  line-height: 1;
}
.post-under-news .category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.post-under-news .category {
  display: block;
  border: 1px solid var(--color_border);
  background-color: var(--color_gray_light);
  border-radius: 100px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 2px 5px;
  text-align: center;
  width: 100%;
}
@media (max-width: 800px) {
  .post-under-news .category {
    width: auto;
  }
}
.post-under-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.5;
}
@media (max-width: 800px) {
  .post-under-news .post-ttl {
    grid-column: 1/-1;
  }
}

@media (max-width: 800px) {
  .post-under-news {
    margin-bottom: 30px;
  }
  .post-under-news a {
    -ms-grid-columns: auto 16px 1fr;
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
    padding: 16px 40px 16px 0;
  }
  .post-under-news .category {
    width: auto;
  }
  .post-under-news .post-ttl {
    grid-column: 1/-1;
  }
}
/*詳細ページ*/
.layout-single-post {
  width: min(90%, 800px);
  margin-inline: auto;
}
.layout-single-post .post-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.layout-single-post time {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5;
}
.layout-single-post .category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.layout-single-post .category {
  display: inline-block;
  border: 1px solid var(--color_border);
  background-color: var(--color_gray_light);
  border-radius: 100px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 2px 8px;
  text-align: center;
  width: 100%;
}
.layout-single-post .l-ttl {
  font-size: 1.75rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .layout-single-post .l-ttl {
    font-size: 1.5625rem;
    margin-bottom: 20px;
  }
}
/*ページャー*/
.post-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin: 50px auto 0;
  width: -webkit-fit-content;
  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;
  -webkit-transition: color 0.3s;
  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%;
  -webkit-transform: translate(-50%, -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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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_black);
  color: var(--color_white);
  border: 1px solid var(--color_black);
  font-size: 0.8125rem;
  font-family: var(--font_en);
  line-height: 28px;
  max-width: 200px;
  height: 30px;
  width: 100%;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.post-number-single .all:hover {
  background: var(--color_base);
  color: var(--color_black);
}

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

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

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

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

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

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

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

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header.fixed .h-logo {
  background: #fff;
}
.header.fixed {
  background: #fff;
}
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  padding: 15px 2.5%;
  padding: 5px 2.5%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

@media (max-width: 800px) {
  .header {
    display: block;
    padding: 10px 2.5%;
    position: relative;
  }
}
.h-logo {
  width: 110px;
}
@media (max-width: 800px) {
  .h-logo {
    width: 65px;
  }
}

.h-utility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 800px) {
  .h-utility {
    display: none;
  }
}

.h-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  background-color: var(--color_black);
  color: var(--color_white);
  font-size: 0.9375rem;
  padding: 0 25px 0 20px;
  height: 50px;
}
.h-btn::before {
  content: "";
  background: url(../images/share/icon_mail.svg) no-repeat center/contain;
  width: 15px;
  height: 12px;
}

.h-tel span {
  background: url(../images/share/tel_w.svg) no-repeat left center/auto;
  padding-left: 18px;
}
.h-tel {
  background: var(--color_primary);
  border-radius: 60px;
  color: #fff;
  font-weight: bold;
  padding: 4px 15px;
  text-align: center;
  width: 210px;
}

/*------------
Gnavi
--------------*/
.gnavi-links > li + li::before {
  background: url(../images/share/gnavi-dot.svg) no-repeat center/cover;
  content: "";
  display: block;
  height: 11px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -16px;
  width: 1px;
  z-index: 1;
}
.gnavi-links li {
  font-weight: bold;
  position: relative;
}
.gnavi-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 30px;
}
.gnavi-links > li > a:hover {
  text-decoration: underline;
}
.gnavi-links > li > a {
  display: inline-block;
}

/*dropdown*/
.dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.dropdown::after {
  background: url(../images/share/gnavi-plus.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 10px;
  width: 10px;
}
.dropdown.is-open .sub-menu {
  pointer-events: auto;
  opacity: 1;
}
.dropdown .sub-menu > li > a {
  font-weight: bold;
}
.dropdown .sub-menu a:hover {
  text-decoration: underline;
}
.dropdown .sub-menu a {
  background: url(../images/share/gnavi-arrow.svg) no-repeat left center/5px auto;
  padding-left: 20px;
}
.dropdown .sub-menu {
  border-radius: 10px;
  display: -ms-grid;
  display: grid;
  grid-gap: 5px;
  pointer-events: none;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
  padding: 30px 40px;
  position: absolute;
  top: 30px;
  right: 50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 150px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}
.dropdown .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}
.dropdown .child-menu li a {
  background: none;
  padding-left: 0;
}
.dropdown .child-menu {
  margin-left: 20px;
}
.dropdown:last-child .sub-menu {
  right: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

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

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

.gnavi-menu-btn-line {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 35px;
  height: 15px;
}
.gnavi-menu-btn-line span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color_black);
  border-radius: 1px;
  -webkit-transition: opacity 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
}
.gnavi-menu-btn-line span:nth-child(1) {
  top: 0;
}
.gnavi-menu-btn-line span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.gnavi-menu-btn-line span:nth-child(3) {
  top: auto;
  bottom: 0;
}

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

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

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

.gnavi-drawer-container {
  background-color: #F5F5F5;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5%;
  margin-left: auto;
  padding: 50px 2.5%;
  width: 350px;
  height: 100%;
  overflow-y: auto;
}

.drawer-links {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  line-height: 1.5;
  font-size: 1.125rem;
}
.drawer-links a {
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentcolor), to(currentcolor));
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s ease;
  transition: background-size 0.5s ease;
  padding-bottom: 0.02rem;
}
@media (any-hover: hover) {
  .drawer-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

@media (max-width: 800px) {
  .gnavi-drawer-container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 50px 25px;
    width: 100%;
  }
  .drawer-links {
    gap: 15px;
    font-size: 1rem;
  }
}
/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background: url("../images/share/footer_bg.png") center/cover no-repeat;
  padding: 80px 0 0;
  position: relative;
  margin-top: auto;
}

.f-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.f-logo a:hover {
  opacity: 0.6;
}
.f-logo a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  display: inline-block;
  width: 130px;
}
.f-logo {
  margin-bottom: 20px;
}

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

.f-txt {
  line-height: 1.8;
}

.site-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
}

.f-links .sub-menu > li::before {
  background: #68C1D7;
  border-radius: 50%;
  content: "";
  display: block;
  height: 7px;
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  z-index: 1;
}
.f-links .sub-menu > li {
  padding-left: 18px;
  position: relative;
}
.f-links .sub-menu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 5px;
}
.f-links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 5px;
  font-size: 0.9375rem;
}
.f-links a {
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentcolor), to(currentcolor));
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s ease;
  transition: background-size 0.5s ease;
  padding-bottom: 0.02rem;
}
@media (any-hover: hover) {
  .f-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.f-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 80px auto 0;
}

.f-bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem;
  line-height: 1;
}
.f-bottom-links li + li::before {
  content: "|";
  margin: 0 15px;
}
.f-bottom-links a {
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentcolor), to(currentcolor));
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s ease;
  transition: background-size 0.5s ease;
  padding-bottom: 0.02rem;
}
@media (any-hover: hover) {
  .f-bottom-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

@media (max-width: 800px) {
  .footer {
    padding: 50px 0 10px;
  }
  .f-contents {
    display: block;
    margin-bottom: 30px;
  }
  .f-logo {
    text-align: center;
  }
  .site-map {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 4%;
    margin-top: 30px;
  }
  .f-links .sub-menu > li::before {
    top: 9px;
  }
  .f-links {
    font-size: 0.875rem;
  }
  .f-bottom {
    display: block;
    margin: 30px auto 50px;
  }
}
.copyright {
  font-size: 0.8125rem;
}
@media (max-width: 800px) {
  .copyright {
    text-align: center;
  }
}

#pagetop a:hover {
  opacity: 0.6;
}
#pagetop a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#pagetop {
  position: fixed;
  right: 30px;
  bottom: 60px;
  display: none;
  z-index: 90;
}
@media (max-width: 800px) {
  #pagetop {
    display: none;
  }
}

#fixnavi_pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  z-index: 99;
  width: 116px;
}
@media (max-width: 800px) {
  #fixnavi_pc {
    display: none;
  }
}

.fixed-menu.type01 {
  background: #26659A;
  color: #fff;
  padding-top: 28px;
}
.fixed-menu.type02 {
  padding-top: 24px;
}
.fixed-menu .icon img {
  margin-inline: auto;
}
.fixed-menu .icon {
  margin-bottom: 3px;
}
.fixed-menu:hover {
  opacity: 0.6;
}
.fixed-menu {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: #fff;
  height: 116px;
  border-radius: 10px 0 0 10px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  width: 100%;
}

.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  :root {
    --navi-background: #68C1D7;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --menu-btn: #fff;
  }
  .sp-navi {
    display: block;
  }
  .sp-navi-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--navi-background);
    -webkit-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
            box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 100%;
    z-index: 10000;
  }
  .sp-navi-btns > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
  }
  .sp-navi-btns .item + .item {
    border-left: 1px solid #fff;
  }
  .sp-navi-btns .item {
    font-size: 0.625rem;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }
  .sp-navi-btns .item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
    padding-bottom: 5px;
  }
  .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;
    stroke: var(--svg-stroke);
  }
  .sp-navi-btns .item.instagram .img img {
    width: 18px;
  }
  .sp-navi-btns .item.instagram .img {
    margin-bottom: 8px;
  }
  .sp-navi-btns .item .ttl {
    display: block;
  }
  .sp-menu-btn {
    background: var(--color_primary_light);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 10px;
    position: fixed;
    top: 16px;
    right: 4%;
    z-index: 99;
    height: 50px;
    width: 50px;
  }
  .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;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: 0.4s;
    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) {
    -webkit-transform: translate(-50%, 6px) rotate(-45deg);
            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) {
    -webkit-transform: translate(-50%, -6px) rotate(45deg);
            transform: translate(-50%, -6px) rotate(45deg);
  }
  .sp-navi-drawer {
    pointer-events: none;
    visibility: hidden;
    background: var(--color_white);
    color: var(--color_black);
    font-size: 0.9375rem;
    padding: 80px 25px 100px;
    position: fixed;
    inset: 0;
    -webkit-transform: translateX(60px);
            transform: translateX(60px);
    -webkit-transition: 0.5s var(--ease);
    transition: 0.5s var(--ease);
    opacity: 0;
    z-index: 1000;
  }
  .sp-navi-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    -webkit-transition-timing-function: var(--ease);
            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: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 25px 10px 0;
    position: relative;
    min-height: 50px;
  }
  .sp-navi-list > li > a::after {
    content: "";
    background-color: var(--color_black);
    -webkit-mask: url(../images/share/sp_navi_arrow.svg) no-repeat center/contain;
            mask: url(../images/share/sp_navi_arrow.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 11px;
    height: 11px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .sp-details::details-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 0fr;
    grid-template-rows: 0fr;
    padding: 0 15px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .sp-details[open]::details-content {
    background-color: rgba(0, 0, 0, 0.015);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    padding: 15px;
  }
  .sp-details[open] .plus {
    rotate: 45deg;
  }
  .sp-details-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            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;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform-origin: 50% 0;
            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;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .sp-sub-menu {
    display: -ms-grid;
    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;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .child-menu {
    margin-left: 1em;
  }
}
.layout-sidebar {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px 5rem 1fr;
  grid-template-columns: 200px 1fr;
      grid-template-areas: "sidebar body";
  gap: 5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-inline: auto;
  width: min(90%, 1024px);
}
.layout-sidebar .l-sidebar {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: sidebar;
  position: sticky;
  top: 140px;
}
.layout-sidebar .l-label {
  border-bottom: 1px solid var(--color_border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.875rem;
  line-height: 1;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.layout-sidebar .l-label [lang=en] {
  font-size: 1.0625rem;
}
.layout-sidebar .l-label .jp {
  font-size: 0.625rem;
}
.layout-sidebar .l-body {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: body;
}

@media (max-width: 800px) {
  .layout-sidebar {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 5rem auto;
        grid-template-areas: "body" "sidebar";
    gap: 5rem;
  }
  .layout-sidebar .l-sidebar {
    position: static;
  }
  .layout-sidebar .l-sidebar {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .layout-sidebar .l-body {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
/*-----------------------------------------------------------
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 {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media (any-hover: hover) {
  .fade:hover {
    opacity: 0.5;
  }
}

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

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

.c-red {
  color: #F44336;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #80FF00));
  background: linear-gradient(transparent 50%, #80FF00 50%);
}

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

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 8px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin-bottom: 32px;
}

.mbXM {
  margin-bottom: 48px;
}

.mbL {
  margin-bottom: 64px;
}

.mbXL {
  margin-bottom: 96px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.grid {
  display: -ms-grid;
  display: grid;
}

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

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

.col4 {
  -ms-grid-columns: (1fr)[4];
  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 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .sp-col2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .sp-col3 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .sp-col4 {
    -ms-grid-columns: (1fr)[4];
    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 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

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

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

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

.splide__pagination li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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 {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
          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;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

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

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

.splide--rtl {
  direction: rtl;
}

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

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

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

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

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

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

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

.splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-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 {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

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

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

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

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

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

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

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

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

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

.splide__toggle:hover {
  background: #D3D3D3;
}

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

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

.splide__container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

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

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

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

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  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 {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
          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% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-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 {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

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

.splide__arrow:disabled {
  opacity: 0.3;
}

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

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

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

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

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

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.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 {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

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

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

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

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

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

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

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

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
#main {
  margin-top: 130px;
}
@media (max-width: 800px) {
  #main {
    margin-top: 0;
  }
}

.hero .hero_img img {
  border-radius: 50px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.hero .hero_img > div {
  height: 100%;
}
.hero .hero_img {
  height: calc(100vh - 130px);
  margin: auto;
  width: min(1680px, 94%);
}
.hero .hero_ttl {
  position: absolute;
  left: 5%;
  bottom: -60px;
  z-index: 1;
  width: 640px;
}
.hero {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
.hero .splide__slide img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  margin-top: 15px;
}
.hero .splide__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 0 15px;
}
@media (max-width: 800px) {
  .hero .hero_img img {
    border-radius: 30px;
  }
  .hero .hero_img {
    height: auto;
    width: 90%;
  }
  .hero .hero_ttl {
    left: 3%;
    bottom: -40px;
    width: 260px;
  }
  .hero {
    margin-bottom: 30px;
  }
  .hero .splide__slide img {
    height: calc(100svh - 100px);
  }
}

/*------------
Components
--------------*/
.t-h2 .txt01 {
  font-size: 2.1875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.t-h2 .txt02 {
  color: var(--color_primary);
  font-size: 1.1875rem;
  font-weight: bold;
}
.t-h2 {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 60px;
}
@media (max-width: 800px) {
  .t-h2 .txt01 {
    font-size: 1.75rem;
  }
  .t-h2 .txt02 {
    font-size: 1.125rem;
  }
  .t-h2 {
    margin-bottom: 40px;
  }
}

.t-btn-wrap {
  margin-top: 30px;
}

.t-btn.small {
  width: 170px;
}
.t-btn.colored {
  background-color: #ED9319;
}
.t-btn::before {
  content: "";
  display: block;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  height: 8px;
  width: 8px;
}
.t-btn:hover {
  opacity: 0.6;
}
.t-btn {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  border-radius: 50px;
  background: var(--color_primary_light);
  color: #fff;
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  padding: 12px 30px;
  position: relative;
  width: 230px;
}
@media (max-width: 800px) {
  .t-btn.small {
    width: 100%;
  }
  .t-btn {
    width: 100%;
  }
}

/*------------
Section
--------------*/
.sec01 {
  background: url("../images/sec01_bg.png") center/cover no-repeat;
  padding: 90px 0 100px;
}

.sec01-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 0 1fr;
  grid-template-columns: 250px 1fr;
  -ms-grid-rows: 1fr 0 1fr;
  grid-template-rows: 1fr 1fr;
      grid-template-areas: "ttl body" "btn body";
  gap: 0;
}
.sec01-layout .l-ttl .jp {
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.sec01-layout .l-ttl .en {
  color: var(--color_primary);
  font-size: 1rem;
  font-weight: bold;
}
.sec01-layout .l-ttl {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: ttl;
}
.sec01-layout .l-body {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  grid-area: body;
}
.sec01-layout .l-btn {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: btn;
  margin-top: 30px;
  align-self: flex-end;
}
@media (max-width: 800px){
  .sec01-layout .l-body {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}

.sec02 {
  background: url("../images/sec02_effect01.svg") top 52px right 12% no-repeat, url("../images/sec02_effect02.svg") bottom 25px left 10% no-repeat;
  padding: 90px 0 100px;
}

.sec02-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4% 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 4%;
}

.sec03 {
  background: -webkit-gradient(linear, left bottom, right top, from(#fff), color-stop(25.56%, #eefbfa), color-stop(44.89%, #e5faf3), color-stop(66.67%, #cff3f4), to(#beedf8));
  background: linear-gradient(to top right, #fff 0%, #eefbfa 25.56%, #e5faf3 44.89%, #cff3f4 66.67%, #beedf8 100%);
  border-radius: 130px;
  padding: 120px 0;
}

.sec03-ttl {
  color: var(--color_primary);
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.sec03-container {
  margin-inline: auto;
  width: min(98%, 1480px);
}

.sec03-layout + .sec03-layout {
  margin-top: 150px;
}
.sec03-layout.reverse .l-img {
  padding-left: 0;
}
.sec03-layout.reverse .l-desc .inner {
  margin-left: auto;
}
.sec03-layout.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.sec03-layout .effect.effect1 {
  top: -80px;
  left: 350px;
}
.sec03-layout .effect.effect2 {
  bottom: -20px;
  left: -45px;
}
.sec03-layout .effect {
  position: absolute;
  z-index: 1;
}
.sec03-layout .l-img img {
  border-radius: 30px;
}
.sec03-layout .l-img .inimg02 {
  position: absolute;
  bottom: -112px;
  left: 0;
  z-index: 1;
}
.sec03-layout .l-img {
  padding-left: 140px;
  position: relative;
  width: 48%;
}
.sec03-layout .l-desc .inner {
  max-width: 600px;
}
.sec03-layout .l-desc {
  padding-top: 20px;
  width: 48%;
}
.sec03-layout .l-ttl {
  font-size: 2.1875rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.sec03-layout .l-logo {
  margin-bottom: 30px;
}
.sec03-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 4%;
}

.sec04 {
  background: url("../images/sec04_effect01.svg") top left 4% no-repeat, url("../images/sec04_effect02.svg") bottom 60px right 12% no-repeat;
  padding: 140px 0 120px;
}

.sec04-layout .sec04-ttl .en {
  color: var(--color_primary);
  font-size: 1.1875rem;
  font-weight: bold;
}
.sec04-layout .sec04-ttl .jp {
  font-size: 2.1875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.sec04-layout .sec04-ttl {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 1.3;
  position: absolute;
  top: -40px;
  left: 0;
}
.sec04-layout {
  padding: 0 88px;
  position: relative;
}

.sec04-list .item .num {
  color: var(--color_secondary);
  position: absolute;
  top: -30px;
  right: 5px;
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1;
  z-index: 1;
}
.sec04-list .item::after {
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background: var(--color_primary_light);
  content: "";
  display: block;
  height: 14px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 14px;
}
.sec04-list .item:hover {
  opacity: 0.6;
}
.sec04-list .item {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: #E8FAFF;
  border-radius: 20px;
  padding: 25px 20px;
  position: relative;
}
.sec04-list .list-img img {
  border-radius: 20px;
}
.sec04-list .list-ttl {
  font-size: 1.3125rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 15px 0 10px;
  text-align: center;
}
.sec04-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2% 1fr 2% 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 2%;
  margin-top: 60px;
}

.sec05 {
  overflow: hidden;
}

.sec05-bg01 {
  background: url("../images/sec05_bg.png") center/cover no-repeat;
  padding: 80px 0 100px;
}

.sec05-bg02 {
  padding: 100px 0 150px;
}

.sec05-container {
  margin-inline: auto;
  width: min(98%, 1400px);
}

.sec05-txt span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #FFD9A5));
  background: linear-gradient(transparent 50%, #FFD9A5 50%);
  padding: 0 5px 5px;
}
.sec05-txt {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.sec05-intro .l-img img {
  border-radius: 20px;
}
.sec05-intro .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sec05-intro .btn {
  margin-top: 30px;
}
.sec05-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 6%;
  margin-top: 40px;
}

.sec05-layout + .sec05-layout {
  margin-top: 80px;
}
.sec05-layout.reverse .l-desc {
  padding-left: 50px;
  padding-right: 450px;
  margin-left: auto;
  margin-right: -450px;
}
.sec05-layout.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}
.sec05-layout .effect.effect1 {
  top: -135px;
  left: -240px;
}
.sec05-layout .effect.effect2 {
  top: 380px;
  right: -100px;
}
.sec05-layout .effect.effect3 {
  top: 280px;
  left: -140px;
}
.sec05-layout .effect {
  position: absolute;
  z-index: -1;
}
.sec05-layout .l-img img {
  border-radius: 30px;
}
.sec05-layout .l-img {
  position: relative;
  z-index: 1;
}
.sec05-layout .l-desc {
  background: var(--color_bg_light);
  border-radius: 30px;
  padding: 40px 50px 50px 450px;
  margin: 80px 0 0 -450px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sec05-layout .l-ttl {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.sec05-layout .sub-ttl span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #FFD9A5));
  background: linear-gradient(transparent 50%, #FFD9A5 50%);
  padding: 0 5px 5px;
}
.sec05-layout .sub-ttl {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.sec05-layout .btn {
  margin-top: 25px;
}
.sec05-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.sec05-list .effect {
  position: absolute;
  bottom: -95px;
  right: -85px;
  z-index: -1;
}
.sec05-list .item::after {
  background: var(--color_primary_light);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  content: "";
  display: block;
  height: 22px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 22px;
}
.sec05-list .item:hover {
  opacity: 0.6;
}
.sec05-list .item {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: #E8FAFF;
  border-radius: 15px;
  display: block;
  padding: 35px 25px 40px;
  position: relative;
}
.sec05-list .list-img img {
  margin-inline: auto;
}
.sec05-list .list-ttl {
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 13px auto 8px;
}
.sec05-list .inlist li {
  background: url("../images/share/check2.svg") top 6px left/16px auto no-repeat;
  line-height: 1.5;
  padding-left: 24px;
}
.sec05-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
  margin-top: 100px;
}

.sec06 {
  background: #E8FAFF;
  position: relative;
  padding: 100px 0;
}

.sec07 {
  background: url("../images/sec07_bg.jpg") center/cover no-repeat;
  padding: 100px 0;
}

.sec07-box .t-h2 {
  margin-bottom: 40px;
}
.sec07-box .btn {
  margin-top: 50px;
}
.sec07-box {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 30px;
  margin-inline: auto;
  text-align: center;
  padding: 90px 30px 100px;
  width: min(94%, 1200px);
}

.sec08 {
  position: relative;
}

.sec08-map iframe {
  height: 100%;
  width: 100%;
}
.sec08-map {
  height: 470px;
  width: 100%;
}

.sec08-box .box-ttl .jp {
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.sec08-box .box-ttl .en {
  color: var(--color_primary);
  font-size: 1rem;
  font-weight: bold;
}
.sec08-box .box-ttl {
  text-align: center;
  margin-bottom: 12px;
}
.sec08-box .inlist li + li {
  margin-top: 10px;
}
.sec08-box .inlist li::before {
  background: var(--color_secondary);
  border-radius: 50%;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  top: 8px;
  left: 0;
  width: 9px;
  z-index: 1;
}
.sec08-box .inlist li {
  line-height: 1.5;
  padding-left: 21px;
  position: relative;
}
.sec08-box .btn {
  margin-top: 25px;
}
.sec08-box {
  background: #E8FAFF;
  border-radius: 15px;
  padding: 35px;
  position: absolute;
  right: 4%;
  bottom: 50px;
  z-index: 1;
  min-width: 300px;
}

.sec09 {
  background: url("../images/sec09_effect01.svg") top 23px right 5% no-repeat, url("../images/sec09_effect02.svg") bottom left 10% no-repeat;
  padding: 100px 0;
}

.sec09-layout .l-img img {
  border-radius: 30px;
}
.sec09-layout .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sec09-layout .l-ttl {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.sec09-layout .btn {
  margin-top: 20px;
}
.sec09-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 60px 0;
  }
  .sec01-layout {
    display: block;
  }
  .sec01-layout .l-ttl .jp {
    font-size: 1.25rem;
  }
  .sec01-layout .l-ttl .en {
    font-size: 1rem;
  }
  .sec01-layout .l-body {
    margin: 30px auto;
  }
  .sec01-layout .l-btn {
    margin-top: 30px;
  }
  .sec02 {
    background-size: 20% auto, 20% auto;
    padding: 60px 0;
  }
  .sec02-layout {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px 0;
  }
  .sec03 {
    border-radius: 60px;
    padding: 60px 0;
  }
  .sec03-ttl {
    font-size: 1.375rem;
    margin-bottom: 30px;
  }
  .sec03-container {
    width: 90%;
  }
  .sec03-layout + .sec03-layout {
    margin-top: 80px;
  }
  .sec03-layout .effect.effect1 {
    top: -30px;
    left: auto;
    right: 15px;
    width: 25%;
  }
  .sec03-layout .effect.effect2 {
    bottom: -15px;
    left: -15px;
    width: 25%;
  }
  .sec03-layout .l-img .inimg02 {
    bottom: -15px;
    left: -10px;
    width: 40%;
  }
  .sec03-layout .l-img {
    padding: 0;
    width: 100%;
  }
  .sec03-layout .l-desc .inner {
    max-width: none;
  }
  .sec03-layout .l-desc {
    padding: 0;
    margin: 50px auto 0;
    width: 100%;
  }
  .sec03-layout .l-ttl {
    font-size: 1.75rem;
  }
  .sec03-layout {
    display: block;
  }
  .sec04 {
    background: url("../images/sec04_effect01.svg") top left 4% no-repeat, url("../images/sec04_effect02.svg") bottom 60px right 12% no-repeat;
    padding: 60px 0;
  }
  .sec04-layout .sec04-ttl .en {
    font-size: 1.1875rem;
  }
  .sec04-layout .sec04-ttl .jp {
    font-size: 1.75rem;
  }
  .sec04-layout .sec04-ttl {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    position: static;
    margin-bottom: 15px;
  }
  .sec04-layout {
    padding: 0;
  }
  .sec04-list .item .num {
    top: -25px;
    font-size: 2.5rem;
  }
  .sec04-list .item {
    padding: 20px;
  }
  .sec04-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 50px 0;
    margin-top: 60px;
  }
  .sec05-bg01 {
    padding: 60px 0;
  }
  .sec05-bg02 {
    padding: 60px 0;
  }
  .sec05-container {
    width: 90%;
  }
  .sec05-txt {
    font-size: 1.375rem;
  }
  .sec05-intro .l-desc {
    margin: 30px auto 0;
  }
  .sec05-intro {
    display: block;
    margin-top: 30px;
  }
  .sec05-layout + .sec05-layout {
    margin-top: 80px;
  }
  .sec05-layout.reverse .l-desc {
    padding: 30px;
    margin: 30px auto 0;
  }
  .sec05-layout .effect.effect1 {
    top: -30px;
    left: -30px;
    width: 30%;
  }
  .sec05-layout .effect.effect2 {
    top: 50px;
    right: -30px;
    width: 30%;
  }
  .sec05-layout .effect.effect3 {
    top: 30px;
    left: -30px;
    width: 30%;
  }
  .sec05-layout .l-desc {
    padding: 30px;
    margin: 30px auto 0;
  }
  .sec05-layout .l-ttl {
    font-size: 1.375rem;
  }
  .sec05-layout .sub-ttl {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
  .sec05-layout {
    display: block;
  }
  .sec05-list .effect {
    bottom: -30px;
    right: -30px;
    width: 30%;
  }
  .sec05-list .item::after {
    height: 16px;
    width: 16px;
  }
  .sec05-list .item {
    padding: 30px 15px;
  }
  .sec05-list .list-ttl {
    font-size: 1.125rem;
    margin: 10px auto;
  }
  .sec05-list .inlist li {
    background-size: 13px auto;
    font-size: 0.8125rem;
  }
  .sec05-list {
    -ms-grid-columns: 1fr 4% 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 4%;
    margin-top: 60px;
  }
  .sec06 {
    padding: 60px 0;
  }
  .sec07 {
    padding: 60px 0;
  }
  .sec07-box .t-h2 {
    margin-bottom: 30px;
  }
  .sec07-box .btn {
    margin-top: 30px;
  }
  .sec07-box {
    padding: 40px 30px;
    width: 90%;
  }
  .sec08-map {
    height: 300px;
  }
  .sec08-box .box-ttl .jp {
    font-size: 1.25rem;
  }
  .sec08-box .box-ttl .en {
    font-size: 1rem;
  }
  .sec08-box {
    border-radius: 0;
    padding: 30px 5%;
    position: static;
  }
  .sec09 {
    background-size: 30% auto, 30% auto;
    padding: 60px 0;
  }
  .sec09-layout .l-desc {
    margin: 30px auto 0;
  }
  .sec09-layout .l-ttl {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  .sec09-layout .btn {
    margin-top: 20px;
  }
  .sec09-layout {
    display: block;
  }
}
/*------------
Posts
--------------*/
.post-top-news a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--color_border);
  padding: 15px 0;
}
.post-top-news time {
  color: #aaa;
  font-size: 0.9375rem;
  display: inline-block;
  white-space: nowrap;
}
.post-top-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 1rem;
}
.post-top-news {
  border-top: 1px solid var(--color_border);
  display: -ms-grid;
  display: grid;
}
@media (any-hover: hover) {
  .post-top-news a:hover .post-ttl {
    text-decoration: underline;
  }
}
@media (max-width: 800px) {
  .post-top-news a {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }
  .post-top-news time {
    font-size: 0.875rem;
  }
  .post-top-news .post-ttl {
    -webkit-line-clamp: 2;
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}

.post-top-blog {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.post-top-blog .post-img {
  overflow: hidden;
  margin-bottom: 10px;
}
.post-top-blog .post-img img {
  border-radius: 20px;
  aspect-ratio: 7/5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
}
.post-top-blog time {
  color: #aaa;
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1;
  margin-bottom: 10px;
}
.post-top-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 15px;
}
.post-top-blog .category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.post-top-blog .category {
  text-box: trim-both cap alphabetic;
  background: var(--color_primary_light);
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1;
  padding: 5px 8px;
}
@media (any-hover: hover) {
  .post-top-blog .post-img img:hover {
    scale: 1.1;
  }
}
@media (max-width: 800px) {
  .post-top-blog {
    border-top: 1px solid var(--color_border);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .post-top-blog a {
    border-bottom: 1px solid var(--color_border);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100px 15px 1fr;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 10px 0;
  }
  .post-top-blog .post-img {
    margin-bottom: 0;
  }
  .post-top-blog .post-img img {
    aspect-ratio: 7/5;
  }
  .post-top-blog .post-desc {
    line-height: 1;
  }
  .post-top-blog time {
    text-box: trim-both cap alphabetic;
    font-size: 0.6875rem;
    margin-bottom: 5px;
  }
  .post-top-blog .post-ttl {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }
  .post-top-blog .category {
    font-size: 0.625rem;
    padding: 3px 6px;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  background: url(../images/share/page-ttl.png) center/cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 90px 5% 0;
  height: 420px;
  position: relative;
}

.page-ttl [lang=en] {
  text-box: trim-both cap alphabetic;
  font-size: 4.75rem;
  margin-bottom: 20px;
}
.page-ttl .jp {
  font-size: 3.125rem;
  font-weight: bold;
}
.page-ttl {
  line-height: 1.5;
}

.breadcrumb {
  margin: 10px auto;
  position: relative;
  z-index: 1;
}
.breadcrumb ul {
  font-size: 0.875rem;
}
.breadcrumb ul li {
  display: inline;
}
.breadcrumb ul li + li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

.u-contents p + p {
  margin-top: 1.5em;
}
.u-contents img:not(.noradius) {
  border-radius: 15px;
}
.u-contents {
  line-height: 2;
  position: relative;
  padding: 100px 0;
  word-break: break-all;
  z-index: 1;
}

@media (max-width: 800px) {
  .page-header {
    height: auto;
    padding: 50px 5%;
  }
  .page-ttl [lang=en] {
    font-size: 3.125rem;
    line-height: 1;
  }
  .page-ttl .jp {
    font-size: 1.875rem;
  }
  .u-contents {
    padding: 50px 0;
  }
}
.u-h2::after {
  background: var(--color_primary_light);
  content: "";
  display: block;
  height: 2px;
  margin: 5px auto 0;
  width: 40px;
}
.u-h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.u-h3::before {
  background: #ED9319;
  border-radius: 50%;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  top: 16px;
  left: 0;
  width: 8px;
  z-index: 1;
}
.u-h3 {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 24px;
  margin-bottom: 30px;
  position: relative;
}

.u-h4 {
  color: var(--color_primary_light);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .u-h2 {
    font-size: 1.875rem;
    margin-bottom: 30px;
  }
  .u-h3::before {
    top: 13px;
  }
  .u-h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
  .u-h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
}
.tall + .tall {
  margin-top: 120px;
}

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

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

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall + .tall {
    margin-top: 60px;
  }
  .short + .short {
    margin-top: 30px;
  }
  .x-short + .x-short {
    margin-top: 15px;
  }
}
.list-disc {
  display: -ms-grid;
  display: grid;
  grid-gap: 5px;
}
.list-disc li::before {
  content: "";
  display: block;
  height: 8px;
  background: var(--color_primary_light);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  z-index: 1;
}
.list-disc li {
  list-style-type: none;
  padding-left: 1em;
  line-height: 1.5;
  position: relative;
}
.list-disc.center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.list-check {
  display: -ms-grid;
  display: grid;
  grid-gap: 5px;
}
.list-check li {
  position: relative;
  padding-left: 30px;
}
.list-check li::before {
  content: "";
  background: url(../images/share/icon_check.svg) no-repeat center/contain;
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
}

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

.table-style01.colored th {
  background-color: #ed9319;
}
.table-style01 th,
.table-style01 td {
  border: 1px solid #c9c9c9;
  padding: 15px;
  vertical-align: middle;
}
.table-style01 th {
  background-color: #e2e2e2;
}
.table-style01 .bg01 {
  background-color: #f5f5f5;
}

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

@media (max-width: 800px) {
  .table-style01 th,
  .table-style01 td {
    padding: 10px;
    line-height: 1.5;
  }
  .table-scroll-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
  }
  .table-scroll-txt::before {
    content: "";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat center/contain;
    width: 30px;
    height: 24.5px;
    margin-right: 10px;
  }
  .table-scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }
  .table-scroll::-webkit-scrollbar {
    height: 5px;
  }
  .table-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }
  .table-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }
  .table-scroll table {
    margin-bottom: 10px !important;
    width: 150%;
  }
}
.under-slider01 .splide {
  margin: 0 auto;
}
.under-slider01 .splide__track {
  overflow: visible;
}
.under-slider01 .splide__slide:not(.is-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
}
.under-slider01 .splide__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-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-size: 1rem;
  margin-bottom: 5px;
}

.under-slider02 .item-img {
  position: relative;
}
.under-slider02 figcaption {
  background: #fff;
  font-size: 0.6875rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  padding: 3px 5px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.under-slider02 .splide__pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

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

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

@media (max-width: 800px) {
  .google-map iframe {
    height: 300px;
  }
}
/*------------
レイアウト
--------------*/
.l-imgR,
.l-imgL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          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-desc,
.l-imgL .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-imgR {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.l-imgL.autoimg .l-img, .l-imgR.autoimg .l-img {
  width: auto;
}

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

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

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

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

@media (max-width: 800px) {
  .l-imgR.autoimg .l-img,
  .l-imgL.autoimg .l-img {
    width: 100%;
  }
  .l-imgR,
  .l-imgL {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            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%;
  }
  .fl-imgR,
  .fl-imgL {
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }
  .fl-imgR.small,
  .fl-imgL.small {
    width: 100%;
  }
}
/*------------
Add
--------------*/
.u-btn::before {
  content: "";
  display: block;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  height: 8px;
  width: 8px;
}
.u-btn:hover {
  opacity: 0.6;
}
.u-btn {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  border-radius: 50px;
  background: var(--color_primary);
  color: #fff;
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  padding: 12px 30px;
  position: relative;
  min-width: 230px;
}

.list-anchor-link.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list-anchor-link li:last-child::after {
  display: none;
}
.list-anchor-link li::after {
  background: #9B8966;
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  margin: 0 20px;
  vertical-align: -2px;
}
.list-anchor-link li {
  position: relative;
}
.list-anchor-link a::before {
  background: var(--color_primary);
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  height: 5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 10px;
}
.list-anchor-link a:hover {
  text-decoration: underline;
}
.list-anchor-link a {
  display: inline-block;
  line-height: 1.5;
  position: relative;
  padding-right: 25px;
}
.list-anchor-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 800px) {
  .list-anchor-link li::after {
    display: none;
  }
  .list-anchor-link {
    display: block;
  }
}

.list-anchor-link02.col2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.list-anchor-link02.col3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.list-anchor-link02.col4 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
.list-anchor-link02 li {
  position: relative;
}
.list-anchor-link02 a:hover {
  -webkit-box-shadow: 0 0 10px var(--color01);
          box-shadow: 0 0 10px var(--color01);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.list-anchor-link02 a {
  background: url(../images/share/anchor_arrow.svg) center right 18px/auto no-repeat var(--color_u02);
  border-radius: 5px;
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: var(--font01);
  letter-spacing: 0.1em;
  display: block;
  font-weight: bold;
  padding: 20px 15px;
  position: relative;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  text-align: left;
}
.list-anchor-link02 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
}
@media (max-width: 800px) {
  .list-anchor-link02 li + li {
    margin-top: 15px;
  }
  .list-anchor-link02 a {
    background-position: center right 8px;
    padding: 20px 40px;
    width: 100%;
  }
  .list-anchor-link02 {
    display: block;
  }
}

.u-intro-layout01 .l-img {
  position: relative;
  margin-bottom: 50px;
  width: 460px;
  z-index: 1;
}
.u-intro-layout01 .l-desc {
  background: var(--color_bg_light);
  border-radius: 20px;
  margin: 55px 0 0 -300px;
  padding: 50px 50px 50px 300px;
  width: calc(50% - 300px);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.u-intro-layout01 .l-ttl {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
}
.u-intro-layout01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  position: relative;
}
@media (max-width: 800px) {
  .u-intro-layout01 .l-img {
    margin: auto;
    width: 100%;
  }
  .u-intro-layout01 .l-desc {
    margin: 30px auto 0;
    padding: 8%;
    width: 100%;
  }
  .u-intro-layout01 .l-ttl {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
  .u-intro-layout01 {
    display: block;
  }
}

.u-caption-layout + .u-caption-layout {
  margin-top: 80px;
}
.u-caption-layout .num {
  color: #68C1D7;
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: -30px;
  right: 40px;
  z-index: 1;
}
.u-caption-layout .en {
  color: #fff;
  opacity: 0.6;
  font-size: 5rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  bottom: -15px;
  left: 20px;
  z-index: 1;
}
.u-caption-layout .inlayout .l-img {
  width: 34%;
}
.u-caption-layout .inlayout .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.u-caption-layout .inlayout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.u-caption-layout .l-ttl {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
}
.u-caption-layout {
  background: var(--color_bg_light);
  border-radius: 30px;
  padding: 50px;
  position: relative;
  z-index: 1;
  margin-top: 50px;
}
@media (max-width: 800px) {
  .u-caption-layout + .u-caption-layout {
    margin-top: 60px;
  }
  .u-caption-layout .num {
    font-size: 1.875rem;
    top: -15px;
    right: 20px;
  }
  .u-caption-layout .en {
    font-size: 3.125rem;
    bottom: -10px;
    left: 10px;
  }
  .u-caption-layout .inlayout .l-img {
    margin: 0 auto 30px;
    width: 100%;
  }
  .u-caption-layout .inlayout {
    display: block;
  }
  .u-caption-layout .l-ttl {
    font-size: 1.25rem;
  }
  .u-caption-layout {
    padding: 8% 8% 15%;
    margin-top: 30px;
  }
}

.u-faq .single:last-child {
  border-bottom: 1px solid var(--color_border);
}
.u-faq .single {
  border-top: 1px solid var(--color_border);
  padding: 30px 40px;
}
.u-faq dt {
  background: url(../images/share/que.svg) no-repeat;
  background-position: top 8px left;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 5px 0 0 50px;
  position: relative;
  min-height: 30px;
  margin-bottom: 5px;
}
.u-faq dd {
  padding: 5px 0 0 50px;
}
@media (max-width: 800px) {
  .u-faq .single {
    padding: 20px 15px;
  }
  .u-faq dt {
    background-position: top 6px left;
    font-size: 1.125rem;
  }
}

.list-grid.col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.list-grid.col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.list-grid.col4 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.list-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (max-width: 800px) {
  .list-grid.col2, .list-grid.col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .list-grid.col4 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .list-grid {
    gap: 20px;
  }
}

.list-card.col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
}
.list-card.col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
.list-card.col4 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.list-card.flow .item:not(:last-child)::after {
  background: var(--color01);
  content: "";
  display: block;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -6.5%;
  margin: auto;
  width: 12px;
}
.list-card .num span {
  color: var(--color01);
  display: inline-block;
  font-size: 1.875rem;
  line-height: 1;
  font-family: var(--font02);
  letter-spacing: 0;
  font-optical-sizing: none;
  letter-spacing: 0;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}
.list-card .num {
  position: relative;
}
.list-card .item.numbered .num {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1;
  font-family: var(--font02);
  letter-spacing: 0;
  font-optical-sizing: none;
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 1;
}
.list-card .item.numbered {
  position: relative;
  padding-bottom: 160px;
}
.list-card .item.fill {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
.list-card .item {
  background: var(--color_bg_light);
  border: 1px solid var(--color_primary);
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding: 25px;
  gap: 15px;
}
.list-card .btn {
  margin-top: auto;
}
.list-card .u-btn {
  width: 100%;
}
.list-card .list-img {
  text-align: center;
}
.list-card .list-ttl {
  font-size: 1.125rem;
  line-height: 1.5;
  font-family: var(--font01);
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
}
.list-card .list-btn {
  text-align: center;
  margin-top: auto;
}
.list-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (max-width: 800px) {
  .list-card.col2, .list-card.col3, .list-card.col4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .list-card.col3.spcol2 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .list-card.col5 .item {
    padding: 10px;
  }
  .list-card.col5 .list-ttl {
    font-size: 1.3rem;
  }
  .list-card.col5 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .list-card.flow .item:not(:last-child)::after {
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    height: 12px;
    position: absolute;
    top: auto;
    bottom: -30px;
    right: 0;
    left: 0;
    width: 24px;
  }
  .list-card.flow {
    gap: 50px 0;
  }
  .list-card.spsmall .list-img {
    margin-left: auto;
    margin-right: auto;
    width: 60%;
  }
  .list-card .item.fill {
    grid-column: auto;
  }
  .list-card .item.numbered .num {
    font-optical-sizing: none;
    font-size: 3.75rem;
    right: 15px;
    bottom: 15px;
  }
  .list-card .item.numbered {
    padding-bottom: 100px;
  }
  .list-card .list-ttl {
    font-size: 1.25rem;
  }
}

.list-card02.col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
}
.list-card02.col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
.list-card02.col4 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.list-card02 .item {
  background: #fff;
  border: 1px solid var(--color_primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  padding: 25px;
}
.list-card02 .num span {
  background: var(--color01);
  border-radius: 15px;
  color: #fff;
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-family: var(--font01);
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 3px 20px;
}
.list-card02 .num {
  margin-bottom: 10px;
  text-align: center;
}
.list-card02 .list-ttl {
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: var(--font01);
  letter-spacing: 0.05em;
  text-align: center;
}
.list-card02 .list-logo {
  background: #fff;
  padding: 20px 15px;
  margin-bottom: 15px;
  text-align: center;
}
.list-card02 .list-img {
  text-align: center;
}
.list-card02 .list-desc {
  margin-bottom: 15px;
}
.list-card02 .list-txt {
  margin-inline: auto;
  width: 84%;
}
.list-card02 .list-btn {
  text-align: center;
  margin-top: auto;
}
.list-card02 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (max-width: 800px) {
  .list-card02.col2, .list-card02.col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .list-card02 .num span {
    display: inline-block;
    background: var(--color01);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.5;
    font-family: var(--font02);
    letter-spacing: 0;
    font-optical-sizing: none;
    padding: 0 15px;
  }
  .list-card02 .num {
    text-align: center;
  }
  .list-card02 .list-logo {
    margin-bottom: 0;
  }
  .list-card02 .list-txt {
    width: 100%;
  }
}

.list-card03.col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
}
.list-card03.col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
.list-card03.col4 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.list-card03 .item {
  background: #fff;
  border: 1px solid var(--color_primary);
}
.list-card03 .inner {
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.list-card03 .list-ttl {
  background: var(--color_primary);
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}
.list-card03 .list-logo {
  background: #fff;
  padding: 20px 15px;
  margin-bottom: 15px;
  text-align: center;
}
.list-card03 .list-img {
  text-align: center;
}
.list-card03 .list-desc {
  margin-bottom: 15px;
}
.list-card03 .list-txt {
  margin-inline: auto;
  width: 84%;
}
.list-card03 .list-btn {
  text-align: center;
  margin-top: auto;
}
.list-card03 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (max-width: 800px) {
  .list-card03.col2, .list-card03.col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .list-card03 .num span {
    display: inline-block;
    background: var(--color01);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.5;
    font-family: var(--font02);
    letter-spacing: 0;
    font-optical-sizing: none;
    padding: 0 15px;
  }
  .list-card03 .num {
    text-align: center;
  }
  .list-card03 .list-logo {
    margin-bottom: 0;
  }
  .list-card03 .list-txt {
    width: 100%;
  }
}

.list-flow-01.noarrow .item::after {
  display: none;
}
.list-flow-01.col2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.list-flow-01.col3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.list-flow-01 .item::after {
  background: var(--color_secondary);
  content: "";
  clip-path: polygon(0% 0%, 100% 50%, 0 100%);
  position: absolute;
  top: 50%;
  right: -22px;
  height: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
}
.list-flow-01 .item {
  background: var(--color_bg_light);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 15px;
  padding: 25px;
  position: relative;
}
.list-flow-01 .item:last-child::after {
  display: none;
}
.list-flow-01 .num span {
  color: var(--color_primary);
  display: inline-block;
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1;
}
.list-flow-01 .num {
  position: absolute;
  top: -15px;
  left: 25px;
  z-index: 1;
}
.list-flow-01 .list-ttl {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
}
.list-flow-01 .list-img {
  text-align: center;
}
.list-flow-01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3% 1fr 3% 1fr 3% 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 3%;
  padding-top: 20px;
}
@media (max-width: 800px) {
  .list-flow-01.col2, .list-flow-01.col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .list-flow-01 .num {
    top: -18px;
    left: 25px;
  }
  .list-flow-01 .item::after {
    clip-path: polygon(0% 0%, 100% 0, 50% 100%);
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: -40px;
    margin: auto;
    height: 12px;
    width: 25px;
  }
  .list-flow-01 .item {
    padding: 20px;
  }
  .list-flow-01 .list-ttl {
    font-size: 1.125rem;
  }
}

.list-flow-02 .flow:not(:last-child)::before {
  background: var(--color_primary_light);
  content: "";
  display: block;
  position: absolute;
  top: 70px;
  left: 34px;
  bottom: 0;
  margin: auto;
  width: 1px;
  z-index: -1;
}
.list-flow-02 .flow:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: var(--color_primary_light) transparent transparent transparent;
  position: absolute;
  bottom: -1px;
  left: 30px;
}
.list-flow-02 .flow {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 70px 50px 1fr;
  grid-template-columns: 70px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
  position: relative;
  padding-bottom: 50px;
  min-height: 150px;
}
.list-flow-02 .num .txt01 {
  font-optical-sizing: none;
  font-size: 0.75rem;
  line-height: 1;
}
.list-flow-02 .num .txt02 {
  font-size: 1.875rem;
  line-height: 1;
  font-weight: bold;
  margin-top: 3px;
}
.list-flow-02 .num {
  color: var(--color_primary_light);
  position: relative;
  text-align: center;
  z-index: 1;
}
.list-flow-02 .wrap .flow-img {
  width: 35%;
}
.list-flow-02 .wrap .flow-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 10px;
}
.list-flow-02 .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse wrap;
          flex-flow: row-reverse wrap;
  gap: 50px;
}
.list-flow-02 .flow-ttl {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
}
.list-flow-02 .inbox {
  background: var(--color_bg_light);
  border-radius: 15px;
  padding: 25px;
  margin-top: 15px;
}
@media (max-width: 800px) {
  .list-flow-02 .flow:not(:last-child)::before {
    top: 50px;
    left: 24px;
  }
  .list-flow-02 .flow:not(:last-child)::after {
    left: 20px;
  }
  .list-flow-02 .flow {
    -ms-grid-columns: 50px 15px 1fr;
    grid-template-columns: 50px 1fr;
    gap: 15px;
    padding-bottom: 30px;
  }
  .list-flow-02 .num .txt01 {
    font-size: 0.75rem;
  }
  .list-flow-02 .num .txt02 {
    font-size: 1.875rem;
  }
  .list-flow-02 .num {
    padding-top: 5px;
  }
  .list-flow-02 .wrap .flow-img img {
    margin-inline: auto;
  }
  .list-flow-02 .wrap .flow-img {
    width: 100%;
  }
  .list-flow-02 .wrap .flow-desc {
    padding: 0;
  }
  .list-flow-02 .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 20px;
  }
  .list-flow-02 .flow-ttl {
    margin-bottom: 10px;
  }
  .list-flow-02 .inbox {
    padding: 15px;
  }
}

.list-flow-03 .flow:not(:last-child)::after {
  background: url("../images/share/flow_down.svg") center/cover no-repeat;
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  height: 45px;
  width: 45px;
}
.list-flow-03 .flow:not(:first-child) {
  padding-top: 50px;
}
.list-flow-03 .flow {
  border-bottom: 1px solid var(--color_primary_light);
  position: relative;
  padding-bottom: 50px;
}
.list-flow-03 .flow-ttl .step {
  background: var(--color_primary_light);
  font-size: 0.75rem;
  color: #fff;
  padding: 0 10px;
  margin-top: 8px;
  white-space: nowrap;
}
.list-flow-03 .flow-ttl {
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.list-flow-03 .wrap .flow-img {
  width: 35%;
}
.list-flow-03 .wrap .flow-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 10px;
}
.list-flow-03 .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse wrap;
          flex-flow: row-reverse wrap;
  gap: 50px;
}
.list-flow-03 {
  border: 1px solid var(--color_primary_light);
  border-radius: 15px;
  padding: 50px;
}
@media (max-width: 800px) {
  .list-flow-03 .flow {
    position: relative;
    padding-bottom: 50px;
  }
  .list-flow-03 .flow-ttl .step {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .list-flow-03 .flow-ttl {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  .list-flow-03 .wrap .flow-img img {
    margin-inline: auto;
  }
  .list-flow-03 .wrap .flow-img {
    width: 100%;
  }
  .list-flow-03 .wrap .flow-desc {
    margin: 15px auto 0;
    padding: 0;
  }
  .list-flow-03 .wrap {
    display: block;
  }
  .list-flow-03 {
    padding: 30px;
  }
}

.list-flow-04 .flow:not(:last-child)::before {
  background: url("../images/share/arrow_down.svg") center/cover no-repeat #fff;
  content: "";
  height: 50px;
  width: 10px;
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
.list-flow-04 .flow + .flow {
  margin-top: 60px;
}
.list-flow-04 .flow {
  border: 1px solid var(--color_primary_light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 20px 40px 0;
  position: relative;
}
.list-flow-04 .num .txt01 {
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.5;
}
.list-flow-04 .num .txt02 {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.5;
}
.list-flow-04 .num {
  color: var(--color_primary_light);
  padding: 0 30px;
  text-align: center;
  position: relative;
  white-space: nowrap;
  width: 120px;
}
.list-flow-04 .flow-content {
  border-left: 1px solid #ccc;
  padding-left: 50px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.list-flow-04 .inlayout.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
}
.list-flow-04 .inlayout .l-img.small {
  width: 25%;
}
.list-flow-04 .inlayout .l-img {
  text-align: center;
  width: min(250px, 30%);
}
.list-flow-04 .inlayout .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.list-flow-04 .inlayout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
}
.list-flow-04 .flow-ttl {
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 15px;
}
@media (max-width: 800px) {
  .list-flow-04 .flow {
    padding: 20px 15px 40px 0;
  }
  .list-flow-04 .num .txt02 {
    font-size: 1.25rem;
  }
  .list-flow-04 .num {
    padding: 0 20px;
    width: 70px;
  }
  .list-flow-04 .flow-content {
    padding-left: 20px;
  }
  .list-flow-04 .inlayout .l-img.small {
    width: 100%;
  }
  .list-flow-04 .inlayout .l-img {
    width: 100%;
  }
  .list-flow-04 .inlayout .l-desc {
    margin: 30px auto 0;
  }
  .list-flow-04 .inlayout {
    display: block;
  }
  .list-flow-04 .flow-ttl {
    font-size: 1.125rem;
  }
}

.l-box01 .box-ttl {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 30px;
}
.l-box01 .indl dt {
  font-weight: bold;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.l-box01 .indl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 20px 1fr;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
}
.l-box01 {
  background: #fff;
  border: 1px solid var(--color_primary);
  padding: 3% 5%;
  position: relative;
}
@media (max-width: 800px) {
  .l-box01 .large-ttl {
    font-size: 1.25rem;
  }
  .l-box01 .box-ttl {
    font-size: 1rem;
  }
  .l-box01 .indl dd + dt {
    margin-top: 10px;
  }
  .l-box01 .indl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .l-box01 .inlist.col2, .l-box01 .inlist.col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .l-box01 .inlist .list-ttl {
    font-size: 1.125rem;
  }
  .l-box01 {
    padding: 30px;
  }
}

.l-box02.has-icon {
  margin-top: 100px;
}
.l-box02 .box-icon {
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 103px;
}
.l-box02 .box-ttl {
  color: var(--color01);
  font-size: 1.6875rem;
  line-height: 1.8;
  font-family: var(--font01);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}
.l-box02 {
  background: #FFEEEF;
  border-radius: 30px;
  border: 1px solid #ccc;
  padding: 50px;
  position: relative;
}
@media (max-width: 800px) {
  .l-box02.has-icon {
    margin-top: 50px;
  }
  .l-box02 .box-icon {
    top: -30px;
    width: 50px;
  }
  .l-box02 .box-ttl {
    font-size: 1.375rem;
    margin-bottom: 15px;
  }
  .l-box02 {
    padding: 30px;
  }
}

.l-box03 .box-ttl {
  background: url("../images/share/caution.svg") top 3px left/25px auto no-repeat;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 35px;
  margin-bottom: 15px;
}
.l-box03 .list-disc li::before {
  background: #fff;
}
.l-box03 {
  background: var(--color_primary);
  color: #fff;
  padding: 30px;
}
@media (max-width: 800px) {
  .l-box03 {
    padding: 20px;
  }
}

.u-box01 .en {
  color: #3C84C2;
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: -30px;
  left: 40px;
  z-index: 1;
}
.u-box01 .box-ttl {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
}
.u-box01 {
  background: -webkit-gradient(linear, left bottom, right top, from(#fff), color-stop(25.56%, #eefbfa), color-stop(44.89%, #e5faf3), color-stop(66.67%, #cff3f4), to(#beedf8));
  background: linear-gradient(to top right, #fff 0%, #eefbfa 25.56%, #e5faf3 44.89%, #cff3f4 66.67%, #beedf8 100%);
  border-radius: 30px;
  padding: 50px;
  position: relative;
}
@media (max-width: 800px) {
  .u-box01 .en {
    font-size: 1.875rem;
    top: -15px;
    left: 20px;
  }
  .u-box01 .box-ttl {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  .u-box01 {
    padding: 8%;
  }
}

.l-sub-ttl::before {
  background: #68C1D7;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 12px;
  left: 0;
  width: 20px;
}
.l-sub-ttl {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
}
@media (max-width: 800px) {
  .l-sub-ttl {
    font-size: 1rem;
    margin-bottom: 15px;
  }
}

.contact-box .box-ttl {
  border-bottom: 1px solid var(--color_primary);
  display: table;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: bold;
  padding-bottom: 12px;
  margin: 0 auto 20px;
  text-align: center;
}
.contact-box .inlayout::before {
  border-left: 2px dotted #707070;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(50% - 2px);
  width: 1px;
}
.contact-box .inlayout .item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.contact-box .inlayout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 4%;
  position: relative;
}
.contact-box .centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-box {
  background: var(--color_bg_light);
  padding: 40px 30px 50px;
  position: relative;
  margin-inline: auto;
  width: min(100%, 800px);
}
@media (max-width: 800px) {
  .contact-box .box-ttl {
    font-size: 1rem;
  }
  .contact-box .inlayout::before {
    display: none;
  }
  .contact-box .inlayout .item + .item {
    border-top: 1px dotted #ccc;
  }
  .contact-box .inlayout .item {
    padding: 15px 0;
  }
  .contact-box .inlayout {
    display: block;
  }
  .contact-box {
    padding: 30px 20px 40px;
    width: 100%;
  }
}

.staff-layout .l-img {
  width: 24%;
}
.staff-layout .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.staff-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse wrap;
          flex-flow: row-reverse wrap;
  position: relative;
  gap: 0 4%;
  margin-bottom: 50px;
}
@media (max-width: 800px) {
  .staff-layout .l-img {
    margin: 0 auto 30px;
    width: 80%;
  }
  .staff-layout {
    display: block;
    margin-bottom: 40px;
  }
}

.staff-name .job span {
  display: inline-block;
  border-bottom: 1px solid;
}
.staff-name .job {
  color: var(--color_primary);
  font-weight: bold;
  margin-bottom: 15px;
}
.staff-name .name .ruby {
  font-size: 1rem;
  margin-left: 20px;
}
.staff-name .name {
  font-size: 1.875rem;
  font-weight: bold;
}
.staff-name {
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 800px) {
  .staff-name .job {
    font-size: 0.9375rem;
  }
  .staff-name .name .ruby {
    font-optical-sizing: none;
    font-size: 0.875rem;
  }
  .staff-name .name {
    font-size: 1.25rem;
  }
}

.staff-profile .item {
  background: var(--color_bg_light);
  border-radius: 15px;
  padding: 25px 30px 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.staff-profile .l-ttl {
  border-bottom: 1px dashed #ccc;
  font-size: 1.125rem;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.staff-profile .staff-dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 20px 1fr;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
}
.staff-profile {
  font-size: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 30px 4%;
}
@media (max-width: 800px) {
  .staff-profile .item {
    padding: 20px;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
  .staff-profile .staff-dl {
    gap: 8px 15px;
  }
}

.guide-list .item .l-img {
  width: 42.5%;
}
.guide-list .item .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.guide-list .item {
  background: var(--color_bg_light);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  font-size: 0.9375rem;
  padding: 35px 30px;
}
.guide-list .list-ttl {
  background: #ED9318;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 5px 10px;
  margin-bottom: 10px;
}
.guide-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 800px) {
  .guide-list .item .l-img img {
    margin: auto;
  }
  .guide-list .item .l-img {
    margin-bottom: 15px;
    width: 100%;
  }
  .guide-list .item {
    display: block;
    padding: 8%;
  }
  .guide-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.list-merit .item {
  background: var(--color_bg_light);
  border-top: 3px solid var(--color_primary);
  padding: 30px 40px;
  position: relative;
}
.list-merit .list-ttl {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.list-merit {
  display: -ms-grid;
  display: grid;
  gap: 30px;
}
@media (max-width: 800px) {
  .list-merit .item {
    padding: 25px;
  }
  .list-merit .list-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
  .list-merit {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.pediatric-list .item {
  border: 1px solid var(--color_primary);
  position: relative;
}
.pediatric-list .list-ttl {
  background: var(--color_primary);
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  padding: 5px 10px;
}
.pediatric-list .inner {
  padding: 25px;
}
.pediatric-list .list-img img {
  margin: auto;
}
.pediatric-list .list-img {
  margin-bottom: 10px;
}
.pediatric-list .indl dt {
  border-bottom: 1px solid var(--color_primary);
  padding: 3px 10px 3px 0;
}
.pediatric-list .indl dd {
  border-bottom: 1px solid var(--color_border);
  padding: 3px 0 3px 10px;
}
.pediatric-list .indl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 0 1fr;
  grid-template-columns: auto 1fr;
  gap: 3px 0;
}
.pediatric-list {
  display: -ms-grid;
  display: grid;
  gap: 30px;
}
@media (max-width: 800px) {
  .pediatric-list .item {
    padding: 25px;
  }
  .pediatric-list .list-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
  .pediatric-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.merit-demerit .item:first-child .list-disc li::before {
  background: var(--color_primary);
}
.merit-demerit .item:last-child .en {
  color: var(--color_secondary);
}
.merit-demerit .item:last-child .list-disc li::before {
  background: var(--color_secondary);
}
.merit-demerit .item:last-child {
  border-top-color: var(--color_secondary);
}
.merit-demerit .item {
  background: var(--color_bg_light);
  border-top: 3px solid var(--color_primary);
  padding: 30px 40px;
  position: relative;
}
.merit-demerit .item-ttl .jp {
  font-size: 1.25rem;
}
.merit-demerit .item-ttl .en {
  color: var(--color_primary);
  margin-left: 15px;
}
.merit-demerit .item-ttl {
  margin-bottom: 15px;
}
.merit-demerit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4% 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 4%;
}
@media (max-width: 800px) {
  .merit-demerit .item {
    padding: 25px;
  }
  .merit-demerit {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.general-box .box-ttl {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 15px;
}
.general-box .inbox {
  background: var(--color_bg_light);
  border-radius: 20px;
  padding: 30px;
  margin-top: 30px;
}
.general-box .inlist dt {
  background: url(../images/share/check2.svg) left center/18px auto no-repeat;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 23px;
  margin-bottom: 3px;
}
.general-box .inlist dd {
  font-size: 0.9375rem;
}
.general-box .inlist dd + dt {
  margin-top: 13px;
}
.general-box {
  border: 4px solid #F9ECC3;
  border-radius: 30px;
  padding: 50px;
}
@media (max-width: 800px) {
  .general-box .box-ttl {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  .general-box .inbox {
    padding: 20px;
    margin-top: 20px;
  }
  .general-box {
    padding: 20px;
  }
}

.c-primary {
  color: var(--color_primary);
}

.overflow_hidden {
  overflow: hidden;
}

.u_slider .splide__track {
  overflow: visible;
}
.u_slider .splide__slide:not(.is-active) {
  opacity: 0.2;
}
.u_slider .splide__slide {
  padding-bottom: 30px;
}
.u_slider {
  margin-inline: auto;
  width: min(800px, 100%);
  position: relative;
}
@media (max-width: 800px) {
  .u_slider {
    width: 100%;
  }
}

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

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

.dl-privacy {
  display: -ms-grid;
  display: grid;
  gap: 3rem;
}
.dl-privacy dt {
  border-top: 1px solid var(--color_border);
  font-size: 1.0625rem;
  padding-top: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.dl-privacy dd {
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: justify;
}

.map iframe, .u-map iframe {
  height: 100%;
  width: 100%;
}
.map, .u-map {
  height: 400px;
}

.u-map {
  height: 400px;
}
@media (max-width: 800px) {
  .u-map {
    height: 250px;
  }
}

.u-em02 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FCEAD1));
  background: linear-gradient(transparent 60%, #FCEAD1 60%);
}

table th, table td {
  font-weight: inherit;
}

.table-style01 th, .table-style01 table.has-fixed-layout th {
  background: var(--color_primary);
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 15px;
  vertical-align: middle;
  text-align: left;
}
.table-style01 td, .table-style01 table.has-fixed-layout td {
  border: 1px solid #D1D1D1;
  padding: 12px 15px;
  vertical-align: top;
  word-break: break-all;
}
.table-style01, .table-style01 table.has-fixed-layout {
  background: #fff;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.9375rem;
  line-height: 1.6;
  width: 100%;
}
.table-style01.center_ttl th, .table-style01 table.has-fixed-layout.center_ttl th {
  text-align: center;
  vertical-align: middle;
}
.table-style01.th-middle th, .table-style01 table.has-fixed-layout.th-middle th {
  vertical-align: middle;
}
.table-style01.td-middle td, .table-style01 table.has-fixed-layout.td-middle td {
  vertical-align: middle;
}
.table-style01.price td, .table-style01 table.has-fixed-layout.price td {
  text-align: right;
}
.table-style01 .first th, .table-style01 table.has-fixed-layout .first th {
  background: var(--color01);
  color: #fff;
}

@media (max-width: 800px) {
  .table-scroll::before {
    display: block;
    color: #f00;
    content: "※横にスクロールできます。";
  }
  .table-scroll .table-style02, .table-scroll .table-style03 {
    width: 200%;
  }
  .table-scroll {
    overflow: auto;
    width: 100%;
  }
}

.table-style02 th {
  background: var(--color_primary);
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 15px;
  vertical-align: middle;
  text-align: left;
}
.table-style02 td {
  border: 1px solid #D1D1D1;
  padding: 12px 15px;
  vertical-align: top;
  word-break: break-all;
}
.table-style02 {
  background: #fff;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.9375rem;
  line-height: 1.6;
  width: 100%;
}
.table-style02 .first th, .table-style02 .first th:first-child {
  background: var(--color_primary);
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
}
.table-style02 th {
  background: var(--color_bg_light);
  border: 1px solid #D1D1D1;
  color: inherit;
}
.table-style02 td, .table-style02 td {
  vertical-align: middle;
}

.dl-opentime.small dt {
  font-size: 0.625rem;
  font-weight: 700;
}
.dl-opentime.small dd {
  font-size: 0.9375rem;
}
.dl-opentime.small {
  gap: 10px;
  white-space: nowrap;
}
.dl-opentime dt {
  border: 1px solid;
  color: var(--color_primary);
  font-size: 0.625rem;
  font-weight: bold;
  padding: 0 12px;
  text-align: center;
}
.dl-opentime dd {
  font-size: 0.8125rem;
}
.dl-opentime {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 10px 1fr;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px 10px;
}

.dl-simple dt {
  background: var(--color_primary_light);
  border-radius: 5px;
  color: #fff;
  font-size: 0.8125rem;
  padding: 3px 15px;
  text-align: center;
}
.dl-simple {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 15px 1fr;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px 15px;
}

.dl-normal.large {
  -ms-grid-columns: 20% 1fr;
  grid-template-columns: 20% 1fr;
}
.dl-normal dt .num {
  font-size: 0.8125rem;
  margin-bottom: 10px;
}
.dl-normal dt {
  background: var(--color_primary);
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  padding: 20px;
}
.dl-normal dd {
  background: var(--color_bg_light);
  padding: 20px;
}
.dl-normal {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 0 1fr;
  grid-template-columns: auto 1fr;
  gap: 15px 0;
}
@media (max-width: 800px) {
  .dl-normal.large {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .dl-normal dd + dt {
    margin-top: 20px;
  }
  .dl-normal {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.time-table th,
.time-table td {
  text-align: center;
  vertical-align: middle;
}
.time-table th:nth-child(1) {
  width: 25%;
}
.time-table th:last-child {
  width: 15%;
}
.time-table th {
  background: #26659A;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  padding: 13px 5px;
  text-align: center;
}
.time-table tr:not(:last-child) td {
  border-bottom: 1px solid #DFDFDF;
}
.time-table td:first-child {
  background: #81A8C9;
  border-right: 1px solid #DFDFDF;
  color: #fff;
  padding: 5px 0;
}
.time-table td.on::before {
  background: var(--color_primary);
  border-radius: 50%;
  content: "";
  display: block;
  height: 13px;
  margin: 5px auto;
  width: 13px;
}
.time-table td.off::before {
  background: #333;
  content: "";
  display: block;
  height: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 2px auto;
  width: 1px;
}
.time-table td {
  border-bottom: 1px solid #DFDFDF;
  font-weight: bold;
  line-height: 1.5;
  padding: 15px 0;
}
.time-table table {
  background: #fff;
  border: 1px solid #DFDFDF;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9375rem;
  table-layout: fixed;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 800px) {
  .time-table th:nth-child(1) {
    width: 30%;
  }
  .time-table th:last-child {
    width: auto;
  }
  .time-table th {
    font-size: 0.6875rem;
    padding: 10px 0;
  }
  .time-table td.on::before {
    height: 8px;
    width: 8px;
  }
  .time-table td.off::before {
    height: 14px;
  }
  .time-table td {
    padding: 10px 0;
  }
  .time-table table {
    font-size: 0.6875rem;
  }
}

.time-table-caption {
  font-size: 0.9375rem;
  margin-top: 10px;
}

.tel_number span {
  background: url("../images/share/tel.svg") no-repeat left center/17px auto;
  padding-left: 28px;
}
.tel_number {
  font-size: 1.4375rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color_primary);
  white-space: nowrap;
}
.js-fadein {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
  -webkit-transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.js-fadein-right {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  opacity: 0;
  -webkit-transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.rotate {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  opacity: 0;
  -webkit-transition: 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rotate.is-show {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  opacity: 1;
}

.ta span {
  display: inline-block;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  opacity: 0;
}

.ta.is-show span {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.js-fadein-list > li {
  will-change: transform;
  opacity: 0;
  -webkit-transition: 2.5s cubic-bezier(0.19, 1, 0.435, 0.99);
  transition: 2.5s cubic-bezier(0.19, 1, 0.435, 0.99);
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}

.js-fadein-list > li:nth-of-type(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.js-fadein-list > li:nth-of-type(2) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.js-fadein-list > li:nth-of-type(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.js-fadein-list > li:nth-of-type(4) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

.js-fadein-list > li:nth-of-type(5) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.js-fadein-list > li:nth-of-type(6) {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}

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

.business-calendar-box .business-calendar caption {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  padding: 0;
  margin-bottom: 15px;
}
.business-calendar-box .business-calendar .business-calendar-past, .business-calendar-box .business-calendar .business-calendar-future {
  color: var(--color_primary);
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1;
}
.business-calendar-box .business-calendar .business-calendar-past {
  float: left;
}
.business-calendar-box .business-calendar .business-calendar-future {
  float: right;
}
.business-calendar-box .business-calendar th {
  background: var(--color_primary);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 5px 0 8px;
  text-align: center;
}
.business-calendar-box .business-calendar td::before {
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  height: 25px;
  width: 25px;
}
.business-calendar-box .business-calendar td {
  border: 1px solid #DFDFDF;
  font-size: 0.8125rem;
  font-weight: bold;
  padding: 6px 0;
  position: relative;
  vertical-align: top;
  z-index: 1;
}
.business-calendar-box .business-calendar .today {
  text-decoration: underline;
}
.business-calendar-box .business-calendar .attr0::before {
  background: #26659A;
  opacity: 1;
}
.business-calendar-box .business-calendar .attr0 {
  color: #fff;
}
.business-calendar-box .business-calendar .attr1::before {
  background: #68C1D7;
  opacity: 1;
}
.business-calendar-box .business-calendar .attr1 {
  color: #fff;
}
.business-calendar-box .business-calendar .attr2::before {
  background: #ED9318;
  opacity: 1;
}
.business-calendar-box .business-calendar .attr2 {
  color: #fff;
}
.business-calendar-box .business-calendar {
  border-collapse: separate;
  border-spacing: 0;
  text-align: center;
  table-layout: fixed;
  overflow: hidden;
  width: 100%;
}
.business-calendar-box .business-calendar-attribute li::before {
  border-radius: 50%;
  content: "";
  height: 12px;
  display: inline-block;
  margin: 0 6px 0 0;
  vertical-align: -2px;
  width: 12px;
}
.business-calendar-box .business-calendar-attribute li {
  line-height: 1;
  margin-right: 15px;
  margin-bottom: 10px;
}
.business-calendar-box .business-calendar-attribute .attr0::before {
  background: #26659A;
}
.business-calendar-box .business-calendar-attribute .attr1::before {
  background: #68C1D7;
}
.business-calendar-box .business-calendar-attribute .attr2::before {
  background: #ED9318;
}
.business-calendar-box .business-calendar-attribute {
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 20px 0 0;
}

.post-type03 .single .time {
  margin-right: 1.5em;
}
.post-type03 .single .l-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-decoration: underline;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 3px;
}
.post-type03 .single:hover .l-ttl {
  text-decoration: none;
}
.post-type03 .single:hover {
  opacity: 0.6;
}
.post-type03 .single {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  border-bottom: 1px dotted var(--color01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
}