@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #6C6C6C;
  --color_link: #6C6C6C;
  --color_border: #DFDFDF;
  --color_primary: #EA4582;
  --color_secondary: #03BFBE;
  --color_white: #fff;
  --color_black: #6C6C6C;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
  --color_bg_pink: #FEF1F2;
  --color_bg_pink02: #FEF2F2;
  --color_bg_blue: #E2F8F8;
  --color_branch01: #396AA5;
  --color_branch02: #80D4D0;
  --color_branch03: #DF804E;
}

/* ====================================================
【アニメーション】
==================================================== */
: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:
    "FP-ヒラギノ角ゴ ProN W3",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Local Noto Sans JP",
    "Noto Sans JP",
    sans-serif;
  --font_jp: "FP-ヒラギノ角ゴ ProN W6", serif;
  --font_en: "Roboto", serif;
  --font_weight: normal;
  --font_size: 0.9375rem;
  --line_height: 2.0;
  --letter_spacing: .05em;
}

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

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

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

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

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

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

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

::selection {
  background: #d4dcd6;
}

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

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

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

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

img {
  display: inline-block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

.time-table thead th {
  background-color: var(--color_secondary);
  color: var(--color_white);
  font-family: var(--font_jp);
}

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

.time-table td:has(span) {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 0;
}

.time-table td span {
  font-size: 0.625rem;
  line-height: 1;
}

.time-table tbody th {
  background-color: #E2F8F8;
  color: #008887;
}

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

.time-table.color01 thead th {
  background-color: var(--color_branch01);
}

.time-table.color01 tbody th {
  background-color: #EAF6F9;
  color: var(--color_branch01);
}

.time-table.color02 thead th {
  background-color: #82CDD9;
}

.time-table.color02 tbody th {
  background-color: #E9FEFD;
  color: #4cb7c8;
}

.time-table.color04 tbody th {
  background-color: #efc383;
  color: #4cb7c8;
}

.time-table.color02 tbody td img {
  filter: invert(85%) sepia(44%) saturate(326%) hue-rotate(119deg) brightness(86%) contrast(93%);
}

.time-table.color03 thead th {
  background-color: #E0AB8F;
}

.time-table.color03 tbody th {
  background-color: #FEE8DB;
  color: var(--color_branch03);
}

.time-table.color03 tbody td img {
  filter: invert(51%) sepia(59%) saturate(481%) hue-rotate(336deg) brightness(99%) contrast(90%);
}

.time-table.color04 thead th {
  background-color: #efc383;
}

.time-table.color04 tbody th {
  background-color: #fff5e6;
  color: #f0a02c;
}

.time-table.color04 tbody td img {
  filter: invert(51%) sepia(59%) saturate(481%) hue-rotate(336deg) brightness(99%) contrast(90%);
}

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

.time-table-note .color01 {
  color: var(--color_secondary);
}

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

  .time-table td:has(span) {
    padding: 12px 0 11px;
  }

  .time-table td span {
    font-size: 0.5625rem;
  }
}

/*ボタン*/
.btn-more {
  display: inline-block;
  background-color: var(--color_primary);
  border-radius: 70px;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  line-height: 1.3;
  min-width: 210px;
  padding: 15px 35px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s;
}

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

@media (any-hover: hover) {
  .btn-more:hover {
    background-color: #c51656;
  }
}

.btn-more.color01 {
  background-color: var(--color_branch01);
}

@media (any-hover: hover) {
  .btn-more.color01:hover {
    background-color: #234267;
  }
}

.btn-more.color02 {
  background-color: var(--color_branch02);
}

@media (any-hover: hover) {
  .btn-more.color02:hover {
    background-color: #41BFB9;
  }
}

.btn-more.color03 {
  background-color: var(--color_branch03);
}

@media (any-hover: hover) {
  .btn-more.color03:hover {
    background-color: #B85521;
  }
}

.btn-more.color04 {
  background-color: #efc383;
}

@media (any-hover: hover) {
  .btn-more.color04:hover {
    background-color: #dd9326;
  }
}

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

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

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

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

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

.list-category-links a {
  text-box: trim-both cap alphabetic;
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  display: inline-block;
  border-radius: 100px;
  font-size: 0.8125rem;
  line-height: 1.5;
  padding: 6px 12px;
  text-align: center;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .list-category-links a:hover {
    background-color: var(--color_bg_pink);
  }
}

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

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

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

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

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

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

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

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

.post-under-blog .category {
  text-box: trim-both cap alphabetic;
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  display: inline-block;
  border-radius: 100px;
  font-size: 0.6875rem;
  line-height: 1.5;
  padding: 5px 8px;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.layout-single-post time {
  display: inline-block;
  color: var(--color_secondary);
  font-family: var(--font_en);
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

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

.layout-single-post .category {
  text-box: trim-both cap alphabetic;
  border: 1px solid var(--color_border);
  display: inline-block;
  border-radius: 100px;
  font-size: 0.75rem;
  line-height: 1.5;
  padding: 5px 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.h-utility {
  display: block;
}

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

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

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

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

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

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

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

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

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

.gnavi-menu-btn-txt::before {
  content: "MENU";
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
  margin-top: 3px;
  white-space: nowrap;
}

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

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

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

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

.gnavi-drawer {
  display: flex;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: min(100%, 690px);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  will-change: opacity;
  z-index: 100;
}

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

.gnavi-drawer-bg {
  width: 50%;
}

.gnavi-drawer-bg figure {
  height: 100%;
}

.gnavi-drawer-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gnavi-drawer-container {
  width: 50%;
  background-color: var(--color_bg_pink02);
  padding: 6% 5% 4% 9%;
  overflow-y: auto;
}

.gnavi-drawer-logo {
  margin-bottom: 25px;
}

.drawer-links-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 55px 60px;
}

.drawer-links {
  display: grid;
  gap: 15px;
  line-height: 1.5;
}

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

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

.drawer-links .sub-menu {
  margin-top: 12px;
  padding-left: 20px;
}

.drawer-links .sub-menu li {
  position: relative;
  padding-left: 20px;
}

.drawer-links .sub-menu li::before {
  content: "";
  background-color: var(--color_primary);
  width: 10px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0.5625rem;
}

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

@media (max-width: 1550px) {
  .gnavi-drawer-container {
    padding: 9% 3% 2% 3%;
  }
}

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

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

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background-color: var(--color_white);
  border-top: 1px solid var(--color_primary);
  margin-top: auto;
  position: relative;
  padding: 70px 0 0;
}

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

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

.f-branch-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 10px;
}

.f-branch-list a {
  display: block;
  background-color: var(--color_secondary);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.1875rem;
  line-height: 1.3;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

.f-branch-list a span {
  display: block;
  font-size: 0.9375rem;
}

@media (any-hover: hover) {
  .f-branch-list a:hover {
    background-color: #026C6C;
  }
}

.site-map {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 60px;
}

.f-links {
  display: grid;
  gap: 15px;
  line-height: 1.5;
}

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

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

.f-bottom {
  background-color: var(--color_primary);
  text-align: center;
}

.copyright {
  color: var(--color_white);
  line-height: 1.5;
  padding: 4px 0;
}

.pagetop {
  position: absolute;
  bottom: 70px;
  right: 22px;
  line-height: 0;
}

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

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

  .pagetop {
    bottom: 90px;
    right: 15px;
    width: 40px;
  }
}

.sp-navi {
  display: none;
}

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

  .sp-navi {
    display: block;
  }

  .sp-navi-btns,
  .sp-navi-btns02 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background-color: var(--color_branch01);
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 10000;
  }

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

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

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

  .sp-navi-btns .item a,
  .sp-navi-btns .item button,
  .sp-navi-btns02 .item a,
  .sp-navi-btns02 .item button {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: var(--navi-text-color);
    border-right: 1px solid var(--color_white);
    text-decoration: none;
    height: 100%;
    padding: 6px 0;
  }

  .sp-navi-btns .item button,
  .sp-navi-btns02 .item button {
    width: 100%;
  }

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

  .sp-navi-btns .item .img svg,
  .sp-navi-btns02 .item .img svg {
    -o-object-fit: cover;
    object-fit: cover;
    height: 20px;
    margin-bottom: 5px;
    stroke: var(--svg-stroke);
  }

  .sp-navi-btns .item .img img,
  .sp-navi-btns02 .item .img img {
    height: 20px;
    margin-bottom: 5px;
  }

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

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

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

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

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

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

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

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

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

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

  .sp-branch-info {
    display: block;
    background-color: var(--color_bg_pink);
    padding: 0 0 50px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    transition: 0.3s ease;
    z-index: 500;
  }

  .sp-branch-info.is-open {
    transform: translateY(0);
  }

  .sp-branch-info .wrapper {
    padding: 20px 15px;
    background-color: #EAF6F9;
  }

  .sp-branch-info-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 7px;
  }

  .sp-branch-info-list a {
    display: block;
    background-color: var(--color_secondary);
    color: var(--color_white);
    font-family: var(--font_jp);
    font-size: 0.9375rem;
    line-height: 1.3;
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
  }

  .sp-branch-info-list a:has(.icon) {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8125rem;
    height: 100%;
    padding: 12px 10px;
    text-align: left;
  }

  .sp-branch-info-list a span {
    display: block;
    font-size: 0.75rem;
  }

  .sp-branch-info-list a:has(.icon) span {
    font-size: 0.5rem;
  }

  .sp-branch-info-list a:has(.icon) span.text02 {
    margin-top: 2px;
  }

  .sp-branch-info-list a:has(.icon).no-available {
    filter: grayscale(1);
    pointer-events: none;
  }

  .sp-branch-info-close {
    background-color: var(--color_branch01);
    padding: 3px 50px;
    text-align: center;
    color: #fff;
    font-family: var(--font_jp);
    font-size: 0.875rem;
    position: relative;
    cursor: pointer;
  }

  .sp-branch-info-close .icon {
    font-size: 1.125rem;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

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

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

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

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

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

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

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

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

  .sp-details[open]::details-content {
    background-color: rgba(0, 0, 0, 0.015);
    grid-template-rows: 1fr;
    padding: 15px;
  }

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

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

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

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

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

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

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

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

.pc-fixed {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
}

.pc-fixed .tel-link {
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 19px 12px;
  text-align: center;
  transition: background-color 0.3s;
}

.pc-fixed .item01 {
  background-color: var(--color_branch01);
}

@media (any-hover: hover) {
  .pc-fixed .item01:hover {
    background-color: #234267;
  }
}

.pc-fixed .item02 {
  background-color: var(--color_branch02);
}

@media (any-hover: hover) {
  .pc-fixed .item02:hover {
    background-color: #41BFB9;
  }
}

.pc-fixed .item03 {
  background-color: var(--color_branch03);
}

@media (any-hover: hover) {
  .pc-fixed .item03:hover {
    background-color: #B85521;
  }
}

.pc-fixed .item04 {
  background-color: #efc383;
}

@media (any-hover: hover) {
  .pc-fixed .item04:hover {
    background-color: #dd9326;
  }
}

.pc-fixed img {
  margin: 0 0 7px 0;
}

.pc-fixed span {
  font-size: 0.75rem;
  line-height: 1.4;
}

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

.layout-post-list {
  margin-inline: auto;
  width: min(90%, 1024px);
}

.layout-post-list .l-category {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
  border: 1px solid var(--color_border);
  border-radius: 20px;
  padding: 50px;
  width: 100%;
}

.layout-post-list .l-label {
  font-size: 1.25rem;
  line-height: 1;
}

.layout-post-list .l-label [lang=en] {
  color: var(--color_branch01);
  font-family: var(--font_en);
  font-size: 1.25rem;
  line-height: 1;
  font-weight: bold;
}

@media (max-width: 800px) {
  .layout-post-list .l-category {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    border-radius: 15px;
    padding: 30px 5%;
  }
}

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

.hero .hero-img {
  margin: 0 0 0 auto;
  width: 78%;
}

.hero .hero-img img {
  border-radius: 20px 0 0 20px;
  width: 100%;
}

.hero .hero-catch {
  position: absolute;
  top: 42%;
  left: 4%;
}

.hero .hero-catch .en {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: clamp(3.3125rem, 4.2vw, 4.6875rem);
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 5px;
}

.hero .hero-catch .jp {
  font-family: var(--font_jp);
  font-size: clamp(1.75rem, 2.2vw, 2.5rem);
  line-height: 1.5;
}

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

  .hero .hero-img {
    margin: 0;
    width: 100%;
  }

  .hero .hero-img img {
    border-radius: 0;
  }

  .hero .hero-catch {
    margin: 20px 0;
    position: static;
    text-align: center;
  }

  .hero .hero-catch .en {
    line-height: 1;
    margin-bottom: 0;
  }
}

/*------------
Components
--------------*/
.t-h2 {
  line-height: 1.5;
  margin-bottom: 75px;
}

.t-h2.center {
  text-align: center;
}

.t-h2 [lang=en] {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.3;
}

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

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

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

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

/*------------
Section
--------------*/
.sec01 {
  background-color: var(--color_bg_pink);
  padding: 113px 0 115px;
}

.l-sec01 {
  display: flex;
  flex-direction: row-reverse;
}

.l-sec01 .l-img {
  text-align: center;
  width: 37%;
}

.l-sec01 .l-desc {
  margin-right: 8%;
  flex: 1;
}

.l-sec01 .l-ttl {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.l-sec01 .l-sub-ttl {
  font-family: var(--font_jp);
  font-size: 1.5625rem;
  margin-bottom: 40px;
}

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

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

  .l-sec01 .l-img {
    margin-bottom: 30px;
    width: 100%;
  }

  .l-sec01 .l-desc {
    margin-right: 0;
  }

  .l-sec01 .l-ttl {
    font-size: 2rem;
    margin-bottom: 5px;
  }

  .l-sec01 .l-sub-ttl {
    font-size: 1.125rem;
    margin-bottom: 25px;
  }
}

.sec02 {
  overflow: hidden;
  padding: 98px 0 60px;
  position: relative;
}

.sec02::before {
  content: "";
  background-color: var(--color_bg_pink02);
  width: 300px;
  height: auto;
  aspect-ratio: 300/476;
  position: absolute;
  top: 54px;
  right: 0;
  z-index: -1;
}

.sec02::after {
  content: "";
  background-color: var(--color_bg_blue);
  width: 518px;
  height: auto;
  aspect-ratio: 518/354;
  position: absolute;
  bottom: -61px;
  right: 0;
  z-index: -1;
}

.sec02-card {
  background-color: var(--color_white);
  border: 2px solid #FFE2EC;
  border-radius: 20px;
  display: flex;
  padding: 5%;
  position: relative;
}

.sec02-card .card-img {
  margin: 0px 4% 0 0;
  width: 44%;
}

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

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

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

.sec02-card .l-text {
  margin-bottom: 5px;
}

.sec02-card .tel {
  margin-bottom: 15px;
}

.sec02-card .time-table {
  font-size: 1rem;
  max-width: 490px;
}

.sec02-card .time-table th:last-child {
  width: 12%;
}

.sec02-card .l-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 20px;
}

.sec02-card-wrap+.sec02-card-wrap {
  margin-top: 60px;
}

.sec02-card.item01::before {
  content: "";
  background-color: var(--color_bg_blue);
  width: 557px;
  height: auto;
  aspect-ratio: 557/476;
  position: absolute;
  bottom: -114px;
  left: -200px;
  z-index: -1;
}

.sec02-card.item02::before {
  content: "";
  background-color: var(--color_bg_pink02);
  width: 300px;
  height: auto;
  aspect-ratio: 300/476;
  position: absolute;
  bottom: -56px;
  right: -112px;
  z-index: -1;
}

.sec02-card.item03::before {
  content: "";
  background-color: var(--color_bg_pink02);
  width: 300px;
  height: auto;
  aspect-ratio: 300/476;
  position: absolute;
  bottom: -61px;
  left: -161px;
  z-index: -1;
}

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

  .sec02::before {
    top: 35px;
  }

  .sec02-card {
    border-radius: 15px;
    flex-direction: column;
  }

  .sec02-card .card-img {
    margin: 0 0 20px;
    width: 100%;
  }

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

  .sec02-card .card-desc {
    margin-right: 0;
  }

  .sec02-card .l-ttl {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .sec02-card .time-table {
    font-size: 0.75rem;
  }

  .sec02-card-wrap+.sec02-card-wrap {
    margin-top: 20px;
  }

  .sec02-card.item03::before {
    content: none;
  }
}

.sec03 {
  padding: 89px 0 60px;
  position: relative;
}

.sec03::before {
  content: "";
  background-color: var(--color_bg_pink);
  width: 100%;
  height: 48%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

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

.l-sec03 {
  display: flex;
  flex-direction: row-reverse;
}

.l-sec03 .l-img {
  margin-left: 5%;
  width: 50%;
}

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

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

.l-sec03 .l-btn {
  margin-top: 65px;
}

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

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

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

  .l-sec03 .l-img {
    margin-left: 0;
    width: 100%;
  }

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

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

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  height: 639px;
  margin-top: 120px;
  position: relative;
}

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

.page-header.first::before {
  background: url(../images/under/page-ttl_img02.jpg) no-repeat center/cover;
}

.page-header.clinic-peace::before {
  background: url(../images/under/page-ttl_img03.jpg) no-repeat center/cover;
}

.page-header.clinic-ritsurin::before {
  background: url(../images/under/page-ttl_img04.jpg) no-repeat center/cover;
}

.page-header .page-ttl-main,
.page-header02 .page-ttl-main {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.page-ttl {
  line-height: 1.5;
  margin-bottom: 35px;
}

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

.page-ttl .jp {
  font-family: var(--font_jp);
  font-size: 2.5rem;
  text-shadow: 2px 0 2px var(--color_white), -2px 0 2px var(--color_white), 0 2px 2px var(--color_white), 0 -2px 2px var(--color_white), 2px 2px 2px var(--color_white), -2px 2px 2px var(--color_white), 2px -2px 2px var(--color_white), -2px -2px 2px var(--color_white);
  margin-bottom: 20px;
}

.page-ttl.txt01 [lang=en] {
  color: var(--color_branch01);
}

.page-ttl.txt02 [lang=en] {
  color: var(--color_branch01);
}

.page-ttl.txt03 [lang=en] {
  color: var(--color_branch02);
}

.page-ttl.txt04 [lang=en] {
  color: var(--color_branch03);
}

.page-ttl.txt05 [lang=en] {
  color: #efc383;
}

.page-ttl-txt {
  font-family: var(--font_jp);
  font-size: 1.5625rem;
  line-height: 2.1;
  text-shadow: 1px 0 2px var(--color_white), -1px 0 2px var(--color_white), 0 1px 2px var(--color_white), 0 -1px 2px var(--color_white), 1px 1px 2px var(--color_white), -1px 1px 2px var(--color_white), 1px -1px 2px var(--color_white), -1px -1px 2px var(--color_white);
}

.page-header02 {
  height: 639px;
  margin-top: 120px;
  position: relative;
}

.page-header02 .splide {
  margin: 0 0 0 auto;
  width: 63%;
  height: 100%;
}

.page-header02 .splide-wrapper {
  position: relative;
  height: 100%;
}

.page-header02 .splide__track {
  height: 100%;
}

.page-header02 .item-img {
  height: 100%;
}

.page-header02 .splide__slide img {
  height: 100%;
  object-fit: cover;
}

.page-header02 .splide__controls {
  position: absolute;
  bottom: 10px;
  left: 20px;
}

.page-header02 .splide__pagination__page.is-active {
  background: var(--color_branch01);
}

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

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

.breadcrumb ul li {
  display: inline;
}

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

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

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

@media (max-width: 800px) {
  .page-header {
    height: auto;
    margin-top: 0;
  }

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

  .page-header .page-ttl-main {
    padding: 200px 5% 30px;
    position: static;
    transform: none;
  }

  .page-header02 {
    margin-top: 0;
    height: auto;
  }

  .page-header02 .splide {
    width: 100%;
    height: 190px;
  }

  .page-header02 .page-ttl-main {
    padding: 10px 5% 30px;
    position: static;
    transform: none;
  }

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

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

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

  .page-ttl-txt {
    font-size: 0.9375rem;
  }

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

.u-h2 {
  font-family: var(--font_jp);
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 50px;
  padding-bottom: 10px;
  position: relative;
  text-align: center;
}

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

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

.ttl-style01 [lang=en] {
  color: #82CDD9;
  font-family: var(--font_en);
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 15px;
}

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

.ttl-style01.color01 [lang=en] {
  color: var(--color_branch01);
}

.ttl-style01.color02 [lang=en] {
  color: #B6E2E0;
}

.ttl-style01.color03 [lang=en] {
  color: #E0AB8F;
}

.ttl-style01.color04 [lang=en] {
  color: #efc383;
}

.u-h3 {
  border-bottom: 1px solid #EAF6F9;
  font-size: 1.625rem;
  margin-bottom: 30px;
  padding-bottom: 5px;
}

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

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

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

  .ttl-style01 [lang=en] {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .ttl-style01 .jp {
    font-size: 2em;
  }

  .u-h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 0;
  }

  .u-h4 {
    font-size: 1.0625rem;
    margin-bottom: 10px;
  }
}

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

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

.tall.bg01 {
  background-color: #EAF6F9;
  padding: 60px 0;
}

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

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

.hidden {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

.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 #e7e7e7;
  padding: 15px;
  vertical-align: middle;
}

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

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

.table-style01.pdS th,
.table-style01.pdS td {
  padding: 10px 15px;
}

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

  .table-scroll table {
    width: 150%;
  }

  .table-scroll .l-img {
    width: 250%;
  }
}

.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 {
  border-radius: 50%;
  width: 70px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

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

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

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

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

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

@media (max-width: 800px) {
  .under-slider01 .splide__slide img {
    border-radius: 15px;
  }
}

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

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

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

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

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

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

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

.l-imgR .l-img.no-curve img,
.l-imgL .l-img.no-curve img {
  border-radius: 0;
}

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

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

@media (max-width: 800px) {

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

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

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

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

/*------------
Add
--------------*/
.l-style01 {
  display: flex;
  flex-direction: row-reverse;
  padding: 0 0 120px;
  position: relative;
  z-index: 0;
}

.l-style01::before {
  content: "";
  display: block;
  background-color: #EAF6F9;
  width: 100vw;
  height: 420px;
  position: absolute;
  inset: auto auto 5px 12%;
  z-index: -1;
}

.l-style01 .l-img {
  text-align: center;
  width: 37%;
}

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

.l-style01 .l-desc {
  flex: 1;
  margin-right: 4%;
}

.l-style01 .l-ttl {
  font-size: clamp(2rem, 2.2vw, 2rem);
  margin-bottom: 50px;
}

.l-style01 .l-deco {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.3;
  position: absolute;
  left: 0;
  bottom: 0;
}

.l-style01.color01::before {
  background-color: #EAF6F9;
}

.l-style01.color01 .l-deco {
  color: var(--color_branch01);
}

.l-style01.color02::before {
  background-color: #E9FEFD;
}

.l-style01.color02 .l-deco {
  color: #EBD0AD;
}

.l-style01.color03::before {
  background-color: #FFE8DB;
}

.l-style01.color03 .l-deco {
  color: #cbe9f0;
}

.l-style01.color04::before {
  background-color: #fff5e6;
}

.l-style01.color04 .l-deco {
  color: #cbe9f0;
}

@media (max-width: 800px) {
  .l-style01 {
    flex-direction: column;
    padding: 0 0 80px;
  }

  .l-style01::before {
    height: 80%;
    inset: auto -5% 34px -5%;
  }

  .l-style01 .l-img {
    margin-bottom: 30px;
    width: 100%;
  }

  .l-style01 .l-desc {
    margin-right: 0;
  }

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

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

.l-style02 {
  display: flex;
}

.l-style02 .l-img {
  text-align: center;
  width: 42%;
}

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

.l-style02 .l-desc {
  flex: 1;
  margin-left: 4%;
}

.l-style02 .l-list a {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #707070;
  color: var(--color_branch01);
  font-family: var(--font_jp);
  font-size: 1.5625rem;
  padding: 22px 30px 22px 0;
  position: relative;
  transition: background-color 0.3s;
}

.l-style02 .l-list a::before {
  content: "";
  background: url(../images/under/u_arrow.svg) no-repeat center/contain;
  width: 25px;
  height: auto;
  aspect-ratio: 25/14;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .l-style02 .l-list a:hover {
    background-color: #EAF6F9;
  }
}

.l-style02 .l-list .num {
  color: #EBD0AD;
  font-family: var(--font_en);
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}

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

  .l-style02 .l-img {
    margin-bottom: 30px;
    width: 100%;
  }

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

  .l-style02 .l-desc {
    margin-left: 0;
  }

  .l-style02 .l-list a {
    gap: 10px;
    font-size: 1rem;
    padding: 15px 20px 15px 0;
  }

  .l-style02 .l-list a::before {
    width: 16px;
  }

  .l-style02 .l-list .num {
    font-size: 2.5rem;
  }
}

.card-style01 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px 22px;
}

.card-style01 a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  padding: 25px 20px 10px;
  position: relative;
  transition: transform 0.3s;
}

.card-style01 a::before {
  content: "";
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

@media (any-hover: hover) {
  .card-style01 a:hover {
    transform: translateY(-10px);
  }
}

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

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

.card-style01 .list-check {
  font-size: 0.8125rem;
  grid-gap: 0;
  margin-bottom: auto;
}

.card-style01 .list-check li::before {
  top: 9px;
}

.card-style01.color01 a {
  background-color: #EAF6F9;
  border-top: 1px solid var(--color_branch01);
}

.card-style01.color01 a::before {
  background-color: #82CDD9;
}

.card-style01.color01 .card-ttl {
  color: var(--color_branch01);
}

.card-style01.color01 .list-check {
  color: var(--color_branch01);
}

.card-style01.color01 .list-check li::before {
  filter: invert(78%) sepia(16%) saturate(772%) hue-rotate(140deg) brightness(96%) contrast(89%);
}

.card-style01.color02 a {
  background-color: #E9FEFD;
  border-top: 1px solid var(--color_branch02);
}

.card-style01.color02 a::before {
  background-color: var(--color_branch02);
}

.card-style01.color02 .card-ttl {
  color: #4cb7c8;
}

.card-style01.color02 .list-check {
  color: #60B7B3;
}

.card-style01.color02 .list-check li::before {
  background-color: var(--color_branch02);
}

.card-style01.color03 a {
  background-color: #FFE8DB;
  border-top: 1px solid var(--color_branch03);
}

.card-style01.color03 a::before {
  background-color: #E0AB8F;
}

.card-style01.color03 .card-ttl {
  color: var(--color_branch03);
}

.card-style01.color03 .list-check {
  color: var(--color_branch03);
}

.card-style01.color03 .list-check li::before {
  background-color: #E0AB8F;
}

.card-style01.color04 a {
  background-color: #fff5e6;
  border-top: 1px solid #efc383;
}

.card-style01.color04 a::before {
  background-color: #efc383;
}

.card-style01.color04 .card-ttl {
  color: #efc383;
}



.card-style02 .item {
  border: 1px solid var(--color_branch01);
  border-radius: 15px;
  padding: 20px 5%;
}

.card-style02 .card-ttl {
  color: var(--color_branch01);
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.card-style02 .card-ttl02 {
  border-bottom: 1px solid #EAF6F9;
  font-family: var(--font_jp);
  font-size: 1rem;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.card-style02 .txt-style01 {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.8;
}

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

  .card-style01 a {
    padding: 15px 10px 5px;
  }

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

  .card-style02.col2 {
    gap: 15px;
  }

  .card-style02 .txt-style01 {
    text-align: left;
  }
}

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

.accordion-style summary {
  display: block;
  cursor: pointer;
  background-color: var(--color_branch01);
  border: 2px solid var(--color_branch01);
  border-radius: 20px 20px 0 0;
  padding: 16px 50px 15px 30px;
  position: relative;
  transition: 0.2s;
}

.accordion-style summary .summary-ttl {
  font-family: var(--font_jp);
  color: #fff;
  font-size: 1.25rem;
}

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

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

.accordion-style summary::before,
.accordion-style summary::after {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 27px;
  z-index: 1;
}

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

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

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

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

.accordion-style .accordion-inner {
  background-color: #fff;
  padding: 27px 30px;
  border: 1px solid var(--color_branch01);
  border-radius: 0 0 20px 20px;
}

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

.accordion-style .accordion-ttl {
  color: var(--color_branch01);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.accordion-style.color01 summary {
  background-color: var(--color_branch01);
  border-color: var(--color_branch01);
}

.accordion-style.color01 .accordion-inner {
  border-color: var(--color_branch01);
}

.accordion-style.color01 .accordion-ttl {
  color: var(--color_branch01);
}

.accordion-style.color01 .list-disc li::marker {
  color: var(--color_branch01);
}

.accordion-style.color02 summary {
  background-color: #82CDD9;
  border-color: #82CDD9;
}

.accordion-style.color02 .accordion-inner {
  border-color: #82CDD9;
}

.accordion-style.color02 .accordion-ttl {
  color: #82CDD9;
}

.accordion-style.color02 .list-disc li::marker {
  color: #82CDD9;
}

.accordion-style.color03 summary {
  background-color: #E0AB8F;
  border-color: #E0AB8F;
}

.accordion-style.color03 .accordion-inner {
  border-color: #E0AB8F;
}

.accordion-style.color03 .accordion-ttl {
  color: #E0AB8F;
}

.accordion-style.color03 .list-disc li::marker {
  color: #E0AB8F;
}

.accordion-style.color04 summary {
  background-color: #efc383;
  border-color: #efc383;
}

.accordion-style.color04 .accordion-inner {
  border-color: #efc383;
}

.accordion-style.color04 .accordion-ttl {
  color: #efc383;
}

.accordion-style.color04 .list-disc li::marker {
  color: #fff5e6;
}


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

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

  .accordion-style summary {
    padding: 10px 50px 9px 15px;
    border-radius: 15px 15px 0 0;
  }

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

  .accordion-style summary::before,
  .accordion-style summary::after {
    right: 18px;
  }

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

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

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

  .accordion-style .accordion-ttl {
    font-size: 1.125rem;
    margin-bottom: 5px;
  }
}

.box-style01 {
  padding-top: 48px;
  position: relative;
}

.box-style01 .label {
  font-family: var(--font_en);
  font-size: 3.125rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.box-style01 .label .num {
  font-size: 4.375rem;
}

.box-style01 .box-inner {
  background-color: var(--color_bg_pink);
  border-radius: 20px;
  padding: 55px 30px 40px 40px;
}

.box-style01 .l-box {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
}

.box-style01 .box-img {
  width: 35%;
}

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

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

.box-style01 .box-ttl {
  font-size: 1.625rem;
  margin-bottom: 30px;
}

.box-style01.color01 .label {
  color: #EBD0AD;
}

.box-style01.color01 .box-inner {
  background-color: #EAF6F9;
}

.box-style01.color01 .box-ttl {
  color: var(--color_branch01);
}

.box-style01.color02 .label {
  color: #EBD0AD;
}

.box-style01.color02 .box-inner {
  background-color: #E9FEFD;
}

.box-style01.color02 .box-ttl {
  color: #4cb7c8;
}

.box-style01.color03 .label {
  color: #cbe9f0;
}

.box-style01.color03 .box-inner {
  background-color: #FEE8DB;
}

.box-style01.color03 .box-ttl {
  color: #E0AB8F;
}

.box-style01.color04 .label {
  color: #ffcdcd;
}

.box-style01.color04 .box-inner {
  background-color: #fff5e6;
}

.box-style01.color04 .box-ttl {
  color: #dd9326;
}

.box-style02 {
  background-color: #EAF6F9;
  border-radius: 20px;
  padding: 4%;
}

.box-style02 .box-imglayout.l-imgR {
  gap: 40px;
}

.box-style02 .box-imglayout.l-imgR .l-img {
  width: 31%;
}

.box-style02 .box-imglayout.l-imgR .l-img img {
  border-radius: 20px;
}

.box-style02 .l-ttl {
  color: var(--color_branch01);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.box-style02 .l-ttl02 {
  border-bottom: 1px solid var(--color_branch01);
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 5px;
}

.box-style02 .l-list {
  gap: 22px;
}

.box-style02 .l-list li {
  background-color: #fff;
  border: 2px solid var(--color_branch01);
  border-radius: 20px;
  font-family: var(--font_jp);
  font-size: 1.25rem;
  padding: 13px 10px;
  text-align: center;
}

.box-style03 {
  background-color: var(--color_white);
  border: 1px solid var(--color_branch01);
  border-radius: 20px;
  padding: 4%;
}

.box-style03 .box-ttl {
  border-bottom: 1px solid #EAF6F9;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 5px;
}

.box-style03 .box-ttl02 {
  color: var(--color_branch01);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.box-style03.bg01 {
  background-color: #EAF6F9;
  border: none;
}

.box-style03.pdS {
  padding: 2%;
}

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

  .box-style01 .label {
    font-size: 1.875rem;
  }

  .box-style01 .label .num {
    font-size: 2.625rem;
  }

  .box-style01 .box-inner {
    border-radius: 15px;
    padding: 30px 5%;
  }

  .box-style01 .l-box {
    flex-direction: column;
    gap: 20px;
  }

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

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

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

  .box-style02 {
    border-radius: 15px;
    padding: 30px 5%;
  }

  .box-style02 .box-imglayout.l-imgR {
    gap: 25px;
  }

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

  .box-style02 .box-imglayout.l-imgR .l-img img {
    border-radius: 15px;
  }

  .box-style02 .l-ttl {
    font-size: 1.125rem;
    margin-bottom: 8px;
  }

  .box-style02 .l-ttl02 {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }

  .box-style02 .l-list {
    gap: 10px;
  }

  .box-style02 .l-list li {
    font-size: 1rem;
    padding: 10px 10px 8px;
  }

  .box-style03 {
    border-radius: 15px;
    padding: 30px 5%;
  }

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

  .box-style03 .box-ttl02 {
    font-size: 1.125rem;
    margin-bottom: 8px;
  }

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

.staff-layout {
  display: flex;
  flex-direction: row-reverse;
}

.staff-layout .l-img {
  text-align: center;
  width: 35%;
}

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

.staff-layout .l-desc {
  flex: 1;
  margin: 45px 0 0;
}

.staff-layout:not(:has(.l-img)) .l-desc {
  margin: 0;
}

.staff-layout .l-name {
  border-bottom: 1px solid var(--color_primary);
  display: flex;
  align-items: baseline;
  gap: 0 30px;
  margin-bottom: 25px;
  padding-bottom: 5px;
}

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

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

.staff-layout .l-text {
  margin-right: 60px;
}

.staff-layout.color01 .l-name {
  border-color: var(--color_branch01);
}

.staff-layout.color01 .l-name [lang=en] {
  color: var(--color_branch01);
}

.staff-layout.color02 .l-name {
  border-color: #82CDD9;
}

.staff-layout.color02 .l-name [lang=en] {
  color: #82CDD9;
}

.staff-layout.color03 .l-name {
  border-color: #E0AB8F;
}

.staff-layout.color03 .l-name [lang=en] {
  color: #E0AB8F;
}

.staff-layout.color04 .l-name {
  border-color: #efc383;
}

.staff-layout.color04 .l-name [lang=en] {
  color: #efc383;
}

.staff-profile .item {
  background-color: var(--color_bg_pink);
  border-radius: 20px;
  padding: 27px 30px;
}

.staff-profile .item-ttl {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.staff-profile.color01 .item {
  background-color: #EAF6F9;
}

.staff-profile.color01 .item-ttl {
  color: var(--color_branch01);
}

.staff-profile.color01 .list-disc li::marker {
  color: var(--color_branch01);
}

.staff-profile.color02 .item {
  background-color: #E9FEFD;
}

.staff-profile.color02 .item-ttl {
  color: #4cb7c8;
}

.staff-profile.color02 .list-disc li::marker {
  color: #4cb7c8;
}

.staff-profile.color03 .item {
  background-color: #FEE8DB;
}

.staff-profile.color03 .item-ttl {
  color: #E0AB8F;
}

.staff-profile.color03 .list-disc li::marker {
  color: #E0AB8F;
}

.staff-profile.color04 .item {
  background-color: #fff5e6;
}

.staff-profile.color04 .item-ttl {
  color: #efc383;
}

.staff-profile.color04 .list-disc li::marker {
  color: #efc383;
}

@media (max-width: 800px) {
  .staff-layout {
    flex-direction: column;
    gap: 20px;
  }

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

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

  .staff-layout .l-text {
    margin-right: 0;
  }

  .staff-profile .item {
    border-radius: 15px;
    padding: 20px 5%;
  }

  .staff-profile .item-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
}

.post-under-blog02 {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); */
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.post-under-blog02 .post-img {
  border: 2px solid #82CDD9;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 10px;
}

.post-under-blog02 .post-img img {
  aspect-ratio: 7/5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: scale 0.3s;
}

.post-under-blog02 time {
  display: inline-block;
  color: var(--color_secondary);
  font-family: var(--font_en);
  font-weight: bold;
  font-size: 0.8125rem;
  line-height: 1;
  margin-bottom: 5px;
}

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

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

.post-under-blog02 .category {
  text-box: trim-both cap alphabetic;
  border: 1px solid var(--color_border);
  display: inline-block;
  border-radius: 100px;
  font-size: 0.6875rem;
  line-height: 1.5;
  padding: 5px 8px;
}

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

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

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

  .post-under-blog02 .post-img {
    border-radius: 15px;
    margin-bottom: 0;
  }

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

  .post-under-blog02 .post-desc {
    line-height: 1;
  }

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

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

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

.faq-style .item+.item {
  border-top: 1px dashed #ccc;
  margin-top: 30px;
  padding-top: 30px;
}

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

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

.faq-style dd .faq-icon {
  background-color: var(--color_secondary);
  top: -3px;
  padding-left: 1px;
}

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

.faq-style.color02 .faq-icon {
  background-color: #82CDD9;
}

.faq-style.color02 dd .faq-icon {
  background-color: #EBD0AD;
  color: var(--color_text);
}

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

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

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

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

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

.flow-style>li {
  border-radius: 20px;
  display: grid;
  place-content: center;
  background-color: var(--color_bg_pink);
  padding: 25px;
  position: relative;
}

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

.flow-style:not(:has(.flow-ttl))>li {
  display: block;
}

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

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

.flow-style .flow-ttl {
  font-family: var(--font_jp);
  font-size: 1.0625rem;
}

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

.flow-style.color02>li {
  background-color: #E9FEFD;
}

.flow-style.color02>li:not(:last-child)::after {
  border-color: transparent transparent transparent #EBD0AD;
}

.flow-style.color02 .flow-num {
  color: #4cb7c8;
}

.flow-style02 {
  display: grid;
  gap: 60px;
}

.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_text);
  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_text) transparent transparent transparent;
  position: absolute;
  bottom: -1px;
  left: 28px;
}

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

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

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

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

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

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

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

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

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

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

.flow-style03 .flow-num {
  background: var(--color_branch01);
  border-radius: 50px;
  display: table;
  color: var(--color_white);
  font-family: var(--font_en);
  font-weight: bold;
  font-size: 0.9375rem;
  line-height: 1.5;
  padding: 0 20px;
  margin: 0 auto 10px;
}

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

.flow-style03 .flow-img {
  margin-bottom: 20px;
  text-align: center;
}

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

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

  .flow-style>li {
    border-radius: 15px;
    padding: 15px 5% 12px;
  }

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

  .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: 2.5rem;
  }

  .flow-style02 .flow-num::before {
    font-size: 0.875rem;
    margin-bottom: 0;
  }

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

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

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

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

  .flow-style03 {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

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

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

.merit-demerit .item {
  background: #EAF6F9;
  border-top: 5px solid var(--color_branch01);
  border-radius: 0 0 20px 20px;
  padding: 35px;
}

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

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

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

.merit-demerit .item-ttl {
  display: flex;
  align-items: baseline;
  gap: 0 25px;
  margin-bottom: 25px;
}

.merit-demerit .item-ttl [lang=en] {
  color: var(--color_branch01);
  font-family: var(--font_en);
  font-size: 1.875rem;
  font-weight: bold;
  margin-block: calc((1em - 1lh) / 2);
}

.merit-demerit .item-ttl .jp {
  font-family: var(--font_jp);
  font-size: 0.875rem;
}

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

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

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

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

.u-arrow {
  padding-top: 52px;
  position: relative;
}

.u-arrow::before {
  content: "";
  background-color: var(--color_branch01);
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  width: 81px;
  height: auto;
  aspect-ratio: 81/36;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.u-arrow .arrow-txt {
  font-family: var(--font_jp);
  font-size: 1.5625rem;
  text-align: center;
}

@media (max-width: 800px) {
  .u-arrow {
    padding-top: 35px;
  }

  .u-arrow::before {
    width: 60px;
  }

  .u-arrow .arrow-txt {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

.sp-only {
  display: none;
}

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

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.fade {
  transition: opacity 0.5s;
}

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

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

.fs18 {
  color: var(--color_branch01);
  font-size: 1.125rem;
}

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

.c-red {
  color: #ea4545;
}

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

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

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

.img-curve img {
  border-radius: 20px;
}

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 8px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin-bottom: 32px;
}

.mbXM {
  margin-bottom: 48px;
}

.mbL {
  margin-bottom: 64px;
}

.mbXL {
  margin-bottom: 96px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.grid {
  display: grid;
}

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

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

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

.gapXS {
  grid-gap: 8px;
}

.gapS {
  grid-gap: 16px;
}

.gapM {
  grid-gap: 32px;
}

.gapXM {
  grid-gap: 48px;
}

.gapL {
  grid-gap: 64px;
}

.gapXL {
  grid-gap: 96px;
}

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

  .sp-only {
    display: block;
  }

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

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

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

  .mbXS {
    margin-bottom: 4px;
  }

  .mbS {
    margin-bottom: 8px;
  }

  .mbM {
    margin-bottom: 16px;
  }

  .mbXM {
    margin-bottom: 32px;
  }

  .mbL {
    margin-bottom: 48px;
  }

  .mbXL {
    margin-bottom: 64px;
  }

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

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

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

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

  .gapXS {
    grid-gap: 4px;
  }

  .gapS {
    grid-gap: 8px;
  }

  .gapM {
    grid-gap: 16px;
  }

  .gapXM {
    grid-gap: 32px;
  }

  .gapL {
    grid-gap: 48px;
  }

  .gapXL {
    grid-gap: 64px;
  }

  .fs18 {
    font-size: 1rem;
  }
}

.tel {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font_en);
  font-size: 1.625rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
}

.tel.color01 {
  color: #537DB1;
}

.tel.color02 {
  color: var(--color_branch02);
}

.tel.color03 {
  color: var(--color_branch03);
}

.tel.color03 {
  color: #efc383;
}

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

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

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

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

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

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

.splide__progress__bar {
  width: 0;
}

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

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

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

.splide__slide img {
  vertical-align: bottom;
}

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

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

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

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

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

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

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

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

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

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

.splide--rtl {
  direction: rtl;
}

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

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

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

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

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

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

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

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

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

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

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

.splide__pagination {
  gap: 6px;
}

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

.splide__pagination__page.is-active {
  background: var(--color_primary);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
}

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

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

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

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

.splide__slide:focus {
  outline: 0;
}

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

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

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

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

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

.splide__toggle {
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.splide__toggle:hover {
  background: #D3D3D3;
}

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

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

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

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

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

/*-----------------------------------------------------------
Add
-----------------------------------------------------------*/
.news-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  position: relative;
  min-height: 130px;
}

.news-layout .l-ttl {
  font-size: 22px;
}

.news-layout .l-desc {}

.news-layout .l-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

.news-layout .btn-more {
  min-width: 130px;
  padding: 10px 35px;
}

.u-news-list {
  border-top: 1px solid #EEE;
}

.news-layout .post-item {
  border-bottom: 1px solid #EEE;
}

.u-news-list a {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 15px;
  align-items: center;
  padding: 15px 0;
  transition: 0.2s;
}

.u-news-list .post-item time {
  color: #888;
  font-size: 14px;
}

.u-news-list .post-item .ttl {
  font-size: 16px;
  -webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (hover: hover) {
  .u-news-list a:is(:hover, :focus) .ttl {
    text-decoration: underline;
  }
}

@media (max-width: 800px) {
  .news-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .news-layout .l-ttl {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .news-layout .l-desc {}

  .news-layout .l-btn {
    position: static;
    margin-top: 25px;
  }

  .u-news-list a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 0;
  }

  .u-news-list .post-item time {
    font-size: 14px;
  }

  .u-news-list .post-item .ttl {
    font-size: 14px;
  }
}
