@charset "UTF-8";

:root {
  --color_bg: #fff;
  --color_text: #333;
  --color_link: #333;
  --color_border: rgba(200, 200, 200, .5);
  --color_primary: #144894;
  --color_secondary: #E6002E;
  --color_black: #1D1D1D;
  --color_gray: #F5F5F5;
  --color_gray02: #F2F5F8;
  --color_gray03: #F7F7F7;
  --color_gray04: #888;
  --color_gray05: #D5D5D5;
  --color_blue_light: #ebf3ff;
  --font_base: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_en: "Inter", sans-serif;
  --easing: cubic-bezier(.12, 1, .5, 1);
  --radius: 8px;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: auto;
  -webkit-text-size-adjust: none;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
}

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

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

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

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

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

sup {
  vertical-align: text-top;
  font-size: 0.65em;
  line-height: 1;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.65em;
  line-height: 1;
}

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

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

::selection {
  background: #d4dcd6;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
body {
  display: flex;
  flex-direction: column;
  font-family: var(--font_base);
  color: var(--color_text);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

[lang=en] {
  font-family: var(--font_en);
  font-weight: 600;
  letter-spacing: 0.02em;
}

th,
dt {
  font-family: var(--font_jp);
}

.link {
  text-decoration: underline;
  word-break: break-all;
  position: relative;
}

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

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

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

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

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

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

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

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

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background-color: #fff;
  padding: 1.2rem 2.5rem;
  position: fixed;
  width: 100%;
  z-index: 100;
}

@media (max-width: 1250px) {
  .header {
    display: flex;
    justify-content: space-between;
  }

  .gnavi {
    display: none;
  }
}

@media (max-width: 1024px) {
  .header {
    padding: 1rem;
    height: 60px;
  }

  .h-logo {
    max-width: 100px;
  }
}

html.is-open {
  height: 100%;
  overflow: hidden;
}

.h-utility {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  position: relative;
  z-index: 100;
}

.h-contact-btn {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1rem;
  border: 1px solid var(--color_secondary);
  background-color: var(--color_secondary);
  border-radius: var(--radius);
  color: #fff;
  padding: 1rem;
  font-family: var(--font_en);
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0;
  width: 98px;
  height: 65px;
}

.menu-btn {
  display: grid;
  align-content: end;
  gap: 1.2rem;
  border: 1px solid var(--color_primary);
  background-color: var(--color_primary);
  border-radius: var(--radius);
  width: 98px;
  height: 65px;
  position: relative;
  color: #fff;
  font-family: var(--font_en);
  font-size: 1.3rem;
  line-height: 1;
  text-align: center;
  transition: 0.2s;
  padding: 1rem;
  box-sizing: border-box;
}

.menu-btn-line {
  display: flex;
  gap: 0.7rem;
  flex-direction: column;
  align-items: center;
}

.menu-btn-line span {
  display: block;
  background-color: #fff;
  width: 3.3rem;
  height: 0.1rem;
  transition: 0.2s;
}

.menu-btn.is-open .menu-btn-line span:nth-of-type(1) {
  transform: rotate(30deg) translate3d(3px, 3px, 0);
}

.menu-btn.is-open .menu-btn-line span:nth-of-type(2) {
  transform: rotate(-30deg) translate3d(3px, -3px, 0);
}

@media (max-width: 1024px) {
  .h-utility {
    gap: 1rem;
  }

  .h-contact-btn {
    border-radius: 5px;
    gap: 0.8rem;
    font-size: 1rem;
    padding: 0.5rem;
    width: 70px;
    height: 50px;
  }

  .h-contact-btn img {
    width: 15px;
  }

  .menu-btn {
    border-radius: 5px;
    gap: 0.8rem;
    font-size: 1rem;
    padding: 0.7rem;
    width: 70px;
    height: 50px;
  }
}

/*------------
Gnavi
--------------*/
/*normal*/
.gnavi-list {
  display: flex;
  justify-content: flex-end;
  gap: 1.5vw;
}

.gnavi-link {
  display: grid;
  text-align: center;
  line-height: 1;
  position: relative;
  padding-right: 1.5rem;
}

.gnavi-link [lang=en] {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.gnavi-link .jp {
  font-size: 1.2rem;
}

@media (any-hover: hover) {
  .gnavi-link:hover {
    color: var(--color_primary);
  }
}

/*dropdown*/
.dropdown {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}

.dropdown::after {
  content: "";
  display: block;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  transform-origin: right;
}

.dropdown>a:hover {
  opacity: 0.5;
}

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

.dropdown .sub-menu {
  display: grid;
  grid-gap: 0;
  font-size: 13px;
  pointer-events: none;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  position: absolute;
  top: 50px;
  right: 50%;
  width: max-content;
  min-width: 150px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

.dropdown .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

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

.dropdown .sub-menu a:hover {
  color: var(--color_primary);
}

.dropdown.is-open .mega-menu {
  clip-path: rect(auto auto auto auto);
  transition: clip-path 0.4s var(--easing);
}

.gnavi-dropdown-btn {
  cursor: default;
  display: grid;
  text-align: center;
  line-height: 1;
  position: relative;
  padding-right: 1.5rem;
}

.gnavi-dropdown-btn::before,
.gnavi-dropdown-btn::after {
  content: "";
  display: block;
  background-color: #333;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.gnavi-dropdown-btn::before {
  width: 7px;
  height: 1px;
  right: 0;
}

.gnavi-dropdown-btn::after {
  width: 1px;
  height: 7px;
  right: 3px;
}

.gnavi-dropdown-btn [lang=en] {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.gnavi-dropdown-btn .jp {
  font-size: 1.2rem;
}

.mega-menu {
  display: grid;
  grid-template-columns: 30rem 1fr;
  align-items: flex-start;
  background-color: var(--color_gray);
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
  padding: 5rem 5%;
  position: absolute;
  top: calc(100% - 1px);
  left: 0%;
  width: 100%;
  clip-path: rect(0 100% 0 0);
  transition: clip-path 0.4s var(--easing);
  z-index: 1;
}

.mega-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

.mega-menu-ttl {
  display: grid;
  line-height: 1;
}

.mega-menu-ttl [lang=en] {
  color: var(--color_primary);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mega-menu-ttl .jp {
  font-size: 1.2rem;
}

.mega-menu-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mega-menu-list a {
  display: block;
  background-color: #fff;
  border-radius: var(--radius);
  padding: 2rem 2rem;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}

.mega-menu-list a::after {
  content: "";
  background-color: var(--color_primary);
  mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  height: 17px;
  width: 17px;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translate(0, -50%);
}

@media (any-hover: hover) {
  .mega-menu-list a:hover {
    background-color: var(--color_primary);
    color: #fff;
  }

  .mega-menu-list a:hover::after {
    background-color: #fff;
  }
}

/*drawer*/
.gnavi-drawer {
  display: none;
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  transition-delay: visibility 2s;
  height: 100vh;
}

.gnavi-drawer.is-open {
  display: block;
  pointer-events: all;
}

.gnavi-drawer-container {
  display: grid;
  place-content: center;
  gap: 5rem;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 700px;
  padding: 50px 10vw;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  opacity: 0;
  will-change: opacity transform;
  animation: drawerFadeeOut 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

.gnavi-drawer[aria-hidden=false] .gnavi-drawer-container {
  animation: drawerFadeeIn 1s cubic-bezier(0.19, 1, 0.22, 1) 0.7s forwards;
}

@keyframes drawerFadeeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawerFadeeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-30px);
  }
}

.gnavi-drawer-top {
  display: flex;
  justify-content: center;
  gap: 10rem;
}

.gnavi-drawer-top .col:first-child {
  position: relative;
  padding-right: 10rem;
}

.gnavi-drawer-top .col:first-child::after {
  content: "";
  background-color: var(--color_gray05);
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.gnavi-drawer-top .ttl {
  line-height: 1;
  margin-bottom: 3.5rem;
}

.gnavi-drawer-top .ttl [lang=en] {
  color: var(--color_primary);
  font-size: 3.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.gnavi-drawer-top .ttl .jp {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.gnavi-drawer-links {
  display: grid;
  gap: 1.5rem 5rem;
  font-weight: bold;
}

.gnavi-drawer-links a {
  display: inline-block;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.5;
}

.gnavi-drawer-links a::before {
  content: "";
  background-color: var(--color_primary);
  border-radius: 50%;
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 53%;
  left: -20px;
  transform: translate(0, -50%);
  transition: opacity 0.5s var(--easing);
  opacity: 0;
}

.gnavi-drawer-links a span {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s var(--easing);
}

@media (any-hover: hover) {
  .gnavi-drawer-links a:hover::before {
    opacity: 1;
  }

  .gnavi-drawer-links a:hover span {
    color: var(--color_primary);
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.gnavi-drawer-bottom {
  display: grid;
  gap: 3.5rem;
}

.gnavi-drawer-bottom .logo {
  width: fit-content;
}

.gnavi-drawer-bottom .wrap {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.gnavi-drawer-bottom .tel {
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 2.6rem;
  line-height: 1;
}

.gnavi-drawer-bottom .tel span {
  font-size: 1.4rem;
  vertical-align: 2px;
  margin-right: 5px;
}

.gnavi-drawer-links-bottom {
  display: flex;
  justify-content: end;
  font-size: 1.4rem;
  line-height: 1.5;
  gap: 2.5rem;
}

.gnavi-drawer-links-bottom a {
  display: inline-block;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s var(--easing);
}

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

@media (max-width: 1024px) {
  .gnavi-drawer-links-bottom {
    justify-content: center;
  }
}

.gnavi-drawer-bg {
  background-color: var(--color_gray);
  position: fixed;
  inset: 0;
  -webkit-transform: translateZ(0);
  z-index: -1;
  animation: bgSlideOut 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0s forwards;
}

.gnavi-drawer[aria-hidden=false] .gnavi-drawer-bg {
  animation: bgSlideIn 1s cubic-bezier(0.19, 1, 0.22, 1) 0s forwards;
}

@keyframes bgSlideIn {
  0% {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes bgSlideOut {
  0% {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

@media (max-width: 1024px) {
  .gnavi-drawer {
    overflow-y: auto;
  }

  .gnavi-drawer-container {
    display: block;
    height: auto;
    padding: 5rem 10vw;
  }

  .gnavi-drawer-top {
    flex-direction: column;
    gap: 5rem;
    margin-bottom: 5rem;
  }

  .gnavi-drawer-top .col:first-child {
    padding: 0;
  }

  .gnavi-drawer-top .col:first-child::after {
    display: none;
  }

  .gnavi-drawer-top .ttl {
    margin-bottom: 2.5rem;
  }

  .gnavi-drawer-links {
    gap: 0.5rem 10rem;
  }

  .gnavi-drawer-links a {
    font-size: 1.5rem;
  }

  .gnavi-drawer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }

  .gnavi-drawer-bottom .wrap {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  display: grid;
  grid-template-columns: 58.93% 1fr;
  gap: 1.5rem;
  padding: 0 6rem;
  margin-top: 9rem;
  height: calc(100vh - 9rem);
}

.hero .left {
  display: grid;
  align-content: end;
  gap: 5rem;
}

.hero .right {
  display: grid;
}

.hero .splide__pagination {
  justify-content: flex-end;
  right: 10px;
}

.hero-contents {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.hero-img01 {
  margin-top: auto;
}

.hero-img01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img02 {
  margin-top: auto;
}

.hero-img02 img {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 17rem);
  object-fit: cover;
}

.hero-catch {
  color: var(--color_primary);
  display: flex;
  align-items: center;
  gap: 3rem;
  font-family: var(--font_en);
  margin-bottom: 5rem;
}

.hero-catch .since {
  display: flex;
  align-items: end;
  border-left: 1px solid currentColor;
  gap: 0.5rem;
  writing-mode: vertical-rl;
  font-size: 1.5vw;
  line-height: 1;
  padding-left: 0.5rem;
  height: fit-content;
}

.hero-catch .since span {
  font-size: 2.5vw;
}

.hero-catch .ttl {
  font-size: 4.5vw;
  font-weight: 600;
  line-height: 1.2;
}

.hero-link .label {
  background-color: var(--color_black);
  color: #fff;
  font-weight: 600;
  padding: 0.1rem 1rem;
  margin-bottom: 1rem;
  width: fit-content;
}

.hero-link .text {
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 1.5;
  font-size: 3rem;
  font-weight: 600;
}

.hero-link .arrow {
  flex: 0 0 5rem;
  display: inline-block;
  border: 1px solid var(--color_primary);
  border-radius: 100vmax;
  width: 5rem;
  height: 3.4rem;
  position: relative;
  overflow: hidden;
}

.hero-link .arrow::before {
  content: "";
  background-color: var(--color_primary);
  mask-image: url(../images/share/icon_arrow.svg);
  mask-size: 100% 100%;
  width: 17px;
  height: 17px;
  transition: background 0.35s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.hero-link .arrow::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color_primary);
  border-radius: 999px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.35s ease;
}

@media (any-hover: hover) {
  .hero-link:hover .arrow::before {
    background-color: #fff;
  }

  .hero-link:hover .arrow::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}

.sp-hero-slider {
  display: none;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 5rem 2rem 0;
    margin-top: 6rem;
    height: auto;
  }

  .hero-catch {
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .hero-catch .ttl {
    font-size: 4rem;
  }

  .hero-catch .since {
    font-size: 2.0rem;
  }

  .hero-catch .since span {
    font-size: 3.5rem;
  }

  .hero-link .text {
    font-size: 2.5rem;
  }

  .sp-hero-slider {
    display: grid;
    grid-template-columns: 35% 1fr;
    align-items: end;
    gap: 1.5rem;
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.t-ttl-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8rem;
}

.t-ttl {
  color: var(--color_primary);
  line-height: 1.2;
  margin-bottom: 7rem;
}

.t-ttl [lang=en] {
  font-size: 7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.t-ttl .jp {
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .t-ttl-wrap {
    margin-bottom: 5rem;
  }

  .t-ttl {
    line-height: 1.2;
    margin-bottom: 5rem;
  }

  .t-ttl [lang=en] {
    font-size: 4rem;
  }

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

/*------------
Block
--------------*/
.sec01 {
  padding: 15rem 0 0;
}

.top-philosophy-list {
  background-color: var(--color_black);
  border: 1px solid var(--color_black);
  border-width: 1px 0;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(7, 1fr);
}

.top-philosophy-list>* {
  background-color: #fff;
  padding: 7%;
}

.top-philosophy-list .flex {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.top-philosophy-list .flex .num {
  margin-bottom: 0;
}

.top-philosophy-list .item01 {
  grid-area: 1/1/3/9;
}

.top-philosophy-list .item02 {
  grid-area: 1/9/3/13;
}

.top-philosophy-list .item03 {
  grid-area: 3/1/6/5;
}

.top-philosophy-list .item04 {
  grid-area: 3/5/5/13;
}

.top-philosophy-list .item05 {
  grid-area: 6/1/8/5;
}

.top-philosophy-list .item06 {
  grid-area: 5/5/8/9;
}

.top-philosophy-list .item07 {
  grid-area: 5/9/8/13;
}

.top-philosophy-list .num {
  font-family: var(--font_en);
  font-size: 6.5rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--color_primary);
  margin-bottom: 2.5rem;
}

.top-philosophy-list .num::before {
  content: attr(data-en);
  display: block;
  font-size: 1.4rem;
  color: var(--color_secondary);
  margin-bottom: 0.5rem;
}

.top-philosophy-list .list-ttl {
  font-size: 2.5rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.top-philosophy-list .list-tag {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
  gap: 0.5rem 2.5rem;
}

.top-philosophy-list .list-tag a {
  display: flex;
  font-size: 1.3rem;
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  line-height: 1.5;
  transition: background-size 0.5s ease 0s;
}

.top-philosophy-list .list-tag a::before {
  content: "#";
}

@media (any-hover: hover) {
  .top-philosophy-list .list-tag a:hover {
    color: var(--color_secondary);
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

@media (max-width: 1024px) {
  .sec01 {
    padding: 10rem 0 0;
  }

  .top-philosophy-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    margin-bottom: 3.5rem;
  }

  .top-philosophy-list>* {
    flex-direction: column;
    display: flex;
    padding: 1.5rem;
  }

  .top-philosophy-list .flex {
    gap: 1.5rem;
  }

  .top-philosophy-list .flex .num {
    margin-bottom: 0;
  }

  .top-philosophy-list .item01 {
    grid-area: 1/1/2/2;
  }

  .top-philosophy-list .item02 {
    grid-area: 1/2/2/3;
  }

  .top-philosophy-list .item03 {
    grid-area: 2/1/3/2;
  }

  .top-philosophy-list .item04 {
    grid-area: 2/2/3/3;
  }

  .top-philosophy-list .item05 {
    grid-area: 3/1/4/2;
  }

  .top-philosophy-list .item06 {
    grid-area: 3/2/4/3;
  }

  .top-philosophy-list .item07 {
    grid-area: 4/1/5/3;
  }

  .top-philosophy-list .num {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    margin-right: auto;
  }

  .top-philosophy-list .num::before {
    font-size: 1rem;
  }

  .top-philosophy-list .list-ttl {
    font-size: 1.7rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 768px) {


  .top-philosophy-list {
    display: flex;
    flex-direction: column;
  }

  .top-philosophy-list .flex {
    align-items: start;
  }
}

.sec02 {
  padding: 15rem 0 0;
  overflow: hidden;
}

.sec02 .t-ttl {
  margin-bottom: 13rem;
}

.sec02-layout {
  margin-bottom: 16rem;
}

.sec02-layout .l-catch {
  font-weight: 600;
  font-family: var(--font_jp);
  font-size: 3.2rem;
  line-height: 1.71875;
  padding: 0 15%;
}

.sec02-layout .l-body {
  display: grid;
  grid-template-columns: 1fr 470px 1fr;
  position: relative;
  font-size: 1.6rem;
  text-align: justify;
}

.sec02-layout p+p {
  margin-top: 3rem;
}

.sec02-layout .l-btn {
  margin-top: 9rem;
}

.sec02-layout .img01 {
  padding-right: 10%;
}

.sec02-layout .img01 img {
  width: 100%;
}

.sec02-layout .img02 {
  padding: 0 5rem 0 12rem;
  margin: -15rem 0 10rem;
}

.sec02-layout .img03 {
  padding-left: 8%;
}

.sec02-loop-text {
  display: inline-flex;
  color: var(--color_gray02);
  font-family: var(--font_en);
  font-size: 22rem;
  line-height: 1;
  margin-top: -10rem;
  position: relative;
  z-index: -1;
}

.sec02-loop-text .item {
  backface-visibility: hidden;
  padding-left: 0.25em;
}

@media (max-width: 1100px) {
  .sec02-layout {
    margin-bottom: 10rem;
  }

  .sec02-layout .l-catch {
    font-size: 3rem;
    line-height: 1.71875;
    padding: 0 2rem;
  }

  .sec02-layout .l-body {
    display: flex;
    flex-direction: column;
  }

  .sec02-layout p+p {
    margin-top: 2.5rem;
  }

  .sec02-layout .l-btn {
    margin-top: 3.5rem;
  }

  .sec02-layout .l-desc {
    order: 1;
    padding: 0 2rem;
    margin-bottom: 5rem;
  }

  .sec02-layout .l-img-right {
    order: 2;
    display: flex;
    align-items: end;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 0 2rem;
  }

  .sec02-layout .l-img-left {
    order: 3;
    padding: 0 2rem;
  }

  .sec02-layout .img01 {
    padding-right: 10%;
  }

  .sec02-layout .img02 {
    padding: 0;
    margin: 0;
  }

  .sec02-layout .img03 {
    padding-left: 0;
  }

  .sec02-loop-text {
    font-size: 15rem;
    margin-top: -8rem;
  }

  .sec02-loop-text .item {
    backface-visibility: hidden;
    padding-left: 0.25em;
  }
}

.sec02-carousel {
  border-top: 1px solid var(--color_black);
  padding: 5rem 0;
  overflow: hidden;
}

.sec02-carousel .loop-items {
  gap: 6rem;
  margin-right: 6rem;
}

.sec02-links {
  display: flex;
  gap: 6rem;
}

.sec02-links a {
  display: flex;
  font-size: 2rem;
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  line-height: 1.5;
  transition: background-size 0.5s ease 0s;
}

.sec02-links a::before {
  content: "#";
}

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

@media (max-width: 1024px) {
  .sec02 {
    padding: 10rem 0 0;
  }

  .sec02 .t-ttl {
    margin-bottom: 5rem;
  }

  .sec02-layout {
    margin-bottom: 5rem;
  }

  .sec02-layout .l-catch {
    font-size: 2.5rem;
    padding: 0 2rem;
  }

  .sec02-layout .l-desc {
    order: 1;
    padding: 0 2rem;
    margin-bottom: 5rem;
  }

  .sec02-layout .l-img-right {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .sec02-layout .l-img-left {
    order: 3;
    padding: 0 2rem;
  }

  .sec02-layout .img01 {
    padding-right: 10%;
  }

  .sec02-loop-text {
    font-size: 15rem;
    margin-top: -8rem;
    margin-bottom: -2rem;
  }

  .sec02-carousel {
    padding: 2.5rem 0;
  }
}

.sec03 {
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.sec03 .t-ttl {
  color: #fff;
}

.sec03-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  will-change: filter;
}

.sec03-bg .blur {
  position: absolute;
  inset: 0;
  background-color: oklch(from #000 l c h/0.1);
  backdrop-filter: blur(10px);
  will-change: opacity, backdrop-filter;
  opacity: 0;
  z-index: 1;
}

.sec03-bg img {
  width: 100%;
}

.sec03-contents {
  position: relative;
  z-index: 2;
  margin-top: 100vh;
}

.sec03-text {
  text-align: center;
  margin-bottom: 15rem;
}

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

.sec03-list li {
  border: 1px solid #B4C8E5;
  margin: -1px -1px 0 0;
}

.sec03-list a {
  display: grid;
  place-content: center;
  text-align: center;
  padding: 5rem 5rem 10rem;
  position: relative;
  height: 100%;
}

.sec03-list .list-img {
  margin: 0 auto 3rem;
}

.sec03-list .list-ttl {
  margin-bottom: 2.5rem;
}

.sec03-list .list-ttl .jp {
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.sec03-list .list-ttl [lang=en] {
  color: #B4C8E5;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.sec03-list .arrow {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 100vmax;
  width: 5rem;
  height: 3.4rem;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  overflow: hidden;
}

.sec03-list .arrow::before {
  content: "";
  background-color: #fff;
  mask-image: url(../images/share/icon_arrow.svg);
  mask-size: 100% 100%;
  width: 17px;
  height: 17px;
  transition: background 0.35s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.sec03-list .arrow::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  border-radius: 999px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.35s ease;
}

@media (any-hover: hover) {
  .sec03-list a:hover .arrow::before {
    background-color: var(--color_primary);
  }

  .sec03-list a:hover .arrow::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}

.sec03-other-link {
  display: block;
  background-color: #fff;
  color: var(--color_black);
  text-align: center;
  padding: 7rem 2.5rem;
  line-height: 1;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
  z-index: 0;
}

.sec03-other-link .wrap {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 auto;
}

.sec03-other-link .wrap::after {
  content: "";
  background-color: var(--color_primary);
  mask: url(../images/share/icon_arrow.svg);
  width: 17px;
  height: 17px;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translate(0, -50%);
  transition: background-color 0.3s;
  z-index: 5;
}

.sec03-other-link [lang=en] {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.sec03-other-link .jp {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.sec03-other-link::before {
  content: "";
  background-color: var(--color_primary);
  position: absolute;
  inset: 0;
  -webkit-transform: translateZ(0);
  z-index: -1;
  animation: bgSlideOut 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0s forwards;
}

@media (any-hover: hover) {
  .sec03-other-link:hover {
    color: #fff;
  }

  .sec03-other-link:hover .wrap {
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: 0 auto;
  }

  .sec03-other-link:hover .wrap::after {
    background-color: #fff;
  }

  .sec03-other-link:hover::before {
    animation: bgSlideIn 1s cubic-bezier(0.19, 1, 0.22, 1) 0s forwards;
  }
}

@media (max-width: 1024px) {
  .sec03-bg img {
    min-height: 100vh;
    object-fit: cover;
  }

  .sec03-contents {
    margin-top: 100vh;
  }

  .sec03-text {
    text-align: left;
    padding: 0 2rem;
    margin-bottom: 8rem;
  }

  .sec03-list {
    grid-template-columns: repeat(3, 1fr);
    margin-left: -1px;
  }

  .sec03-list li {
    border: 1px solid #B4C8E5;
    margin: -1px -1px 0 0;
  }

  .sec03-list a {
    padding: 1.5rem 1.5rem 3rem;
  }

  .sec03-list .list-img {
    max-width: 40px;
    margin: 0 auto 1.5rem;
  }

  .sec03-list .list-ttl {
    margin-bottom: 2.5rem;
  }

  .sec03-list .list-ttl .jp {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .sec03-list .list-ttl [lang=en] {
    font-size: 1rem;
    line-height: 1.2;
  }

  .sec03-list .text {
    display: none;
  }

  .sec03-list .arrow {
    width: 3rem;
    height: 2rem;
    bottom: 1rem;
    right: 1rem;
  }

  .sec03-list .arrow::before {
    width: 10px;
    height: 10px;
  }

  .sec03-other-link {
    border-bottom: 1px solid var(--color_border);
    padding: 3.5rem 2.5rem;
  }

  .sec03-other-link [lang=en] {
    font-size: 2.5rem;
  }
}

.sec04-layout {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  padding-left: 5%;
}

.sec04-layout .l-desc {
  max-width: 400px;
}

.sec04-layout .l-btn {
  margin-top: 8rem;
}

.top-facilities-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
}

.top-facilities-layout .l-imgs {
  display: grid;
  place-content: center;
  padding: 10%;
  position: sticky;
  top: 0;
  min-height: 100vh;
}

.top-facilities-layout .l-img {
  position: absolute;
  inset: 0;
}

.top-facilities-layout .l-img .img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}

.top-facilities-layout .l-img .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: backdrop-filter;
}

.top-facilities-layout .l-img .bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.top-facilities-layout .l-img .bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: oklch(from #000 l c h/0.1);
  backdrop-filter: blur(10px);
}

.top-facilities-layout .l-img.active-bg .bg {
  opacity: 1;
}

.top-facilities-layout .l-item {
  align-content: center;
  padding: 5rem 6.5rem;
  position: relative;
  min-height: 100vh;
}

.top-facilities-layout .item-head {
  color: var(--color_primary);
  font-family: var(--font_en);
  line-height: 1;
  margin-bottom: 7rem;
}

.top-facilities-layout .num {
  display: flex;
  align-items: flex-end;
  font-size: 4.5rem;
}

.top-facilities-layout .total {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.7rem;
  margin-left: 1rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.top-facilities-layout .total::before {
  content: "|";
  color: #989898;
  font-size: 1.2rem;
}

.top-facilities-layout [lang=en] {
  color: var(--color_secondary);
  font-size: 1.3rem;
  margin-top: 1rem;
}

.top-facilities-layout .item-body {
  max-width: 450px;
  margin: 0 auto;
}

.top-facilities-layout .item-ttl {
  font-size: 2.8rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.top-facilities-layout .place {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 1rem;
  margin-bottom: 4rem;
}

.top-facilities-layout .place::before {
  content: "";
  border-radius: 100vmax;
  background-color: var(--color_secondary);
  width: 6px;
  height: 6px;
  margin-top: 0.2rem;
}

.top-facilities-layout .l-btn {
  margin-top: 5rem;
}

.top-facilities-layout .l-img-sp {
  display: none;
}

@media (max-width: 1024px) {
  .sec04 {
    background-color: #fff;
    padding-top: 10rem;
    position: relative;
    z-index: 1;
  }

  .sec04-layout {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 5rem;
    padding: 0 0 5rem;
    overflow: hidden;
  }

  .sec04-layout .l-desc {
    padding: 0 2rem;
  }

  .sec04-layout .l-btn {
    margin-top: 5rem;
  }

  .top-facilities-layout {
    grid-template-columns: 1fr;
  }

  .top-facilities-layout .l-imgs {
    display: none;
  }

  .top-facilities-layout .l-img {
    display: none;
  }

  .top-facilities-layout .l-img-sp {
    display: block;
    margin-bottom: 2.5rem;
  }

  .top-facilities-layout .l-img-sp img {
    object-fit: cover;
    aspect-ratio: 7/5;
  }

  .top-facilities-layout .l-items {
    display: grid;
    gap: 3rem;
  }

  .top-facilities-layout .l-item {
    border-bottom: 1px solid var(--color_border);
    padding: 0 2rem 3rem;
    min-height: 0;
  }

  .top-facilities-layout .l-item:last-child {
    border-bottom: 0;
  }

  .top-facilities-layout .item-head {
    margin-bottom: 2.5rem;
  }

  .top-facilities-layout .item-body {
    max-width: 450px;
    margin: 0 auto;
  }

  .top-facilities-layout .item-ttl {
    font-size: 2.5rem;
  }

  .top-facilities-layout .l-btn {
    margin-top: 2.5rem;
  }
}

.sec05 {
  position: relative;
  padding-top: 10rem;
}

.sec05-bg {
  object-fit: cover;
  object-position: bottom;
  min-height: 300px;
  margin-bottom: -1px;
}

.sec05-inner {
  background-color: var(--color_gray03);
  padding: 0 0 20rem;
}

.sec05-layout {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10rem;
}

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

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

.sec05-layout .text {
  font-size: 1.6rem;
  line-height: 2.25;
}

.sec05-layout .l-btn {
  margin-top: 5rem;
}

@media (max-width: 1024px) {
  .sec05 {
    padding-top: 0;
  }

  .sec05-bg {
    min-height: 150px;
  }

  .sec05-inner {
    padding: 0 0 8rem;
  }

  .sec05-layout {
    flex-direction: column;
    gap: 5rem;
  }

  .sec05-layout .l-img {
    width: 80%;
  }

  .sec05-layout .text {
    font-size: 1.5rem;
    line-height: 2;
  }

  .sec05-layout .l-btn {
    margin-top: 5rem;
  }
}

.sec06 {
  padding-bottom: 10rem;
}

.sec06-layout {
  position: relative;
}

.sec06-layout .t-ttl {
  margin-bottom: 5rem;
}

.sec06-layout .l-desc {
  background-color: #fff;
  padding: 7.5rem;
  width: fit-content;
  max-width: 630px;
  margin: -30rem 5rem 0 auto;
  position: relative;
  z-index: 1;
}

.sec06-layout .l-btn {
  margin-top: 5rem;
}

.sec06-carousel {
  display: flex;
  gap: 1rem;
}

.sec06-carousel .item {
  display: flex;
  gap: 1rem;
}

@media (max-width: 1024px) {
  .sec06 {
    padding-bottom: 5rem;
  }

  .sec06-layout .t-ttl {
    margin-bottom: 2.5rem;
  }

  .sec06-layout .l-desc {
    top: 0;
    bottom: 0;
    right: 0;
    padding: 5rem 2rem 0;
    max-width: 100%;
    margin: 0;
  }

  .sec06-layout .l-btn {
    margin-top: 5rem;
  }

  .sec06-carousel img {
    object-fit: cover;
    height: 300px;
    width: 150px;
  }
}

.sec07 {
  background-color: var(--color_primary);
  color: #fff;
  padding-bottom: 17rem;
}

.sec07-layout {
  display: flex;
  flex-direction: row-reverse;
  padding-left: calc((90% - 1400px) / 2);
  margin-left: 5%;
}

.sec07-layout .l-img {
  width: 46.39%;
  position: relative;
}

.sec07-layout .l-img img {
  width: 100%;
  object-fit: cover;
  min-height: 1048px;
}

.sec07-layout .l-catch {
  background-color: var(--color_primary);
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 9rem 8rem 0 0;
  margin-left: -15rem;
  writing-mode: vertical-rl;
  font-feature-settings: normal;
  min-height: 85rem;
}

.sec07-layout .l-catch .text01 {
  color: #B4C8E5;
  font-size: 1.8rem;
  margin-left: 1rem;
}

.sec07-layout .l-catch .text01::before,
.sec07-layout .l-catch .text01::after {
  vertical-align: 3px;
}

.sec07-layout .l-catch .text01::before {
  content: "[ ";
}

.sec07-layout .l-catch .text01::after {
  content: " ]";
}

.sec07-layout .l-catch .text02 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 2;
}

.sec07-layout .l-desc {
  flex: 1;
  padding: 15rem 0 0;
}

.sec07-layout .t-ttl {
  color: #fff;
  margin-bottom: 10rem;
}

.sec07-layout .l-read {
  font-size: 1.6rem;
  margin-bottom: 8rem;
}

.sec07-layout .l-read p+p {
  margin-top: 2em;
}

.sec07-layout .name-wrapper {
  line-height: 1;
  margin-bottom: 8rem;
}

.sec07-layout .job {
  color: #B4C8E5;
  margin-bottom: 2rem;
}

.sec07-layout .name {
  font-size: 3rem;
  font-weight: 600;
}

.sec07-layout .kana {
  color: #B4C8E5;
  font-family: var(--font_en);
  font-size: 2rem;
  margin-left: 2rem;
}

.sec07-layout .l-btns {
  display: grid;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .sec07 {
    padding-bottom: 10rem;
  }

  .sec07-layout {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .sec07-layout .l-img {
    width: 100%;
    position: relative;
  }

  .sec07-layout .l-img img {
    object-fit: cover;
    aspect-ratio: 1/1;
    min-height: 0;
  }

  .sec07-layout .l-catch {
    position: absolute;
    bottom: -5rem;
    left: 0;
    padding: 2.5rem 1rem 0;
    margin-left: 0;
    min-height: 0;
  }

  .sec07-layout .l-catch .text01 {
    font-size: 1.5rem;
    margin-left: 1rem;
  }

  .sec07-layout .l-catch .text01::before,
  .sec07-layout .l-catch .text01::after {
    vertical-align: 3px;
  }

  .sec07-layout .l-catch .text02 {
    font-size: 2rem;
    line-height: 1.5;
  }

  .sec07-layout .l-desc {
    padding: 10rem 2rem 0;
  }

  .sec07-layout .t-ttl {
    margin-bottom: 5rem;
  }

  .sec07-layout .l-read {
    font-size: 1.5rem;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 5rem;
  }

  .sec07-layout .l-read p+p {
    margin-top: 2em;
  }

  .sec07-layout .name-wrapper {
    margin-bottom: 5rem;
  }

  .sec07-layout .job {
    margin-bottom: 2rem;
    font-size: 1.2rem;
  }

  .sec07-layout .name {
    font-size: 2.5rem;
  }

  .sec07-layout .kana {
    font-size: 1.5rem;
  }

  .sec07-layout .l-btns {
    text-align: center;
  }
}

.sec08 {
  overflow: hidden;
  padding: 15rem 0;
}

.top-post-layout {
  display: grid;
  grid-template-columns: 30rem 1fr;
  gap: 10rem;
  padding-left: calc((90% - 1400px) / 2);
  margin-left: 5%;
}

.top-post-layout * {
  min-height: 0;
  min-width: 0;
}

.top-post-layout+.top-post-layout {
  margin-top: 15rem;
}

.top-post-slider .splide-wrapper {
  overflow: hidden;
}

.top-post-slider .splide__track {
  overflow: visible;
}

.top-post-slider .slider-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5rem;
  padding-right: 5%;
}

.top-post-topics .splide__list a {
  display: block;
  height: 100%;
  border: 1px solid var(--color_border);
  padding: 3.5rem 3.5rem 7rem;
  position: relative;
}

.top-post-topics .splide__list a::before,
.top-post-topics .splide__list a::after {
  content: "";
  background: url(../images/share/icon_arrow.svg);
  width: 17px;
  height: 17px;
  position: absolute;
  bottom: 18px;
  right: 18px;
  transition: 0.3s var(--easing);
}

@media (any-hover: hover) {
  .top-post-topics .splide__list a:hover::before {
    opacity: 0;
    transform: translate(45%, -45%);
  }

  .top-post-topics .splide__list a:hover::after {
    opacity: 1;
    transform: translate(0, 0);
  }

  .top-post-topics .splide__list a:hover .post-ttl span {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.top-post-topics .splide__list a::after {
  opacity: 0;
  transform: translate(-45%, 45%);
}

.top-post-topics .splide__list a .post-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.top-post-topics .splide__list a time {
  font-family: var(--font_en);
  font-size: 1.4rem;
  color: var(--color_gray04);
  letter-spacing: 0;
}

.top-post-topics .splide__list a .category {
  background-color: var(--color_secondary);
  color: #fff;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  line-height: 1.1;
  border-radius: 100vmax;
}

.top-post-topics .splide__list a .category02 {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--color_primary);
  font-size: 1.2rem;
  line-height: 1.1;
}

.top-post-topics .splide__list a .category02::before {
  content: "";
  background-color: #ACACAC;
  width: 6px;
  height: 1px;
}

.top-post-topics .splide__list a .post-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1.7rem;
  margin-bottom: 10px;
  word-break: break-all;
}

.top-post-topics .splide__list a .post-ttl span {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s var(--easing);
}

.top-post-blog .splide__list a {
  display: block;
  height: 100%;
  position: relative;
}

.top-post-blog .splide__list a .post-img {
  margin-bottom: 2rem;
  overflow: hidden;
}

.top-post-blog .splide__list a .post-img img {
  object-fit: cover;
  aspect-ratio: 377/281;
  transition: transform 0.5s;
  width: 100%;
}

.top-post-blog .splide__list a time {
  text-align: right;
  display: block;
  font-family: var(--font_en);
  font-size: 1.4rem;
  color: var(--color_gray04);
  letter-spacing: 0;
  margin-bottom: 1rem;
}

.top-post-blog .splide__list a .category {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--color_primary);
  font-size: 1.2rem;
  line-height: 1.1;
}

.top-post-blog .splide__list a .category::before {
  content: "";
  background-color: #ACACAC;
  width: 6px;
  height: 1px;
}

.top-post-blog .splide__list a .post-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1.7rem;
  margin-bottom: 10px;
  word-break: break-all;
}

.top-post-blog .splide__list a .post-ttl span {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s var(--easing);
}

@media (any-hover: hover) {
  .top-post-blog .splide__list a:hover .post-img img {
    transform: scale(1.1);
  }

  .top-post-blog .splide__list a:hover .post-ttl span {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

@media (max-width: 1024px) {
  .sec08 {
    padding: 10rem 0;
  }

  .top-post-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .top-post-layout .t-ttl {
    margin-bottom: 2.5rem;
  }

  .top-post-layout+.top-post-layout {
    margin-top: 10rem;
  }

  .top-post-topics .splide__list a {
    padding: 2.5rem 2.5rem 5rem;
  }

  .top-post-topics .splide__list a .post-ttl {
    font-size: 1.5rem;
  }

  .top-post-blog .splide__list a .post-ttl {
    font-size: 1.5rem;
  }

  .top-post-slider .slider-bottom {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}

.top-other-links {
  border-top: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.top-other-links .item {
  display: block;
  padding: 10rem 5rem;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
}

.top-other-links .item::before {
  content: "";
  background-color: var(--color_primary);
  position: absolute;
  inset: 0;
  -webkit-transform: translateZ(0);
  z-index: -1;
  animation: bgSlideOut 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0s forwards;
}

.top-other-links .item-ttl {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.top-other-links .item-ttl img {
  transition: filter 0.3s;
}

.top-other-links .arrow {
  display: inline-block;
  border: 1px solid var(--color_black);
  border-radius: 100vmax;
  width: 5rem;
  height: 3.4rem;
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  overflow: hidden;
}

.top-other-links .arrow::before {
  content: "";
  background-color: var(--color_black);
  mask-image: url(../images/share/icon_arrow.svg);
  mask-size: 100% 100%;
  width: 17px;
  height: 17px;
  transition: background 0.35s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

@media (any-hover: hover) {
  .top-other-links a:hover {
    color: #fff;
  }

  .top-other-links a:hover .item-ttl {
    color: #fff;
  }

  .top-other-links a:hover .item-ttl img {
    filter: brightness(0) invert(1);
  }

  .top-other-links a:hover::before {
    animation: bgSlideIn 1s cubic-bezier(0.19, 1, 0.22, 1) 0s forwards;
  }

  .top-other-links a:hover .arrow {
    border-color: #fff;
  }

  .top-other-links a:hover .arrow::before {
    background-color: #fff;
  }
}

@media (max-width: 1024px) {
  .top-other-links {
    grid-template-columns: 1fr;
  }

  .top-other-links .item {
    border-bottom: 1px solid var(--color_border);
    padding: 2rem 1.5rem;
  }

  .top-other-links .item-ttl {
    font-size: 2.5rem;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }

  .top-other-links .item-ttl img {
    object-fit: contain;
    max-height: 25px;
    max-width: 30px;
  }

  .top-other-links .arrow {
    bottom: 50%;
    right: 2.5rem;
    transform: translateY(50%);
    width: 3.5rem;
    height: 2rem;
  }

  .top-other-links .arrow::before {
    width: 12px;
    height: 12px;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-kv {
  margin: 0 auto;
  padding: 15rem 8rem 0;
}

.page-kv:has(.page-kv-img) {
  display: grid;
  align-items: start;
  grid-template-rows: auto 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "area01 area03" "area02 area03";
  gap: 0 10rem;
}

.page-kv:has(.page-kv-img) .breadcrumb {
  margin-top: 10rem;
}

.breadcrumb {
  grid-area: area01;
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 1.5em;
  font-size: 1.2rem;
  font-weight: bold;
  color: #999;
  line-height: 1;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.breadcrumb::before {
  content: "";
  background-color: var(--color_primary);
  width: 15px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.breadcrumb ul li {
  display: inline;
}

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

.breadcrumb a {
  color: var(--color_primary);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-header {
  grid-area: area02;
}

.page-kv-img {
  grid-area: area03;
}

.page-kv-img img {
  object-fit: cover;
  width: 100%;
  height: calc(100svh - 15rem);
}

.page-ttl {
  line-height: 1.2;
}

.page-ttl [lang=en] {
  font-size: 10rem;
  font-weight: bold;
  line-height: 1;
  color: var(--color_primary);
  margin-bottom: 1.5rem;
  word-break: break-all;
}

.page-ttl .jp {
  font-size: 2.5rem;
  font-weight: bold;
}

.page-text {
  font-size: 1.4rem;
  margin-top: 5rem;
}

.page-toc {
  border-top: 1px solid var(--color_border);
  padding-top: 2rem;
  position: relative;
}

.page-toc::before {
  content: "";
  background-color: var(--color_primary);
  width: 15px;
  height: 1px;
  position: absolute;
  left: 0;
  top: -1px;
}

.page-toc-list {
  display: grid;
  gap: 1rem;
  line-height: 1.5;
  font-size: 1.5rem;
  margin-top: 5rem;
}

.page-toc-list li {
  position: relative;
  padding-left: 1.5em;
}

.page-toc-list li::before {
  content: "";
  border: 1px solid var(--color_secondary);
  width: 1em;
  height: 1em;
  border-radius: 100vmax;
  position: absolute;
  left: 0;
  top: 0.3em;
  transition: background-color 0.5s ease;
}

.page-toc-list li::after {
  content: "";
  background-color: var(--color_secondary);
  mask: url(../images/share/icon_arrow02.svg) no-repeat center/contain;
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0.3em;
  top: 0.62em;
  transition: background-color 0.5s ease;
}

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

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

@media (any-hover: hover) {
  .page-toc-list li:has(a:hover)::before {
    background-color: var(--color_secondary);
  }

  .page-toc-list li:has(a:hover)::after {
    background-color: #fff;
  }
}

.u-contents {
  padding: 10rem 0;
}

.u-contents .container {
  width: calc(100% - 16rem);
}

@media (max-width: 1024px) {
  .page-kv {
    margin: 0 auto;
    padding: 8rem 2rem 0;
  }

  .page-kv:has(.page-kv-img) {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-template-areas: "area01" "area03" "area02";
    gap: 0;
  }

  .page-kv:has(.page-kv-img) .breadcrumb {
    margin-top: 0;
  }

  .breadcrumb {
    margin-bottom: 2.5rem;
  }

  .page-kv-img {
    margin-bottom: 2.5rem;
  }

  .page-kv-img img {
    height: auto;
    aspect-ratio: 1;
  }

  .page-ttl [lang=en] {
    font-size: 5rem;
    margin-bottom: 1.5rem;
  }

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

  .page-text {
    margin-top: 3.5rem;
  }

  .page-toc-list {
    margin-top: 3.5rem;
  }

  .u-contents {
    padding: 5rem 0;
  }

  .u-contents .container {
    width: calc(100% - 4rem);
  }
}

.u-h2 {
  line-height: 1.2;
  margin-bottom: 5rem;
}

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

.u-h2 .jp {
  font-size: 3.5rem;
}

.bg-blue .u-h2 [lang=en] {
  color: #fff;
}

.u-h3 {
  border-radius: 3px;
  background-color: var(--color_primary);
  color: #fff;
  position: relative;
  font-size: 2rem;
  padding: 0.8rem 2rem;
  margin-bottom: 3rem;
}

.u-h4 {
  margin-bottom: 15px;
}

@media (max-width: 1024px) {
  .u-h2 {
    margin-bottom: 3.5rem;
  }

  .u-h2 [lang=en] {
    font-size: 1.2rem;
  }

  .u-h2 .jp {
    font-size: 2.8rem;
  }

  .u-h3 {
    font-size: 2rem;
    line-height: 1.5;
    padding: 1rem 1.5rem;
    margin-bottom: 2.5rem;
  }

  .u-h4 {
    padding-left: 20px;
  }
}

.u-catch {
  font-weight: bold;
  font-size: 2.8rem;
}

@media (max-width: 1024px) {
  .u-catch {
    font-size: 2rem;
  }
}

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

.tall.bg-blue {
  background-color: var(--color_primary);
  color: #fff;
  padding: 120px 0;
}

.tall.bg-gray {
  background-color: var(--color_gray03);
  padding: 120px 0;
}

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

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

.hidden {
  overflow: clip;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.dl-style01 dt {
  background: rgba(0, 0, 0, 0.1);
  font-size: 17px;
  padding: 20px;
}

.dl-style01 dd {
  background: #f5f5f5;
  padding: 20px;
}

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

.card-style01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
}

.card-style01>li {
  background-color: #f5f5f5;
  padding: 15px;
}

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

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

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

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

.table-style01 th {
  background-color: #e2e2e2;
}

.table-style01 .bg01 {
  background-color: #f5f5f5;
}

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

@media (max-width: 1024px) {
  .table-scroll-txt {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

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

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

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

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

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

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

.list-anchor-link {
  display: flex;
  flex-wrap: wrap;
  font-size: 15px;
}

.list-anchor-link li {
  position: relative;
}

.list-anchor-link li::after {
  content: "";
  display: inline-block;
  background: #e0e0e0;
  width: 2px;
  height: 15px;
  margin: 0 20px;
  vertical-align: -1px;
}

.list-anchor-link a {
  display: inline-block;
  position: relative;
  font-weight: bold;
  padding-right: 25px;
}

.list-anchor-link a::before {
  content: "";
  background: url(../images/share/icon_arrow_down.svg) no-repeat 0 0/contain;
  width: 22px;
  height: 22px;
  position: absolute;
  right: -3px;
  top: 3px;
}

.list-anchor-link a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .list-anchor-link {
    display: block;
  }

  .list-anchor-link li::after {
    display: none;
  }

  .list-anchor-link a {
    padding: 0 0 0 30px;
  }

  .list-anchor-link a::before {
    right: inherit;
    left: 0;
    top: 2px;
  }
}

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

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

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

.under-slider01 .splide-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
}

.under-slider01 .splide__arrows {
  margin: 2.5rem auto 0;
  width: fit-content;
}

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

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

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

.youtube iframe {
  width: 100%;
  height: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1024px) {

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

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

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

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

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

/*------------
個人情報保護方針
--------------*/
.privacy-ttl {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}

.dl-privacy {
  margin-top: 5rem;
}

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

.dl-privacy dt::before {
  content: "";
  background-color: var(--color_primary);
  width: 15px;
  height: 1px;
  position: absolute;
  top: -1px;
}

.dl-privacy dd {
  font-size: 1.5rem;
}

.dl-privacy dd+dt {
  margin-top: 5rem;
}

.list-privacy {
  display: grid;
  grid-gap: 2px;
  margin-top: 1.5rem;
}

.list-privacy li {
  position: relative;
  padding-left: 1.5rem;
}

.list-privacy li::before {
  content: "";
  background: #333;
  border-radius: 100vmax;
  display: block;
  position: absolute;
  left: 0;
  top: 1.3rem;
  width: 0.5rem;
  height: 0.5rem;
}

/*------------
Add
--------------*/
.concept-layout {
  display: flex;
  align-items: flex-start;
  gap: 10rem;
  margin-bottom: 10rem;
  position: relative;
  z-index: 0;
}

.concept-layout .l-ttl {
  color: transparent;
  background: linear-gradient(180deg, #189CB8 0%, #1280BF 51%, #144894 100%);
  -webkit-background-clip: text;
  font-weight: bold;
  font-size: 8rem;
  writing-mode: vertical-rl;
  position: sticky;
  white-space: nowrap;
}

.concept-layout .l-catch {
  margin-bottom: 8rem;
}

.concept-layout .l-catch [lang=en] {
  border-bottom: 2px solid currentColor;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color_primary);
  line-height: 1;
  padding-bottom: 0.5rem;
  margin-bottom: 2.5rem;
  width: fit-content;
}

.concept-layout .l-catch .jp {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.concept-layout .l-read {
  font-weight: bold;
  font-size: 2rem;
}

@media (max-width: 1024px) {
  .concept-layout {
    gap: 5rem;
    margin-bottom: 10rem;
  }

  .concept-layout .l-ttl {
    font-size: 3.5rem;
    line-height: 1;
    position: sticky;
    top: 8rem;
  }

  .concept-layout .l-catch {
    margin-bottom: 3.5rem;
  }

  .concept-layout .l-catch [lang=en] {
    font-size: 1.7rem;
    margin-bottom: 2.5rem;
  }

  .concept-layout .l-catch .jp {
    font-size: 3rem;
    line-height: 1.7;
  }

  .concept-layout .l-read {
    font-size: 1.7rem;
    text-align: justify;
  }
}

.chiba-bg {
  position: relative;
  z-index: 0;
}

.chiba-img {
  position: absolute;
  top: -10%;
  right: 2.5%;
  z-index: -1;
}

.chiba-img img {
  width: 650px;
}

@media (max-width: 1024px) {
  .chiba-img {
    top: 0%;
    right: -15%;
  }

  .chiba-img img {
    width: 650px;
  }
}

.strengths-layout {
  display: grid;
  grid-template-columns: 50rem 1fr;
  column-gap: 2rem;
  margin: 0 2rem;
}

.strengths-layout .l-img {
  grid-row: 1/2;
  grid-column: 2/3;
  overflow: hidden;
}

.strengths-layout .l-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strengths-layout .l-desc {
  grid-row: 1/2;
  grid-column: 1/2;
  background-color: var(--color_gray);
  padding: 6.2rem 4rem 5.3rem;
}

.strengths-layout .l-desc p {
  text-align: justify;
}

.strengths-layout .l-num {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.5rem;
  margin-bottom: 5rem;
  line-height: 1;
}

.strengths-layout .l-num::before {
  content: "";
  background-color: var(--color_secondary);
  width: 0.5em;
  height: 0.5em;
  border-radius: 100vmax;
}

.strengths-layout .l-ttl {
  font-size: 2.5rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.strengths-layout.reverse {
  grid-template-columns: 1fr 50rem;
}

.strengths-layout.reverse .l-img {
  grid-column: 1/2;
}

.strengths-layout.reverse .l-desc {
  grid-column: 2/3;
}

.strengths-layout+.strengths-layout {
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .strengths-layout {
    grid-template-columns: 1fr;
    column-gap: 2rem;
    margin: 0 2rem;
  }

  .strengths-layout .l-img {
    grid-row: auto;
    grid-column: auto;
  }

  .strengths-layout .l-desc {
    grid-row: auto;
    grid-column: auto;
    padding: 2.5rem;
  }

  .strengths-layout .l-num {
    margin-bottom: 2.5rem;
  }

  .strengths-layout .l-ttl {
    font-size: 2.2rem;
  }

  .strengths-layout.reverse {
    grid-template-columns: 1fr;
  }

  .strengths-layout.reverse .l-img {
    grid-column: auto;
  }

  .strengths-layout.reverse .l-desc {
    grid-column: auto;
  }
}

.greeting-layout {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 10rem;
}

.greeting-layout+.greeting-layout {
  border-top: 1px solid #fff;
  padding-top: 10rem;
  margin-top: 10rem;
}

.greeting-layout .l-img {
  position: relative;
}

.greeting-layout .l-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40%;
  display: block;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  z-index: 1;
}

.greeting-layout .name-wrapper {
  line-height: 1;
  position: absolute;
  bottom: 5%;
  left: 5%;
  z-index: 5;
}

.greeting-layout .job {
  margin-bottom: 2rem;
}

.greeting-layout .name {
  font-size: 3rem;
  font-weight: 600;
}

.greeting-layout .kana {
  font-family: var(--font_en);
  font-size: 2rem;
  margin-left: 2rem;
}

.greeting-layout .l-desc {
  line-height: 1.8;
}

.greeting-layout .l-read {
  text-align: justify;
}

.greeting-layout .l-ttl {
  font-size: 3.0rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 1024px) {
  .greeting-layout {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .greeting-layout+.greeting-layout {
    padding-top: 5rem;
    margin-top: 5rem;
  }

  .greeting-layout .l-ttl {
    font-size: 2.5rem;
  }

  .greeting-layout .job {
    margin-bottom: 2rem;
  }

  .greeting-layout .name {
    font-size: 2.5rem;
  }

  .greeting-layout .kana {
    display: block;
    font-size: 1.5rem;
    margin: 1rem 0 0;
  }
}

.layout-style01 {
  display: flex;
  gap: 10rem;
  position: relative;
}

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

.layout-style01 .l-desc {
  z-index: 1;
}

.layout-style01 .l-catch {
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.layout-style01 .l-read {
  max-width: 700px;
  text-align: justify;
}

@media (max-width: 1024px) {
  .layout-style01 {
    flex-direction: column;
    gap: 3.5rem;
  }

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

  .layout-style01 .l-catch {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(12, [col-start] 1fr);
  align-items: start;
  gap: 5rem;
}

.grid-layout .sticky,
.grid-layout .pc-sticky {
  position: sticky;
  top: 10rem;
}

.col-max {
  grid-column: span 12;
}

.col-sm {
  grid-column: span 4;
}

.col-half {
  grid-column: span 6;
}

.col-md {
  grid-column: span 8;
  grid-column: col-start 5/span 8;
}

@media (max-width: 1024px) {
  .grid-layout {
    gap: 0;
  }

  .grid-layout .pc-sticky {
    position: static;
  }

  .col-sm,
  .col-half,
  .col-md {
    grid-column: span 12;
  }
}

.dl-overview {
  border-top: 1px solid var(--color_border);
  position: relative;
}

.dl-overview::after {
  content: "";
  background-color: var(--color_secondary);
  width: 15px;
  height: 1px;
  position: absolute;
  top: -1px;
}

.dl-overview .item {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 2.5rem;
  position: relative;
  padding: 2.5rem 0;
}

.dl-overview .item::after {
  content: "";
  background-color: var(--color_secondary);
  width: 15px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
}


@media (max-width: 1024px) {
  .dl-overview .item {
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    line-height: 1.8;
  }
}

.dl-history {
  border-top: 1px solid var(--color_border);
  position: relative;
  line-height: 1.8;
}

.dl-history::after {
  content: "";
  background-color: var(--color_secondary);
  width: 15px;
  height: 1px;
  position: absolute;
  top: -1px;
  bottom: 0;
}

.dl-history .item {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 2.5rem;
  position: relative;
  padding: 2.5rem 0;
}

.dl-history .item::after {
  content: "";
  background-color: var(--color_secondary);
  width: 15px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.dl-history .year {
  font-weight: bold;
}

.dl-history .wrap {
  display: grid;
  grid-template-columns: 8rem 1fr;
  align-items: flex-start;
  gap: 2.5rem;
}

.dl-history .wrap+.wrap {
  margin-top: 1rem;
}

.dl-history .month {
  font-weight: bold;
  background-color: var(--color_gray);
  border-radius: 100vmax;
  padding: 0rem 1rem;
  margin-top: 0.2rem;
  font-size: 1.3rem;
  text-align: center;
}

.dl-history .wrap-img {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}

.dl-history .wrap-img .img {
  flex: 0 0 150px;
}

.dl-history .doctor-profile {
  display: flex;
  gap: 4rem;
}

.dl-history .doctor-profile img {
  width: 80px;
}

@media (max-width: 1024px) {
  .dl-history .item {
    grid-template-columns: 50px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
  }

  .dl-history .wrap {
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
  }

  .dl-history .wrap-img {
    flex-direction: column;
    gap: 1.5rem;
  }

  .dl-history .wrap-img .img {
    flex: 1;
  }
}

.members-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.members-list button {
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 2.5rem;
  position: relative;
}

.members-list button::after {
  content: "";
  background-color: var(--color_secondary);
  width: 15px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: width 0.3s;
}

@media (any-hover: hover) {
  .members-list button:hover::after {
    width: 100%;
  }

  .members-list button:hover .list-img img {
    transform: scale(1.05);
  }
}

.members-list .list-img {
  border-radius: var(--radius);
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 1.8rem;
}

.members-list .list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.members-list button:hover .list-img img {
  transform: scale(1.05);
}

.members-list .list-data {
  display: grid;
  gap: 1rem;
  line-height: 1;
}

.members-list .list-data .job {
  font-size: 1.2rem;
  opacity: 0.5;
}

.members-list .list-data .name {
  font-size: 1.8rem;
  font-weight: bold;
}

.members-list .list-data .en {
  color: var(--color_primary);
  font-size: 1.3rem;
  margin-left: 1.5rem;
  letter-spacing: 0.05em;
}

.members-list .list-data .career {
  font-size: 1.2rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .members-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bg-blue .members-list button::after {
  background-color: #fff;
}

.bg-blue .members-list .list-data {
  color: #fff;
}

.members-detail .detail-img {
  overflow: hidden;
  max-width: 25rem;
  margin: 0 auto 2.5rem;
}

.members-detail .detail-img img {
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.members-detail .detail-data {
  display: grid;
  gap: 1.5rem;
  line-height: 1;
  text-align: center;
  max-width: 25rem;
  margin: 0 auto 2.5rem;
}

.members-detail .detail-data .job {
  font-size: 1.2rem;
  opacity: 0.5;
}

.members-detail .detail-data .name {
  font-size: 1.8rem;
  font-weight: bold;
}

.members-detail .detail-data .en {
  display: block;
  color: var(--color_primary);
  font-size: 1.3rem;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

.members-detail .detail-data .career {
  font-size: 1.2rem;
}

.members-detail .postdata {
  font-size: 1.4rem;
  line-height: 1.8;
}

.dl-members {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.dl-members .item {
  border: 1px solid var(--color_black);
  display: grid;
  grid-template-columns: 20rem 1fr;
  gap: 2.5rem;
  padding: 1.5rem 2.5rem;
}

.dl-members dd {
  text-align: right;
}

@media (max-width: 1024px) {
  .dl-members {
    grid-template-columns: 1fr;
  }

  .dl-members .item {
    padding: 1rem;
  }
}

.member-message {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.services-layout {
  border-top: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: flex-start;
  gap: 5rem;
  position: relative;
  padding-top: 10rem;
}

.services-layout::before {
  content: "";
  background-color: var(--color_primary);
  width: 15px;
  height: 1px;
  position: absolute;
  top: -1px;
}

.services-layout .u-h2 {
  position: sticky;
  top: 15rem;
}

@media (max-width: 1024px) {
  .services-layout {
    grid-template-columns: 4rem 1fr;
    gap: 2rem;
    padding-top: 5rem;
  }

  .services-layout .u-h2 {
    top: 7rem;
    writing-mode: vertical-rl;
  }

  .services-layout .u-h2 [lang=en] {
    margin-left: 0.5rem;
  }
}

.box-services {
  background-color: var(--color_primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 5rem;
}

.box-services .wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem;
}

.box-services .box-img {
  width: 40%;
}

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

.box-services .box-ttl {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
}

.box-services .box-ttl .check {
  background-color: var(--color_secondary);
  color: #fff;
  font-size: 1.3rem;
  font-family: var(--font_en);
  font-weight: bold;
  line-height: 1;
  padding: 0.7rem 1.4rem;
  border-radius: 100vmax;
  width: fit-content;
  margin-bottom: 1rem;
  position: relative;
}

.box-services .box-ttl .check::after {
  content: "";
  width: 8px;
  height: 5px;
  position: absolute;
  bottom: -4px;
  left: 15px;
  background-color: var(--color_secondary);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.box-services .box-ttl .sub {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  font-weight: bold;
}

.box-services .box-ttl .sub::before {
  content: "";
  background-color: var(--color_secondary);
  width: 10px;
  height: 10px;
  border-radius: 100vmax;
  margin-top: 2px;
}

.box-services .box-ttl .ttl {
  font-size: 2.5rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .box-services {
    padding: 2rem;
  }

  .box-services .wrapper {
    flex-direction: column;
    gap: 2.5rem;
  }

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

  .box-services .box-ttl {
    gap: 0.5rem;
    margin-bottom: 2.5rem;
  }

  .box-services .box-ttl .check {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }

  .box-services .box-ttl .ttl {
    font-size: 2rem;
  }
}

.label-point {
  background-color: var(--color_primary);
  color: #fff;
  font-size: 1.3rem;
  font-family: var(--font_en);
  font-weight: bold;
  line-height: 1;
  padding: 0.7rem 1.4rem;
  border-radius: 100vmax;
  width: fit-content;
  margin-bottom: 1rem;
  position: relative;
}

.label-point::after {
  content: "";
  width: 8px;
  height: 5px;
  position: absolute;
  bottom: -4px;
  left: 15px;
  background-color: var(--color_primary);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

@media (max-width: 1024px) {
  .label-point {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
  }
}

.list-treatments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.8;
}

.list-treatments li {
  border: 1px solid var(--color_border);
  padding: 2rem;
  border-radius: 2px;
}

.list-treatments .list-ttl {
  color: var(--color_primary);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  position: relative;
}

.list-treatments .list-ttl::before {
  content: "";
  background-color: var(--color_secondary);
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(-2rem - 1px);
}

@media (max-width: 1024px) {
  .list-treatments {
    grid-template-columns: 1fr;
    gap: 1rem;
    font-size: 1.3rem;
  }

  .list-treatments li {
    padding: 1.5rem;
  }

  .list-treatments .list-ttl {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

.list-facilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  font-size: 1.5rem;
  line-height: 1.8;
}

.list-facilities a {
  display: block;
  border: 1px solid var(--color_border);
  padding: 2.5rem 2.5rem 7rem;
  border-radius: var(--radius);
  position: relative;
  height: 100%;
}

.list-facilities .list-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.list-facilities .list-img img {
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.list-facilities .list-ttl {
  color: var(--color_primary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.list-facilities .place {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.list-facilities .place::before {
  content: "";
  border-radius: 100vmax;
  background-color: var(--color_secondary);
  width: 6px;
  height: 6px;
  margin-top: 0.2rem;
}

.list-facilities .arrow {
  display: inline-block;
  border: 1px solid var(--color_border);
  border-radius: 100vmax;
  width: 5rem;
  height: 3.4rem;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  overflow: hidden;
}

.list-facilities .arrow::before {
  content: "";
  background-color: var(--color_primary);
  mask-image: url(../images/share/icon_arrow.svg);
  mask-size: 100% 100%;
  width: 17px;
  height: 17px;
  transition: background 0.35s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.list-facilities .arrow::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color_primary);
  border-radius: 999px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.35s ease;
}

@media (any-hover: hover) {
  .list-facilities a:hover .list-img img {
    transform: scale(1.05);
  }

  .list-facilities a:hover .arrow::before {
    background-color: #fff;
  }

  .list-facilities a:hover .arrow::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}

@media (max-width: 1024px) {
  .list-facilities {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .list-facilities a {
    padding: 2rem 2rem 5rem;
  }
}

.list-tel {
  display: grid;
  gap: 1.5rem;
  font-family: var(--font_en);
  font-size: 3rem;
  line-height: 1;
}

.list-tel span {
  display: inline-block;
  font-size: 2rem;
  width: 50px;
}

/*==============================================
各施設
==============================================*/
.tsukada-family-clinic main {
  --color_primary: #008be8;
  --color_secondary: #008be8;
}

.family-clinic-tomisato main {
  --color_primary: #D97706;
  --color_secondary: #D97706;
}

.vsiting-nursing-station main {
  --color_primary: #6e9f3f;
  --color_secondary: #6e9f3f;
}

.hospice-care-tomisato main {
  --color_primary: #B8860B;
  --color_secondary: #B8860B;
}

.nanahoshi-tomisato main {
  --color_primary: #D6336C;
  --color_secondary: #D6336C;
}




:has(.hero-facility) .u-contents {
  padding: 0 0 10rem;
}

.hero-facility {
  position: relative;
  width: 100%;
  height: 100svh;
  clip-path: inset(0);
  margin-bottom: 10rem;
}

.hero-facility-contents {
  color: #fff;
  padding: 5rem 6rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero-facility-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.hero-facility-bg img {
  width: 100%;
  height: 100svh;
  object-fit: cover;
}

.hero-filter {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  display: block;
  background: linear-gradient(to bottom, rgba(0, 164, 180, 0), var(--color_primary));
  z-index: 1;
}

.hero-facility-ttl .jp {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-facility-ttl [lang=en] {
  font-size: 10rem;
  line-height: 1;
  margin-bottom: 2rem;
}

.hero-facility-ttl .place {
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 2rem;
  font-weight: bold;
  gap: 1.5rem;
}

.hero-facility-ttl .place::before {
  content: "";
  border-radius: 100vmax;
  background-color: #fff;
  width: 10px;
  height: 10px;
  margin-top: 0.2em;
}

@media (max-width: 1024px) {
  :has(.hero-facility) .u-contents {
    padding: 0 0 10rem;
  }

  .hero-facility {
    margin-bottom: 10rem;
  }

  .hero-facility-contents {
    padding: 0 2rem 9rem;
  }

  .hero-facility-ttl .jp {
    font-size: 1.8rem;
  }

  .hero-facility-ttl [lang=en] {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
  }

  .hero-facility-ttl .place {
    font-size: 1.7rem;
  }
}

.facility-about-layout {
  position: relative;
  padding-left: calc((100% - 16rem - 1400px) / 2);
  margin-left: 8rem;
}

.facility-about-layout .wrapper {
  display: grid;
  grid-template-columns: 50rem 1fr;
  align-items: flex-start;
  gap: 5%;
  margin-top: -5rem;
}

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

.facility-about-layout .l-desc {
  flex: 1;
  padding-top: 10rem;
  position: relative;
  z-index: 5;
  text-align: justify;
}

.facility-about-layout .l-ttl {
  position: relative;
  z-index: 5;
}

.facility-about-layout .l-ttl [lang=en] {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
  color: var(--color_primary);
  line-height: 1;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

/* .facility-about-layout .l-ttl [lang=en]::before {
  content: "";
  border-radius: 100vmax;
  background-color: var(--color_secondary);
  width: 8px;
  height: 8px;
  margin-top: 0.2em;
} */

.facility-about-layout .l-ttl .jp {
  font-size: 4.5rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.facility-about-layout .slide-up {
  width: 100%;
}

@media (max-width: 1024px) {
  .facility-about-layout {
    margin-left: 0;
    padding: 0 2rem;
  }

  .facility-about-layout .wrapper {
    grid-template-columns: 1fr;
    gap: 5rem;
    margin-top: 0;
  }

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

  .facility-about-layout .l-desc {
    padding: 0;
  }

  .facility-about-layout .l-ttl .jp {
    font-size: 2.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
}

.facility-greeting-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-right: calc((100% - 16rem - 1400px) / 2);
  position: relative;
}

.facility-greeting-layout .l-img {
  position: relative;
}

.facility-greeting-layout .l-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40%;
  display: block;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  z-index: 1;
}


.facility-greeting-layout .l-img img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1;
}

.facility-greeting-layout .name-wrapper {
  color: #fff;
  line-height: 1;
  position: absolute;
  bottom: 5%;
  left: 5%;
  right: 5%;
  z-index: 5;
}

.facility-greeting-layout .job {
  margin-bottom: 2rem;
}

.facility-greeting-layout .name {
  font-size: 3rem;
  font-weight: 600;
}

.facility-greeting-layout .kana {
  font-family: var(--font_en);
  font-size: 2rem;
  margin-left: 2rem;
}

.facility-greeting-layout .l-desc {
  padding: 0 8rem;
}

.facility-greeting-layout .l-ttl [lang=en] {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
  color: var(--color_primary);
  line-height: 1;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.facility-greeting-layout .l-ttl .jp {
  font-size: 4.5rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.facility-greeting-layout .l-loop-text {
  display: inline-flex;
  color: var(--color_gray02);
  font-family: var(--font_en);
  font-size: 22rem;
  line-height: 1;
  margin-top: -10rem;
  position: absolute;
  z-index: -1;
}

.facility-greeting-layout .l-loop-text .item {
  backface-visibility: hidden;
  padding-left: 0.25em;
}

@media (max-width: 1024px) {
  .facility-greeting-layout {
    grid-template-columns: 1fr;
    gap: 5rem;
    padding: 0 2rem;
  }

  .facility-greeting-layout .l-img img {
    aspect-ratio: 6/7;
  }

  .facility-greeting-layout .name-wrapper {
    color: #fff;
    line-height: 1;
    position: absolute;
    bottom: 5%;
    left: 5%;
    right: 5%;
  }

  .facility-greeting-layout .l-ttl {
    margin-bottom: 3.5rem;
  }

  .facility-greeting-layout .l-ttl [lang=en] {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .facility-greeting-layout .l-ttl .jp {
    font-size: 2.5rem;
    line-height: 1.8;
  }

  .facility-greeting-layout .l-desc {
    padding: 0;
  }

  .facility-greeting-layout .job {
    margin-bottom: 2rem;
  }

  .facility-greeting-layout .name {
    font-size: 2.5rem;
  }

  .facility-greeting-layout .kana {
    display: block;
    font-size: 1.5rem;
    margin: 1rem 0 0;
  }

  .facility-greeting-layout .l-loop-text {
    font-size: 15rem;
    margin-top: 40rem;
  }
}


.box-point {
  background-color: var(--color_gray);
  padding: 3.5rem;
}

.box-point .box-ttl {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .box-point {
    padding: 2.5rem;
  }
}

.box-style01 {
  background-color: var(--color_gray);
  border-radius: var(--radius);
  padding: 5%;
}

.box-style01 .wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem;
}

.box-style01 .box-img {
  width: 40%;
  border-radius: var(--radius);
  overflow: hidden;
}

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

.box-style01 .box-ttl {
  font-size: 2.5rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.box-style02 {
  background-color: var(--color_gray);
  border-radius: var(--radius);
  padding: 5%;
  display: grid;
  grid-template-columns: 25% 1fr;
  align-items: center;
  gap: 5rem;
}

.box-style02 .box-ttl {
  font-size: 2.5rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .box-style02 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3.5rem 2.5rem;
  }

  .box-style02 .box-ttl {
    font-size: 2.2rem;
  }
}

.list-treatment-modal {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .list-treatment-modal {}
}

.treatment-modal-btn {
  border: 1px solid var(--color_border);
  display: grid;
  place-content: center;
  gap: 1.5rem;
  border-radius: 5px;
  padding: 3.5rem 1.5rem;
  text-align: center;
  box-sizing: border-box;
  aspect-ratio: 1/1;
  height: 100%;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}

.treatment-modal-btn.gap5 {}

.treatment-modal-btn::after {
  content: "";
  background-color: var(--color_primary);
  mask-image: url(../images/share/icon_arrow.svg);
  mask-size: 100% 100%;
  width: 17px;
  height: 17px;
  transition: background-color 0.3s;
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 5;
}

.treatment-modal-btn .list-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
}

.treatment-modal-btn .list-img img {
  max-width: 60px;
  max-height: 50px;
  object-fit: contain;
  margin: 0 auto;
  width: fit-content;
  filter: grayscale(1);
  transition: filter 0.3s;
}

.treatment-modal-btn .list-ttl {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 600;
}

@media (any-hover: hover) {
  .treatment-modal-btn:hover {
    background-color: var(--color_primary);
    color: #fff;
  }

  .treatment-modal-btn:hover::after {
    background-color: #fff;
  }

  .treatment-modal-btn:hover .list-img img {
    filter: brightness(0) invert(1);
  }
}

@media (max-width: 1024px) {
  .treatment-modal-btn {
    padding: 1rem;
    gap: 0;
  }

  .treatment-modal-btn .list-img {
    height: 45px;
  }

  .treatment-modal-btn .list-img img {
    max-width: 40px;
    max-height: 40px;
  }

  .treatment-modal-btn .list-ttl {
    font-size: 1.2rem;
  }
}

.list-features {
  border-top: 1px solid var(--color_border);
}

.list-features li {
  border-bottom: 1px solid var(--color_border);
  padding: 5rem 0;
  display: grid;
  grid-template-columns: 14rem 30rem 1fr;
}

.list-features .list-img img {
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
}

.list-features .list-desc {
  padding-left: 8rem;
}

.list-features .list-ttl {
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.list-features .num {
  font-family: var(--font_en);
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--color_primary);
  margin-bottom: 2.5rem;
}

.list-features .num::before {
  content: attr(data-en);
  display: block;
  font-size: 1.4rem;
  color: var(--color_secondary);
  margin-bottom: 0.5rem;
}

.features-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  padding-left: calc((100% - 16rem - 1400px) / 2);
}

.features-layout .l-imgs {
  background-color: var(--color_gray);
  display: grid;
  place-content: center;
  position: sticky;
  top: 0;
  min-height: 100svh;
}

.features-layout .l-img {
  position: absolute;
  inset: 0;
}

.features-layout .l-img img {
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  aspect-ratio: 410/512;
}

.features-layout .l-item {
  border-top: 1px solid var(--color_border);
  min-height: 100svh;
  padding: 6.5rem 0 0;
  margin: 0 8rem;
  position: relative;
}

.features-layout .l-item::before {
  content: "";
  background-color: var(--color_primary);
  width: 15px;
  height: 1px;
  position: absolute;
  top: -1px;
  left: 0;
}

.features-layout .num {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-weight: bold;
  margin-bottom: 2rem;
}

.features-layout .l-ttl {
  font-size: 3.5rem;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

.features-layout .l-desc {
  max-width: 400px;
  line-height: 1.8;
  text-align: justify;
}

.features-layout .l-img-sp {
  display: none;
}

@media (max-width: 1024px) {
  .features-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin: 0;
    padding: 0 2rem;
  }

  .features-layout .l-imgs {
    display: none;
  }

  .features-layout .l-item {
    min-height: 0;
    padding: 3.5rem 0;
    margin: 0;
  }

  .features-layout .l-ttl {
    font-size: 2.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
  }

  .features-layout .l-desc {
    max-width: 400px;
    line-height: 1.8;
    text-align: justify;
  }

  .features-layout .l-img-sp {
    display: block;
    margin-bottom: 2.5rem;
  }

  .features-layout .l-img-sp img {
    object-fit: cover;
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
  }
}

.treatment-detail-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  gap: 1.5rem;
  margin-bottom: 4rem;
  margin-left: -4rem;
}

.treatment-detail-ttl img {
  max-width: 4rem;
  max-height: 4rem;
  object-fit: contain;
  filter: grayscale(1);
}

.treatment-detail-desc {
  background-color: var(--color_gray);
  border: 1px solid var(--color_border);
  border-radius: var(--radius);
  padding: 3.5rem;
  font-size: 1.4rem;
}

.treatment-detail-desc .ttl {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.treatment-detail-box {
  background-color: var(--color_gray);
  border: 1px solid var(--color_border);
  border-radius: var(--radius);
  padding: 3.5rem;
  font-size: 1.4rem;
}

.treatment-detail-box .box-ttl {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
  .treatment-detail-box {
    padding: 2rem;
  }
}

.ttl-line {
  color: var(--color_primary);
  font-size: 1.9rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
  margin-bottom: 2.5rem;
}

.label-check {
  background-color: var(--color_primary);
  color: #fff;
  font-size: 1.3rem;
  font-family: var(--font_en);
  font-weight: bold;
  line-height: 1;
  padding: 0.5rem 1.4rem;
  border-radius: 100vmax;
  width: fit-content;
  margin-bottom: 1rem;
  position: relative;
}

.label-check::after {
  content: "";
  width: 8px;
  height: 5px;
  position: absolute;
  bottom: -4px;
  left: 15px;
  background-color: var(--color_primary);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.overview-layout {
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem;
}

.overview-layout .l-img {
  width: 40%;
}

.overview-layout .l-img img {
  object-fit: cover;
  aspect-ratio: 5/7;
}

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

.overview-layout .dl-overview {
  border-top: 1px solid var(--color_border);
  position: relative;
}

.overview-layout .dl-overview::after {
  content: "";
  background-color: var(--color_primary);
  width: 15px;
  height: 1px;
  position: absolute;
  top: -1px;
}

.overview-layout .dl-overview .item {
  padding: 2rem 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .overview-layout {
    flex-direction: column;
    gap: 2.5rem;
  }

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

  .overview-layout .l-img img {
    aspect-ratio: 16/9;
  }

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

  .overview-layout .dl-overview {
    border-top: 1px solid var(--color_border);
    position: relative;
  }

  .overview-layout .dl-overview::after {
    content: "";
    background-color: var(--color_primary);
    width: 15px;
    height: 1px;
    position: absolute;
    top: -1px;
  }

  .overview-layout .dl-overview .item {
    padding: 2rem 0;
    line-height: 1.5;
  }
}

.list-partner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.list-partner a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--color_border);
  border-radius: 2px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
}

.list-partner a::after {
  content: "";
  background-color: var(--color_secondary);
  mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 12px;
}

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

@media (any-hover: hover) {
  .list-partner a:hover {
    background-color: var(--color_gray);
  }

  .list-partner a:hover span {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

@media (max-width: 1024px) {
  .list-partner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .list-partner a {
    padding: 1rem;
  }
}

.list-treatment {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.list-treatment li {
  background-color: #fff;
  border: 1px solid var(--color_border);
  border-radius: 2px;
  line-height: 1.5;
  padding: 1.5rem;
}

@media (max-width: 1024px) {
  .list-treatment {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .list-treatment li {
    padding: 1rem;
  }
}

.list-points {
  border-top: 1px solid var(--color_border);
  position: relative;
}

.list-points::before {
  content: "";
  background-color: var(--color_primary);
  width: 15px;
  height: 1px;
  position: absolute;
  top: -1px;
  left: 0;
}

.list-points>li {
  border-bottom: 1px solid var(--color_border);
  padding: 5rem 0;
  display: flex;
  gap: 8rem;
  position: relative;
}

.list-points>li::after {
  content: "";
  background-color: var(--color_primary);
  width: 15px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.list-points .num {
  color: var(--color_secondary);
  font-family: var(--font_en);
  margin-top: 0.8rem;
}

.list-points .list-content {
  display: flex;
  flex-direction: row-reverse;
  gap: 8rem;
}

.list-points .list-content .list-img {
  width: 40%;
}

.list-points .list-content .list-img img {
  border-radius: 4px;
  aspect-ratio: 8/5;
  object-fit: cover;
}

.list-points .list-content .list-desc {
  flex: 1;
}

.list-points .list-ttl {
  font-size: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 1024px) {
  .list-points>li {
    padding: 2.5rem 0;
    flex-direction: column;
    gap: 0;
  }

  .list-points .num {
    order: 1;
  }

  .list-points .list-content {
    display: contents;
  }

  .list-points .list-content .list-img {
    width: 100%;
    order: 3;
    margin-bottom: 2.5rem;
  }

  .list-points .list-content .list-desc {
    display: contents;
  }

  .list-points .list-ttl {
    order: 2;
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .list-points .l-read {
    order: 4;
  }
}

.contact-tel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5rem;
  margin-bottom: 5rem;
}

.contact-tel .col:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.contact-tel .col:nth-of-type(2)::before {
  content: "";
  width: 0.1rem;
  height: 100%;
  background-image: linear-gradient(to bottom, rgb(112, 112, 112), rgb(112, 112, 112) 0.3rem, transparent 0.3rem, transparent 0.6rem);
  background-size: 0.1rem 0.6rem;
  background-repeat: repeat-y;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.contact-tel .ttl {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 2rem;
}

.contact-tel .tel {
  display: flex;
  align-items: end;
  gap: 1rem;
  font-family: var(--font_en);
  font-size: 3.5rem;
  line-height: 1;
}

.contact-tel .tel .small {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

@media (max-width: 1024px) {
  .contact-tel {
    grid-template-columns: 1fr;
    grid-gap: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .contact-tel .col:nth-of-type(2) {
    background-color: var(--color_gray);
    padding: 2.5rem 1.5rem;
  }

  .contact-tel .col:nth-of-type(2)::before {
    display: none;
  }

  .contact-tel .ttl {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 2rem;
  }
}

.guide-bar {
  display: block;
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: var(--color_primary);
  border-radius: 5px 0 0 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s;
  transform: translateY(calc(100% - 6rem));
  width: 350px;
  z-index: 10;
}

.guide-bar.is-open {
  transform: translateY(0);
}

.guide-bar.is-open .guide-bar-btn::after {
  rotate: 45deg;
  transform-origin: top;
}

.guide-bar-btn {
  display: block;
  gap: 1rem;
  color: #fff;
  line-height: 1.5;
  position: relative;
  height: 6rem;
  padding: 0 5rem;
  box-sizing: border-box;
  width: 100%;
}

.guide-bar-btn span {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.guide-bar-btn::before {
  content: "";
  display: inline-block;
  background-color: #fff;
  mask: url(../images/share/icon_info.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.guide-bar-btn::after {
  content: "";
  display: inline-block;
  background-color: #fff;
  mask: url(../images/share/icon_plus.svg) no-repeat center/contain;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: .3s;
}

.guide-bar-contents {
  background-color: var(--color_gray);
  padding: 2rem 3rem 3rem;
}

.guide-bar-contents .time {
  display: grid;
  gap: 0.5rem;
  font-size: 1.4rem;
  line-height: 1.5;
}

.guide-bar-contents .time .item {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  gap: 25px;
}

.guide-bar-contents .time dt {
  text-align-last: justify;
}

.guide-bar-links {
  display: grid;
}

.guide-bar-links li {
  border-bottom: 1px solid var(--color_border);
  padding: 1rem 0;
}

.guide-bar-links a {
  display: block;
  line-height: 1.8;
}

@media (any-hover: hover) {
  .guide-bar-links a:hover {
    color: var(--color_primary);
  }
}

.guide-bar-links .text {
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.guide-bar-links .tel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  line-height: 1.5;
}

.guide-bar-links .tel img {
  margin-top: 4px;
}

.guide-bar-links .out {
  display: flex;
  position: relative;
  align-items: center;
  gap: 10px;
}

.guide-bar-links .out::after {
  content: "";
  display: inline-block;
  background-color: #333;
  mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 10px;
  height: 10px;
}

@media (max-width: 1024px) {
  .guide-bar {
    border-radius: 5px 5px 0 0;
    width: 100%;
  }
}

.thanks-layout {
  background-color: var(--color_gray);
  padding: 5rem;
  max-width: 1024px;
  margin: 15rem auto;
  text-align: center;
}

.thanks-layout .l-ttl {
  line-height: 1.2;
  margin-bottom: 5rem;
}

.thanks-layout .l-ttl [lang=en] {
  color: var(--color_primary);
  font-size: 7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.thanks-layout .l-ttl .jp {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.dl-access {
  border-top: 1px solid var(--color_border);
  position: relative;
}

.dl-access::after {
  content: "";
  background-color: var(--color_primary);
  width: 15px;
  height: 1px;
  position: absolute;
  top: -1px;
}

.dl-access .item {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 2.5rem;
  position: relative;
  padding: 2.5rem 0;
}

.dl-access .item::after {
  content: "";
  background-color: var(--color_primary);
  width: 15px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
}

@media (max-width: 1024px) {
  .dl-access .item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2.5rem 0;
    line-height: 1.8;
  }

  .dl-access dt {
    font-weight: bold;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background-color: var(--color_primary);
  color: #fff;
  padding: 12rem 0 10rem;
  margin-top: auto;
  position: relative;
}

.f-contents {
  display: flex;
  gap: 5%;
  justify-content: space-between;
  margin-bottom: 9rem;
}

.f-logo {
  margin-bottom: 5rem;
}

.site-map {
  display: flex;
  gap: 10rem;
}

.site-map .ttl {
  color: #7A93B7;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.f-links a {
  display: inline-block;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s var(--easing);
}

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

.f-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #7A93B7;
  font-size: 1.2rem;
}

.f-links-bottom {
  display: flex;
  font-size: 1.4rem;
  line-height: 1.5;
  gap: 2.5rem;
}

.f-links-bottom a {
  display: inline-block;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s var(--easing);
}

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

.pagetop {
  position: absolute;
  bottom: 150px;
  right: 50px;
  transition: transform 0.5s;
  z-index: 5;
}

.pagetop:hover {
  transform: translateY(-10px);
}

@media (max-width: 1024px) {
  .footer {
    padding: 5rem 0;
  }

  .f-contents {
    flex-direction: column-reverse;
    gap: 8rem;
    margin-bottom: 5rem;
  }

  .f-logo {
    max-width: 150px;
    margin: 0 auto;
    margin-bottom: 2.5rem;
  }

  .site-map {
    flex-direction: column;
    gap: 2.5rem;
  }

  .site-map .ttl {
    margin-bottom: 1.5rem;
  }

  .f-links {
    font-size: 1.4rem;
    gap: 1rem;
  }

  .f-bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2.5rem;
  }

  .f-utility {
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .pagetop {
    bottom: 60px;
    right: 20px;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  margin-bottom: 3rem;
}

.category-select-area {
  border: 1px solid var(--color_black);
  border-radius: var(--radius);
  margin-bottom: 8rem;
}

.category-select-area .item {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 4rem;
}

.category-select-area .item+.item {
  border-top: 1px solid var(--color_black);
}

.category-select-area .ttl {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .category-select-area {
    border-radius: 10px;
    margin-bottom: 5rem;
  }

  .category-select-area .item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem;
  }
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-links a {
  display: block;
  border: 1px solid var(--color_black);
  border-radius: 100vmax;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 2px 15px;
  transition: 0.3s;
}

.category-links a:hover {
  background-color: var(--color_primary);
  color: #fff;
}

.list-tax {
  font-weight: 500;
  font-size: 1.3rem;
  margin-top: auto;
}

.list-tax .item {
  display: grid;
  grid-template-columns: 50px 1fr;
  line-height: 1.5;
}

.list-tax dt::after {
  content: ":";
  margin-left: 5px;
}

/*お知らせ*/
.list-under-topics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 25px;
}

.list-under-topics article {
  height: 100%;
}

.list-under-topics a {
  display: block;
  height: 100%;
  border: 1px solid var(--color_border);
  padding: 2.5rem 2.5rem 6rem;
  position: relative;
}

.list-under-topics a::before,
.list-under-topics a::after {
  content: "";
  background: url(../images/share/icon_arrow.svg);
  width: 17px;
  height: 17px;
  position: absolute;
  bottom: 18px;
  right: 18px;
  transition: 0.3s var(--easing);
}

@media (any-hover: hover) {
  .list-under-topics a:hover::before {
    opacity: 0;
    transform: translate(45%, -45%);
  }

  .list-under-topics a:hover::after {
    opacity: 1;
    transform: translate(0, 0);
  }

  .list-under-topics a:hover .list-ttl span {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.list-under-topics a::after {
  opacity: 0;
  transform: translate(-45%, 45%);
}

.list-under-topics a .list-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.list-under-topics a time {
  font-family: var(--font_en);
  font-size: 1.4rem;
  color: var(--color_gray04);
  letter-spacing: 0;
}

.list-under-topics a .category {
  background-color: var(--color_secondary);
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  line-height: 1;
  border-radius: 100vmax;
}

.list-under-topics a .category02 {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--color_primary);
  font-size: 1.2rem;
  line-height: 1.1;
}

.list-under-topics a .category02::before {
  content: "";
  background-color: #ACACAC;
  width: 6px;
  height: 1px;
}

.list-under-topics a .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1.6rem;
  margin-bottom: 10px;
  word-break: break-all;
}

.list-under-topics a .list-ttl span {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s var(--easing);
}

@media (max-width: 1024px) {
  .list-under-topics {
    grid-template-columns: 1fr;
    grid-gap: 1.5rem;
  }

  .list-under-topics a {
    padding: 1.5rem 1.5rem 3rem;
  }

  .list-under-topics a .list-info {
    margin-bottom: 1rem;
  }

  .list-under-topics a time {
    font-family: var(--font_en);
    font-size: 1.4rem;
    color: var(--color_gray04);
    letter-spacing: 0;
  }
}

/*ブログ*/
.list-under-blog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2.5rem;
}

.list-under-blog a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.list-under-blog .list-img {
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 2rem;
}

.list-under-blog .list-img img {
  object-fit: cover;
  aspect-ratio: 377/281;
  transition: transform 0.5s;
  width: 100%;
}

.list-under-blog .list-desc {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.list-under-blog time {
  text-align: right;
  display: block;
  font-family: var(--font_en);
  font-size: 1.4rem;
  color: var(--color_gray04);
  letter-spacing: 0;
  margin-bottom: 1rem;
}

.list-under-blog .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1.7rem;
  margin-bottom: 1rem;
  word-break: break-all;
}

.list-under-blog .list-ttl span {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s var(--easing);
}

.list-under-blog .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.list-under-blog .category {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--color_primary);
  font-size: 1.2rem;
  line-height: 1.1;
}

.list-under-blog .category::before {
  content: "";
  background-color: #ACACAC;
  width: 6px;
  height: 1px;
}

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

  .list-under-blog a:hover .list-ttl span {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

@media (max-width: 1024px) {
  .list-under-blog {
    grid-template-columns: 1fr;
    grid-gap: 3.5rem;
  }
}

/*詳細ページ*/
.single-post-container {
  max-width: 1024px;
  padding-top: 10rem;
}

.single-post-layout {
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 5rem;
  margin-bottom: 5rem;
}

.single-post-layout .l-ttl {
  font-size: 3rem;
  margin-bottom: 5rem;
}

.single-post-layout .post-data-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.single-post-layout time {
  text-align: right;
  display: block;
  font-family: var(--font_en);
  font-size: 1.4rem;
  color: var(--color_gray04);
  letter-spacing: 0;
}

.single-post-layout .category {
  border: 1px solid var(--color_primary);
  color: var(--color_primary);
  border-radius: 100vmax;
  font-size: 1.2rem;
  text-align: center;
  min-width: 100px;
}

.single-post-layout .place {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 1rem;
  margin-bottom: 5rem;
}

.single-post-layout .place::before {
  content: "";
  border-radius: 100vmax;
  background-color: var(--color_secondary);
  width: 6px;
  height: 6px;
  margin-top: 0.2rem;
}

.single-post-layout:has(.place) .l-ttl {
  margin-bottom: 1.5rem;
}

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

.postdata {
  overflow-wrap: break-word;
}

.postdata p,
.postdata ul,
.postdata ol {
  margin-bottom: 15px;
}

.postdata a {
  text-decoration: underline;
}

.postdata a:hover {
  text-decoration: none;
}

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  list-style: inside disc;
}

.postdata ul li>ul {
  margin: 0 0 0 15px;
}

.postdata ol li {
  list-style: inside decimal;
}

.postdata ol li>ol {
  margin: 0 0 0 15px;
}

/*ブロック*/
h2[class=wp-block-heading] {
  border-top: 2px solid var(--color_primary);
  border-bottom: 1px solid var(--color_border);
  font-size: 2.2rem;
  padding: 15px 0;
  margin-top: 35px;
  margin-bottom: 25px;
}

h3[class=wp-block-heading] {
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  margin-bottom: 15px;
}

h3[class=wp-block-heading]::before {
  content: "";
  display: block;
  border-radius: 2px;
  background-color: var(--color_primary);
  width: 4px;
  height: 1.2em;
  margin-top: 2px;
}

h4[class=wp-block-heading] {
  font-size: 2rem;
  margin-top: 25px;
  margin-bottom: 15px;
}

.postdata .wp-block-buttons {
  display: grid;
  gap: 1rem;
}

.postdata .wp-block-button__link {
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 2px;
  color: #fff;
  font-size: 15px;
  padding: 5px 35px;
  min-width: 200px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s;
}

.postdata .wp-block-button__link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  transition: border-color 0.3s;
}

.wp-block-button__link:hover {
  opacity: 1;
  background-color: #fff;
  color: var(--color_primary);
}

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

.post-number span,
.post-number a {
  display: inline-block;
  background-color: var(--color_gray);
  font-size: 13px;
  font-family: var(--font_en);
  text-align: center;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  transition: 0.3s;
  padding: 0 20px;
  position: relative;
}

.post-number a:hover {
  background: var(--color_primary);
  color: #fff;
}

.post-number .current {
  background: var(--color_primary);
  color: #fff;
}

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

.post-number .prev:hover::before,
.post-number .next:hover::before {
  background-color: #fff;
}

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

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

.post-number-single {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
}

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

.post-number-single .all {
  background: var(--color_primary);
  border: 2px solid var(--color_primary);
  color: #fff;
  font-size: 13px;
  font-family: var(--font_en);
  line-height: 28px;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
  transition: background-color 0.3s, color 0.3s;
}

.post-number-single .all:hover {
  background: #fff;
  color: var(--color_primary);
}

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

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

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

.post-number-single .prev:hover::before,
.post-number-single .next:hover::before {
  background-color: #fff;
}

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

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

/*------------
sidebar-layout
--------------*/
.sidebar-layout {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
}

.main-contents {
  padding: 0 70px;
  width: calc(100% - 300px);
  max-width: 1200px;
  margin: 0 auto;
}

.side-contents {
  padding: 0 40px;
  width: 300px;
}

.side-contents-wrapper {
  position: sticky;
  top: 110px;
}

.side-area-item-ttl {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.side-area-item+.side-area-item {
  margin-top: 30px;
}

.side-area-links {
  display: grid;
  grid-gap: 5px;
}

.side-area-links li {
  padding-left: 20px;
  position: relative;
}

.side-area-links li::before {
  content: "";
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 9px;
  left: 0;
}

.side-area-links a {
  display: inline-block;
}

.side-area-links a:hover {
  text-decoration: underline;
}

.side-area-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  text-overflow: "";
  background: #fff url(../images/share/icon_select_arrow.svg) no-repeat right 10px center/20px auto;
  border-radius: 0;
  border: none;
  border: 1px solid #e8ecf0;
  color: #333;
  vertical-align: middle;
  padding: 10px 20px 10px 15px;
  margin: 0;
  width: 100%;
  height: 50px;
}

@media (max-width: 1024px) {
  .sidebar-layout {
    flex-direction: column-reverse;
    padding: 0 5vw;
    width: 100%;
  }

  .sidebar-layout.sp-reverse {
    flex-direction: column;
  }

  .sidebar-layout.sp-reverse .side-contents {
    margin: 0 0 50px;
  }

  .main-contents {
    width: 100%;
    padding: 0;
  }

  .side-contents {
    width: 100%;
    padding: 0;
    margin-top: 50px;
  }

  .side-contents-wrapper {
    position: sticky;
    top: 20px;
  }

  .side-area-item+.side-area-item {
    margin-top: 30px;
  }
}

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

.sp-only {
  display: none;
}

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

.fade {
  transition: opacity 0.5s;
}

.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 1.1rem;
}

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

.color-red {
  color: var(--color_secondary);
}

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

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

.notice {
  font-size: 1.3rem;
  text-indent: -1.8rem;
  padding-left: 1.8rem;
}

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

.mbXS {
  margin-bottom: 0.5rem !important;
}

.mbS {
  margin-bottom: 2rem !important;
}

.mbM {
  margin-bottom: 3rem !important;
}

.mbL {
  margin-bottom: 6rem !important;
}

.mbXL {
  margin-bottom: 9rem !important;
}

.mt0 {
  margin-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

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

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

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

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

  .sp-only {
    display: block;
  }

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

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

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

  .mbL {
    margin-bottom: 3rem !important;
  }

  .mbXL {
    margin-bottom: 5rem !important;
  }

  .col2,
  .col3,
  .col4 {
    grid-template-columns: 1fr;
  }

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

/*ボタン*/
.btn-out {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color_primary);
  border-radius: 100vmax;
  color: var(--color_primary);
  letter-spacing: 0;
  min-height: 50px;
  min-width: 220px;
  padding: 0.5rem 2.5rem;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.btn-out::before {
  content: "";
  border-radius: 100vmax;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color_primary);
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.35s ease;
  z-index: -1;
}

.btn-out::after {
  content: "";
  background: var(--color_primary);
  mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 13px;
  height: 13px;
  margin-top: 3px;
  transition: background-color 0.35s ease;
}

.btn-out.white {
  border-color: #fff;
  color: #fff;
}

.btn-out.white::before {
  background-color: #fff;
}

.btn-out.white::after {
  background-color: #fff;
}

.btn-out:hover {
  color: #fff;
}

.btn-out:hover::before {
  transform: scale(1, 1);
  transform-origin: left top;
}

.btn-out:hover::after {
  background-color: #fff;
}

.btn-out:hover.white {
  color: var(--color_black);
}

.btn-out:hover.white::after {
  background-color: var(--color_black);
}

.btn-more {
  border-radius: 100vmax;
  border: 1px solid var(--color_black);
  display: inline-flex;
  align-items: center;
  line-height: 1;
  min-height: 55px;
  min-width: 250px;
  padding: 1rem 6rem 1rem 2.5rem;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.btn-more::before {
  content: "";
  background-color: var(--color_primary);
  mask-image: url(../images/share/icon_arrow.svg);
  mask-size: 100% 100%;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translate(0, -50%);
  transition: background-color 0.45s ease;
  z-index: 5;
}

.btn-more::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color_primary);
  border-radius: 100vmax;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.35s ease;
  z-index: -1;
}

.btn-more.red {
  border-color: var(--color_secondary);
  color: var(--color_secondary);
}

.btn-more.red::before,
.btn-more.red::after {
  background-color: var(--color_secondary);
}

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

  .btn-more:hover::before {
    background-color: #fff;
  }

  .btn-more:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}

.btn-icon {
  border-radius: 100vmax;
  border: 1px solid var(--color_black);
  display: inline-flex;
  gap: 2.5rem;
  align-items: center;
  line-height: 1;
  min-height: 70px;
  min-width: 400px;
  padding: 1rem 6rem 1rem 2.5rem;
  font-size: 1.8rem;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.btn-icon::before {
  content: "";
  background-color: var(--color_primary);
  mask-image: url(../images/share/icon_arrow.svg);
  mask-size: 100% 100%;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translate(0, -50%);
  transition: background-color 0.45s ease;
  z-index: 5;
}

.btn-icon::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color_primary);
  border-radius: 100vmax;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.35s ease;
  z-index: -1;
}

.btn-icon.white {
  border-color: #fff;
  background-color: #fff;
  color: var(--color_black);
}

.btn-icon.black {
  border-color: var(--color_black);
  background-color: var(--color_black);
  color: #fff;
}

.btn-icon.black::before {
  content: "";
  background-color: #fff;
}

.btn-icon.black::after {
  content: "";
  background-color: var(--color_secondary);
}

@media (any-hover: hover) {
  .btn-icon:hover {
    color: #fff;
  }

  .btn-icon:hover::before {
    background-color: #fff;
  }

  .btn-icon:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }

  .btn-icon:hover.white img {
    filter: brightness(0) invert(1);
  }
}

.btn-map {
  border-radius: 100vmax;
  border: 1px solid var(--color_black);
  display: inline-flex;
  gap: 2.5rem;
  align-items: center;
  line-height: 1;
  min-height: 40px;
  padding: 1rem 5rem 1rem 2.5rem;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.btn-map::before {
  content: "";
  background-color: var(--color_primary);
  mask-image: url(../images/share/icon_arrow.svg);
  mask-size: 100% 100%;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translate(0, -50%);
  transition: background-color 0.45s ease;
  z-index: 5;
}

.btn-map::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color_primary);
  border-radius: 100vmax;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.35s ease;
  z-index: -1;
}

.btn-map.white {
  border-color: #fff;
  background-color: #fff;
  color: var(--color_black);
}

.btn-map.black {
  border-color: var(--color_black);
  background-color: var(--color_black);
  color: #fff;
}

.btn-map.black::before {
  content: "";
  background-color: #fff;
}

@media (any-hover: hover) {
  .btn-map:hover {
    color: #fff;
  }

  .btn-map:hover::before {
    background-color: #fff;
  }

  .btn-map:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }

  .btn-map:hover.white img {
    filter: brightness(0) invert(1);
  }
}

.btn-download {
  border: 1px solid var(--color_border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 5rem 2rem 5.5rem;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}

.btn-download::before {
  content: "";
  background-color: var(--color_black);
  mask: url(../images/share/icon_document.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translate(0, -50%);
}

.btn-download::after {
  content: "";
  background-color: var(--color_black);
  mask: url(../images/share/icon_download.svg) no-repeat center/contain;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%);
  transition: background-color 0.3s, color 0.3s;
}

.btn-download span {
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.5s ease;
  line-height: 1;
}

@media (any-hover: hover) {
  .btn-download:hover {
    background-color: var(--color_gray);
  }

  .btn-download:hover span {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.btn-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color_primary);
  border-radius: 100vmax;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--color_primary);
  letter-spacing: 0;
  min-height: 50px;
  padding: 0 2.5rem;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.btn-tel span {
  display: inline-block;
  background-color: var(--color_primary);
  color: #fff;
  padding: 0.2rem 1rem 0.4rem;
  margin-top: 0.3rem;
  font-size: 1.1rem;
  border-radius: 100vmax;
}

.facility-modal-btn {
  background-color: var(--color_gray);
  border: 1px solid var(--color_border);
  display: grid;
  align-items: center;
  padding: 2.5rem 6rem 2.5rem 2.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  transition: background-color 0.3s;
}

.facility-modal-btn::after {
  content: "";
  background-color: var(--color_primary);
  mask-image: url(../images/share/icon_arrow.svg);
  mask-size: 100% 100%;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translate(0, -50%);
  transition: background-color 0.45s ease;
  z-index: 5;
}

.facility-modal-btn .text01 {
  font-size: 1.5rem;
}

.facility-modal-btn .text02 {
  font-weight: bold;
  font-size: 2.5rem;
}

@media (any-hover: hover) {
  .facility-modal-btn:hover {
    background-color: #e7e7e7;
  }
}

@media (max-width: 1024px) {
  .facility-modal-btn {
    padding: 1.5rem 5rem 1.5rem 7rem;
  }

  .facility-modal-btn::after {
    width: 15px;
    height: 15px;
    right: 1.5rem;
  }

  .facility-modal-btn .text01 {
    font-size: 1.2rem;
  }

  .facility-modal-btn .text02 {
    font-size: 2.0rem;
  }
}

.facility-detail-ttl {
  display: grid;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 25px;
}

.facility-detail-ttl .text01 {
  font-size: 1.5rem;
}

.facility-detail-ttl .text02 {
  font-weight: bold;
  font-size: 2.5rem;
}

.btn-instagram {
  background-color: var(--color_gray);
  border: 1px solid var(--color_border);
  display: grid;
  align-items: center;
  padding: 2.5rem 6rem 2.5rem 10rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  transition: background-color 0.3s;
}

.btn-instagram::before {
  content: "";
  background: url(../images/share/icon_instagram.svg) no-repeat center/contain;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 3.0rem;
  transform: translate(0, -50%);
}

.btn-instagram::after {
  content: "";
  background-color: var(--color_primary);
  mask-image: url(../images/share/icon_arrow.svg);
  mask-size: 100% 100%;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translate(0, -50%);
  transition: background-color 0.45s ease;
  z-index: 5;
}

.btn-instagram .text01 {
  font-size: 1.5rem;
}

.btn-instagram .text02 {
  font-weight: bold;
  font-size: 2.5rem;
}

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

@media (max-width: 1024px) {
  .btn-instagram {
    padding: 1.5rem 5rem 1.5rem 7rem;
  }

  .btn-instagram::before {
    width: 40px;
    height: 40px;
    left: 1.5rem;
  }

  .btn-instagram::after {
    width: 15px;
    height: 15px;
    right: 1.5rem;
  }

  .btn-instagram .text01 {
    font-size: 1.2rem;
  }

  .btn-instagram .text02 {
    font-size: 2.0rem;
  }
}


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

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

@media (max-width: 1024px) {
  .btn-more {
    padding: 1rem 4.5rem 1rem 2rem;
    font-size: 1.4rem;
    min-height: 50px;
    min-width: 180px;
  }

  .btn-more::before {
    right: 1rem;
  }

  .btn-icon {
    gap: 1.5rem;
    min-height: 50px;
    min-width: 0;
    font-size: 1.5rem;
  }

  .btn-icon img {
    max-width: 25px;
  }

  .btn-out {
    padding: 0.5rem 2.5rem;
    min-height: 40px;
    min-width: 180px;
  }
}

.time-table {
  background: #fff;
  text-align: center;
  overflow: hidden;
  margin-bottom: 5px;
}

.time-table-head {
  background-color: var(--color_primary);
  color: #fff;
  border-left: 1px solid var(--color_primary);
  border-right: 1px solid var(--color_primary);
}

.time-table-head .item {
  padding: 15px 0;
}

.time-table-head .item+.item {
  border-left: 1px solid #fff;
}

.time-table-body {
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.time-table-body .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  line-height: 1.2;
  min-height: 70px;
}

.time-table-body .item+.item {
  border-left: 1px solid #ccc;
}

.time-table-body .bar {
  display: inline-block;
  background-color: #ccc;
  width: 17px;
  height: 1px;
}

.time-table-body .time {
  background-color: #EFEFEF;
}

.time-table-head,
.time-table-body {
  display: grid;
  grid-template-columns: 150px repeat(8, 1fr);
}

@media (max-width: 1024px) {

  .time-table-head,
  .time-table-body {
    font-size: 1.4rem;
    grid-template-columns: 50px repeat(8, 1fr);
  }

  .time-table-head .item,
  .time-table-body .item {
    padding: 0.5rem 0;
  }

  .time-table-body .item {
    min-height: 50px;
    font-size: 1.2rem;
  }
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

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

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

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

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

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

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

.splide__progress__bar {
  width: 0;
}

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

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

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

.splide__slide img {
  vertical-align: bottom;
}

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

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

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

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

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

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

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

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

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

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

.splide--rtl {
  direction: rtl;
}

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

.splide__arrows {
  background-color: var(--color_gray);
  border-radius: 2px;
  padding: 7px;
  display: flex;
  gap: 10px;
}

.splide__arrow {
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  place-items: center;
  height: 35px;
  width: 55px;
  position: relative;
  z-index: 0;
}

.splide__arrow--prev img {
  margin-right: 0.5rem;
}

.splide__arrow--prev::after {
  right: -5px;
}

.splide__arrow--next img {
  margin-left: 0.5rem;
}

.splide__arrow--next::after {
  left: -5px;
}

.splide__arrow--prev::before,
.splide__arrow--next::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #e7e7e7;
  border-radius: 2px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  transform: scale(0.94);
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  background-color: #dfdfdf;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
}

@media (any-hover: hover) {

  .splide__arrow--prev:hover::before,
  .splide__arrow--next:hover::before {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

.splide__toggle {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
  height: 35px;
  width: 65px;
  position: relative;
  z-index: 0;
}

.splide__toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #e7e7e7;
  border-radius: 2px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  transform: scale(0.94);
}

@media (any-hover: hover) {
  .splide__toggle:hover::before {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

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

.splide__pagination__page {
  background: #fff;
  border: 1px solid var(--color_primary);
  border-radius: 2px;
  display: inline-block;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  height: 10px;
  width: 10px;
}

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

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

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

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

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

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

.splide__slide:focus {
  outline: 0;
}

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

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

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

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

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

.splide__toggle {
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*------------
modal
--------------*/
body.is-fixed {
  overflow: clip;
}

.modal-trigger {
  color: #333;
}

.modal-detail-area {
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-property: opacity, visibility;
  transition-duration: 0.6s;
  transition-timing-function: ease;
  overflow: hidden;
  backdrop-filter: blur(15px);
  will-change: opacity, backdrop-filter;
  z-index: 1000;
}

.modal-detail-area[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-duration: 0.3s;
}

.modal-detail-area[aria-hidden=false] .modal-detail-contaier {
  transform: translateX(0%);
}

.modal-detail-contaier {
  display: grid;
  grid-template-columns: 60px 1fr;
  background-color: #fff;
  margin-left: auto;
  max-width: 700px;
  height: 100vh;
  position: relative;
  transition: transform 0.5s ease-in-out;
  transform: translateX(100%);
  z-index: 5;
}

.modal-detail-inner {
  position: relative;
}

.modal-detail-item {
  opacity: 0;
  background-color: #fff;
  padding: 50px 10%;
  transition: opacity 0.5s;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.modal-detail-item.is-visible {
  opacity: 1;
  z-index: 5;
}

.modal-detail-item::-webkit-scrollbar {
  display: none;
}

.modal-detail-btns {
  background-color: var(--color_primary);
  border-right: 1px solid var(--color_border02);
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 10px;
  padding: 15px 0 30px;
}

.modal-detail-btns hr {
  border-top: 1px solid #d0d0d0;
  border-width: 1px 0 0;
  margin: 15px 0;
  width: 30px;
}

.modal-detail-btns button {
  border: 1px solid #fff;
  border-radius: 100vmax;
  color: #fff;
  padding: 10px 0;
  transition: background-color 0.3s;
  height: 35px;
  width: 35px;
  position: relative;
  box-sizing: border-box;
}

.modal-detail-btns button::before {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 12px;
  width: 12px;
}

.modal-detail-btns button.modal-detail-prev::before {
  mask: url(../images/share/modal_prev.svg) no-repeat center/contain;
}

.modal-detail-btns button.modal-detail-next::before {
  mask: url(../images/share/modal_next.svg) no-repeat center/contain;
}

.modal-detail-btns button.modal-detail-close {
  border-radius: 2px;
}

.modal-detail-btns button.modal-detail-close::before {
  mask: url(../images/share/modal_close.svg) no-repeat center/contain;
}

@media (any-hover: hover) {
  .modal-detail-btns button:hover {
    background-color: #fff;
  }

  .modal-detail-btns button:hover::before {
    background-color: var(--color_primary);
  }
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  cursor: pointer;
  z-index: 1;
}

.modal-detail-ttl {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 3rem;
}

.modal-detail-ttl .small {
  font-size: 1.5rem;
}

@media (max-width: 1024px) {
  .modal-detail-contaier {
    grid-template-columns: 50px 1fr;
    max-width: 90vw;
    height: 100dvh;
  }

  .modal-detail-item {
    padding: 50px 25px;
  }

  .modal-detail-btns {
    grid-gap: 10px;
  }

  .modal-detail-btns hr {
    width: 30px;
    margin: 10px 0 12px;
  }

  .modal-detail-btns button {
    padding: 10px 0;
    height: 35px;
    width: 35px;
  }

  .modal-detail-ttl {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
@keyframes bgSlideIn {
  0% {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes bgSlideOut {
  0% {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(50px);
}

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

@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  position: relative;
  width: fit-content;
}

.slide-up::before {
  content: "";
  background-color: var(--color_primary);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(100% 0% 0%);
  transition: clip-path 1.2s cubic-bezier(0.54, 0.04, 0, 1.01);
  z-index: -1;
}

.slide-up img {
  clip-path: inset(100% 0% 0%);
  transition: clip-path 1.2s cubic-bezier(0.54, 0.04, 0, 1.01);
  transition-delay: 0.8s;
}

.slide-up.is-show::before,
.slide-up.is-show img {
  clip-path: inset(0%);
}

.slide-up.white::before {
  background-color: #fff;
}

@media (prefers-reduced-motion: reduce) {

  .lide-up::before,
  .lide-up img {
    clip-path: inset(0%);
  }
}

/*------------
ループテキスト
--------------*/
.loop-items {
  overflow: hidden;
  display: flex;
  width: 100%;
}

.loop-item {
  flex-shrink: 0;
  white-space: nowrap;
  line-height: 1;
  text-transform: uppercase;
  text-rendering: optimizeSpeed;
  padding-inline: 0.25em;
}

.loop-items:not(.no-tick) .loop-item:nth-child(odd) {
  animation: MoveLeft var(--tick-duration, 18s) var(--tick-delay, -9s) infinite linear;
  animation-fill-mode: both;
}

.loop-items:not(.no-tick) .loop-item:nth-child(even) {
  animation: MoveLeft2 var(--tick-duration, 18s) infinite linear;
  animation-fill-mode: both;
}

@media (prefers-reduced-motion: reduce) {
  .loop-items:not(.no-tick) .loop-item:nth-child(odd) {
    animation: none;
  }

  .loop-items:not(.no-tick) .loop-item:nth-child(even) {
    animation: none;
  }
}

@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}

@keyframes MoveRight {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes MoveRight2 {
  from {
    transform: translateX(-200%);
  }

  to {
    transform: translateX(0);
  }
}

/*------------
ローディング
--------------*/
.loader {
  display: flex;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  transition: visibility 0.2s ease 1.2s;
  z-index: 9999;
}

.loader-bg {
  background: #fff;
  background-color: var(--color_primary);
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0.7s;
}

.loader-wrapper {
  transition: 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
  position: relative;
  text-align: center;
  display: grid;
  gap: 25px;
}

.loading-txt {
  font-family: var(--font_en);
  font-size: 0.938rem;
  margin-bottom: 0.5em;
}

.loading-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5px;
  width: 100px;
  border-radius: 2px;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  z-index: 1;
  margin: 0 auto;
}

.loading-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #f5f5f5;
  opacity: 0.1;
  transition: background-color 0.3s ease;
}

.loading-bar::after {
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 2px;
  animation: loading 1.4s ease-in-out infinite;
  transform: translateX(-100%);
  background-color: var(--color_primary);
  background-color: #fff;
  transition: background-color 0.3s ease;
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.loader.is-action {
  visibility: hidden;
}

.loader.is-action .loader-bg {
  transform: translateY(-100%) translateZ(0);
}

.loader.is-action .loader-wrapper {
  transform: translateY(-130%) translateZ(0);
  opacity: 0;
}

/*------------
Hero
--------------*/
.hero-catch {
  transition: opacity 1s, transform 1s;
  opacity: 0;
  transform: translateY(40px);
  transition-delay: 0.1s;
}

.hero-link {
  transition: opacity 1s, transform 1s;
  transition-delay: 0.2s;
  opacity: 0;
  transform: translateY(40px);
}

.hero .splide::before {
  content: "";
  background-color: var(--color_primary);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  clip-path: inset(100% 0% 0%);
  transition: clip-path 1.2s cubic-bezier(0.54, 0.04, 0, 1.01);
  transition-delay: 0.5s;
  z-index: -1;
}

.hero .splide img {
  clip-path: inset(100% 0% 0%);
  transition: clip-path 1.2s cubic-bezier(0.54, 0.04, 0, 1.01);
  transition-delay: 1.5s;
}

.hero.is-show .hero-catch,
.hero.is-show .hero-link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero.is-show .splide::before,
.hero.is-show .splide img {
  clip-path: inset(0%);
}

.hero.is-loaded .splide::before {
  display: none;
}

@media (prefers-reduced-motion: reduce) {

  .hero .hero-catch,
  .hero .hero-link {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .hero .splide::before,
  .hero .splide img {
    clip-path: inset(0%);
  }
}

/*------------
ページタイトル
--------------*/
.page-ttl [lang=en],
.page-ttl .jp {
  transition: opacity 1s, transform 1s;
  opacity: 0;
  transform: translateY(40px);
}

.page-ttl [lang=en] {
  transition-delay: 0.1s;
}

.page-ttl .jp {
  transition-delay: 0.2s;
}

.page-kv .page-toc-list,
.page-kv .page-text {
  transition: opacity 1s, transform 1s;
  opacity: 0;
  transform: translateY(40px);
  transition-delay: 0.3s;
}

.page-kv-img {
  position: relative;
}

.page-kv-img::before {
  content: "";
  background-color: var(--color_primary);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  clip-path: inset(100% 0% 0%);
  transition: clip-path 1.2s cubic-bezier(0.54, 0.04, 0, 1.01);
  transition-delay: 0.5s;
  z-index: -1;
}

.page-kv-img img {
  clip-path: inset(100% 0% 0%);
  transition: clip-path 1.2s cubic-bezier(0.54, 0.04, 0, 1.01);
  transition-delay: 1.5s;
}

.page-kv.is-show .page-ttl [lang=en],
.page-kv.is-show .page-ttl .jp {
  opacity: 1;
  transform: translateY(0);
}

.page-kv.is-show .page-toc-list,
.page-kv.is-show .page-text {
  opacity: 1;
  transform: translateY(0);
}

.page-kv.is-show .page-kv-img::before,
.page-kv.is-show .page-kv-img img {
  clip-path: inset(0%);
}

@media (max-width: 1024px) {
  .page-ttl [lang=en] {
    transition-delay: 0s;
  }

  .page-ttl .jp {
    transition-delay: 0.2s;
  }

  .page-kv .page-toc-list,
  .page-kv .page-text {
    transition-delay: 0.3s;
  }

  .page-kv-img::before {
    transition-delay: 0s;
  }

  .page-kv-img img {
    transition-delay: 1s;
  }
}

@media (prefers-reduced-motion: reduce) {

  .page-kv .page-ttl [lang=en],
  .page-kv .page-ttl .jp {
    opacity: 1;
    transform: translateY(0);
  }

  .page-kv .page-toc-list,
  .page-kv .page-text {
    opacity: 1;
    transform: translateY(0);
  }

  .page-kv .page-kv-img::before,
  .page-kv .page-kv-img img {
    clip-path: inset(0%);
  }
}

/*------------
施設
--------------*/
.hero-facility-ttl .jp,
.hero-facility-ttl [lang=en],
.hero-facility-ttl .place {
  transition: opacity 1s, transform 1s;
  opacity: 0;
  transform: translateY(40px);
}

.hero-facility-ttl [lang=en] {
  transition-delay: 0.1s;
}

.hero-facility-ttl .place {
  transition-delay: 0.2s;
}

.hero-facility.is-show .hero-facility-ttl [lang=en],
.hero-facility.is-show .hero-facility-ttl .jp,
.hero-facility.is-show .hero-facility-ttl .place {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  .hero-facility .hero-facility-ttl [lang=en],
  .hero-facility .hero-facility-ttl .jp,
  .hero-facility .hero-facility-ttl .place {
    opacity: 1;
    transform: translateY(0);
  }
}


.card-style02 {
  display: grid;
  gap: 20px;
}

.card-style02 > li {
  background-color: var(--color_gray);
  padding: 35px;
  border-radius: 5px;
}

.card-style02 .card-ttl {
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border: 1px solid var(--color_border);
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.5rem;
  font-weight: bold;
}

.btn-pdf::after {
  content: "";
  background: url(../images/share/icon_pdf.svg) no-repeat center / contain;
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px) {
  .card-style02 {
    grid-template-columns: 1fr;
  }
  .card-style02 > li {
    padding: 20px;
  }
}
