@charset "UTF-8";
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

:root {
  --content-space: 16px;
  --content-negative-space: -16px;
  --content-width: 1200px;
  --content-page-width: 1000px;
  --content-max-width: calc(var(--content-width) + (var(--content-space) * 2));
  --content-narrow-width: 960px;
  --content-narrow-max-width: calc(var(--content-narrow-width) + (var(--content-space) * 2));
  --color-white: #fff;
  --color-grey: #aaa;
  --color-text: #323232;
  --color-main: #007cba;
  --color-sub: #e5f4fb;
  --color-accent: #f0c423;
  --color-dark: #007cba;
  --color-light: #e5f4fb;
  --color-mid-blue: #74b9dc;
  --font-main:
    "M PLUS 1p", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "ヒラギノ角ゴシック", "メイリオ", sans-serif;
  --font-en: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  :root {
    --content-space: 6.4vw;
    --content-negative-space: -6.4vw;
    --content-width: 100%;
    --content-max-width: 100%;
    --content-narrow-width: 100%;
    --content-narrow-max-width: 100%;
  }
}
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-main);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  min-width: var(--content-max-width);
}

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

/* 好みで使用してください
p, dl, dt, dd, ul, li{
    line-height: 1.5;
    font-feature-settings : "palt";
    text-align:justify; 
    text-justify: inter-ideograph;
}
*/
li {
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
}

.no-mt {
  margin-top: 0 !important;
}

p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}

/* ブロックスキップ */
.skip-link {
  position: absolute;
  top: -40px; /* 見えないように上に隠す */
  left: 0;
  background: var(--color-main);
  color: #fff;
  padding: 5px 16px;
  z-index: 1000;
  text-decoration: none;
  font-size: 16px;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0; /* フォーカス時に表示 */
}

/* Autoprefixerを使用した場合の書き方 */
input[type=submit],
input[type=button] {
  border-radius: 0;
  box-sizing: content-box;
  appearance: button;
  border: none;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
  }
  .pc {
    display: none !important;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .skip-link:focus {
    top: 80px;
  }
}
/* header -------------------------------------- */
.l-header {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  z-index: 1000;
  top: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.l-header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.l-header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 1.667vw, 24px);
}
.l-header__logo {
  flex-shrink: 0;
}
.l-header__logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 30px 0;
}
.l-header__logo img {
  height: clamp(20px, 1.563vw, 30px);
  width: auto;
  display: block;
}
.l-header__right {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.389vw, 20px);
  height: 100%;
}
.l-header__nav {
  display: flex;
  align-items: center;
  align-self: center;
}
.l-header__contact {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.389vw, 20px);
  height: 100%;
}
.l-header__tel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: var(--color-dark);
  white-space: nowrap;
}
.l-header__tel-num {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(2.4rem, 2.361vw, 3.4rem);
  color: var(--color-main);
  line-height: 1;
}
.l-header__tel-num::before {
  content: "";
  display: block;
  width: clamp(18px, 1.667vw, 24px);
  height: clamp(22px, 2.014vw, 29px);
  flex-shrink: 0;
  background: var(--color-main);
  -webkit-mask: url("../img/common/icon-tel.svg") no-repeat center/contain;
  mask: url("../img/common/icon-tel.svg") no-repeat center/contain;
}
.l-header__tel-sub {
  display: block;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1.4rem;
  color: #5f595a;
  letter-spacing: 0.012em;
  line-height: 1.2;
  text-align: center;
}
.l-header__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.694vw, 10px);
  padding: clamp(10px, 1.111vw, 11px) clamp(14px, 1.667vw, 20px);
  background: var(--color-main);
  border: 1px solid transparent;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-main);
  font-size: clamp(1.4rem, 1.25vw, 1.8rem);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.12em;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.l-header__cta-btn::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: currentColor;
  -webkit-mask: url("../img/common/icon-mail.svg") no-repeat center/contain;
  mask: url("../img/common/icon-mail.svg") no-repeat center/contain;
  flex-shrink: 0;
}
.l-header__cta-btn:hover {
  background: #fff;
  border-color: var(--color-main);
  color: var(--color-main);
}
.l-header__sp-tel {
  display: none;
}

.c-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}
.c-nav-list > li {
  list-style: none;
  display: flex;
  align-items: center;
  position: relative;
}
.c-nav-list__link {
  display: flex;
  align-items: center;
  padding: 2px clamp(6px, 0.833vw, 12px);
  text-decoration: none;
  color: var(--color-text);
  font-size: clamp(1.3rem, 1.111vw, 1.6rem);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.12em;
  transition: color 0.3s;
}
.c-nav-list__link:hover {
  color: var(--color-main);
}

body.is-menu-open {
  overflow: hidden;
}

.mm-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 2000;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s, visibility 0.4s;
}
.mm-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mm-menu::before {
  display: block;
  content: "";
  width: 20%;
  height: 100%;
  background: url("../img/top/mv_img01.jpg") no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mm-menu::before {
    width: 100%;
    opacity: 0.06;
  }
}

.sp-menu-link {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 100px 40px 60px;
}
@media screen and (max-width: 767px) {
  .sp-menu-link {
    padding: 80px 24px 60px;
    height: 100%;
  }
}
.sp-menu-link .inner {
  max-width: 660px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .sp-menu-link .inner {
    gap: 32px;
    margin: auto;
  }
}
.sp-menu-logo {
  max-width: 560px;
  width: 100%;
  align-self: center;
}
.sp-menu-logo a {
  display: block;
  text-decoration: none;
}
.sp-menu-logo img {
  height: 28px;
  width: auto;
  display: block;
}
.sp-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sp-menu-contact {
    flex-direction: column;
  }
}
.sp-menu-contact .footer-contact__card {
  padding: 32px 8px;
  gap: 16px;
  text-decoration: none;
}
.sp-menu-contact .footer-contact__card-title {
  font-size: 2rem;
}
.sp-menu-contact .footer-contact__card-body {
  gap: 12px;
}
.sp-menu-contact .footer-contact__tel-num {
  font-size: 3.8rem;
}
.sp-menu-contact .footer-contact__tel-num::before {
  width: 28px;
  height: 34px;
}
.sp-menu-contact .footer-contact__tel-note {
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
.sp-menu-contact .footer-contact__mail-hours {
  font-size: 2.8rem;
}
.sp-menu-contact .footer-contact__mail-hours::before {
  width: 28px;
  height: 28px;
}
.sp-menu-contact .footer-contact__mail-num {
  font-size: 3.8rem;
}
.sp-menu-contact .footer-contact__mail-note {
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .sp-menu-contact .footer-contact__card {
    padding: 20px 12px;
    gap: 10px;
  }
  .sp-menu-contact .footer-contact__card-title {
    font-size: 1.4rem;
  }
  .sp-menu-contact .footer-contact__card-body {
    gap: 8px;
  }
  .sp-menu-contact .footer-contact__tel-num {
    font-size: 2.8rem;
  }
  .sp-menu-contact .footer-contact__tel-num::before {
    width: 20px;
    height: 24px;
  }
  .sp-menu-contact .footer-contact__tel-note {
    font-size: 1.3rem;
  }
  .sp-menu-contact .footer-contact__mail-hours {
    font-size: 2rem;
  }
  .sp-menu-contact .footer-contact__mail-hours::before {
    width: 20px;
    height: 20px;
  }
  .sp-menu-contact .footer-contact__mail-num {
    font-size: 2.8rem;
  }
  .sp-menu-contact .footer-contact__mail-note {
    font-size: 1.3rem;
  }
}
.sp-menu-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-main);
  text-decoration: none;
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.sp-menu-tel::before {
  content: "";
  display: block;
  width: 22px;
  height: 26px;
  flex-shrink: 0;
  background: var(--color-main);
  -webkit-mask: url("../img/common/icon-tel.svg") no-repeat center/contain;
  mask: url("../img/common/icon-tel.svg") no-repeat center/contain;
}
.sp-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--color-main);
  border: 1px solid transparent;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.067em;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.sp-menu-cta::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: currentColor;
  -webkit-mask: url("../img/common/icon-mail.svg") no-repeat center/contain;
  mask: url("../img/common/icon-mail.svg") no-repeat center/contain;
  flex-shrink: 0;
}
.sp-menu-cta:hover {
  background: #fff;
  border-color: var(--color-main);
  color: var(--color-main);
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .sidemenu-link,
  .sp-menu-logo {
    margin-left: max(0px, 20vw - 20px);
  }
}

.sidemenu-link {
  max-width: 560px;
  width: 100%;
  align-self: center;
}
.sidemenu-link nav ul li::before {
  display: none;
}
.sidemenu-link nav ul {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidemenu-link nav ul li + li {
  margin-top: 20px;
}
.sidemenu-link nav ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.067em;
  transition: color 0.3s;
  line-height: 1.5;
}
.sidemenu-link nav ul li a::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  flex-shrink: 0;
  background: var(--color-main);
}
.sidemenu-link nav ul li a:hover {
  color: var(--color-main);
}

.openbtn {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2100;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: var(--color-main);
  border: none;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
}
.openbtn span {
  position: absolute;
  height: 2px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
.openbtn span:nth-of-type(1) {
  width: 36px;
  top: calc(50% - 14px);
}
.openbtn span:nth-of-type(2) {
  width: 36px;
  top: calc(50% - 3px);
  margin-top: -1px;
}
.openbtn span:nth-of-type(3) {
  width: 36px;
  top: calc(50% + 6px);
}
.openbtn span.menu {
  position: absolute;
  width: auto;
  height: auto;
  background: none;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  top: auto;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  line-height: 1;
}
.openbtn.active span:nth-of-type(1) {
  width: 36px;
  top: calc(50% - 3px);
  margin-top: -1px;
  transform: translateX(-50%) rotate(45deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
  transform: translateX(-60%);
}
.openbtn.active span:nth-of-type(3) {
  width: 36px;
  top: calc(50% - 3px);
  margin-top: -1px;
  transform: translateX(-50%) rotate(-45deg);
}

.openbtn.active {
  display: flex !important;
}

@media screen and (max-width: 1280px) {
  .l-header__nav {
    display: none;
  }
  .l-header__inner {
    padding-right: 100px;
  }
  .openbtn {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 0 70px 0 0;
  }
  .l-header__logo {
    flex: 1;
    min-width: 0;
  }
  .l-header__logo a {
    padding: 0 8px 0 10px;
    height: 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .l-header__logo img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 18px;
    display: block;
  }
  .l-header__right {
    gap: 0;
    height: 70px;
    align-items: center;
  }
  .l-header__contact, .l-header__nav {
    display: none !important;
  }
  .l-header__sp-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-main);
    border-radius: 8px;
    margin-right: 8px;
  }
  .l-header__sp-tel img {
    display: none;
  }
  .l-header__sp-tel::before {
    content: "";
    display: block;
    width: 20px;
    height: 26px;
    background: var(--color-main);
    -webkit-mask: url("../img/common/icon-tel.svg") no-repeat center/contain;
    mask: url("../img/common/icon-tel.svg") no-repeat center/contain;
  }
  .openbtn {
    width: 70px;
    height: 70px;
  }
  .openbtn span:nth-of-type(1) {
    width: 32px;
    top: calc(50% - 13px);
  }
  .openbtn span:nth-of-type(2) {
    width: 32px;
    top: calc(50% - 3px);
  }
  .openbtn span:nth-of-type(3) {
    width: 32px;
    top: calc(50% + 5px);
  }
  .openbtn.active span:nth-of-type(1) {
    width: 32px;
    top: calc(50% - 3px);
  }
  .openbtn.active span:nth-of-type(3) {
    width: 32px;
    top: calc(50% - 3px);
  }
}
:where(.u-contents) {
  display: grid;
  grid-template-columns: 1fr var(--content-space) var(--content-page-width) var(--content-space) 1fr;
  width: 100%;
  padding: 50px 0 120px;
}
:where(.u-contents).is-single-page {
  grid-template-columns: 1fr var(--content-narrow-width) 1fr;
}
:where(.u-contents) > :first-child {
  margin-top: 0 !important;
}
:where(.u-contents) > :last-child {
  margin-bottom: 0 !important;
}

:where(.u-contents > *) {
  grid-column: 3/4;
}
:where(.u-contents > *).u-wide-content {
  grid-column: 1/6;
}

.fix-side {
  position: fixed;
  width: 70px;
  height: 260px;
  right: -300px;
  top: calc(50vh - 130px);
  background-color: var(--color-dark);
  z-index: 99999;
  transition: 0.3s all;
}
.fix-side.active {
  right: 0px;
}
.fix-side a {
  display: block;
  width: 65px;
  height: 250px;
  margin: 5px 0 5px 5px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-lr;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  transition: 0.3s;
}
.fix-side a img {
  margin-top: 10px;
}
.fix-side a:hover {
  background-color: var(--color-dark);
}

.c-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  min-height: 230px;
  background-color: var(--color-grey);
}

.c-main__inner {
  padding-inline: var(--content-space);
  max-width: var(--content-max-width);
  width: 100%;
}
.c-main__inner > :first-child {
  margin-top: 0 !important;
}
.c-main__inner > :last-child {
  margin-bottom: 0 !important;
}

.c-main__title {
  line-height: 1.5;
  text-align: center;
  font-size: 3.8rem;
  font-weight: 700;
}

.c-main__single-title {
  line-height: 1.5;
  font-size: 3.8rem;
  font-weight: 700;
}

.c-main__prop {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-block: 28px;
}
.c-main__prop.c-main__prop--vertical {
  flex-direction: column;
}

.c-main__prop__date {
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  line-height: 1;
  color: #6B6B6B;
  font-size: 1.6rem;
}

.c-main__prop__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.c-main__prop__list > li {
  list-style: none;
  font-size: 1.4rem;
}

.c-main__prop__list__type {
  display: block;
  padding: 8px 14px;
  line-height: 1;
  text-decoration: none;
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1px solid #999999;
  border-radius: 8px;
  transition: all 0.3s;
}
.c-main__prop__list__type[href]:hover {
  color: var(--color-white);
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
}

@media screen and (max-width: 767px) {
  #wrapper {
    background: #fff;
  }
  :where(.u-contents) {
    grid-template-columns: var(--content-space) calc(var(--content-width) - var(--content-space) * 2) var(--content-space);
    padding: 30px 0 80px;
  }
  :where(.u-contents).is-single-page {
    grid-template-columns: var(--content-space) calc(var(--content-narrow-width) - var(--content-space) * 2) var(--content-space);
  }
  :where(.u-contents > *) {
    grid-column: 2/3;
  }
  :where(.u-contents > *).u-wide-content {
    grid-column: 1/4;
  }
}
/* footer -------------------------------------- */
.l-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0 40px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 80px 24px 96px;
  }
}
.l-footer__container {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .l-footer__container {
    padding: 0;
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }
}
.l-footer__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 560px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .l-footer__info {
    width: 100%;
  }
}
.l-footer__info-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .l-footer__info-head {
    gap: 16px;
  }
}
.l-footer__logo {
  display: block;
  height: 30px;
  width: auto;
  filter: brightness(0) invert(19.6%);
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    height: 22px;
    max-width: 100%;
  }
}
a:hover .l-footer__logo {
  opacity: 0.8;
}
.l-footer__address {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.086em;
  color: var(--color-text);
  font-style: normal;
}
.l-footer__address a {
  color: var(--color-text);
  text-decoration: none;
}
.l-footer__address a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .l-footer__address {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}
.l-footer__bnr-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.l-footer__bnr-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-footer__bnr-label {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.086em;
  color: var(--color-text);
  margin: 0;
  border-left: 3px solid var(--color-main);
  padding: 2px 0 3px 16px;
}
@media screen and (max-width: 767px) {
  .l-footer__bnr-label {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
.l-footer__bnr-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .l-footer__bnr-items {
    gap: 4.5vw 0;
    justify-content: space-between;
  }
}
.l-footer__bnr-item {
  display: block;
  width: 180px;
  height: 46px;
  flex-shrink: 0;
  transition: opacity 0.3s;
}
.l-footer__bnr-item:hover {
  opacity: 0.8;
}
.l-footer__bnr-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.l-footer__bnr-item--placeholder {
  background: #efefef;
}
@media screen and (max-width: 767px) {
  .l-footer__bnr-item {
    width: 48%;
    height: auto;
    aspect-ratio: 220/56;
  }
}
.l-footer__links {
  display: flex;
  gap: 60px;
  justify-content: flex-end;
}
.l-footer__link-col {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.l-footer__link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.067em;
  color: var(--color-text);
  transition: color 0.3s;
}
.l-footer__link::before {
  content: "";
  display: block;
  width: 15px;
  height: 9px;
  flex-shrink: 0;
  background: var(--color-main);
  -webkit-mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  transition: transform 0.3s;
}
.l-footer__link:hover {
  color: var(--color-main);
}
.l-footer__link:hover::before {
  transform: translateX(2px);
}
.l-footer__copyright {
  margin-top: 80px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.086em;
  color: #5f5d5d;
  text-align: center;
}

.ftr-fix {
  display: none;
}
@media screen and (max-width: 767px) {
  .ftr-fix {
    width: 100%;
    position: fixed;
    bottom: -80px;
    z-index: 1;
    display: flex;
    transition: bottom 0.3s;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
  }
  .ftr-fix.active {
    bottom: 0;
  }
  .ftr-fix a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 56px;
    width: 50%;
    background: #fff;
    color: var(--color-main);
    text-decoration: none;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 500;
  }
  .ftr-fix a:nth-of-type(2) {
    background: var(--color-main);
    color: #fff;
  }
  .ftr-fix a::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: var(--color-main);
  }
  .ftr-fix a:nth-of-type(1)::before {
    -webkit-mask: url("../img/common/icon-tel.svg") no-repeat center/contain;
    mask: url("../img/common/icon-tel.svg") no-repeat center/contain;
  }
  .ftr-fix a:nth-of-type(2)::before {
    -webkit-mask: url("../img/common/icon-mail.svg") no-repeat center/contain;
    mask: url("../img/common/icon-mail.svg") no-repeat center/contain;
    background: #fff;
    width: 22px;
    height: 18px;
  }
}

/*下層パンくず*/
ol.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  padding: 16px var(--content-space);
  margin: 100px auto 0;
  background: #f3f3f3;
}
ol.breadcrumbs > li {
  list-style: none;
  position: relative;
  padding-right: 20px;
  line-height: 1.5;
  font-size: 1.2rem;
  color: var(--color-text);
}
ol.breadcrumbs > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.6em;
  right: 10px;
  width: 4px;
  height: 4px;
  border-top: 1px solid var(--color-text);
  border-right: 1px solid var(--color-text);
  transform: rotate(45deg);
}
ol.breadcrumbs > li a {
  color: var(--color-main);
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  /*下層パンくず*/
  ol.breadcrumbs {
    padding: 16px var(--content-space);
    margin: 70px auto 0;
    background: #f3f3f3;
    width: 100%;
  }
}
.related-posts {
  margin-top: 20px;
}
.related-posts .card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.related-posts .card-container .card {
  display: block;
  width: calc(33.333% - 20px);
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.related-posts .card-container .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.related-posts .card-container .card .image img {
  width: 100%;
  height: auto;
  display: block;
}
.related-posts .card-container .card .content {
  padding: 15px;
}
.related-posts .card-container .card .content h3 {
  font-size: 1.2em;
  margin: 0 0 10px;
  color: #0073aa;
}
.related-posts .card-container .card .content h3:hover {
  text-decoration: underline;
}
.related-posts .card-container .card .content .categories {
  font-size: 0.9em;
  color: #555;
}
.related-posts .card-container .card .content .categories .category {
  display: inline-block;
  margin-right: 5px;
  background-color: #f4f4f4;
  padding: 3px 8px;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .related-posts .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .related-posts .card-container .card {
    width: 100%;
  }
}

.footer-contact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 0 140px;
  gap: 56px;
  background: linear-gradient(110.11deg, #007cba 4.33%, #3b99c8 99.26%);
}
@media screen and (max-width: 767px) {
  .footer-contact {
    padding: 80px 24px 100px;
    background: linear-gradient(93.44deg, #007cba 4.33%, #3b99c8 99.26%);
    gap: 40px;
  }
}
.footer-contact__bg {
  position: absolute;
  inset: 0;
  background: url("../img/common/contact_bg.jpg") center/cover no-repeat;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .footer-contact__bg {
    background-image: url("../img/common/contact_bg_sp.jpg");
  }
}
.footer-contact__head {
  position: relative;
  z-index: 1;
  text-align: center;
}
.footer-contact__deco {
  position: absolute;
  top: -113px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 12rem;
  line-height: 1.2;
  color: #007cba;
  letter-spacing: 0.01em;
  white-space: nowrap;
  margin: 0;
  pointer-events: none;
  z-index: 2;
}
.footer-contact__deco em {
  color: var(--color-accent);
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .footer-contact__deco {
    font-size: 8rem;
    top: -75px;
  }
}
.footer-contact__lead {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 36px;
  font-size: 3.6rem;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.033em;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .footer-contact__lead {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.6;
    letter-spacing: 0.036em;
  }
}
.footer-contact__container {
  position: relative;
  z-index: 1;
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .footer-contact__container {
    padding: 0;
    flex-direction: column;
    gap: 20px;
  }
}
.footer-contact__container .footer-contact__card {
  transition: background 0.3s, opacity 0.8s ease, transform 0.8s ease;
}
.footer-contact__card {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #eaf7ff;
  border: 2px solid #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  padding: 40px 32px;
  gap: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s, opacity 0.8s ease, transform 0.8s ease;
}
.footer-contact__card:hover {
  background: #cce9f8;
}
.footer-contact__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .footer-contact__card {
    padding: 32px 16px;
    gap: 12px;
  }
}
.footer-contact__card-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 30px;
  font-size: 3rem;
  color: var(--color-main);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .footer-contact__card-title {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.6;
    letter-spacing: 0.042em;
  }
}
.footer-contact__card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .footer-contact__card-body {
    gap: 12px;
  }
}
.footer-contact__tel-link {
  display: flex;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .footer-contact__tel-link {
    justify-content: center;
    width: 100%;
  }
}
.footer-contact__tel-num {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 5.316rem;
  color: var(--color-main);
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.footer-contact__tel-num::before {
  content: "";
  display: block;
  width: 38px;
  height: 46px;
  flex-shrink: 0;
  background: var(--color-main);
  -webkit-mask: url("../img/common/icon-tel.svg") no-repeat center/contain;
  mask: url("../img/common/icon-tel.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .footer-contact__tel-num::before {
    width: 26px;
    height: 32px;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact__tel-num {
    font-size: 3.6rem;
  }
}
.footer-contact__tel-note {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #5f595a;
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer-contact__tel-note {
    line-height: 1.6;
  }
}
.footer-contact__mail-hours {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 40px;
  font-size: 4rem;
  color: var(--color-main);
  margin: 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.footer-contact__mail-hours::before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  background: var(--color-main);
  -webkit-mask: url("../img/common/icon-mail.svg") no-repeat center/contain;
  mask: url("../img/common/icon-mail.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .footer-contact__mail-hours::before {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact__mail-hours {
    font-size: 34px;
    font-size: 3.4rem;
    justify-content: center;
  }
}
.footer-contact__mail-num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 5.316rem;
  color: var(--color-main);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .footer-contact__mail-num {
    font-size: 4.4rem;
  }
}
.footer-contact__mail-note {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #5f595a;
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer-contact__mail-note {
    line-height: 1.6;
  }
}

.l-main .u-main h1 {
  font-size: 38px;
  font-size: 3.8rem;
  color: #264367;
}

@media screen and (max-width: 767px) {
  .l-main .u-main h1 {
    font-size: 23px;
    font-size: 2.3rem;
  }
}
.c-heading-lv2 + *,
.c-heading-lv3 + *,
.c-heading-lv4 + *,
.c-heading-lv5 + *,
.c-heading-lv6 + *,
:where(.u-editor) h2:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h3:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h4:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h5:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h6:where(:not(.is-reset-wp-block)) + * {
  margin-top: 0 !important;
}

.c-heading-lv2,
:where(.u-editor) h2:where(:not(.is-reset-wp-block)) {
  margin: 96px 0 32px;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.5;
  color: var(--color-text);
  padding: 0 0 0 1.5em;
  position: relative;
}
.c-heading-lv2::before,
:where(.u-editor) h2:where(:not(.is-reset-wp-block))::before {
  content: "";
  width: 40px;
  height: 6px;
  border-radius: 10px;
  background: var(--color-main);
  position: absolute;
  display: block;
  top: 0.75em;
  left: 0;
}

.c-heading-lv3,
:where(.u-editor) h3:where(:not(.is-reset-wp-block)) {
  margin: 64px 0 40px;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.5;
  position: relative;
}
.c-heading-lv3::before,
:where(.u-editor) h3:where(:not(.is-reset-wp-block))::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #c5c5c5;
  position: absolute;
  display: block;
  bottom: -16px;
  left: 0;
}
.c-heading-lv3::after,
:where(.u-editor) h3:where(:not(.is-reset-wp-block))::after {
  content: "";
  width: 160px;
  height: 2px;
  background: #eebc20;
  position: absolute;
  display: block;
  bottom: -16px;
  left: 0;
}

.c-heading-lv4,
:where(.u-editor) h4:where(:not(.is-reset-wp-block)) {
  margin: 56px 0 20px;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  background: #e1f2fa;
  padding: 10px 16px;
}

.c-heading-lv5,
:where(.u-editor) h5:where(:not(.is-reset-wp-block)) {
  margin: 40px 0 20px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  color: var(--color-main);
}

.c-heading-lv6,
:where(.u-editor) h6:where(:not(.is-reset-wp-block)) {
  margin: 20px 0 16px;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .c-heading-lv2,
  :where(.u-editor) h2:where(:not(.is-reset-wp-block)) {
    font-size: 26px;
    font-size: 2.6rem;
    padding: 0 0 0 1.7em;
  }
  .c-heading-lv2::before,
  :where(.u-editor) h2:where(:not(.is-reset-wp-block))::before {
    top: 0.7em;
  }
  .c-heading-lv3,
  :where(.u-editor) h3:where(:not(.is-reset-wp-block)) {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .c-heading-lv4,
  :where(.u-editor) h4:where(:not(.is-reset-wp-block)) {
    font-size: 20px;
    font-size: 2rem;
  }
  .c-heading-lv5,
  :where(.u-editor) h5:where(:not(.is-reset-wp-block)) {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.c-paragraph,
:where(.u-editor) p {
  margin-top: 1.2em;
  line-height: 2;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .c-paragraph,
  :where(.u-editor) p {
    margin-top: 1em;
    line-height: 1.8;
  }
}
.c-unordered-list,
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
  padding: 0;
}
.c-unordered-list li,
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) li {
  list-style-type: none;
  text-indent: -1.5em;
  margin-left: 1.5em;
}
.c-unordered-list li:before,
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) li:before {
  content: "⚫︎";
  font-size: 15px;
  color: var(--color-main);
  margin-right: 5px;
}

.c-order-list,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) {
  list-style-type: none;
  counter-reset: count 0;
  margin-top: 40px;
  padding: 0;
}
.c-order-list li,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li {
  text-indent: -1.4em;
  margin-left: 1.4em;
}
.c-order-list li a,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a {
  text-decoration: none;
}
.c-order-list li a:hover,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a:hover {
  color: var(--color-main);
}
.c-order-list li:before,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li:before {
  content: counter(count) ". ";
  counter-increment: count 1;
  color: var(--color-main);
  font-weight: bold;
}

dt,
dd {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .c-unordered-list,
  :where(.u-editor) ul:where(:not(.is-reset-wp-block)) {
    margin-top: 40px;
  }
  .c-order-list,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) {
    list-style-type: none;
    counter-reset: count 0;
    margin-top: 40px;
  }
  .c-order-list li a,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a {
    text-decoration: none;
  }
  .c-order-list li a:hover,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a:hover {
    color: var(--color-main);
  }
  .c-order-list li:before,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li:before {
    content: counter(count) ". ";
    counter-increment: count 1;
    color: var(--color-main);
    padding-left: 3px;
    margin-right: 5px;
    font-weight: bold;
  }
}
.c-for-list,
.wp-block-button:where(:not(.is-reset-wp-block)) {
  text-align: center;
  margin: 40px auto 0;
}
.c-for-list a,
.wp-block-button:where(:not(.is-reset-wp-block)) a {
  display: block;
  position: relative;
  padding: 18px 30px;
  width: 274px;
  color: var(--color-white);
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  background: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 8px;
  min-width: 264px;
  margin-top: 1.2em;
  transition: 0.3s;
}
.c-for-list a:hover,
.wp-block-button:where(:not(.is-reset-wp-block)) a:hover {
  color: var(--color-main);
  font-weight: bold;
  background: var(--color-white);
}

@media screen and (max-width: 767px) {
  .c-for-list,
  .wp-block-button:where(:not(.is-reset-wp-block)) {
    display: block !important;
    margin: 30px auto 64px;
    text-align: center;
  }
  .c-for-list a,
  .wp-block-button:where(:not(.is-reset-wp-block)) a {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 17px 0;
    width: 80%;
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.c-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 71px;
  min-width: 260px;
  background: var(--color-main);
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.067em;
  line-height: 1.3;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.c-btn::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 10px;
  background: currentColor;
  -webkit-mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  transition: transform 0.3s;
}
.c-btn:hover {
  background: #fff;
  border-color: var(--color-main);
  color: var(--color-main);
}
.c-btn:hover::after {
  transform: translateY(-50%) translateX(2px);
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 100%;
    min-width: auto;
  }
}

.c-btn--white {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 71px;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--color-main);
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-main);
  letter-spacing: 0.067em;
  line-height: 1.3;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.c-btn--white::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 10px;
  background: currentColor;
  -webkit-mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  transition: transform 0.3s;
}
.c-btn--white:hover {
  background: var(--color-main);
  border-color: #fff;
  color: #fff;
}
.c-btn--white:hover::after {
  transform: translateY(-50%) translateX(2px);
}
@media screen and (max-width: 767px) {
  .c-btn--white {
    width: 100%;
    min-width: auto;
  }
}

.c-btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 0 8px 8px;
  border-bottom: 1px solid var(--color-main);
  color: #323232;
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.067em;
  white-space: nowrap;
  transition: color 0.3s;
}
.c-btn--outline::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 17px;
  height: 10px;
  background: var(--color-main);
  -webkit-mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  transition: transform 0.3s;
}
.c-btn--outline:hover {
  color: var(--color-main);
}
.c-btn--outline:hover::after {
  transform: translateX(2px);
}

.c-blockquote,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 40px 80px;
  background-color: #e1f2fa;
  position: relative;
}
.c-blockquote cite,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) cite {
  display: block;
  text-align: left;
  font-style: normal;
  margin-top: 20px;
  font-size: 16px;
  font-size: 1.6rem;
}
.c-blockquote::before,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::before {
  content: "";
  background: url(../img/page/icon-blockquote-start.svg);
  position: absolute;
  top: 16px;
  left: 16px;
  width: 50px;
  height: 41px;
  background-size: cover;
}
.c-blockquote::after,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::after {
  content: "";
  background: url(../img/page/icon-blockquote-end.svg);
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 50px;
  height: 41px;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .c-blockquote,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) {
    width: 100%;
    margin: 40px auto 0;
    line-height: 1.8;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 48px 8%;
    background-color: #e1f2fa;
    position: relative;
  }
  .c-blockquote cite,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) cite {
    display: block;
    text-align: left;
    font-style: normal;
    margin-top: 20px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .c-blockquote::before,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::before {
    width: 32px;
    height: 26px;
  }
  .c-blockquote::after,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::after {
    width: 32px;
    height: 26px;
  }
}
.c-image,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
}
.c-image img,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) img {
  max-width: 100%;
  height: auto;
}
.c-image figcaption,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) figcaption {
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .c-image,
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) {
    margin-top: 40px;
  }
  .c-image img,
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) img {
    max-width: 100%;
    height: auto;
  }
  .c-image figcaption,
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) figcaption {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 16px;
  }
}
.c-iframe,
:where(.u-editor) iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
}

.u-editor {
  --table-border-color: #fff;
  --table-bg-color: #e4e4e4;
}
.u-editor .wp-block-flexible-table-block-table,
.u-editor .wp-block-table {
  margin-top: 40px;
}
.u-editor .wp-block-flexible-table-block-table figcaption,
.u-editor .wp-block-table figcaption {
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
.u-editor table {
  margin: 0;
  border-collapse: collapse;
  border: 1px solid #fff;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr,
.u-editor table tr {
  border-bottom: 1px solid #fff;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
.u-editor table tr th,
.u-editor table tr td {
  line-height: 1.3;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 15px 30px;
  text-align: left;
  border-color: #fff;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead,
.u-editor table thead {
  border-bottom: none;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead th,
.u-editor table thead th {
  background-color: var(--color-main);
  color: #fff;
  border: 1px solid #fff;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody th,
.u-editor table tbody th {
  background-color: var(--color-main);
  color: #fff;
  border: 1px solid #fff;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody td,
.u-editor table tbody td {
  background: #f4f4f4;
  border: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .u-editor .wp-block-flexible-table-block-table,
  .u-editor .wp-block-table {
    margin-top: 40px;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table.has-fixed-layout:not(.is-stacked-on-mobile) {
    width: max-content !important;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
  .u-editor table {
    border-collapse: collapse;
    border: 1px solid var(--table-border-color);
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr,
  .u-editor table tr {
    border-bottom: 1px solid var(--table-border-color);
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
  .u-editor table tr th,
  .u-editor table tr td {
    line-height: 1.3;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 15px 30px;
    text-align: left;
    border-color: var(--table-border-color);
  }
}
.wp-block-media-text {
  gap: 36px;
  margin: 80px 0 0;
}

.wp-block-media-text > .wp-block-media-text__content {
  padding: 0 !important;
}

@media screen and (max-width: 767px) {
  .wp-block-media-text {
    gap: 18px;
    margin: 60px 0 0;
  }
}
:where(.u-editor) .wp-block-columns {
  gap: 32px;
  margin-top: 64px;
}
:where(.u-editor) .wp-block-columns + .wp-block-columns {
  margin-top: 32px;
}

:where(.u-editor) .is-layout-grid {
  gap: 32px;
  margin-top: 64px;
}

.wp-block-gallery.has-nested-images.is-layout-flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 50px 0 0;
}

.wp-block-gallery > .wp-block-image {
  width: 100% !important;
}

@media screen and (max-width: 767px) {
  :where(.u-editor) .wp-block-columns {
    gap: 16px;
    margin-top: 48px;
  }
  :where(.u-editor) .wp-block-columns + .wp-block-columns {
    margin-top: 16px;
  }
  :where(.u-editor) .is-layout-grid {
    gap: 16px;
    margin-top: 48px;
  }
  .wp-block-gallery.has-nested-images.is-layout-flex {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0 0;
  }
}
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 88px auto 0;
  text-align: center;
}
.wp-pagenavi span,
.wp-pagenavi a {
  display: block;
  margin: 0;
  padding: 18px 20px;
  line-height: 2;
  color: var(--color-main);
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--color-main) !important;
}
.wp-pagenavi span.current,
.wp-pagenavi a.current {
  background-color: var(--color-main);
  color: var(--color-white);
  font-weight: 500;
}
.wp-pagenavi .pages,
.wp-pagenavi .extend {
  padding: 0;
}
.wp-pagenavi .pages {
  border: none !important;
}
.wp-pagenavi span.current,
.wp-pagenavi a {
  min-width: 44px;
  padding: 7px 5px !important;
}
.wp-pagenavi a {
  border: 1px solid var(--color-main);
}
.wp-pagenavi a:hover {
  background-color: var(--color-main);
  color: #fff;
}

.next-prev {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin: 60px auto 0;
}
.next-prev .prev,
.next-prev .next {
  max-width: 384px;
}
.next-prev .prev a,
.next-prev .next a {
  display: inline-block;
  position: relative;
  line-height: 2;
  color: var(--color-main);
  font-size: 1.6rem;
  font-weight: 500;
  transition: 0.3s;
}
.next-prev .prev a:hover,
.next-prev .next a:hover {
  text-decoration: none;
}
.next-prev .prev a::before,
.next-prev .next a::before {
  position: absolute;
}
.next-prev .prev {
  margin-right: auto;
}
.next-prev .prev a {
  padding-left: 1em;
}
.next-prev .prev a::before {
  content: "«";
  top: 0;
  left: 0;
}
.next-prev .next {
  margin-left: auto;
}
.next-prev .next a {
  padding-right: 1em;
}
.next-prev .next a::before {
  content: "»";
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin: 70px auto 0;
    text-align: center;
  }
  .wp-pagenavi span.current,
  .wp-pagenavi a {
    padding: 10px 7px;
    min-width: 46px;
  }
  .wp-pagenavi .pages {
    width: 100%;
  }
  .next-prev {
    flex-direction: column;
    margin: 42px auto 0;
  }
  .next-prev .prev,
  .next-prev .next {
    max-width: none;
  }
}
.fadein {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

:where(.u-editor) .wp-block-column > :first-child,
:where(.u-editor) .wp-block-group__inner-container > :first-child,
:where(.u-editor) .wp-block-media-text__content > :first-child,
:where(.u-editor) blockquote.wp-block-quote > :first-child {
  margin-top: 0 !important;
}
:where(.u-editor) .wp-block-column > :last-child,
:where(.u-editor) .wp-block-group__inner-container > :last-child,
:where(.u-editor) .wp-block-media-text__content > :last-child,
:where(.u-editor) blockquote.wp-block-quote > :last-child {
  margin-bottom: 0 !important;
}

.c-slider .splide__slide,
.c-slider--sp .splide__slide {
  list-style: none;
}
.c-slider .splide__slide::before,
.c-slider--sp .splide__slide::before {
  display: none !important;
}

.c-slider02 .splide__slide {
  height: 590px;
  list-style: none;
}
.c-slider02 .splide__slide::before {
  display: none !important;
}

.c-slider,
.c-slider--sp {
  margin-top: 50px;
}
.c-slider .splide__controls,
.c-slider--sp .splide__controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.c-slider .splide__toggle .splide__toggle__play,
.c-slider .splide__toggle .splide__toggle__pause,
.c-slider--sp .splide__toggle .splide__toggle__play,
.c-slider--sp .splide__toggle .splide__toggle__pause {
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px auto;
}
.c-slider .splide__toggle .splide__toggle__play,
.c-slider--sp .splide__toggle .splide__toggle__play {
  background-image: url(../img/common/icon-slider-play01.png);
}
.c-slider .splide__toggle .splide__toggle__pause,
.c-slider--sp .splide__toggle .splide__toggle__pause {
  background-image: url(../img/common/icon-slider-stop01.png);
}
.c-slider .splide__toggle:not(.is-active) .splide__toggle__play,
.c-slider--sp .splide__toggle:not(.is-active) .splide__toggle__play {
  display: block;
}
.c-slider .splide__toggle.is-active .splide__toggle__pause,
.c-slider--sp .splide__toggle.is-active .splide__toggle__pause {
  display: block;
}
.c-slider .splide__pagination button,
.c-slider .splide__toggle,
.c-slider--sp .splide__pagination button,
.c-slider--sp .splide__toggle {
  appearance: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.c-slider .splide__pagination,
.c-slider--sp .splide__pagination {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
  padding: 0;
}
.c-slider .splide__pagination button,
.c-slider--sp .splide__pagination button {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-grey);
  border-radius: 10px;
}
.c-slider .splide__pagination button.is-active,
.c-slider--sp .splide__pagination button.is-active {
  background: var(--color-accent);
}
.c-slider .splide__pagination > li,
.c-slider--sp .splide__pagination > li {
  margin: 0;
  padding: 0;
}
.c-slider .splide__pagination > li::before,
.c-slider--sp .splide__pagination > li::before {
  display: none !important;
}

.c-slider--sp {
  margin-top: 50px;
}

.c-slider02 {
  margin-top: 50px;
}

.c-slider02__main img,
.c-slider02__thumbnail img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.c-slider02__main {
  position: relative;
}
.c-slider02__main .splide__arrows {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.c-slider02__main .splide__arrow {
  --arrow-space: 26px;
  appearance: none;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 20px;
  text-indent: -9999px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  pointer-events: visible;
}
.c-slider02__main .splide__arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-top: 3px solid #000;
}
.c-slider02__main .splide__arrow--prev {
  left: var(--arrow-space);
}
.c-slider02__main .splide__arrow--prev::before {
  left: 36%;
  border-left: 3px solid #000;
  transform: rotate(-45deg);
}
.c-slider02__main .splide__arrow--next {
  right: var(--arrow-space);
}
.c-slider02__main .splide__arrow--next::before {
  right: 36%;
  border-right: 3px solid #000;
  transform: rotate(45deg);
}

.c-slider__img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.c-slider02__thumbnail {
  margin-top: 40px;
}
.c-slider02__thumbnail .splide__slide {
  width: 160px;
  height: 153px;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
  /* Safari用のハードウェアアクセラレーション */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: opacity;
}
.c-slider02__thumbnail .splide__slide:not(.is-active) {
  opacity: 0.3;
}
.c-slider02__thumbnail .splide__slide.is-active {
  opacity: 1;
}

.c-card-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 24px;
  margin: 40px 0 0;
  padding: 0;
}
.c-card-wrap > li {
  list-style: none;
  padding: 0;
}
.c-card-wrap > li::before {
  display: none;
}
.c-card-wrap > .c-card {
  margin: 0;
}

.c-card-wrap.c-card-wrap--columns3 {
  grid-template-columns: repeat(3, 1fr);
}

.c-card {
  margin-top: 50px;
}

.c-card__type {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
}
.c-card__type:hover .c-card__img {
  opacity: 0.6;
}
.c-card__type > :first-child {
  margin-top: 0 !important;
}
.c-card__type > :last-child {
  margin-bottom: 0 !important;
}

.c-card__type.c-card__type--horizon {
  flex-direction: row;
  gap: 24px;
}

.c-card__img {
  aspect-ratio: 317/220;
  overflow: hidden;
  transition: 0.3s opacity;
}
:where(.c-card__type--horizon) > .c-card__img {
  width: 317px;
}
.c-card__img > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-card__detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-card__prop {
  display: flex;
  align-items: center;
  gap: 12px;
}
:where(.c-card__type--horizon > .c-card__detail) > .c-card__prop {
  flex-direction: column;
  align-items: flex-start;
}

.c-card__date {
  line-height: 1.5;
  color: var(--color-main);
  font-size: 1.4rem;
}

.c-card__category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.c-card__category-wrap > li {
  list-style: none;
}

.c-card__category {
  padding: 8px 10px;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 500;
  border: 1px solid var(--color-grey);
}
.c-card__category.c-card__category--tag {
  color: var(--color-white);
  background-color: var(--color-main);
}

.c-card__title {
  line-height: 1.5;
  font-size: 1.6rem;
}

.c-card__tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin: 10px 0 0;
  padding: 0;
}
.c-card__tag-wrap > li {
  list-style: none;
}

.c-card__tag {
  color: var(--color-grey);
  font-size: 1.4rem;
}

.c-simple-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 30px 0 0;
  padding: 0;
}

.c-simple-posts__item {
  list-style: none;
  background-color: var(--color-white);
  border-bottom: 1px solid #e0e0e0;
}

.c-simple-posts__item-link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
  text-decoration: none;
}

.c-simple-posts__prop {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.c-simple-posts__date {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: #6c757d;
}

.c-simple-posts__category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.c-simple-posts__category {
  display: inline-block;
  color: var(--color-main);
  padding: 8px 10px;
  line-height: 1;
  font-size: 1.2rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-main);
}

.c-simple-posts__tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 10px;
  margin: 10px 0 0;
  padding: 0;
}
.c-simple-posts__tag-wrap > li {
  list-style: none;
}

.c-simple-posts__tag {
  color: var(--color-grey);
  font-size: 1.4rem;
}

.c-simple-posts__title {
  margin: 0;
  line-height: 1.6;
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 500;
}
.c-simple-posts__item-link:hover .c-simple-posts__title {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .c-slider--sp .splide__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .c-slider--sp .splide__controls {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .c-slider .splide__slide,
  .c-slider02 .splide__slide,
  .c-slider--sp .splide__slide {
    height: 55vw;
  }
  .c-slider--sp .splide__controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .c-slider02__thumbnail {
    margin-top: 10px;
  }
  .c-slider02__thumbnail .splide__slide {
    height: 12vw;
    transition: opacity 0.3s ease-in-out;
    /* Safari用のハードウェアアクセラレーション */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: opacity;
  }
  .c-card-wrap,
  .c-card-wrap.c-card-wrap--columns3 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  :where(.c-card__type--horizon) > .c-card__img {
    width: 50%;
  }
  .c-card__prop {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .c-card__category-wrap {
    gap: 4px;
  }
  .c-card__category {
    font-size: 1.4rem;
  }
}
.c-qa-layout {
  margin-top: 51px;
  border-bottom: 1px solid #eee;
  padding-bottom: 36px;
}

.c-qa-layout + .c-qa-layout {
  margin-top: 15px;
}

.c-qa-layout__head,
.c-qa-layout__body {
  display: flex;
  align-items: center;
  gap: 20px;
}

.c-qa-layout__body {
  align-items: flex-start;
}
.c-qa-layout__body .c-qa-layout__detail {
  padding-top: 17px;
}

.c-qa-layout__head {
  margin: 0;
  padding: 0px 16px;
  background-color: var(--color-light-base);
}
.c-qa-layout__head::before {
  content: none;
}
.c-qa-layout__head::after {
  content: none;
}

.c-qa-layout__body {
  padding: 0px 16px;
  background-color: var(--color-white);
}
.c-qa-layout__body p {
  font-size: 1.6rem;
}

.c-qa-layout__head__pref,
.c-qa-layout__body__pref {
  line-height: 1.8;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  text-align: center;
  color: var(--color-text);
  font-size: 3.6rem;
  font-weight: 700;
  border-radius: 2em;
  font-family: var(--font-en);
}

.c-qa-layout__body__pref {
  color: var(--color-main);
}

.c-qa-layout__title {
  flex-grow: 1;
  line-height: 1.8;
  font-size: 1.8rem;
  font-weight: 700;
}

.c-qa-layout__detail {
  flex-grow: 1;
}
.c-qa-layout__detail > :first-child {
  margin-top: 0 !important;
}
.c-qa-layout__detail > :last-child {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 767px) {
  .c-qa-layout__head, .c-qa-layout__body {
    padding: 0;
  }
  .c-qa-layout__head__pref, .c-qa-layout__body__pref {
    width: 15%;
  }
  .c-qa-layout__detail {
    width: 85%;
  }
}
.c-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 50px 0 0;
  padding: 30px;
  background-color: var(--color-grey);
}

.c-box__head > :first-child,
.c-box__detail > :first-child {
  margin-top: 0 !important;
}
.c-box__head > :last-child,
.c-box__detail > :last-child {
  margin-bottom: 0 !important;
}

.c-box__title {
  font-size: 2rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .c-box {
    margin: 30px 0 0;
    padding: 16px;
  }
  .c-box__title {
    font-size: 1.8rem;
  }
}
.c-flow-list {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
  margin: 50px 0 0;
}
.c-flow-list > li {
  margin: 0;
  padding: 30px 15px;
  text-indent: 0;
}

.c-flow-list__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  background-color: var(--color-light-base);
  border: 1px solid var(--color-main);
}
.c-flow-list__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.3rem;
  margin: 0;
  width: 1rem;
  height: 1.5rem;
  font-size: inherit;
  transform: translateY(-50%);
  background-color: var(--color-main);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.c-flow-list__item:first-child::before {
  display: none;
}

.c-flow-list__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-cta-section {
  margin: 60px 0 0;
  padding: 30px;
  background-color: var(--color-grey);
}
.c-cta-section > :first-child {
  margin-top: 0 !important;
}
.c-cta-section > :last-child {
  margin-bottom: 0 !important;
}

.c-cta-section__title {
  margin: 30px auto 15px;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}

.c-cta-card-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 30px 0 0;
}

.c-cta-card {
  margin: 0;
  padding: 0;
}

.c-cta-card__type {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 15px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.c-cta-card__type:hover {
  opacity: 0.7;
}
.c-cta-card__type > :first-child {
  margin-top: 0 !important;
}
.c-cta-card__type > :last-child {
  margin-bottom: 0 !important;
}

.c-cta-card__heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-cta-card__heading__icon {
  flex-shrink: 0;
  width: 50px;
}

.c-cta-card__heading__title {
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-size: 2.4rem;
  font-weight: 700;
}

.c-cta-card__heading__title--tel {
  font-size: 4rem;
}

.c-cta-card__text {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

.c-cta-card__lead {
  margin-top: 5px;
  line-height: 1.2;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
}

.c-sns-list {
  display: flex;
  gap: 24px;
  margin: 75px 0 0;
  padding: 0;
}
.c-sns-list > li {
  list-style: none;
}

.c-sns-list--contact {
  justify-content: center;
}

.c-sns__type {
  display: block;
}

@media screen and (max-width: 767px) {
  .c-flow-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 500px;
    margin-inline: auto;
    padding-right: 20px;
  }
  .c-flow-list > li {
    padding: 15px;
  }
  .c-flow-list__item::before {
    left: calc(100% + 12px);
    width: 10px;
    height: 15px;
  }
  .c-flow-list__item:first-child::before {
    display: block;
  }
  .c-flow-list__item:last-child::before {
    display: none;
  }
  .c-flow-list__text {
    font-size: 1.6rem;
  }
  .c-cta-card-wrap {
    grid-template-columns: 1fr;
  }
  .c-cta-card__type {
    padding: 15px 10px;
    min-height: 100px;
  }
  .c-cta-card__heading__icon {
    width: 30px;
  }
  .c-cta-card__heading__title {
    font-size: 2rem;
  }
  .c-cta-card__heading__title--tel {
    font-size: 3rem;
  }
  .c-cta-card__text {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
  }
  .c-cta-card__lead {
    font-size: 2.2rem;
  }
}
.c-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0 0;
  padding: 0;
}
.c-tag-list > li {
  list-style: none;
}

.c-tag {
  font-size: 1.8rem;
}

.c-tag__type {
  text-decoration: none;
}
.c-tag__type:hover {
  text-decoration: underline;
}

.c-category-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0px 0 0;
  padding: 0;
}
.c-category-list > li {
  list-style: none;
}

.c-category__type {
  display: inline-block;
  padding: 6px 18px;
  line-height: 1;
  text-decoration: none;
  color: var(--color-main);
  font-size: 1.6rem;
  font-weight: bold;
  background-color: var(--color-white);
  border: 1px solid var(--color-main);
  border-radius: 0;
  transition: 0.3s;
}
.c-category__type:hover {
  color: var(--color-white);
  background-color: var(--color-main);
}
.c-category__type.is-current {
  display: inline-block;
  color: var(--color-white);
  background-color: var(--color-main);
}

.cat-area {
  width: var(--content-page-width);
  margin: 5px auto 10px;
  display: flex;
  align-items: center;
}
.cat-area .date {
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 26px;
}

.date {
  font-size: 16px;
  font-size: 1.6rem;
  color: var(--color-main);
}

.no-posts {
  margin-top: 60px;
  text-align: center;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .c-category__type {
    padding: 5px 10px;
  }
  .cat-area {
    width: 100%;
    margin: 5px auto 10px;
    display: block;
  }
  .cat-area .date {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
  }
}
.single-main {
  text-align: center;
  padding-top: 80px;
  margin-top: 100px;
}
.single-main h1 {
  width: var(--content-page-width);
  margin: 0 auto;
  font-size: 48px;
  font-size: 4.8rem;
  border-bottom: 6px solid #000;
  text-align: left;
  line-height: 1.3;
}

.p-works__description {
  font-size: 1.8rem;
}

.p-works-point-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin: 50px 0 0;
}

.p-works-point-grid__item > :first-child {
  margin-top: 0 !important;
}
.p-works-point-grid__item > :last-child {
  margin-bottom: 0 !important;
}

.p-works-point__image {
  position: relative;
}

.p-works-point__badge {
  position: absolute;
  display: inline-block;
  padding: 8px 15px;
  top: 22px;
  left: 35px;
  line-height: 1;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  background-color: var(--color-main);
  border-radius: 30px;
}

.p-works-point__description {
  margin-top: 10px;
  line-height: 1.4;
  font-size: 1.4rem;
}

.p-works-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin: 50px 0 0;
}

.p-works-gallery-grid__item > :first-child {
  margin-top: 0 !important;
}
.p-works-gallery-grid__item > :last-child {
  margin-bottom: 0 !important;
}

.p-works-gallery-grid__before-after {
  --gap: 36px;
  --gap-half: calc(var(--gap) / 2);
  display: flex;
  gap: var(--gap);
  margin: 50px 0 0;
}

.p-works-gallery-grid__ba {
  position: relative;
}
.p-works-gallery-grid__ba > :first-child {
  margin-top: 0 !important;
}
.p-works-gallery-grid__ba > :last-child {
  margin-bottom: 0 !important;
}

.p-works-gallery-grid__ba--before {
  width: calc(30% - var(--gap-half));
}

.p-works-gallery-grid__ba--after {
  flex-shrink: 0;
  margin-left: auto;
  width: calc(70% - var(--gap-half));
}

.p-works-gallery-grid__ba__badge {
  position: absolute;
  display: inline-block;
  padding: 8px 15px;
  top: 0;
  left: 0;
  line-height: 1;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 2.4rem;
  font-weight: 700;
  background-color: var(--color-main);
}

.p-works-gallery-grid__ba__badge--before,
.p-works-gallery-grid__ba__badge--after {
  text-transform: uppercase;
}

.p-works-gallery__image__caption {
  margin-top: 20px;
  line-height: 1.4;
  font-size: 1.4rem;
}

.p-works-about__data {
  --border-color: var(--color-dark);
  display: grid;
  grid-template-columns: repeat(2, 50%);
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}

.p-works-about__data__dl {
  display: grid;
  grid-template-columns: 30% 70%;
  background-color: #fff;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.p-works-about__data__dl__title {
  padding: 10px 15px;
  font-weight: 700;
  background-color: var(--color-grey);
}

.p-works-about__data__dl__detail {
  border-left: 1px solid var(--border-color);
  padding: 10px 15px;
}

.p-voice-mv {
  margin: 100px auto 0;
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .single-main {
    text-align: center;
    padding-top: 40px;
    text-align: left;
    padding: 40px 4% 0;
  }
  .single-main h1 {
    width: 100%;
    margin: 0 auto;
    font-size: 30px;
    font-size: 3rem;
    border-bottom: none;
    text-align: left;
    line-height: 1.5;
  }
  .p-works-point-grid {
    grid-template-columns: 1fr;
  }
  .p-works-point__badge {
    top: 10px;
    left: 10px;
    font-size: 1.6rem;
  }
  .p-works-gallery-grid__ba__badge {
    font-size: 1.6rem;
  }
  .p-works-about__data {
    grid-template-columns: 1fr;
  }
}
.u-main {
  width: 100%;
  height: 380px;
  margin: 0px auto 0;
  background: url(../img/page/lower-h-bg.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.u-main .u-main__inner {
  width: 1000px;
}
.u-main .h1-wrap {
  text-align: center;
}
.u-main .h1-wrap .en {
  font-size: 20px;
  font-size: 2rem;
  font-family: "Outfit";
  font-weight: bold;
  padding-bottom: 10px;
  line-height: 1;
}
.u-main .h1-wrap h1 {
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 10px;
}

/* 404 */
.not-found-wrap p.not-found {
  text-align: center;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .u-main {
    width: 100%;
    height: auto;
    min-height: 200px;
    background: url(../img/page/lower-h-bg-sp.jpg);
    margin: 0px auto 0;
    padding: 32px 5%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .u-main .u-main__inner {
    width: 100%;
  }
  .u-main .h1-wrap {
    text-align: center;
  }
  .u-main .h1-wrap .en {
    font-size: 20px;
    font-size: 2rem;
    font-family: "Outfit";
    font-weight: bold;
    padding-bottom: 10px;
    line-height: 1;
  }
  .u-main .h1-wrap h1 {
    font-size: 30px;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
    margin-top: 10px;
  }
  .not-found-wrap p.not-found {
    text-align: left;
    margin-top: 0;
  }
}
.width-fit {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@keyframes mvScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes mvFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.top-mv {
  position: relative;
  display: flex;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top-mv {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100svh;
    overflow-x: clip;
    background: #fff;
  }
}
.top-mv__catch-area {
  flex-shrink: 0;
  width: 37.5%;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  padding: 218px clamp(20px, 2.78vw, 40px) 60px clamp(40px, 4.58vw, 66px);
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .top-mv__catch-area {
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 102px 20px 80px;
    overflow: visible;
  }
}
.top-mv__catch {
  display: flex;
  flex-direction: column;
  gap: clamp(7.5px, 0.87vw, 12.5px);
  white-space: nowrap;
  opacity: 0;
  animation: mvFadeUp 0.9s ease 0.3s forwards;
}
.top-mv__catch-row {
  display: flex;
  align-items: flex-end;
  gap: clamp(6px, 0.69vw, 10px);
  font-size: clamp(3.3rem, 2.81vw, 5.4rem);
}
@media screen and (max-width: 767px) {
  .top-mv__catch-row {
    font-size: 3.3rem;
  }
}
.top-mv__char-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(54px, 4.64vw, 89px);
  height: clamp(54px, 4.64vw, 89px);
  border: 3px solid var(--color-main);
  font-family: var(--font-main);
  font-size: 1.185em;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top-mv__char-box {
    border-width: 1.8px;
  }
}
.top-mv__catch-text {
  font-family: var(--font-main);
  font-size: 1em;
  font-weight: 700;
  color: #323232;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.top-mv__catch-text--block {
  display: block;
  font-size: 0.852em;
  line-height: 1.2;
}
.top-mv__name {
  position: relative;
  margin-top: clamp(32px, 4.72vw, 68px);
  opacity: 0;
  animation: mvFadeUp 0.9s ease 0.7s forwards;
  align-self: flex-start;
  padding: clamp(10px, 0.97vw, 14px) clamp(14px, 1.39vw, 20px);
  background: linear-gradient(113.36deg, #007cba 4.33%, #3b99c8 99.26%);
  z-index: 10;
}
.top-mv__name p {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(2.6rem, 2.29vw, 3.3rem);
  color: #fff;
  letter-spacing: 0.052em;
  line-height: 1.3;
  white-space: nowrap;
}
.top-mv__name::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 21px;
  height: 21px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background: var(--color-accent);
}
@media screen and (max-width: 767px) {
  .top-mv__name {
    position: absolute;
    left: 24px;
    top: auto;
    bottom: -47px;
    padding: 12px 16px;
    z-index: 20;
  }
}
.top-mv__img-area {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.top-mv__img-area .top-mv__splide, .top-mv__img-area .splide__track, .top-mv__img-area .splide__list, .top-mv__img-area .splide__slide {
  height: 100%;
  list-style: none;
}
.top-mv__img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .top-mv__img-area {
    flex: 1;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .top-mv__img-area img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
.top-mv__pagination {
  position: absolute;
  right: 40px;
  top: 414px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .top-mv__pagination {
    right: 19px;
    top: 50%;
    transform: translateY(-50%);
    gap: 12px;
  }
}
.top-mv__pager {
  display: block;
  width: 8px;
  height: 64px;
  background: #fff;
  cursor: pointer;
}
.top-mv__pager--active {
  background: var(--color-accent);
}
@media screen and (max-width: 767px) {
  .top-mv__pager {
    width: 6px;
    height: 48px;
  }
}
.top-mv__scroll-text {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 144px;
  overflow: hidden;
  opacity: 0.15;
  z-index: 5;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top-mv__scroll-text {
    bottom: 0;
    height: 75px;
    opacity: 0.35;
  }
}
.top-mv__scroll-inner {
  position: absolute;
  left: -11px;
  top: calc(50% - 72px);
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 18rem;
  line-height: 0.8;
  color: var(--color-main);
  white-space: nowrap;
  letter-spacing: 8px;
  animation: mvScroll 300s linear infinite;
}
@media screen and (max-width: 767px) {
  .top-mv__scroll-inner {
    left: -5.73px;
    font-size: 9.4rem;
    top: calc(50% - 37.5px);
    letter-spacing: 4.17px;
  }
}
.top-mv__scroll-accent {
  color: #2b4c72;
}

.top-info {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.top-info__bg {
  position: absolute;
  inset: 0;
  background: url("../img/top/Info_bg.jpg") center/cover no-repeat;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .top-info__bg {
    background: url("../img/top/Info_bg_sp.jpg") bottom center/100% auto no-repeat;
  }
}
.top-info__container {
  position: relative;
  z-index: 1;
  width: var(--content-max-width);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--content-space);
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.top-info__grid {
  display: flex;
  gap: 80px;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .top-info__grid {
    flex-direction: column;
    align-items: stretch;
    gap: 80px;
  }
}
.top-info__h2 {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .top-info__h2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 16px;
  }
}
.top-info__h2-en {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 5.6rem;
  color: #323232;
  line-height: 1;
  margin: 0;
}
.top-info__h2-en em {
  font-style: normal;
  color: var(--color-main);
}
.top-info__h2-ja {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1.8rem;
  color: #323232;
  line-height: 1.8;
  letter-spacing: 0.12em;
  margin: 0;
  white-space: nowrap;
}
.top-info__schedule-block {
  flex: 0 0 560px;
  width: 560px;
  display: flex;
  flex-direction: column;
}
.top-info__schedule-block iframe {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-info__schedule-block {
    flex: none;
    width: 100%;
  }
}
.top-info__cal-box {
  background: #fff;
  border-radius: 20px;
  padding: 32px 40px;
  flex: 1;
  border-radius: 40px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-info__cal-box {
    flex: none;
    padding: 20px 0;
    border-radius: 12px;
  }
}
.top-info__cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.top-info__cal-month {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 2rem;
  color: #323232;
  margin: 0;
}
.top-info__cal-year {
  font-size: 2.6rem;
  font-weight: 400;
}
.top-info__cal-nen, .top-info__cal-tsuki {
  font-size: 2rem;
  font-weight: 400;
}
.top-info__cal-m {
  font-size: 2.6rem;
  font-weight: 400;
}
.top-info__cal-btn {
  width: 32px;
  height: 32px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--color-main);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.top-info__cal-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
}
.top-info__cal-btn--prev::after {
  transform: translate(-30%, -50%) rotate(-135deg);
}
.top-info__cal-btn--next::after {
  transform: translate(-60%, -50%) rotate(45deg);
}
.top-info__cal-btn:hover {
  background: var(--color-main);
}
.top-info__cal-btn:hover::after {
  border-color: #fff;
}
.top-info__cal-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
}
.top-info__cal-table th {
  text-align: center;
  padding: 4px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #323232;
  background: #ccc;
  line-height: 1.2;
}
.top-info__cal-table th.sun {
  background: #f3c4c4;
}
.top-info__cal-table th.sat {
  background: #accff0;
}
.top-info__cal-table td {
  text-align: left;
  vertical-align: top;
  padding: 4px 8px;
  height: 69px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #323232;
  background: #f5f5f5;
  line-height: 1.2;
}
.top-info__cal-table td.sun {
  background: #fcf2f2;
}
.top-info__cal-table td.sat {
  background: #eef7ff;
}
.top-info__cal-table td.closed {
  background: var(--color-main);
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-info__cal-table td {
    height: 48px;
    font-size: 1.3rem;
  }
}
.top-info__news-block {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.top-info__news-box {
  background: #fff;
  border-radius: 20px;
  padding: 32px 40px;
  flex: 1;
  width: 560px;
  border-radius: 40px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 767px) {
  .top-info__news-box {
    flex: none;
    width: 100%;
    padding: 20px;
    border-radius: 12px;
  }
}
.top-info__tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .top-info__tabs {
    flex-wrap: wrap;
  }
}
.top-info__tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: #e5f4fb;
  color: var(--color-main);
  position: relative;
  transition: background 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .top-info__tab {
    flex: 0 0 calc(50% - 2px);
  }
}
.top-info__tab--active {
  background: var(--color-main);
  color: #fff;
}
.top-info__tab--active::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 8px;
  background: var(--color-main);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-info__tab--active::before {
    display: none;
  }
}
.top-info__news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  transition: opacity 0.3s;
}
.top-info__news-list .no-posts {
  padding: 16px 0;
  margin-top: 0;
}
.top-info__news-item a {
  border-top: 1px solid #ccc;
}
.top-info__news-item a:first-child {
  border-top: none;
}
.top-info__news-item a:nth-child(4) {
  display: none;
}
.top-info__news-item:first-child {
  border-top: none;
}
.top-info__news-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}
.top-info__news-link .top-info__news-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.top-info__news-link::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 17px;
  height: 10px;
  background: var(--color-main);
  -webkit-mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  transition: transform 0.3s;
}
.top-info__news-link:hover .top-info__news-title {
  color: var(--color-main);
}
.top-info__news-link:hover::after {
  transform: translateX(2px);
}
.top-info__news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-info__news-date {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 400;
  color: #6c757d;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top-info__news-date {
    font-size: 1.5rem;
  }
}
.top-info__news-tag {
  display: inline-block;
  padding: 5px 10px 4px;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.top-info__news-title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #323232;
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top-info__news-title {
    font-size: 1.5rem;
  }
}
.top-info__more {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.top-info__counter {
  display: flex;
}
@media screen and (max-width: 767px) {
  .top-info__counter {
    flex-direction: column;
  }
}
.top-info__counter-head {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  background: var(--color-main);
  padding: 50px 60px;
}
@media screen and (max-width: 767px) {
  .top-info__counter-head {
    width: 100%;
    padding: 20px 54px;
  }
}
.top-info__counter-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 3.2rem;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top-info__counter-title {
    font-size: 2.8rem;
  }
}
.top-info__counter-accent {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 0 30px 30px 0;
}
.top-info__counter-body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 30px;
  background: #fff;
  border: 4px solid var(--color-main);
}
@media screen and (max-width: 767px) {
  .top-info__counter-body {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 32px 24px;
    border-top: none;
  }
}
.top-info__counter-num-area {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .top-info__counter-num-area {
    flex-direction: column;
  }
}
.top-info__counter-logo {
  width: 120px;
  height: 59px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .top-info__counter-logo {
    width: 140px;
    height: auto;
  }
}
.top-info__counter-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.top-info__counter-num {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  line-height: 1;
}
.top-info__counter-digits {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 8rem;
  color: var(--color-main);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top-info__counter-digits {
    font-size: 10rem;
  }
}
.top-info__counter-unit {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 3.6rem;
  color: var(--color-main);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .top-info__counter-unit {
    font-size: 4.6rem;
  }
}
.top-info__counter-status {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-main);
  padding: 6px 0;
  width: 100%;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top-info__counter-status {
    font-size: 2.6rem;
    padding: 8px 0;
  }
}
.top-info__counter-explan {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #323232;
}
@media screen and (max-width: 767px) {
  .top-info__counter-explan {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}
.top-info__counter-explan-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  background: var(--color-sub);
  padding: 0 10px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.075em;
  white-space: nowrap;
}
.top-info__counter-explan-head p {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .top-info__counter-explan-head {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    align-self: auto;
    padding: 8px 10px;
  }
}
.top-info__counter-explan-list {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.075em;
  white-space: nowrap;
}
.top-info__counter-explan-list > div {
  display: flex;
}
.top-info__counter-explan-list dt {
  min-width: 11em;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}
.top-info__counter-explan-list dd {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .top-info__counter-explan-list {
    font-size: 1.3rem;
  }
  .top-info__counter-explan-list dt {
    min-width: 9.5em;
  }
}

.top-facility {
  background: var(--color-main);
  padding: 140px 0;
}
@media screen and (max-width: 767px) {
  .top-facility {
    padding: 100px 0;
  }
}
.top-facility__container {
  width: var(--content-max-width);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--content-space);
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .top-facility__container {
    gap: 48px;
  }
}
.top-facility__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 48px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-facility__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 40px;
  }
}
.top-facility__head-line {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 160px;
  height: 2px;
  background: var(--color-accent);
}
.top-facility__head-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .top-facility__head-left {
    gap: 16px;
  }
}
.top-facility__title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 5.6rem;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.018em;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .top-facility__title {
    font-size: 3.2rem;
  }
}
.top-facility__desc {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.067em;
  margin: 0;
}
.top-facility__title-en {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 9rem;
  line-height: 1.2;
  letter-spacing: 0.013em;
  margin: 0;
  flex-shrink: 0;
  color: var(--color-mid-blue);
}
.top-facility__title-en em {
  font-style: normal;
  color: var(--color-accent);
}
@media screen and (max-width: 767px) {
  .top-facility__title-en {
    font-size: 7rem;
    order: -1;
  }
}
.top-facility__items {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .top-facility__items {
    flex-direction: column;
    gap: 60px;
  }
}
.top-facility__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 380px;
}
@media screen and (max-width: 767px) {
  .top-facility__item {
    width: 100%;
  }
}
.top-facility__img {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 380/280;
}
.top-facility__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.top-facility__item-name {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 3.2rem;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.038em;
  text-align: center;
  margin: 0;
}
.top-facility__sports {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.top-facility__sports img {
  width: 80px;
}
@media screen and (max-width: 767px) {
  .top-facility__sports {
    gap: 8px;
  }
  .top-facility__sports img {
    flex: 0 0 calc(25% - 6px);
    width: calc(25% - 6px);
  }
}
.top-facility__btns {
  display: flex;
  gap: 32px;
  justify-content: center;
  padding-top: 24px;
}
@media screen and (max-width: 767px) {
  .top-facility__btns {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .top-lesson__splide .splide__track {
    overflow: visible;
  }
  .top-lesson__items {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 80px !important;
    height: auto !important;
  }
  .top-lesson__item {
    flex: none !important;
    flex-shrink: 1 !important;
    width: 560px;
    flex-direction: row;
    gap: 24px;
  }
  .top-lesson__item-link {
    gap: 24px;
  }
}
.top-lesson {
  position: relative;
  padding: 140px 0;
}
@media screen and (max-width: 767px) {
  .top-lesson {
    padding: 100px 0;
  }
}
.top-lesson__bg {
  position: absolute;
  inset: 0;
  background: url("../img/top/lesson_bg.jpg") center/cover no-repeat;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top-lesson__bg {
    background-image: url("../img/top/lesson_bg_sp.jpg");
  }
}
.top-lesson__container {
  position: relative;
  z-index: 1;
  width: var(--content-max-width);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--content-space);
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.top-lesson__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 48px;
  border-bottom: 2px solid #ccc;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-lesson__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 40px;
  }
}
.top-lesson__head-line {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 160px;
  height: 2px;
  background: var(--color-accent);
}
.top-lesson__head-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .top-lesson__head-left {
    gap: 24px;
  }
}
.top-lesson__title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 5.6rem;
  color: #323232;
  line-height: 1.4;
  letter-spacing: 0.018em;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .top-lesson__title {
    font-size: 3.2rem;
  }
}
.top-lesson__desc {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1.8rem;
  color: #323232;
  line-height: 1.8;
  letter-spacing: 0.067em;
  margin: 0;
}
.top-lesson__title-en {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 8.4rem;
  line-height: 1.2;
  letter-spacing: 0.014em;
  text-align: right;
  color: #ccc;
  margin: 0;
  flex-shrink: 0;
}
.top-lesson__title-en em {
  font-style: normal;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .top-lesson__title-en {
    font-size: 7rem;
    text-align: left;
    order: -1;
  }
}
.top-lesson__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top-lesson__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }
}
.top-lesson__item-link {
  display: flex;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
.top-lesson__item-link:hover .top-lesson__item-name {
  color: var(--color-main);
}
.top-lesson__item-link:hover .top-lesson__img img {
  transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .top-lesson__item-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.top-lesson__img {
  flex: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 320/220;
}
.top-lesson__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top-lesson__img {
    flex: none;
    width: 100%;
  }
}
.top-lesson__item-name {
  flex: 1;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 2.4rem;
  color: #323232;
  line-height: 1.6;
  letter-spacing: 0.042em;
  margin: 0;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-lesson__item-name {
    flex: none;
    width: 100%;
  }
}
.top-lesson__splide {
  overflow: visible;
}
.top-lesson__splide .splide__track {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-lesson__splide .splide__arrows {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 59.95vw;
    pointer-events: none;
    z-index: 2;
  }
  .top-lesson__splide .splide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    border: 1.5px solid var(--color-main);
    opacity: 1;
    pointer-events: auto;
  }
  .top-lesson__splide .splide__arrow svg {
    display: none;
  }
  .top-lesson__splide .splide__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 8px;
    background: var(--color-main);
    -webkit-mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
    mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  }
  .top-lesson__splide .splide__arrow--prev {
    left: -20px;
  }
  .top-lesson__splide .splide__arrow--prev::after {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  .top-lesson__splide .splide__arrow--next {
    right: -20px;
  }
}
.top-lesson__splide .splide__pagination {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  bottom: auto;
  padding: 24px 0 0;
}
.top-lesson__splide .splide__pagination__page {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ccc;
  opacity: 1;
  transform: none;
  margin: 0;
  padding: 0;
  border: none;
}
.top-lesson__splide .splide__pagination__page.is-active {
  background: var(--color-main);
  transform: none;
}
.top-lesson__btns {
  display: flex;
  justify-content: center;
  padding-top: 24px;
}

.top-other {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 120px var(--content-space) 200px;
  background: #e5f4fb;
}
@media screen and (max-width: 767px) {
  .top-other {
    padding: 100px var(--content-space) 200px;
  }
}
.top-other__bg {
  position: absolute;
  inset: 0;
  background: url("../img/top/other_bg.jpg") center/cover no-repeat;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top-other__bg {
    background-image: url("../img/top/other_bg_sp.jpg");
  }
}
.top-other__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1280px;
  border: 2px solid #fff;
  border-radius: 20px;
  overflow: hidden;
  background: #eaf7ff;
}
@media screen and (max-width: 767px) {
  .top-other__container {
    flex-direction: column;
  }
}
.top-other__box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-other__box {
    gap: 24px;
    padding: 32px 20px;
  }
}
.top-other__box-icon {
  position: absolute;
  top: -11px;
  opacity: 0.6;
  pointer-events: none;
}
.top-other__box-icon img {
  width: 118px;
  height: 118px;
  display: block;
}
@media screen and (max-width: 767px) {
  .top-other__box-icon img {
    width: 90px;
    height: 90px;
  }
}
.top-other__box--price .top-other__box-icon {
  left: 92px;
}
@media screen and (max-width: 767px) {
  .top-other__box--price .top-other__box-icon {
    top: -17px;
    left: 36px;
  }
}
.top-other__box--attention .top-other__box-icon {
  left: 37px;
}
@media screen and (max-width: 767px) {
  .top-other__box--attention .top-other__box-icon {
    top: -17px;
    left: 11px;
  }
}
.top-other__box-cnt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-other__box-cnt {
    gap: 16px;
  }
}
.top-other__box-heading {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 3.6rem;
  color: var(--color-main);
  line-height: 1.4;
  letter-spacing: 0.033em;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top-other__box-heading {
    font-size: 3rem;
    line-height: 1.5;
  }
}
.top-other__box-line {
  display: block;
  width: 80px;
  height: 3px;
  background: var(--color-accent);
  flex-shrink: 0;
}
.top-other__box-body {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1.8rem;
  color: #5f595a;
  line-height: 1.8;
  letter-spacing: 0.067em;
  text-align: center;
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-other__box-body {
    font-size: 1.6rem;
    letter-spacing: 0.04em;
  }
}
.top-other__divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 260px;
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0px, rgba(255, 255, 255, 0.9) 6px, transparent 6px, transparent 12px);
  pointer-events: none;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-other__divider {
    position: static;
    transform: none;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.9) 0px, rgba(255, 255, 255, 0.9) 6px, transparent 6px, transparent 12px);
  }
}
.top-other .c-btn {
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: inline !important;
  }
}

.scrollAnimation-obj {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.scrollAnimation-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.scrollAnimation-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 1s ease, transform 1s ease;
}

.scrollAnimation-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
}

.scrollAnimation-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.scrollAnimation-list > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}/*# sourceMappingURL=style.css.map */