@charset "UTF-8";
/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #474C52;
  --color_link: #188BB5;
  --color_border: #e9e9e9;
  --color_primary: #1853B5;
  --color_secondary: #188BB5;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
  --color_bg: #F4F7FB;
  --color_border: #ccc;
}

/* ====================================================
【アニメーション】
==================================================== */
: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:
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Local Noto Sans JP",
    "Noto Sans JP",
    sans-serif;
  --font_jp: "Noto Serif JP", serif;
  --font_en: "Lato", sans-serif;
  --font_weight: 400;
  --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;
  font-weight: 500;
  line-height: 1.6;
}

[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: 100px;
}

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 0;
  }
}
.container {
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
}

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

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

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

/*-----------------------------------------------------------
診療時間
-----------------------------------------------------------*/
.time-table {
  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;
  font-weight: 400;
}

@media (max-width: 800px) {
  .time-table th,
  .time-table td {
    padding: 10px 0;
    font-size: 0.8125rem;
  }
}
.time-table tbody td {
  font-size: 0.875rem;
}

@media (max-width: 800px) {
  .time-table tbody td {
    font-size: 0.8125rem;
  }
}
.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: grid;
  grid-template-columns: auto 1fr;
  gap: 5px;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 10px;
}

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

/*-----------------------------------------------------------
診療カレンダー
-----------------------------------------------------------*/
:root {
  --event01: #FFCCCC;
  --event02: #FFCC99;
  --event03: #CCFFCC;
  --event04: #CCCCFF;
}

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

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

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

.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 var(--color_primary) 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: var(--color_bg);
  border: 1px solid var(--color_border);
  text-align: center;
  font-weight: bold;
  font-size: 0.9375rem;
  padding: 5px;
  width: 14%;
}

.business-calendar-box-wrap .business-calendar td {
  background: var(--color_white);
  border: 1px solid var(--color_border);
  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 {
  grid-template-columns: 1fr;
}

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

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

.business-calendar-box-wrap .business-calendar .attr0,
.business-calendar-box-wrap .business-calendar .attr1,
.business-calendar-box-wrap .business-calendar .attr2,
.business-calendar-box-wrap .business-calendar .attr3 {
  color: var(--color_black);
}

.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 {
    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;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  padding-right: 45px;
  position: relative;
  font-family: var(--font_jp);
  font-weight: 500;
}

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

.btn-more::before {
  background-color: var(--color_primary);
  width: 30px;
  height: 30px;
  right: 0;
  -webkit-animation: none;
          animation: none;
}

.btn-more::after {
  background-color: var(--color_white);
  width: 10px;
  height: 10px;
  right: 10px;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}

.btn-more.white {
  color: var(--color_white);
}

.btn-more.white::before {
  background-color: var(--color_white);
}

.btn-more.white::after {
  background-color: var(--color_primary);
}

@media (any-hover: hover) {
  .btn-more:hover::after {
    right: 5px;
  }
}
.btn-more:focus-visible::after {
  right: 5px;
}

@media (max-width: 800px) {
  .btn-more {
    font-size: 1rem;
  }
}
.btn-tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 10px 35px;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1.375rem;
  font-family: var(--font_en);
  font-weight: 400;
  border-radius: 4px;
  white-space: nowrap;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.btn-tel::before {
  content: "";
  -webkit-mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  background-color: currentColor;
  width: 22px;
  height: 22px;
}

@media (any-hover: hover) {
  .btn-tel:hover {
    background-color: var(--color_secondary);
  }
}
.btn-tel:focus-visible {
  background-color: var(--color_secondary);
}

.btn-tel.white {
  background-color: transparent;
  color: var(--color_white);
  border: 1px solid currentColor;
}

@media (any-hover: hover) {
  .btn-tel.white:hover {
    background-color: oklch(from #fff l c h/0.2);
  }
}
.btn-tel.white:focus-visible {
  background-color: oklch(from #fff l c h/0.2);
}

@media (max-width: 800px) {
  .btn-tel {
    width: 100%;
  }
}
.btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 17px 35px;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.btn-icon svg {
  fill: currentColor;
}

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

.btn-icon.white {
  background-color: transparent;
  color: var(--color_white);
  border: 1px solid currentColor;
}

@media (any-hover: hover) {
  .btn-icon.white:hover {
    background-color: oklch(from #fff l c h/0.2);
  }
}
.btn-icon.white:focus-visible {
  background-color: oklch(from #fff l c h/0.2);
}

@media (max-width: 800px) {
  .btn-icon {
    min-width: 0;
    width: 100%;
    font-size: 1rem;
  }
}
.btn-style01 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding: 20px 80px 20px 30px;
  width: min(540px, 100%);
  background-color: oklch(from #fff l c h/0.2);
  border-radius: 4px;
  border: 1px solid var(--color_white);
  position: relative;
}

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

.btn-style01::before {
  background-color: var(--color_white);
  width: 30px;
  height: 30px;
  right: 30px;
}

.btn-style01::after {
  background-color: var(--color_primary);
  width: 10px;
  height: 10px;
  right: 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-style01 .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
  display: grid;
  place-content: center;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color_white);
}

.btn-style01 .txt {
  font-family: var(--font_jp);
  font-size: 1.25rem;
}

.btn-style01 .txt small {
  font-size: 1rem;
}

@media (any-hover: hover) {
  .btn-style01:hover::after {
    right: 35px;
  }
}
.btn-style01:focus-visible::after {
  right: 35px;
}

@media (max-width: 800px) {
  .btn-style01 {
    padding: 15px 60px 15px 20px;
    gap: 15px;
  }
  .btn-style01::before {
    right: 20px;
  }
  .btn-style01::after {
    right: 30px;
  }
  .btn-style01 .icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50px;
            flex: 0 0 50px;
  }
  .btn-style01 .icon img {
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .btn-style01 .txt {
    font-size: 1rem;
  }
  .btn-style01 .txt small {
    font-size: 0.875rem;
  }
}
.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px 40px;
}

.btn-wrap.gap15 {
  gap: 15px;
}

.btn-wrap.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-wrap.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 800px) {
  .btn-wrap {
    gap: 15px 20px;
  }
}
/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

.list-category-links a {
  background-image: -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: grid;
  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: "";
  -webkit-mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  background-color: var(--color_primary);
  width: 15px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 10px;
  -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;
  border-radius: 10px;
}

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

.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;
  background-color: var(--color_bg);
  border: 1px solid var(--color_border);
  border-radius: 100px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 1px 5px;
  text-align: center;
  color: var(--color_primary);
}

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

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

@media (max-width: 800px) {
  .post-under-blog {
    margin-bottom: 30px;
  }
  .post-under-blog a {
    grid-template-columns: 120px 1fr;
    gap: 10px;
    padding: 10px 0;
  }
  .post-under-blog a::before {
    display: none;
  }
  .post-under-blog .post-img img {
    aspect-ratio: 7/5;
  }
  .post-under-blog .post-data {
    display: -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: grid;
  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 {
    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 {
    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;
  font-family: var(--font_en);
}

.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;
  background-color: var(--color_bg);
  border: 1px solid var(--color_border);
  border-radius: 100px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 2px 8px;
  text-align: center;
  width: 100%;
  color: var(--color_primary);
}

.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: -moz-fit-content;
  width: -webkit-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: var(--color_primary);
  text-decoration: underline;
  text-underline-offset: 15px;
}

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

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

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

.post-number .prev::before,
.post-number .next::before {
  content: "";
  background-color: var(--color_primary);
  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;
  border-radius: 5px;
}

.post-number-single .all {
  background: var(--color_primary);
  color: var(--color_white);
  border: 1px solid var(--color_primary);
  font-size: 0.8125rem;
  font-family: var(--font_en);
  line-height: 28px;
  max-width: 200px;
  height: 30px;
  width: 100%;
  -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_primary);
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_primary);
  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_primary);
  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_primary);
}

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

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

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

/*------------
症例紹介
--------------*/
.case-layout {
  background-color: var(--color_bg);
  padding: 6%;
  margin-bottom: 50px;
  border-radius: 15px;
}

.case-layout time {
  display: block;
  font-family: var(--font_en);
  font-size: 0.8125rem;
  margin-right: 15px;
}

.case-layout .category {
  display: inline-block;
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  color: var(--color_primary);
  font-size: 0.6875rem;
  padding: 0 5px;
  margin-right: 10px;
  border-radius: 50px;
}

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

.case-layout .post-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.case-layout .before-after {
  margin-bottom: 30px;
}

.post-table,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table {
  background-color: #fff;
  border: 1px solid #eee;
}

.post-table tr th,
.post-table tr td,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
  border: 1px solid #eee;
  line-height: 1.5;
  font-size: 0.9375rem;
  padding: 15px;
}

.post-table tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
  background-color: var(--color_primary);
  color: #fff;
  vertical-align: top;
  text-align: left;
  width: 25%;
}

.case-layout .l-btn {
  text-align: center;
  margin-top: 50px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5%;
}

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

.before-after figure {
  display: grid;
  place-items: center;
  height: 300px;
  position: relative;
}

.before-after figure img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  max-height: 300px;
  border-radius: 10px;
}

.before-after p {
  font-family: var(--font_en);
  text-align: center;
}

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

@media (max-width: 800px) {
  .case-layout .l-ttl {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  .case-layout .post-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
  }
  .case-layout .before-after {
    margin-bottom: 30px;
  }
  .post-table tr th,
  .post-table tr td,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
    display: block;
    padding: 10px;
    font-size: 0.875rem;
  }
  .post-table tr th,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
    width: 100% !important;
  }
  .case-layout .l-btn {
    margin-top: 30px;
  }
  .before-after {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .before-after figure {
    height: auto;
  }
}
/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.h-wrapper {
  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 1.11% 15px 1.67%;
  background-color: var(--color_white);
}

.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) {
  .header {
    position: static;
  }
  .h-wrapper {
    gap: 15px;
    padding: 15px;
  }
  .h-logo {
    max-width: 270px;
  }
  .h-utility {
    display: none;
  }
}
/*------------
Gnavi
--------------*/
.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 {
  display: inline-block;
  font-family: var(--font_jp);
}

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

.gnavi-menu-btn {
  cursor: pointer;
  display: grid;
  place-content: center;
  gap: 7px;
  width: 70px;
  height: 70px;
  background-color: var(--color_primary);
  border-radius: 3px;
  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: 27px;
  height: 15px;
  margin-inline: auto;
}

.gnavi-menu-btn-line span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color_white);
  border-radius: 5px;
  -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.9375rem;
  line-height: 1;
  letter-spacing: 0.01em;
  font-family: var(--font_en);
  font-weight: 400;
  text-align: center;
  color: var(--color_white);
}

.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 {
  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;
  background-color: var(--color_bg);
  padding: 160px 0;
  overflow-y: auto;
}

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

.gnavi-drawer-container {
  width: min(90%, 1110px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 48.65% 1fr;
  gap: 6.31%;
}

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

.navi-bnr-wrap {
  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: 10px;
}

.gnavi-links-item + .gnavi-links-item {
  margin-top: 30px;
}

.gnavi-links-ttl {
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--color_primary);
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color_border);
  margin-bottom: 15px;
}

.drawer-links {
  -moz-column-count: 2;
  -webkit-column-count: 2;
          column-count: 2;
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5;
}

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

.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;
  }
}
.drawer-links-sub {
  margin-top: 10px;
}

.drawer-links-sub li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.drawer-links-sub li::before {
  content: "-";
}

@media (max-width: 800px) {
  .gnavi-drawer {
    padding: 50px 0 100px;
  }
  .gnavi-drawer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 50px;
  }
  .gnavi-links-ttl {
    font-size: 0.9375rem;
  }
  .drawer-links {
    -moz-column-count: 1;
    -webkit-column-count: 1;
            column-count: 1;
  }
  .gnavi-logo {
    width: 270px;
    margin-inline: auto;
  }
}
/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.pagetop {
  display: block;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
}

@media (max-width: 800px) {
  .pagetop {
    display: none;
  }
}
.f-cta-layout {
  padding: 100px 0;
  background: -webkit-gradient(linear, left top, right top, from(var(--color_primary)), to(var(--color_secondary)));
  background: linear-gradient(90deg, var(--color_primary) 0%, var(--color_secondary) 100%);
  color: var(--color_white);
}

.f-cta-layout .l-container {
  width: min(90%, 1200px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
}

.f-cta-layout .t-h2 {
  margin-bottom: 50px;
}

.f-cta-layout .t-h2 [lang=en] {
  color: currentColor;
}

.f-cta-layout .col-ttl {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.66;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .f-cta-layout {
    padding: 50px 0;
  }
  .f-cta-layout .l-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .f-cta-layout .col-ttl {
    font-size: 1.125rem;
  }
}
.f-contents {
  display: grid;
  grid-template-columns: 41.33% minmax(0, 512px);
  gap: 8.67%;
  margin-inline: auto;
  width: min(90%, 1200px);
  padding: 100px 0 80px;
}

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

.f-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-inline: auto;
  width: min(90%, 1200px);
  margin-bottom: 40px;
}

.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.875rem;
  line-height: 1;
}

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

.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;
  }
}
.copyright {
  font-size: 0.8125rem;
}

@media (max-width: 800px) {
  .f-contents {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 50px 0;
  }
  .f-logo {
    width: 270px;
    margin-inline: auto;
  }
  .f-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin-bottom: 70px;
  }
}
.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  :root {
    --navi-background: #1853B5;
    --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;
    width: 100%;
    height: 65px;
    z-index: 10000;
  }
  .sp-navi-btns > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
  }
  .sp-navi-btns .item {
    font-size: 0.625rem;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }
  .sp-navi-btns .item 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: 10px 0;
  }
  .sp-navi-btns .item .img {
    display: block;
  }
  .sp-navi-btns .item .img svg {
    -o-object-fit: cover;
    object-fit: cover;
    height: 20px;
    margin-bottom: 8px;
    stroke: var(--svg-stroke);
  }
  .sp-navi-btns .item .ttl {
    display: block;
  }
  .sp-menu-btn {
    background-color: transparent;
    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;
  }
  .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);
  }
}
.gnavi-links [aria-current],
.drawer-links [aria-current],
.f-links [aria-current],
.f-bottom-links [aria-current],
.sp-navi-list [aria-current] {
  color: #ccc;
}

.layout-sidebar {
  display: grid;
  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%, 1200px);
}

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

.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: 0.75rem;
  color: var(--color_primary);
}

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

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

@media (max-width: 800px) {
  .layout-sidebar {
    grid-template-columns: 1fr;
    grid-template-areas: "body" "sidebar";
    gap: 5rem;
  }
  .layout-sidebar .l-sidebar {
    position: static;
  }
}
/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
  width: 97.78%;
  margin: 100px auto 0;
}

.hero .splide__slide {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.hero .splide__slide::before {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(24, 83, 181)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(24, 83, 181), rgba(255, 255, 255, 0));
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.hero .splide__slide img {
  width: 100%;
  height: calc(100svh - 110px);
  -o-object-fit: cover;
  object-fit: cover;
}

.hero .splide__pagination {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 2;
}

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

.hero-desc {
  position: absolute;
  bottom: 100px;
  left: 100px;
  z-index: 2;
  color: var(--color_white);
}

.hero-catch {
  font-family: var(--font_jp);
  font-size: clamp(1.875rem, 2.22vw, 2.5rem);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 10px;
}

.hero-txt {
  font-family: var(--font_jp);
  font-size: clamp(0.875rem, 1.22vw, 1.375rem);
  font-weight: 500;
  line-height: 1.68;
  margin-bottom: 20px;
}

.hero-en {
  font-family: var(--font_en);
  font-weight: 400;
  font-size: clamp(1.0625rem, 1vw, 1.125rem);
  line-height: 1.7;
}

@media (max-width: 800px) {
  .hero {
    margin-top: 0;
    width: 95%;
  }
  .hero .splide__slide img {
    height: 460px;
  }
  .hero .splide__pagination {
    right: 50%;
    bottom: 15px;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  .hero-desc {
    left: 20px;
    bottom: 50px;
  }
}
/*------------
Components
--------------*/
.t-h2 {
  margin-bottom: 70px;
}

.t-h2 [lang=en] {
  font-size: 1.125rem;
  color: var(--color_primary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.t-h2 .jp {
  font-size: 2.375rem;
  line-height: 1.8;
}

@media (max-width: 800px) {
  .t-h2 {
    margin-bottom: 40px;
  }
  .t-h2 [lang=en] {
    margin-bottom: 10px;
  }
  .t-h2 .jp {
    font-size: 1.5625rem;
  }
}
/*------------
Section
--------------*/
/* Block */
.sec01 {
  padding: 150px 0;
}

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

.sec03-ttl-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 10.2%;
  margin-bottom: 70px;
}

.sec03-ttl-wrap .t-h2 {
  margin-bottom: 0;
}

.sec03-ttl-wrap .l-desc {
  margin-top: 50px;
}

@media (max-width: 800px) {
  .sec03 {
    padding: 50px 0;
  }
  .sec03-ttl-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .sec03-ttl-wrap .l-desc {
    margin-top: 0;
  }
}
.sec04 {
  max-width: 1760px;
  width: 97.78%;
  margin-inline: auto;
  border-radius: 15px;
  background-color: var(--color_bg);
  padding: 150px 0;
}

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

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

@media (max-width: 800px) {
  .sec06 {
    padding: 50px 0;
  }
}
.sec07 {
  max-width: 2000px;
  margin-inline: auto;
  padding: 150px 0;
  padding-left: max(5vw + 20px, (100vw - 1500px) / 2);
  position: relative;
  z-index: 0;
}

.sec07::before {
  content: "";
  background-color: var(--color_bg);
  border-radius: 15px;
  position: absolute;
  inset: 0 10% 0 1.11%;
  z-index: -1;
}

@media (max-width: 800px) {
  .sec07 {
    padding: 50px 0 50px 5vw;
  }
  .sec07::before {
    inset: 0 25% 0 3%;
  }
}
.sec08 {
  padding: 150px 0;
}

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

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

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

/* top-post */
.t-news-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas: "ttl body" "btn body";
  gap: 50px 0;
}

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

.t-news-layout .l-ttl [lang=en] {
  font-size: 1.125rem;
  color: var(--color_primary);
}

.t-news-layout .l-ttl .jp {
  font-size: 1.875rem;
}

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

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

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

.post-top-news .post-data {
  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: 5px 15px;
  margin-bottom: 5px;
}

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

.post-top-news .category {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid var(--color_primary);
  border-radius: 5px;
  line-height: 1;
  font-size: 0.6875rem;
  color: var(--color_primary);
}

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

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

@media (max-width: 800px) {
  .post-top-news time {
    font-size: 0.875rem;
  }
}
.post-top-blog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 55px;
}

.post-top-blog .post-item {
  display: grid;
  gap: 20px;
}

.post-top-blog .post-img img {
  aspect-ratio: 337/220;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
}

.post-top-blog .post-ttl {
  font-size: 1.5rem;
  line-height: 1.6;
}

.post-top-blog .post-desc {
  padding-left: 28px;
  position: relative;
}

.post-top-blog .post-desc::before {
  content: "";
  background-color: #ccc;
  border-radius: 50px;
  width: 8px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.post-top-blog .post-btn {
  text-align: right;
}

@media (max-width: 800px) {
  .post-top-blog {
    width: calc(100% + 5vw);
    grid-template-columns: repeat(4, 250px);
    gap: 5vw;
    overflow-x: auto;
    padding: 0 5vw 10px 0;
  }
  .post-top-blog .post-item {
    gap: 15px;
  }
  .post-top-blog .post-ttl {
    font-size: 1.125rem;
  }
}
.top-case-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas: "ttl body" "btn body";
  gap: 50px 0;
}

.top-case-layout .t-h2 {
  grid-area: ttl;
  margin-bottom: 0;
}

.top-case-layout .cutoff-slider {
  grid-area: body;
}

.top-case-layout .l-btn {
  grid-area: btn;
  margin-bottom: 70px;
}

@media (max-width: 800px) {
  .top-case-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "ttl" "body" "btn";
    gap: 40px;
  }
  .top-case-layout .l-btn {
    margin: 0;
  }
}
.post-case {
  height: 100%;
}

.post-case a {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  height: 100%;
  padding: 30px;
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-radius: 15px;
}

.post-case .post-img {
  aspect-ratio: 35/22;
  border-radius: 15px;
  overflow: hidden;
}

.post-case .post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

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

.post-case .category {
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 0.8125rem;
  line-height: 1;
  color: var(--color_primary);
}

.post-case .category + .category::before {
  content: "|";
  color: #ccc;
  margin: 0 10px;
  display: inline-block;
}

@media (any-hover: hover) {
  .post-case a:hover .post-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.post-case a:focus-visible .post-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.top-column-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  grid-template-areas: "ttl btn" "body body";
  gap: 70px 50px;
}

.top-column-layout .t-h2 {
  grid-area: ttl;
  margin-bottom: 0;
}

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

.top-column-layout .l-btn {
  grid-area: btn;
  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;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .top-column-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "ttl" "body" "btn";
    gap: 40px;
  }
  .top-column-layout .l-btn {
    display: block;
    text-align: center;
  }
}
.top-post-column {
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 15px 2.5%;
  grid-template-areas: "main sub1" "main sub2" "main sub3";
}

.top-post-column .post-item a {
  padding: 30px;
  border: 1px solid var(--color_border);
  border-radius: 15px;
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 35px;
  height: 100%;
}

.top-post-column .post-item:nth-child(1) {
  grid-area: main;
}

.top-post-column .post-item:nth-child(1) a {
  padding: 40px;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 20px;
}

.top-post-column .post-item:nth-child(2) {
  grid-area: sub1;
}

.top-post-column .post-item:nth-child(3) {
  grid-area: sub2;
}

.top-post-column .post-item:nth-child(4) {
  grid-area: sub3;
}

.top-post-column .post-img {
  aspect-ratio: 83/59;
  border-radius: 15px;
  overflow: hidden;
}

.top-post-column .post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.top-post-column .post-item:nth-child(1) .post-img {
  aspect-ratio: 13/8;
}

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

.top-post-column .post-ttl {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
  font-family: var(--font_jp);
  margin-bottom: 5px;
}

.top-post-column .post-item:nth-child(1) .post-ttl {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.top-post-column .category {
  display: inline-block;
  font-size: 0.6875rem;
  color: var(--color_primary);
  line-height: 1;
  padding: 5px 15px;
  border: 1px solid var(--color_primary);
  border-radius: 5px;
  margin: 0 5px 5px 0;
}

@media (any-hover: hover) {
  .top-post-column .post-item a:hover .post-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.top-post-column .post-item a:focus-visible .post-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media (max-width: 800px) {
  .top-post-column {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    grid-template-areas: "main" "sub1" "sub2" "sub3";
    gap: 15px;
  }
  .top-post-column .post-item a {
    padding: 25px !important;
  }
  .top-post-column .post-item a {
    grid-template-columns: 110px 1fr;
    gap: 15px;
  }
  .top-post-column time {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }
  .top-post-column .post-item:nth-child(1) .post-ttl {
    font-size: 0.9375rem;
  }
  .top-post-column .post-item:not(:nth-child(1)) .post-img {
    aspect-ratio: 1/1;
  }
  .top-post-column .post-item:not(:nth-child(1)) .post-ttl {
    font-size: 0.8125rem;
  }
}
/* top-layout */
.top-layout01 {
  max-width: 1800px;
  width: 97.78%;
  margin-inline: auto;
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 3.41%;
  padding: 150px 0;
}

.top-layout01::before {
  content: "";
  background-color: var(--color_bg);
  border-radius: 15px;
  position: absolute;
  inset: 0 9.09% 0 0;
  z-index: -1;
}

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

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

.top-layout01 .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 690px;
  margin: 0 0 0 auto;
}

.top-layout01 p + p {
  margin-top: 2em;
}

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

.top-layout01 .l-catch {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color_primary);
}

.top-layout01.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.top-layout01.reverse::before {
  inset: 0 0 0 9.09%;
}

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

@media (max-width: 800px) {
  .top-layout01 {
    padding: 50px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 95%;
  }
  .top-layout01::before,
  .top-layout01.reverse::before {
    inset: 200px 0 0;
  }
  .top-layout01 .l-img {
    width: 90%;
    margin-inline: auto;
  }
  .top-layout01 .l-desc,
  .top-layout01.reverse .l-desc {
    width: 90%;
    margin: 0 auto;
  }
  .top-layout01 .l-btn {
    margin-top: 30px;
  }
  .top-layout01 .l-catch {
    font-size: 1.125rem;
  }
}
.top-layout02 {
  display: grid;
  grid-template-columns: 44.67% 1fr;
  gap: 5.33%;
  margin-bottom: 100px;
}

.top-layout02 .l-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
}

.top-layout02 .l-desc {
  max-width: 600px;
}

.top-layout02 .l-item {
  display: grid;
  grid-template-columns: 80px 1fr;
}

.top-layout02 .l-item + .l-item {
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid var(--color_border);
}

.top-layout02 .num {
  font-family: var(--font_en);
  font-weight: 400;
  color: var(--color_primary);
  line-height: 1;
  font-size: 1.125rem;
  padding-top: 5px;
}

.top-layout02 .l-ttl {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--color_primary);
  margin-bottom: 50px;
}

.top-layout02 .l-btn {
  margin-top: 50px;
  text-align: right;
}

@media (max-width: 800px) {
  .top-layout02 {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  .top-layout02 .l-item + .l-item {
    padding-top: 30px;
    margin-top: 30px;
  }
  .top-layout02 .l-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .top-layout02 .l-ttl {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }
  .top-layout02 .l-btn {
    margin-top: 30px;
  }
}
.top-layout03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 7.03%;
  padding: 60px 7.33%;
  background-color: var(--color_white);
  border-radius: 15px;
}

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

.top-layout03 .l-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
}

.top-layout03 .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-columns: 80px 1fr;
}

.top-layout03 .num {
  font-family: var(--font_en);
  font-weight: 400;
  color: var(--color_primary);
  line-height: 1;
  font-size: 1.125rem;
  padding-top: 5px;
}

.top-layout03 .l-ttl {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--color_primary);
  margin-bottom: 50px;
}

.top-layout03 .l-btn {
  margin-top: 50px;
  text-align: right;
}

@media (max-width: 800px) {
  .top-layout03 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    padding: 25px 5%;
  }
  .top-layout03 .l-img {
    width: 100%;
  }
  .top-layout03 .l-desc {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .top-layout03 .l-ttl {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }
  .top-layout03 .l-btn {
    margin-top: 30px;
  }
}
/* top-card */
.top-card01 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px 10px;
}

.top-card01 .item {
  padding: 30px;
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 15px;
  color: var(--color_white);
}

.top-card01 .item.item-main {
  grid-row: span 3;
}

.top-card01 .item.span2 {
  grid-column: span 2;
}

.top-card01 .item.bg01 {
  background-color: var(--color_bg);
  color: var(--color_primary);
}

.top-card01 .item-ttl {
  font-size: 1.5rem;
  line-height: 1.6;
  min-height: 3.2em;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .top-card01 {
    grid-template-columns: repeat(2, 1fr);
  }
  .top-card01 .item {
    padding: 25px 5%;
  }
  .top-card01 .item.item-main {
    grid-row: auto;
    grid-column: span 2;
  }
  .top-card01 .item.span2 {
    grid-column: auto;
  }
  .top-card01 .item-ttl {
    font-size: 1rem;
    min-height: auto;
  }
}
.top-card02 + .top-card02 {
  margin-top: 80px;
}

.top-card02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.top-card02 .l-item {
  padding: 80px 0;
  background: -webkit-gradient(linear, left top, right top, from(var(--color_primary)), to(var(--color_secondary)));
  background: linear-gradient(90deg, var(--color_primary) 0%, var(--color_secondary) 100%);
  border-radius: 15px;
  color: var(--color_white);
}

.top-card02 .l-item .l-container {
  max-width: 445px;
  width: 90%;
  margin-inline: auto;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "ttl" "desc" "btn";
  gap: 40px;
}

.top-card02 .l-item.full {
  grid-column: span 2;
  padding: 80px 0;
}

.top-card02 .l-item.full .l-container {
  max-width: 1200px;
  grid-template-columns: 350px 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas: "ttl desc" "btn btn";
  gap: 40px 80px;
}

.top-card02 .ttl-wrap {
  grid-area: ttl;
  display: grid;
  grid-template-columns: 100px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
}

.top-card02 .l-icon {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color_white);
  display: grid;
  place-content: center;
}

.top-card02 .l-ttl {
  font-family: var(--font_jp);
  font-weight: 500;
  display: grid;
  gap: 10px;
}

.top-card02 .l-ttl .ttl-main {
  font-size: 1.5rem;
  line-height: 1.6;
}

.top-card02 .l-desc {
  grid-area: desc;
}

.top-card02 p + p {
  margin-top: 2em;
}

.top-card02 .l-btn {
  grid-area: btn;
  text-align: right;
}

.top-card02.narrow {
  padding: 0 5.33% 100px;
  position: relative;
  z-index: 0;
}

.top-card02.narrow::before {
  content: "";
  background-color: var(--color_bg);
  border-radius: 15px;
  position: absolute;
  inset: 170px 0 0;
  z-index: -1;
}

.top-card02.bg-white .l-item {
  background: var(--color_white);
  border: 1px solid var(--color_white);
  color: var(--color_text);
}

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

.top-card02.col3 .l-item:not(.full) {
  padding: 50px 0;
}

.top-card02.col3 .l-item:not(.full) .l-container {
  max-width: 285px;
}

.top-card02.col3 .l-item:not(.full) .ttl-wrap {
  grid-template-columns: 70px 1fr;
}

.top-card02.col3 .l-item .l-ttl .ttl-main {
  font-size: 1.25rem;
}

.top-card02.col3 .l-icon {
  background: -webkit-gradient(linear, left top, right top, from(var(--color_primary)), to(var(--color_secondary)));
  background: linear-gradient(90deg, var(--color_primary) 0%, var(--color_secondary) 100%);
}

.top-card02.col3 .l-item.full {
  grid-column: span 3;
  border-color: var(--color_primary);
}

@media (max-width: 800px) {
  .top-card02 {
    grid-template-columns: 1fr;
  }
  .top-card02 .l-item,
  .top-card02 .l-item.full {
    padding: 25px 0;
  }
  .top-card02 .l-item.full {
    grid-column: auto;
  }
  .top-card02 .l-item .l-container {
    gap: 30px;
  }
  .top-card02 .l-item.full .l-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "ttl" "desc" "btn";
    gap: 30px;
  }
  .top-card02 .ttl-wrap {
    grid-template-columns: 60px 1fr;
    gap: 15px;
  }
  .top-card02 .l-icon img {
    height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .top-card02 .l-ttl {
    gap: 5px;
  }
  .top-card02 .l-ttl .ttl-main {
    font-size: 1.25rem;
  }
  .top-card02.narrow {
    padding: 0 5% 50px;
  }
  .top-card02.col3 {
    grid-template-columns: 1fr;
  }
  .top-card02.col3 .l-item:not(.full) {
    padding: 25px 0;
  }
  .top-card02.col3 .l-item.full {
    grid-column: auto;
  }
}
/* top-slider */
.loop-slider {
  position: relative;
  z-index: 2;
}

.loop-slider .splide__slide img {
  border-radius: 15px;
}

/* top-box */
.top-box01 {
  padding: 200px 0 90px;
  background: -webkit-gradient(linear, left top, right top, from(var(--color_primary)), to(var(--color_secondary)));
  background: linear-gradient(90deg, var(--color_primary) 0%, var(--color_secondary) 100%);
  color: var(--color_white);
  border-radius: 15px;
  margin-top: -125px;
}

.top-box01 .box-container {
  max-width: 1200px;
  width: 90%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  grid-template-areas: "ttl desc" "btn desc";
  gap: 40px;
}

.top-box01 .box-ttl {
  grid-area: ttl;
}

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

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

.top-box01 .box-desc {
  grid-area: desc;
}

.top-box01 .box-desc p + p {
  margin-top: 2em;
}

.top-box01 .box-btn {
  grid-area: btn;
}

@media (max-width: 800px) {
  .top-box01 {
    margin-top: -60px;
    padding: 110px 0 50px;
  }
  .top-box01 .box-container {
    grid-template-columns: 1fr;
    grid-template-areas: "ttl" "desc" "btn";
    gap: 30px;
  }
  .top-box01 .box-ttl .jp {
    font-size: 1.5625rem;
  }
}
/* cutoff-slider */
.cutoff-slider {
  overflow: hidden;
  padding: 0 5vw 0 0;
}

.cutoff-slider .splide__track {
  overflow: visible;
}

.cutoff-slider .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.cutoff-slider .splide__arrow svg {
  display: none;
}

.cutoff-slider .splide__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  margin: 40px 16.67vw 0 0;
}

@media (max-width: 800px) {
  .cutoff-slider .splide__controls {
    margin: 20px 0 0;
  }
}
/* top-access-layout */
.top-access-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  border-radius: 15px;
  overflow: hidden;
  max-width: 1800px;
  width: 97.78%;
  margin-inline: auto;
}

.top-access-layout .l-desc {
  width: 550px;
  background-color: var(--color_primary);
  color: var(--color_white);
  padding: 80px;
}

.top-access-layout .t-h2 {
  margin-bottom: 50px;
}

.top-access-layout .t-h2 [lang=en] {
  color: var(--color_white);
}

.top-access-layout p + p {
  margin-top: 2em;
}

.top-access-layout .l-map {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.top-access-layout iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  .top-access-layout {
    display: block;
    width: 90%;
  }
  .top-access-layout .l-desc {
    width: 100%;
    padding: 40px 5%;
  }
  .top-access-layout .t-h2 {
    margin-bottom: 40px;
  }
  .top-access-layout iframe {
    height: 300px;
  }
}
/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  position: relative;
  max-width: 1800px;
  margin-inline: auto;
  z-index: 0;
  padding: 70px 1.11% 0 5vw;
  margin-top: 160px;
}

.page-header::before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(var(--color_primary)), to(var(--color_secondary)));
  background: linear-gradient(90deg, var(--color_primary) 0%, var(--color_secondary) 100%);
  position: absolute;
  inset: 0 15.56% 150px 0;
  z-index: -1;
}

.page-ttl {
  max-width: 1630px;
  margin-left: auto;
  height: 420px;
  background: url(../images/under/pagettl_bg.jpg) no-repeat center/cover;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  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;
}

.page-ttl::before {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(24, 83, 181)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(24, 83, 181), rgba(255, 255, 255, 0));
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.page-ttl .title {
  color: var(--color_white);
  font-size: 2.5rem;
  line-height: 1.5;
  padding: 0 5vw 0 max(5vw, (100% - 1340px) / 2);
  position: relative;
  z-index: 2;
  font-family: var(--font_jp);
}

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

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

.breadcrumb ul li {
  display: inline;
}

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

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

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

@media (max-width: 800px) {
  .page-header {
    margin: 0 auto;
    padding: 30px 3vw 0 5vw;
  }
  .page-header::before {
    inset: 0 15.56% 50px 0;
  }
  .page-ttl {
    height: 200px;
  }
  .page-ttl .title {
    font-size: 1.5625rem;
  }
  .u-contents {
    padding: 50px 0;
  }
  .u-contents p + p {
    margin-top: 1em;
  }
}
.u-h2 {
  margin-bottom: 50px;
}

.u-h2 [lang=en] {
  font-size: 1.125rem;
  color: var(--color_primary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.u-h2 .jp {
  font-size: 2.375rem;
  line-height: 1.6;
}

.u-h3 {
  margin-bottom: 30px;
  font-size: 1.5rem;
  color: var(--color_white);
  background-color: var(--color_primary);
  padding: 10px 30px;
  border-radius: 5px;
  line-height: 1.6;
}

.u-h4 {
  margin-bottom: 20px;
  font-size: 1.25rem;
  padding-left: 15px;
  position: relative;
}

.u-h4::before {
  content: "";
  background-color: var(--color_primary);
  width: 5px;
  height: 75%;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

@media (max-width: 800px) {
  .u-h2 {
    margin-bottom: 30px;
  }
  .u-h2 [lang=en] {
    font-size: 0.9375rem;
    margin-bottom: 15px;
  }
  .u-h2 .jp {
    font-size: 1.4375rem;
  }
  .u-h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
    padding: 10px 15px;
  }
  .u-h4 {
    margin-bottom: 15px;
    font-size: 1.125rem;
  }
}
.tall + .tall {
  margin-top: 100px;
}

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

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

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall + .tall {
    margin-top: 80px;
  }
  .short + .short {
    margin-top: 50px;
  }
  .x-short + .x-short {
    margin-top: 30px;
  }
}
.list-disc {
  display: grid;
  grid-gap: 10px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {
  .table-style01 th,
  .table-style01 td {
    padding: 10px;
    line-height: 1.5;
  }
  .table-style01.sp-block {
    border-bottom: 1px solid #c9c9c9;
  }
  .table-style01.sp-block colgroup {
    display: none;
  }
  .table-style01.sp-block th,
  .table-style01.sp-block td {
    display: block;
  }
  .table-style01.sp-block td {
    border-width: 0 1px;
  }
  .table-scroll-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%;
  }
}
.table-style02 th,
.table-style02 td {
  border-bottom: 1px solid;
}

.table-style02 th {
  width: 17%;
  padding: 15px 0;
  border-color: var(--color_primary);
  text-align: left;
  font-weight: 400;
}

.table-style02 td {
  padding: 15px 25px;
  border-color: var(--color_border);
}

@media (max-width: 800px) {
  .table-style02 th {
    width: 25%;
  }
}
.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 {
  left: calc((100% - 875px) / 2);
}

.under-slider01 .splide__arrow--next {
  right: calc((100% - 875px) / 2);
}

.under-slider01 .splide__slide img {
  width: 100%;
  border-radius: 15px;
}

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

.under-slider01 .item-ttl {
  font-size: 1.125rem;
  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%);
}

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

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

@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-img img,
.l-imgL .l-img img {
  border-radius: 15px;
}

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

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

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

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

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

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

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

@media (max-width: 800px) {
  .l-imgR,
  .l-imgL {
    -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
--------------*/
/* l-style */
.layout-style01 {
  width: min(97.78%, 1800px);
  margin-inline: auto;
  padding: 150px 0 150px max(5vw, (100% - 1480px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3.41%;
  position: relative;
  z-index: 0;
}

.layout-style01::before {
  content: "";
  background-color: var(--color_bg);
  border-radius: 15px;
  position: absolute;
  inset: 0 8.52% 0 0;
  z-index: -1;
}

.layout-style01 .l-img {
  width: 50%;
}

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

.layout-style01 .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 50px;
}

.layout-style01 .l-ttl {
  font-size: 2.375rem;
  margin-bottom: 70px;
}

@media (max-width: 800px) {
  .layout-style01 {
    padding: 0 5% 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .layout-style01::before {
    inset: 200px 0 0;
  }
  .layout-style01 .l-img {
    width: 100%;
  }
  .layout-style01 .l-desc {
    margin-top: 0;
  }
  .layout-style01 .l-ttl {
    font-size: 1.4375rem;
    margin-bottom: 40px;
  }
}
.layout-style02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.5%;
}

.layout-style02 .l-img {
  width: 56.64%;
  margin: 0 0 0 -10%;
}

@media (max-width: 1500px) {
  .layout-style02 .l-img {
    margin: 0 0 0 -5%;
  }
}
@media (max-width: 1400px) {
  .layout-style02 .l-img {
    margin: 0 0 0 -3%;
  }
}
.layout-style02 .l-img img {
  border-radius: 15px;
}

.layout-style02 .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 30px;
}

.layout-style02.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.layout-style02.reverse .l-img {
  margin: 0 -10% 0 0;
}

@media (max-width: 1500px) {
  .layout-style02.reverse .l-img {
    margin: 0 -5% 0 0;
  }
}
@media (max-width: 1400px) {
  .layout-style02.reverse .l-img {
    margin: 0 -3% 0 0;
  }
}
.layout-style02 .l-num {
  display: inline-block;
  font-family: var(--font_en);
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 15px;
  color: var(--color_primary);
}

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

.layout-style02 .l-sub-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 30px;
}

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

@media (max-width: 800px) {
  .layout-style02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
    margin: 0 -5vw;
  }
  .layout-style02 .l-img {
    width: 100%;
    margin: 0;
  }
  .layout-style02 .l-img img {
    border-radius: 0;
  }
  .layout-style02.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .layout-style02.reverse .l-img {
    margin: 0;
  }
  .layout-style02 .l-desc {
    padding: 0 5vw;
    margin-top: 0;
  }
  .layout-style02 .l-num {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .layout-style02 .l-ttl {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .layout-style02 .l-sub-ttl {
    gap: 20px;
    font-size: 18px;
    margin-bottom: 25px;
  }
}
/* box-style */
.box-style01 {
  padding: 60px;
  background-color: var(--color_bg);
  border-radius: 15px;
  border: 1px solid var(--color_primary);
}

.box-style01 .box-en {
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 3.125rem;
  line-height: 1.5;
  color: var(--color_primary);
  margin-bottom: 15px;
}

.box-style01 .box-ttl {
  font-size: 1.5rem;
  color: var(--color_primary);
  margin-bottom: 20px;
}

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

@media (max-width: 800px) {
  .box-style01 {
    padding: 25px;
  }
  .box-style01 .box-en {
    font-size: 2.5rem;
  }
  .box-style01 .box-ttl {
    font-size: 1.25rem;
  }
}
.box-style02 {
  background: var(--color_bg);
  border-radius: 15px;
  padding: 5%;
}

.box-style02 .box-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: var(--color_primary);
}

.box-style02 .box-ttl svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25px;
          flex: 0 0 25px;
  stroke: currentColor;
  width: 100%;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 800px) {
  .box-style02 {
    padding: 25px;
  }
  .box-style02 .box-ttl {
    font-size: 1.125rem;
  }
}
/* tab */
[data-tab-content] {
  display: none;
}

[data-tab-content].is-active {
  display: block;
  -webkit-animation: tabFadeIn 0.7s ease 0s 1 normal;
          animation: tabFadeIn 0.7s ease 0s 1 normal;
}

.tab-list {
  border-bottom: 1px solid var(--color_border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
}

.tab-nav-item {
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  border-radius: 5px 5px 0 0;
  color: var(--color_primary);
  padding: 15px 15px 7px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  min-width: 150px;
  line-height: 1.3;
  font-family: var(--font_jp);
}

.tab-nav-item svg {
  fill: currentColor;
  height: 17px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-inline: auto;
}

.tab-nav-item.is-active {
  background: var(--color_primary);
  color: var(--color_white);
}

@media (any-hover: hover) {
  .tab-nav-item:hover {
    background-color: var(--color_primary);
    color: var(--color_white);
  }
}
.tab-nav-item:focus-visible {
  background-color: var(--color_primary);
  color: var(--color_white);
}

@-webkit-keyframes tabFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    opacity: 1;
  }
}

@keyframes tabFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 800px) {
  .tab-list {
    border-bottom: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .tab-nav-item {
    width: 100%;
    border-radius: 5px;
    padding: 10px 10px 8px;
  }
}
/* name */
.name-style01 {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font_jp);
  font-weight: 500;
}

.name-style01 .icon {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(var(--color_primary)), to(var(--color_secondary)));
  background: linear-gradient(90deg, var(--color_primary) 0%, var(--color_secondary) 100%);
  display: grid;
  place-content: center;
}

.name-style01 .icon img {
  width: 100%;
  height: 58px;
  -o-object-fit: contain;
  object-fit: contain;
}

.name-style01 .name {
  font-size: 1.125rem;
}

.name-style01 .status {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 10px;
}

@media (max-width: 800px) {
  .name-style01 {
    grid-template-columns: 60px 1fr;
    gap: 15px;
  }
  .name-style01 .icon img {
    height: 35px;
  }
  .name-style01 .name {
    font-size: 0.875rem;
  }
  .name-style01 .status {
    font-size: 1rem;
    margin-top: 5px;
  }
}
/* アンカーリンク */
.list-anchor-link {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
}

.list-anchor-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding: 0 40px 0 15px;
  border-bottom: 1px solid var(--color_border);
  min-height: 60px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.list-anchor-link a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color_primary);
  border-bottom: 2px solid var(--color_primary);
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

@media (any-hover: hover) {
  .list-anchor-link a:hover {
    border-color: var(--color_primary);
  }
}
@media (max-width: 800px) {
  .list-anchor-link {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .list-anchor-link a {
    font-size: 0.8125rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 8px 8px 20px;
    min-height: 0;
    height: 100%;
  }
  .list-anchor-link a::after {
    top: auto;
    bottom: 10px;
    right: 50%;
    -webkit-transform: translateX(50%) rotate(45deg);
            transform: translateX(50%) rotate(45deg);
  }
  .list-anchor-link a:hover {
    opacity: 0.7;
  }
}
/* フロー */
.flow-style01 {
  grid-row-gap: 50px !important;
  padding-top: 15px;
}

.flow-style01 > li {
  background-color: var(--color_bg);
  padding: 25px;
  border-radius: 15px;
  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;
}

.flow-style01 > li:not(:last-child)::after {
  content: "";
  background-color: var(--color_primary);
  width: 12px;
  height: 24px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flow-style01.col2 > li::after {
  right: -27px;
}

.flow-style01.col3 > li::after {
  right: -21px;
}

.flow-style01.col4 > li::after {
  right: -16px;
}

.flow-style01.no-arrow > li::after {
  display: none;
}

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

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

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

.flow-style01 .flow-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flow-style01 .flow-ttl {
  font-size: 1.125rem;
  margin-bottom: 15px;
  text-align: center;
}

.flow-style01 .flow-btn {
  margin-top: 15px;
  text-align: center;
}

@media (max-width: 800px) {
  .flow-style01 {
    grid-template-columns: 1fr;
    gap: 35px !important;
  }
  .flow-style01 > li:not(:last-child)::after {
    top: auto;
    bottom: -28px;
    right: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}
.flow-style02 {
  display: grid;
  gap: 40px;
}

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

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

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

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

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

.flow-style02 .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 50px;
}

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

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

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

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

@media (max-width: 800px) {
  .flow-style02 {
    gap: 40px;
  }
  .flow-style02 > li {
    grid-template-columns: 50px 1fr;
    grid-gap: 15px;
  }
  .flow-style02 > li:not(:last-child)::before {
    top: 55px;
    left: 24px;
  }
  .flow-style02 > li:not(:last-child)::after {
    left: 20px;
  }
  .flow-style02 .flow-num {
    font-size: 25px;
  }
  .flow-style02 .flow-num::before {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .flow-style02 .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .flow-style02 .flow-img {
    width: 100%;
  }
  .flow-style02 .flow-ttl {
    margin-bottom: 10px;
    font-size: 1.125rem;
  }
  .flow-style02 .flow-desc {
    padding-top: 0;
  }
}
.flow-style03 > li {
  border: 1px solid var(--color_border);
  border-radius: 15px;
  padding: 20px 20px 30px 0;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 120px 1fr;
  position: relative;
}

.flow-style03 > li + li {
  margin-top: 40px;
}

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

.flow-style03 .num {
  text-align: center;
  font-family: var(--font_en);
  color: var(--color_primary);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.flow-style03 .num::before {
  content: attr(data-en);
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}

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

.flow-style03 .flow-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-left: 1px solid var(--color_border);
  padding-left: 50px;
  line-height: 1.7;
}

.flow-style03 .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 30px;
}

.flow-style03 .flow-img {
  width: 30%;
}

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

.flow-style03 .flow-read {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flow-style03 p + p {
  margin-top: 1em;
}

@media (max-width: 800px) {
  .flow-style03 > li {
    grid-template-columns: 55px 1fr;
  }
  .flow-style03 .num {
    font-size: 1.25rem;
  }
  .flow-style03 .num::before {
    font-size: 0.75rem;
  }
  .flow-style03 .flow-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
  .flow-style03 .flow-desc {
    padding-left: 20px;
    line-height: 1.5;
  }
  .flow-style03 .wrapper {
    display: block;
  }
  .flow-style03 .flow-img {
    width: 100%;
    margin-bottom: 15px;
  }
}
/* card */
.card-style01 .card-item {
  padding: 25px 5%;
  border: 1px solid var(--color_border);
  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;
}

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

.card-style01 .card-img.small {
  width: 50%;
  margin-inline: auto;
}

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

.card-style01 .card-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

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

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

.card-style01.bg01 .card-item {
  background-color: var(--color_bg);
  border: none;
}

@media (max-width: 800px) {
  .card-style01 .card-item {
    padding: 25px;
  }
}
.list-card01 > li {
  padding: 5%;
  background-color: var(--color_bg);
  border-radius: 15px;
  display: grid;
  place-content: center;
  font-size: 1.125rem;
  font-family: var(--font_jp);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.list-card01.col1 > li {
  padding: 20px 30px;
  display: block;
  text-align: left;
}

@media (max-width: 800px) {
  .list-card01 > li {
    font-size: 1rem;
  }
}
/* dl-style */
.dl-style01 {
  display: grid;
  grid-template-columns: 25% 75%;
  grid-gap: 10px 0;
}

.dl-style01 > dt {
  background: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5;
  padding: 20px;
  border-radius: 10px 0 0 10px;
}

.dl-style01 > dt .num {
  display: block;
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1;
  margin-bottom: 5px;
}

.dl-style01 > dd {
  background: var(--color_bg);
  padding: 20px;
  border-radius: 0 10px 10px 0;
}

@media (max-width: 800px) {
  .dl-style01 {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .dl-style01 > dt {
    font-size: 1rem;
    padding: 15px;
    border-radius: 10px 10px 0 0;
  }
  .dl-style01 > dd {
    padding: 15px;
    border-radius: 0 0 10px 10px;
  }
  .dl-style01 > dd + dt {
    margin-top: 15px;
  }
}
.dl-history > .item {
  padding: 0 0 50px 50px;
  position: relative;
  z-index: 0;
}

.dl-history > .item::before {
  content: "";
  border-left: 1px solid var(--color_border);
  height: 100%;
  position: absolute;
  top: 4px;
  bottom: 0;
  left: 10px;
}

.dl-history > .item::after {
  content: "";
  background-color: var(--color_white);
  width: 20px;
  height: 20px;
  border: 5px solid var(--color_primary);
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 0;
}

.dl-history > .item:last-child {
  padding-bottom: 0;
}

.dl-history > .item:last-child::before {
  display: none;
}

.dl-history dt {
  font-family: var(--font_en);
  font-size: 1.125rem;
  color: var(--color_primary);
  margin-bottom: 10px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .dl-history > .item {
    padding: 0 0 30px 35px;
  }
  .dl-history > .item::before {
    top: 3px;
  }
  .dl-history > .item::after {
    top: 3px;
  }
  .dl-history dt {
    font-size: 1rem;
  }
}
/* tel-layout */
.tel-layout {
  background: var(--color_bg);
  max-width: 800px;
  padding: 5%;
  margin-inline: auto;
  border-radius: 15px;
}

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

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

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

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

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

@media (max-width: 800px) {
  .tel-layout .l-ttl {
    margin: 0 auto 25px;
  }
  .tel-layout .l-tel {
    font-size: 30px;
  }
  .tel-layout .l-tel img {
    width: 22px;
  }
}
/* staff-layout */
.staff-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 8%;
}

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

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

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

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

.staff-layout .l-ttl {
  color: var(--color_primary);
  line-height: 1;
  margin-bottom: 35px;
}

.staff-layout .name {
  display: inline-block;
  font-size: 1.5625rem;
}

.staff-layout [lang=en] {
  display: inline-block;
  color: var(--color_gray_dark);
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 0.9375rem;
  margin-left: 15px;
}

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

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

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

@media (max-width: 800px) {
  .staff-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .staff-layout .l-img {
    width: auto;
    max-width: 300px;
    margin: 0 auto;
  }
  .staff-layout .l-ttl {
    margin-bottom: 25px;
  }
  .staff-layout .name {
    font-size: 1.375rem;
  }
  .staff-layout .kana {
    font-size: 0.75rem;
  }
  .card-profile {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .card-profile .item {
    padding: 20px;
  }
}
/* Title */
.ttl-style01 {
  color: var(--color_primary);
  border-bottom: 1px dashed var(--color_primary);
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 1.125rem;
}

.ttl-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  font-size: 1.5rem;
  margin-bottom: 30px;
  padding: 10px 15px;
  background-color: var(--color_bg);
  border-radius: 5px;
}

.ttl-num .num {
  border-radius: 50px;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 0.9375rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38px;
          flex: 0 0 38px;
  line-height: 38px;
  text-align: center;
  font-family: var(--font_en);
}

@media (max-width: 800px) {
  .ttl-num {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}
/* checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.checklist input {
  position: absolute;
  opacity: 0;
}

.checklist label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  display: inline-block;
}

.checklist label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color_primary);
  border-radius: 4px;
}

.checklist label::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 6px;
  height: 12px;
  border: solid var(--color_white);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}

.checklist input:checked + label::before {
  background: var(--color_primary);
}

.checklist input:checked + label::after {
  opacity: 1;
}

@media (max-width: 800px) {
  .checklist label::before {
    top: 2px;
  }
  .checklist label::after {
    top: 5px;
  }
}
/* link-treatment */
.link-treatment {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.link-treatment 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: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 18px 55px 18px 20px;
  background: #fff;
  border: 1px solid var(--color_border);
  border-radius: 10px;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  position: relative;
}

.link-treatment a::after {
  content: "";
  width: 20px;
  height: 20px;
  border: 5px solid var(--color_primary);
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .link-treatment a:hover {
    border-color: var(--color_primary);
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }
  .link-treatment a:hover::after {
    opacity: 1;
  }
}
.link-treatment a:focus-visible {
  border-color: var(--color_primary);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.link-treatment a:focus-visible::after {
  opacity: 1;
}

.link-treatment [lang=en] {
  display: block;
  font-family: var(--font_en);
  font-size: 0.8125rem;
  color: var(--color_primary);
  letter-spacing: 0.05em;
}

.link-treatment .jp {
  display: block;
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 4px;
}

@media (max-width: 800px) {
  .link-treatment a {
    padding: 15px 30px 15px 15px;
  }
  .link-treatment {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .link-treatment a::after {
    width: 15px;
    height: 15px;
    border-width: 3px;
    right: 10px;
  }
  .link-treatment [lang=en] {
    font-size: 0.625rem;
  }
  .link-treatment .jp {
    font-size: 0.75rem;
  }
}
/* FAQ */
.faq-style {
  border-top: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

.faq-style .faq-summary {
  display: block;
  cursor: pointer;
  padding: 18px 50px;
  position: relative;
}

.faq-style .faq-summary .faq-icon {
  top: 15px;
  left: 0;
}

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

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

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

.faq-style .faq-inner {
  padding: 5px 50px 30px;
  position: relative;
}

.faq-style .faq-inner .faq-icon {
  border: 1px solid var(--color_border);
  background-color: var(--color_bg);
  color: var(--color_primary);
  top: 3px;
  left: 0;
}

.faq-style .faq-ttl {
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 1rem;
}

.faq-style .faq-icon {
  border: 1px solid var(--color_border);
  border-radius: 50px;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 0.9375rem;
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

.faq-style .faq-open-icon::before,
.faq-style .faq-open-icon::after {
  content: "";
  display: block;
  background: var(--color_primary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

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

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

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

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

@media (max-width: 800px) {
  .faq-style {
    line-height: 1.5;
  }
  .faq-style .faq-summary {
    padding: 18px 30px 18px 50px;
  }
  .faq-style .faq-open-icon {
    right: 0;
    top: 11px;
  }
  .faq-style .faq-inner {
    padding: 0 0 30px 50px;
  }
}
/* merit-demerit */
.merit-demerit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4%;
}

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

.merit-demerit .item-ttl {
  line-height: 1;
  margin-bottom: 25px;
}

.merit-demerit .item-ttl .jp,
.merit-demerit .item-ttl [lang=en] {
  display: inline-block;
}

.merit-demerit .item-ttl [lang=en] {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  margin-left: 15px;
}

.merit-demerit .item-ttl .jp {
  font-size: 1.375rem;
}

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

.merit-demerit .item:nth-of-type(2) .item-ttl [lang=en] {
  color: #D64545;
}

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

@media (max-width: 800px) {
  .merit-demerit {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .merit-demerit .item {
    padding: 30px 25px;
  }
  .merit-demerit .item-ttl {
    margin-bottom: 20px;
  }
  .merit-demerit .item-ttl .jp {
    font-size: 1.25rem;
  }
  .merit-demerit .item-ttl [lang=en] {
    font-size: 0.75rem;
  }
}
/* modal */
body:has(dialog:modal) {
  -ms-touch-action: none;
      touch-action: none;
  -webkit-overflow-scrolling: none;
  display: flow-root;
  overflow: clip;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

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

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

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

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

.modal-container {
  background: #fff;
  padding: 50px;
}

.modal-close-top {
  cursor: pointer;
  background: var(--color_primary);
  border-radius: 50px;
  position: absolute;
  right: 15px;
  top: 15px;
  width: 50px;
  height: 50px;
  z-index: 10;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

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

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

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

.modal-close-top:hover,
.modal-close-top:focus {
  background: var(--color_secondary);
}

.modal-close-bottom {
  display: block;
  background: var(--color_primary);
  border-radius: 5px;
  color: var(--color_white);
  font-size: 1.125rem;
  font-family: var(--font_jp);
  font-weight: 500;
  min-width: 150px;
  padding: 10px 15px;
  text-align: center;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 50px auto 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.modal-close-bottom:hover,
.modal-close-bottom:focus {
  background: var(--color_secondary);
}

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

@keyframes slide-up {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 15px);
            transform: translate(0, 15px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@media (max-width: 800px) {
  .modal-contents {
    max-width: 100%;
  }
  .modal-container {
    padding: 25px 5% 50px;
  }
  .modal-close-top {
    width: 35px;
    height: 35px;
    right: 10px;
    top: 10px;
  }
}
/* price-style */
.price-style {
  display: grid;
  grid-gap: 20px;
}

.price-style .list-intro {
  border-bottom: 1px dotted var(--color_border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  grid-gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0 0 5px;
}

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

@media (max-width: 800px) {
  .price-style {
    grid-gap: 15px;
  }
  .price-style .list-intro {
    font-size: 1rem;
    display: block;
  }
  .price-style .price {
    display: block;
    text-align: right;
  }
}
.privacy-ttl {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

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

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

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

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

.sp-only {
  display: none;
}

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

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.fade {
  -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: 700;
}

.c-red {
  color: #F44336;
}

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

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

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

.underline {
  text-decoration: underline;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mbXS {
  margin-bottom: 8px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin-bottom: 32px;
}

.mbXM {
  margin-bottom: 48px;
}

.mbL {
  margin-bottom: 64px;
}

.mbXL {
  margin-bottom: 96px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

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

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

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

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

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

.br15 {
  border-radius: 15px;
}

@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;
  }
  .col1,
  .col2,
  .col3,
  .col4 {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
  .sp-gap50 {
    grid-gap: 50px;
  }
}
/*------------
splide
-------------*/
.splide__container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

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

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

.splide__pagination {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-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;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

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

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

.splide--rtl {
  direction: rtl;
}

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

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

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

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

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

.splide__arrow:disabled {
  background-color: #ccc;
}

.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: #ccc;
  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: var(--color_primary);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
}

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

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

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

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

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

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

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

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

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

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

.splide__arrows--rtl .splide__arrow--prev svg {
  -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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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;
}

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

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