@charset "UTF-8";
/*mediaquery-1*/
:root {
  /* SP（〜767） */
  --fz-base: 1.4rem;
  --fz-1: 2.4rem;
  /* H1 */
  --fz-2: 2rem;
  /* H2 */
  --fz-3: 1.6rem;
  /* H3 */
  --fz-4: 1.5rem;
  /* H4 */
  --fz-5: 1.2rem;
  /* 補足 */
  --heading01: 4rem;
  --heading02: 3.2rem;
  --heading03: 2.4rem;
}

@media (min-width: 768px) {
  :root {
    /* PC（768〜） */
    --fz-base: clamp(1.4rem, 1.1vw, 1.6rem);
    --fz-1: clamp(2.6rem, 2.2vw, 3.2rem);
    --fz-2: clamp(2rem, 1.8vw, 2.6rem);
    --fz-3: clamp(1.7rem, 1.5vw, 2.2rem);
    --fz-4: clamp(1.6rem, 1.3vw, 1.9rem);
    --fz-5: clamp(1.3rem, 1vw, 1.5rem);
    --heading01: clamp(4rem, 6.5vw, 9rem);
    --heading02: clamp(3.6rem, 5vw, 7.5rem);
    --heading03: clamp(2.8rem, 4.2vw, 5rem);
  }
}
/*
    Official Site - Shared
    公式サイト共通スタイル（header・footer・サブページ共通パーツ等）
===================================================*/
html {
  scroll-padding-top: 80px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
  height: 80px;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header__inner {
    background-color: #fcf9f6;
  }
}
.header__logo-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header__logo {
  margin: 0;
  line-height: 1;
}
.header__logo a {
  display: block;
}
.header__logo a img {
  height: 62px;
  width: auto;
  display: block;
}
@media screen and (max-width: 1024px) {
  .header__logo a img {
    height: 32px;
  }
}
.header__tagline {
  margin: 0;
  font-size: 1.1rem;
  color: #18594d;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.header__gnav {
  flex: 1;
}
.header__gnav ul {
  display: flex;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  height: 80px;
  max-width: 700px;
  background: #fcf9f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  border-radius: 12px;
}
.header__gnav li {
  flex: 1;
}
.header__gnav li:first-child a {
  border-left: none;
}
.header__gnav li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 8px 6px;
  text-decoration: none;
  color: #000;
  border-left: 1px solid #131e4c;
}
.header__gnav li a img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.25s ease;
}
@media screen and (max-width: 1024px) {
  .header__gnav li a img {
    width: 22px;
    height: 22px;
  }
}
.header__gnav li a span {
  font-size: 1.1rem;
  margin-top: 4px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.header__gnav li a:hover {
  opacity: 1;
  color: #18594d;
}
.header__gnav li a:hover img {
  transform: scale(1.2);
}
.header__cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}
.header__cta:hover {
  opacity: 1;
  color: #18594d;
}
.header__tel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: #fcf9f6;
  white-space: nowrap;
}
.header__tel .icon-tel {
  font-size: 1.8rem;
  flex-shrink: 0;
  color: #131e4c;
}
.header__tel-info {
  display: flex;
  flex-direction: column;
}
.header__tel-num {
  display: block;
  font-size: 1.9rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: #131e4c;
  text-decoration: none;
}
.header__tel-num:hover {
  opacity: 0.8;
  color: #131e4c;
}
.header__tel-note {
  font-size: 1rem;
  color: #131e4c;
  letter-spacing: 0.05em;
}
.header__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: #18594d;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__mobile-nav {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s;
  pointer-events: none;
}
.header__mobile-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0s;
  pointer-events: auto;
}
.header__mobile-nav ul {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}
.header__mobile-nav li {
  border-bottom: 1px solid #f0ede8;
}
.header__mobile-nav li:last-child {
  border-bottom: none;
}
.header__mobile-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  text-decoration: none;
  color: #000;
  transition: background 0.2s;
}
.header__mobile-nav a:hover {
  background: rgba(24, 89, 77, 0.04);
  opacity: 1;
}
.header__mobile-nav a:hover .header__mobile-nav__arrow {
  transform: translateX(4px);
}
.header__mobile-nav__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #18594d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header__mobile-nav__icon img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.header__mobile-nav__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.header__mobile-nav__ja {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #000;
}
.header__mobile-nav__en {
  font-size: 0.95rem;
  color: #131e4c;
  letter-spacing: 0.12em;
}
.header__mobile-nav__arrow {
  color: #18594d;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
@media screen and (max-width: 768px) {
  .header__gnav {
    display: none;
  }
  .header__hamburger {
    display: flex;
  }
  .header__inner {
    padding: 0 16px;
  }
  .header__logo img {
    height: 28px;
  }
  .header__tel {
    gap: 6px;
    padding: 4px 10px;
  }
  .header__tel .icon-tel {
    font-size: 1.4rem;
  }
  .header__tel-num {
    font-size: 1.5rem;
  }
  .header__tel-note {
    display: none;
  }
  .header__cta {
    border-radius: 6px;
    margin-left: auto;
  }
  .header .btn-reserve {
    font-size: 1rem;
    padding: 5px 10px;
  }
}

.footer {
  color: #fff;
}
.footer .footer-map {
  width: 100%;
  height: 450px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer .footer-map {
    height: 300px;
  }
}
.footer .footer-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.footer__body {
  background: #131e4c;
  padding: 48px 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}
.footer__box {
  display: flex;
  gap: 40px;
  align-items: start;
  border-left: 1px solid #fff;
  padding-left: 2rem;
  justify-content: space-between;
}
.footer__info {
  color: rgba(255, 255, 255, 0.9);
}
.footer__logo {
  margin: 0 0 16px;
}
.footer__logo a {
  display: inline-block;
}
.footer__logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer__address {
  font-style: normal;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.footer__details {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}
.footer__details th,
.footer__details td {
  line-height: 1.7;
  letter-spacing: 0.03em;
  padding: 4px 0;
  vertical-align: top;
}
.footer__details th {
  font-weight: normal;
  white-space: nowrap;
}
.footer__nav .footer__nav-ttl {
  font-size: 1.3rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  margin: 0 0 16px;
}
.footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav ul li + li {
  margin-top: 10px;
}
.footer__nav ul a {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer__nav ul a:hover {
  color: #fff;
  opacity: 1;
}
.footer__right {
  display: flex;
  gap: 20px;
}
.footer__schedule {
  background-color: #fffefd;
  padding: 1rem;
  border-radius: 12px;
}
.footer__schedule table {
  border-collapse: collapse;
  font-size: 1.3rem;
  width: 100%;
  color: #000;
}
.footer__schedule table th,
.footer__schedule table td {
  padding: 4px 8px;
  text-align: center;
  border: 1px solid #faf3ea;
}
.footer__schedule table th {
  background: #faf3ea;
  font-weight: normal;
  white-space: nowrap;
}
.footer__schedule table td:first-child {
  text-align: left;
  white-space: nowrap;
}
.footer__schedule-note {
  margin: 8px 0 0;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: #000;
}
.footer__tel {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 12px 20px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  color: #fff;
}
.footer__tel:hover {
  background: #18594d;
  border-color: #18594d;
  color: #fff;
  opacity: 1;
}
.footer__tel .icon-tel {
  font-size: 2.2rem;
  color: #fff;
  flex-shrink: 0;
}
.footer__tel-info {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.footer__tel-num {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.footer__tel-note {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .footer__body {
    padding: 36px 0;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__box {
    flex-direction: column;
    align-items: stretch;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 0;
    padding-top: 2rem;
    gap: 2rem;
    justify-content: flex-start;
  }
  .footer__nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__nav ul li + li {
    margin-top: 0;
  }
  .footer__right {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }
  .footer__schedule {
    overflow-x: auto;
    width: 100%;
  }
  .footer__tel {
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }
}

.copy {
  background: rgb(18.6333333333, 25.0833333333, 45.8666666667);
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  font-size: 1.1rem;
  padding: 14px;
  margin: 0;
  letter-spacing: 0.05em;
}

.btn-reserve {
  display: block;
  background: #131e4c;
  color: #fff;
  text-decoration: none;
  padding: 7px 14px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-align: center;
  transition: opacity 0.2s;
}
.btn-reserve:hover {
  opacity: 0.85;
  color: #fff;
}

body:not(.official-top) main {
  padding-top: 4rem;
}

@keyframes leaf-fall-in {
  0% {
    transform: translate(80px, -120px) rotate(-25deg);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes leaf-sway-a {
  0%, 100% {
    transform: var(--lb, rotate(0deg)) rotate(-18deg);
  }
  50% {
    transform: var(--lb, rotate(0deg)) rotate(18deg);
  }
}
@keyframes leaf-sway-b {
  0%, 100% {
    transform: var(--lb, rotate(0deg)) rotate(16deg);
  }
  50% {
    transform: var(--lb, rotate(0deg)) rotate(-20deg);
  }
}
@keyframes leaf-sway-c {
  0%, 100% {
    transform: var(--lb, rotate(0deg)) rotate(-15deg);
  }
  50% {
    transform: var(--lb, rotate(0deg)) rotate(20deg);
  }
}
.leaf-sway-a {
  transform-origin: 50% 10%;
  animation: leaf-sway-a 4.5s ease-in-out infinite;
}

.leaf-sway-b {
  transform-origin: 50% 10%;
  animation: leaf-sway-b 5.5s ease-in-out infinite 0.7s;
}

.leaf-sway-c {
  transform-origin: 50% 10%;
  animation: leaf-sway-c 3.8s ease-in-out infinite 1.4s;
}

@keyframes deco-float-a {
  0%, 100% {
    transform: var(--db, translate(0, 0)) translateY(0);
  }
  50% {
    transform: var(--db, translate(0, 0)) translateY(-16px);
  }
}
@keyframes deco-float-b {
  0%, 100% {
    transform: var(--db, translate(0, 0)) translateY(0);
  }
  50% {
    transform: var(--db, translate(0, 0)) translateY(-22px);
  }
}
@keyframes deco-float-c {
  0%, 100% {
    transform: var(--db, translate(0, 0)) translateY(0);
  }
  50% {
    transform: var(--db, translate(0, 0)) translateY(-12px);
  }
}
.deco-float-a {
  animation: deco-float-a 4s ease-in-out infinite;
}

.deco-float-b {
  animation: deco-float-b 5.2s ease-in-out infinite 0.8s;
}

.deco-float-c {
  animation: deco-float-c 3.2s ease-in-out infinite 1.6s;
}

@keyframes recruit-img-rise {
  from {
    opacity: 0;
    transform: perspective(900px) rotateX(62deg) translateY(50px) scale(0.88);
  }
  to {
    opacity: 1;
    transform: perspective(900px) rotateX(0deg) translateY(0) scale(1);
  }
}
@keyframes person-slide-up {
  from {
    transform: translateX(-50%) translateY(120px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
@keyframes bg-rotate-in {
  from {
    transform: rotate(-8deg) scale(0.85);
    opacity: 0;
  }
  to {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
}
@keyframes anim-slide-up-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-anim-person {
  opacity: 0;
  transform: translateX(-50%) translateY(60px);
}
.js-anim-person.is-visible {
  animation: person-slide-up 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.js-anim-slide-up {
  opacity: 0;
  transform: translateY(40px);
}
.js-anim-slide-up.is-visible {
  animation: anim-slide-up-in 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes fv-char-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fv-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  animation: fv-char-in 0.45s ease forwards;
}

@keyframes leaf-rise-in {
  0% {
    transform: translate(-80px, 120px) rotate(8deg);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
.sec-ttl {
  font-size: clamp(2.2rem, 2.2vw, 2.8rem);
  font-weight: bold;
  color: #131e4c;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.sec-ttl-en {
  color: #131e4c;
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
}

.fv-tel-cta {
  padding: 5rem 0;
  max-width: 900px;
  margin: auto;
}
.fv-tel-cta__link {
  display: flex;
  align-items: center;
  background: #18594d;
  border-radius: 100px;
  padding: 12px 40px;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s;
  box-shadow: 0 13px 0 #dbd3c4;
}
.fv-tel-cta__link:hover {
  background: #131e4c;
  color: #fff;
  opacity: 1;
}
.fv-tel-cta__reserve {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.fv-tel-cta__reserve-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.fv-tel-cta__reserve-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
}
.fv-tel-cta__divider {
  width: 2px;
  height: 100px;
  background: #fff;
  margin: 0 30px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .fv-tel-cta__divider {
    margin: 0 20px;
  }
}
.fv-tel-cta__tel {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1240px) {
  .fv-tel-cta__tel {
    justify-content: center;
  }
}
.fv-tel-cta__tel .icon-tel {
  width: 40px;
  height: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.fv-tel-cta__tel-info {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.fv-tel-cta__num {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
}
.fv-tel-cta__note {
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fv-tel-cta {
    padding: 3rem 0;
  }
  .fv-tel-cta__link {
    flex-direction: column;
    border-radius: 20px;
    padding: 20px 24px;
    gap: 12px;
  }
  .fv-tel-cta__reserve {
    width: 100%;
  }
  .fv-tel-cta__reserve-ttl {
    font-size: 1.8rem;
  }
  .fv-tel-cta__reserve-sub {
    font-size: 1.1rem;
    text-align: center;
  }
  .fv-tel-cta__divider {
    width: 80%;
    height: 2px;
    margin: 4px 0;
  }
  .fv-tel-cta__tel {
    justify-content: center;
  }
  .fv-tel-cta__num {
    font-size: 2.4rem;
  }
  .fv-tel-cta__note {
    font-size: 1.1rem;
  }
}

body.official-top #site-header {
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
body.official-top #site-header.is-visible {
  transform: translateY(0);
}

body {
  background: #fcf9f6;
}

body:not(.teaser) .h-menu_wrap {
  display: none;
}

/*
    Official Top  /  公式トップ
    固定ページのスラッグ: official-top
    body.official-top
===================================================*/
body.official-top main {
  position: relative;
}
body.official-top .top-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
body.official-top .top-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 2rem 3rem;
}
body.official-top .top-header__right {
  display: flex;
  align-items: center;
  gap: 40px;
}
body.official-top .top-header__logo {
  flex-shrink: 0;
}
body.official-top .top-header__logo .site-logo {
  margin: 0;
  font-size: 0;
  line-height: 1;
}
body.official-top .top-header__logo .site-logo a {
  display: block;
}
body.official-top .top-header__logo .site-logo a img {
  height: 62px;
  width: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  body.official-top .top-header__logo .site-logo a img {
    height: 34px;
  }
}
body.official-top .top-header__address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
}
body.official-top .top-header__address i {
  color: #18594d;
  font-size: 1.6rem;
  flex-shrink: 0;
}
body.official-top .top-header__address p {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  margin: 0;
}
body.official-top .top-header__cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.2s;
}
body.official-top .top-header__cta .cta-tel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 20px 4px;
  background: #fcf9f6;
  text-decoration: none;
  color: #131e4c;
}
body.official-top .top-header__cta .cta-tel .icon-tel {
  font-size: 2.4rem;
  flex-shrink: 0;
}
body.official-top .top-header__cta .cta-tel .tel-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.official-top .top-header__cta .cta-tel .tel-num {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #131e4c;
  white-space: nowrap;
}
body.official-top .top-header__cta .cta-tel .tel-note {
  font-size: 1.2rem;
  color: #131e4c;
  letter-spacing: 0.05em;
}
body.official-top .top-header__cta .btn-reserve {
  display: block;
  background: #131e4c;
  color: #fff;
  text-align: center;
  padding: 3px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
body.official-top .top-header__cta:hover {
  background-color: #fff;
  opacity: 1;
}
body.official-top .top-header__cta:hover .cta-tel {
  background-color: #fff;
  color: #18594d;
}
body.official-top .top-header__cta:hover .tel-num,
body.official-top .top-header__cta:hover .tel-note {
  color: #18594d;
}
body.official-top .top-header__cta:hover .btn-reserve {
  background: #18594d;
}
@media screen and (max-width: 768px) {
  body.official-top .top-header__inner {
    padding: 1.6rem 0;
    gap: 12px;
  }
  body.official-top .top-header__logo .site-logo img {
    height: 40px;
  }
  body.official-top .top-header__address {
    display: none;
  }
  body.official-top .top-header__right {
    gap: 12px;
  }
  body.official-top .top-header__cta {
    border-radius: 6px;
  }
  body.official-top .top-header__cta .cta-tel {
    gap: 8px;
    padding: 4px 12px;
  }
  body.official-top .top-header__cta .cta-tel .icon-tel {
    font-size: 1.8rem;
  }
  body.official-top .top-header__cta .cta-tel .tel-num {
    font-size: 1.5rem;
  }
  body.official-top .top-header__cta .cta-tel .tel-note {
    display: none;
  }
  body.official-top .top-header__cta .btn-reserve {
    font-size: 1rem;
  }
}
body.official-top .fv {
  position: relative;
  margin-top: 0;
}
body.official-top .fv__deco {
  position: absolute;
  top: 10%;
  left: 0;
  width: 20%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
body.official-top .fv__deco-2 {
  position: absolute;
  top: 40%;
  left: -5%;
  width: 13%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
body.official-top .fv__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  overflow: hidden;
}
body.official-top .fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.official-top .fv__content {
  position: relative;
  z-index: 1;
  padding: 12% 0 5% 0;
}
body.official-top .fv__catch {
  font-size: clamp(2.8rem, 3.5vw, 5rem);
  font-weight: bold;
  color: #18594d;
  line-height: 1.6;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
body.official-top .fv__catch p {
  position: relative;
  z-index: 1;
}
body.official-top .fv__catch span:not(.fv-char) {
  color: #131e4c;
}
body.official-top .fv__catch__deco-3 {
  position: absolute;
  top: -20%;
  left: -3%;
  width: 12%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
body.official-top .fv__catch__deco-4 {
  position: absolute;
  pointer-events: none;
  --lb: rotate(-25deg);
  transform: rotate(-25deg);
  bottom: -1%;
  left: 14%;
  width: 5%;
}
body.official-top .fv__catch__deco-5 {
  position: absolute;
  pointer-events: none;
  --lb: scaleX(-1) rotate(-15deg);
  transform: scaleX(-1) rotate(-15deg);
  top: 25%;
  left: 35%;
  width: 4%;
}
body.official-top .fv__catch__deco-6 {
  position: absolute;
  pointer-events: none;
  --lb: scaleX(-1) rotate(0deg);
  transform: scaleX(-1);
  left: 43%;
  width: 7%;
  top: 60%;
}
@media screen and (max-width: 768px) {
  body.official-top .fv {
    overflow-x: hidden;
  }
  body.official-top .fv__img {
    position: static;
    width: 100%;
    height: 220px;
    margin-bottom: 2rem;
  }
  body.official-top .fv__img img {
    -o-object-position: center top;
       object-position: center top;
  }
  body.official-top .fv__content {
    padding: 120px 0 0;
  }
  body.official-top .fv__deco {
    width: 36%;
  }
  body.official-top .fv__deco-2 {
    width: 26%;
  }
  body.official-top .fv__catch {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    line-height: 2;
  }
  body.official-top .fv__catch__deco-3 {
    width: 24%;
  }
  body.official-top .fv__catch__deco-4 {
    width: 12%;
  }
  body.official-top .fv__catch__deco-5 {
    width: 10%;
  }
  body.official-top .fv__catch__deco-6 {
    width: 16%;
  }
}
body.official-top .fv .top-info-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 0 2rem;
}
@media screen and (max-width: 768px) {
  body.official-top .fv .top-info-grid {
    gap: 1rem;
  }
}
body.official-top .fv .top-info-grid__deco-1 {
  position: absolute;
  bottom: 0;
  right: -2%;
  width: 5%;
  --lb: scaleX(-1) rotate(15deg);
  transform: scaleX(-1) rotate(15deg);
}
@media screen and (max-width: 768px) {
  body.official-top .fv .top-info-grid__deco-1 {
    display: none;
  }
}
body.official-top .fv .top-info-grid .top-gnav {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  body.official-top .fv .top-info-grid .top-gnav {
    margin-bottom: 0;
  }
}
body.official-top .fv .top-info-grid .top-schedule {
  grid-column: 1;
  grid-row: 2;
  border: 1px solid #f7f3ed;
  padding: 1.5rem;
  background-color: #fffefd;
  border-radius: 12px;
}
body.official-top .fv .top-info-grid .top-news {
  grid-column: 2;
  grid-row: 1/3;
  align-self: flex-end;
}
@media screen and (max-width: 1024px) {
  body.official-top .fv .top-info-grid .top-gnav {
    grid-column: 1/-1;
    grid-row: 1;
    margin-bottom: 2rem;
  }
  body.official-top .fv .top-info-grid .top-schedule {
    grid-column: 1;
    grid-row: 2;
  }
  body.official-top .fv .top-info-grid .top-news {
    grid-column: 2;
    grid-row: 2;
  }
}
@media screen and (max-width: 768px) {
  body.official-top .fv .top-info-grid {
    grid-template-columns: 1fr;
  }
  body.official-top .fv .top-info-grid .top-gnav {
    grid-column: 1;
    grid-row: auto;
    min-width: 0;
  }
  body.official-top .fv .top-info-grid .top-schedule {
    grid-column: 1;
    grid-row: auto;
    min-width: 0;
  }
  body.official-top .fv .top-info-grid .top-schedule .schedule-table {
    overflow-x: auto;
  }
  body.official-top .fv .top-info-grid .top-news {
    grid-column: 1;
    grid-row: auto;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
body.official-top .top-gnav {
  background: #fffefd;
  border-radius: 12px;
}
body.official-top .top-gnav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 5px 0;
}
body.official-top .top-gnav__list li {
  flex: 1;
}
body.official-top .top-gnav__list li:last-child a {
  border-right: none;
}
body.official-top .top-gnav__list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 4px;
  text-decoration: none;
  color: #000;
  transition: color 0.2s;
  border-right: 1px solid #f9f5ea;
}
body.official-top .top-gnav__list li a img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
body.official-top .top-gnav__list li a span {
  font-size: 1.1rem;
  margin-top: 6px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
body.official-top .top-gnav__list li a:hover {
  opacity: 1;
  color: #18594d;
}
@media screen and (max-width: 768px) {
  body.official-top .top-gnav {
    width: 100%;
  }
  body.official-top .top-gnav__list {
    flex-wrap: wrap;
    padding: 0;
  }
  body.official-top .top-gnav__list li {
    flex: 0 0 33.333%;
    border-bottom: 1px solid #f9f5ea;
  }
}
body.official-top .top-schedule .schedule-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
}
body.official-top .top-schedule .schedule-table th,
body.official-top .top-schedule .schedule-table td {
  text-align: center;
  padding: 10px 6px;
  border: 1px solid #f9f5ea;
  vertical-align: middle;
}
body.official-top .top-schedule .schedule-table thead th {
  background: #f9f5ea;
  font-weight: bold;
}
body.official-top .top-schedule .schedule-table tbody td:first-child {
  font-weight: bold;
}
body.official-top .top-schedule .schedule-note {
  margin-top: 12px;
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
}
body.official-top .top-news {
  background: #faf3ea;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  body.official-top .top-news {
    gap: 2rem;
    padding: 0;
    background-color: transparent;
  }
}
body.official-top .top-news__ttl {
  font-size: var(--fz-2);
  font-weight: bold;
  color: #131e4c;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  body.official-top .top-news__ttl {
    margin: 2rem 0 0;
  }
}
body.official-top .top-news__ttl-en {
  font-size: var(--fz-5);
  font-weight: normal;
  letter-spacing: 0.1em;
}
body.official-top .top-news .news-left {
  flex: 1;
  min-width: 0;
  width: 100%;
}
body.official-top .top-news .news-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}
body.official-top .top-news .news-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  text-decoration: none;
  color: #000;
}
@media screen and (max-width: 768px) {
  body.official-top .top-news .news-list li a {
    gap: 6px;
  }
}
body.official-top .top-news .news-list li a:hover {
  color: #18594d;
  opacity: 1;
}
body.official-top .top-news .news-list li a p {
  border-bottom: 1px solid #131e4c;
  display: flex;
  gap: 1rem;
}
body.official-top .top-news .news-list li .cat {
  background: #131e4c;
  color: #fff;
  font-size: 1.2rem;
  padding: 3px 20px;
  border-radius: 100vw;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  body.official-top .top-news .news-list li .cat {
    border-radius: 6px;
  }
}
body.official-top .top-news .news-list li .date {
  color: #000;
  white-space: nowrap;
  flex-shrink: 0;
}
body.official-top .top-news .news-list li .ttl {
  line-height: 1.5;
}
body.official-top .top-news .btn-more {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid #131e4c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #131e4c;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
  padding: 0;
  gap: 0;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  body.official-top .top-news .btn-more {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  body.official-top .top-news .btn-more {
    width: 100%;
    height: auto;
    border-radius: 12px;
    flex-direction: row;
    padding: 10px;
  }
}
body.official-top .top-news .btn-more::after {
  content: "→";
  font-size: 1.2rem;
}
body.official-top .top-news .btn-more:hover {
  background: #18594d;
  color: #fff;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  body.official-top .top-news {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  body.official-top .top-news .news-list li a {
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
  }
  body.official-top .top-news .news-list li a p {
    min-width: 0;
    overflow: hidden;
  }
  body.official-top .top-news .btn-more {
    align-self: center;
  }
}
body.official-top .section-ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #18594d;
  letter-spacing: 0.08em;
  padding-bottom: 10px;
  border-bottom: 2px solid #18594d;
}
body.official-top .section-ttl__en {
  font-size: 1.2rem;
  font-weight: normal;
  color: #999;
  margin-left: 10px;
  letter-spacing: 0.1em;
}
body.official-top .btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #18594d;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  border: 1px solid #18594d;
  padding: 10px 24px;
  transition: all 0.2s;
}
body.official-top .btn-more::after {
  content: "→";
  font-size: 1.2rem;
}
body.official-top .btn-more:hover {
  background: #18594d;
  color: #fff;
  opacity: 1;
}
body.official-top .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #18594d;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  padding: 1.4rem 4em;
  border-radius: 100vw;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid #18594d;
}
@media screen and (max-width: 768px) {
  body.official-top .btn-primary {
    font-size: 1.4rem;
    padding: 1.2rem 3em;
    width: 100%;
  }
}
body.official-top .btn-primary:hover {
  opacity: 1;
  border: 1px solid #18594d;
  color: #18594d;
  background: #fff;
}
body.official-top .btn-primary--white {
  background: #fff;
  color: #000;
  border: 1px solid #e2ddd1;
}
body.official-top .btn-primary--white:hover {
  background: #131e4c;
  color: #fff;
  border-color: #131e4c;
}
body.official-top .fv-tel-cta {
  width: 80%;
  margin: 0 auto;
  padding: 8% 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  body.official-top .fv-tel-cta {
    width: 100%;
    padding: 4rem 0;
  }
}
@media screen and (max-width: 768px) {
  body.official-top .fv-tel-cta {
    width: 100%;
    padding: 3rem 0;
  }
}
body.official-top .top-intro {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 0 0 15%;
  position: relative;
  overflow: visible;
  background: linear-gradient(to bottom, #faf6f2 0%, #faf6f2 20%, #faf3ea 20%, #faf3ea 80%, #faf6f2 80%, #faf6f2 80%, #faf6f2 100%);
}
body.official-top .top-intro__deco-1 {
  position: absolute;
  top: 0;
  right: -10%;
  width: 25%;
  z-index: 3;
  pointer-events: none;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
}
body.official-top .top-intro__deco-2 {
  position: absolute;
  bottom: 3%;
  left: 25%;
  width: 12%;
  z-index: 3;
  pointer-events: none;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
}
body.official-top .top-intro__deco-3 {
  position: absolute;
  top: -30%;
  left: -3%;
  width: 22%;
  z-index: 1;
  pointer-events: none;
}
body.official-top .top-intro__leaf-1 {
  position: absolute;
  bottom: 5%;
  left: 2%;
  width: 5%;
  z-index: 3;
  pointer-events: none;
}
body.official-top .top-intro__leaf-2 {
  position: absolute;
  bottom: 5%;
  left: 32%;
  width: 7%;
  z-index: 2;
  --lb: rotate(120deg);
  transform: rotate(120deg);
  pointer-events: none;
}
body.official-top .top-intro::before {
  content: "OIZUMI CLINIC";
  position: absolute;
  left: 38%;
  font-size: 8vw;
  font-weight: bold;
  color: #f8eddf;
  letter-spacing: 0.12em;
  white-space: nowrap;
  pointer-events: none;
  top: 40%;
}
@media screen and (max-width: 768px) {
  body.official-top .top-intro::before {
    left: 0;
    font-size: 12vw;
    top: auto;
    bottom: 0;
    width: 100%;
  }
}
body.official-top .top-intro__img {
  flex-shrink: 0;
  width: 40%;
  position: relative;
  margin-left: 0;
}
body.official-top .top-intro__img-1 {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  transform-origin: center center;
  opacity: 0;
}
body.official-top .top-intro__img-1.is-visible {
  animation: leaf-fall-in 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
body.official-top .top-intro__img-2 {
  width: 80%;
  height: auto;
  display: block;
  position: absolute;
  bottom: -30%;
  left: 0;
  z-index: 2;
  transform-origin: center center;
  opacity: 0;
}
body.official-top .top-intro__img-2.is-visible {
  animation: leaf-rise-in 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards;
}
body.official-top .top-intro__body {
  z-index: 3;
  flex: 1;
  min-width: 0;
  position: relative;
}
body.official-top .top-intro__ttl {
  font-size: clamp(2.2rem, 2.8vw, 3.4rem);
  font-weight: bold;
  color: #18594d;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 2.4rem;
}
body.official-top .top-intro__ttl span {
  color: #131e4c;
}
body.official-top .top-intro__text p {
  line-height: 2.5;
  color: #000;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  body.official-top .top-intro__text p {
    margin-bottom: 1em;
  }
}
body.official-top .top-intro__text p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  body.official-top .top-intro {
    flex-direction: column;
    gap: 10rem;
    padding: 4rem 0 5rem;
  }
  body.official-top .top-intro__img {
    width: 60%;
    margin: 0 auto;
    align-self: flex-start;
    margin-left: 0;
  }
  body.official-top .top-intro__body {
    padding-right: 5%;
    padding-left: 5%;
  }
  body.official-top .top-intro__ttl {
    font-size: 2.2rem;
    margin-bottom: 1em;
  }
  body.official-top .top-intro__deco-1 {
    width: 42%;
  }
  body.official-top .top-intro__deco-2 {
    width: 22%;
    bottom: auto;
    top: 30%;
    right: -10%;
    left: auto;
  }
  body.official-top .top-intro__deco-3 {
    width: 38%;
  }
  body.official-top .top-intro__leaf-1 {
    width: 12%;
  }
  body.official-top .top-intro__leaf-2 {
    width: 16%;
    left: auto;
    bottom: auto;
    top: 40%;
    right: 10%;
  }
}
body.official-top .top-message {
  padding: 10rem 0;
  position: relative;
}
body.official-top .top-message__deco-1 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 20%;
  pointer-events: none;
  filter: brightness(0) saturate(100%) invert(10%) sepia(60%) saturate(800%) hue-rotate(213deg) brightness(88%) contrast(108%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  body.official-top .top-message__deco-1 {
    display: none;
  }
}
body.official-top .top-message__leaf-1 {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 5%;
  z-index: 0;
  pointer-events: none;
  pointer-events: none;
  --lb: rotate(10deg);
  transform: rotate(10deg);
}
@media screen and (max-width: 768px) {
  body.official-top .top-message__leaf-1 {
    display: none;
  }
}
body.official-top .top-message__leaf-2 {
  position: absolute;
  bottom: -5%;
  right: -2%;
  width: 10%;
  z-index: 0;
  pointer-events: none;
  --lb: rotate(-70deg);
  transform: rotate(-70deg);
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
}
@media screen and (max-width: 768px) {
  body.official-top .top-message__leaf-2 {
    display: none;
  }
}
body.official-top .top-message__card {
  background: #faf3ea;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 4rem 5rem 4rem 4rem;
  position: relative;
  overflow: visible;
}
body.official-top .top-message__img {
  flex-shrink: 0;
  width: 450px;
  position: relative;
  z-index: 1;
}
body.official-top .top-message__img-bg {
  width: 100%;
  height: auto;
  display: block;
  transform: rotate(-8deg) scale(0.85);
  opacity: 0;
}
body.official-top .top-message__img-bg.is-visible {
  animation: bg-rotate-in 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
body.official-top .top-message__img-person {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: 85%;
  height: auto;
  opacity: 0;
  z-index: 1;
}
body.official-top .top-message__img-person.is-visible {
  animation: person-slide-up 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s forwards;
}
body.official-top .top-message__body {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
body.official-top .top-message__body .sec-ttl-en {
  display: block;
  margin-bottom: 2rem;
}
body.official-top .top-message__text {
  margin-bottom: 2.5rem;
  padding-right: 15%;
}
@media screen and (max-width: 768px) {
  body.official-top .top-message__text {
    padding-right: 0;
  }
}
body.official-top .top-message__text p {
  line-height: 2.2;
  color: #000;
}
@media screen and (max-width: 1024px) {
  body.official-top .top-message__card {
    gap: 3.5rem;
    padding: 3rem 3.5rem 3rem 3rem;
  }
  body.official-top .top-message__img {
    width: 340px;
  }
}
@media screen and (max-width: 768px) {
  body.official-top .top-message {
    padding: 3rem 0 5rem;
  }
  body.official-top .top-message__card {
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem 3.5rem;
    gap: 2rem;
  }
  body.official-top .top-message__img {
    width: 280px;
  }
  body.official-top .top-message__ttl {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
  }
  body.official-top .top-message .btn-primary {
    width: 100%;
    justify-content: center;
  }
}
body.official-top .top-features {
  padding: 7rem 0 8rem;
  position: relative;
  overflow: visible;
}
body.official-top .top-features__deco-1 {
  position: absolute;
  bottom: 0;
  left: -3%;
  width: 12%;
  z-index: 1;
  pointer-events: none;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
}
body.official-top .top-features__leaf-1 {
  position: absolute;
  bottom: -5%;
  left: 0;
  width: 5%;
  z-index: 3;
  pointer-events: none;
}
body.official-top .top-features__head {
  text-align: center;
  margin-bottom: 5rem;
}
body.official-top .top-features__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
body.official-top .top-features__item {
  display: flex;
  align-items: center;
  gap: 0;
}
body.official-top .top-features__item:nth-child(odd) {
  width: 80%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  body.official-top .top-features__item:nth-child(odd) {
    width: 100%;
  }
}
body.official-top .top-features__img {
  flex-shrink: 0;
  width: 350px;
  z-index: 1;
}
body.official-top .top-features__img img {
  width: 100%;
  height: auto;
}
body.official-top .top-features__body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 50px 5% 50px 15%;
  background-color: #faf3ea;
  margin-left: -10%;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
body.official-top .top-features__body:hover {
  opacity: 1;
}
body.official-top .top-features__body:hover .top-features__text {
  color: #18594d;
}
body.official-top .top-features__body:hover .top-features__num {
  color: rgba(24, 89, 77, 0.2);
}
body.official-top .top-features__body:hover .top-features__arrow {
  transform: translateX(6px);
}
body.official-top .top-features__arrow {
  font-size: 2rem;
  color: #18594d;
  flex-shrink: 0;
  margin-right: auto;
  transition: transform 0.25s ease;
  background-color: #18594d;
  color: #fff;
  border-radius: 100vw;
  width: 40px;
  line-height: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.official-top .top-features__arrow {
    width: 30px;
    line-height: 30px;
    font-size: 1.6rem;
    margin-left: auto;
    margin-right: 0;
  }
}
body.official-top .top-features__num {
  font-size: clamp(5rem, 8vw, 9rem);
  font-weight: bold;
  color: #e2d2ba;
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: color 0.3s ease;
}
body.official-top .top-features__text {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: bold;
  color: #131e4c;
  line-height: 1.6;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  body.official-top .top-features {
    padding: 5rem 0 6rem;
  }
  body.official-top .top-features__head {
    margin-bottom: 3rem;
  }
  body.official-top .top-features__item {
    flex-direction: column;
    align-items: flex-start;
  }
  body.official-top .top-features__img {
    width: 45%;
  }
  body.official-top .top-features__body {
    margin-left: 0;
    width: 100%;
    padding: 1.5rem 5% 2.5rem;
  }
  body.official-top .top-features__num {
    font-size: clamp(4rem, 12vw, 6rem);
  }
  body.official-top .top-features__text {
    font-size: 2rem;
  }
  body.official-top .top-features__deco-1 {
    width: 22%;
  }
  body.official-top .top-features__leaf-1 {
    width: 12%;
  }
}
body.official-top .top-medical {
  padding: 3rem 0;
  background-color: #faf3ea;
  position: relative;
}
body.official-top .top-medical__deco-1 {
  position: absolute;
  bottom: -2%;
  right: -3%;
  width: 12%;
  z-index: 1;
  pointer-events: none;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
}
body.official-top .top-medical .sec-ttl-en {
  color: #18594d;
}
body.official-top .top-medical__inner {
  display: flex;
  align-items: center;
  gap: 6rem;
  max-width: 1100px;
  position: relative;
  z-index: 2;
}
body.official-top .top-medical__body {
  flex: 0 0 auto;
  width: 50%;
}
body.official-top .top-medical__body .sec-ttl-en {
  margin-bottom: 2.5rem;
  display: block;
}
body.official-top .top-medical__desc {
  line-height: 2;
  color: #131e4c;
  margin-bottom: 3rem;
}
body.official-top .top-medical__list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
body.official-top .top-medical__item {
  background: #fff;
  border-radius: 20px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}
body.official-top .top-medical__icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #f0ede8;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.official-top .top-medical__icon img {
  height: 70px;
  width: auto;
}
@media screen and (max-width: 768px) {
  body.official-top .top-medical__icon {
    width: 80px;
    height: 80px;
  }
  body.official-top .top-medical__icon img {
    height: 40px;
    width: auto;
  }
}
body.official-top .top-medical__name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #131e4c;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  body.official-top .top-medical {
    padding: 6rem 0;
  }
  body.official-top .top-medical__inner {
    gap: 4rem;
  }
  body.official-top .top-medical__body {
    width: 44%;
  }
}
@media screen and (max-width: 768px) {
  body.official-top .top-medical {
    padding: 5rem 0;
  }
  body.official-top .top-medical__inner {
    flex-direction: column;
    gap: 3rem;
  }
  body.official-top .top-medical__body {
    width: 100%;
  }
  body.official-top .top-medical__desc br {
    display: none;
  }
  body.official-top .top-medical__list {
    width: 100%;
  }
  body.official-top .top-medical__deco-1 {
    width: 22%;
  }
}

/*
    Top Gallery Slider  /  フォトギャラリー
===================================================*/
@keyframes gallery-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
body.official-top .top-gallery {
  padding: 5rem 0 7rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.official-top .top-gallery {
    padding: 0;
  }
}
body.official-top .top-gallery__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: gallery-marquee 40s linear infinite;
}
body.official-top .top-gallery__slide {
  width: 460px;
  margin-right: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  body.official-top .top-gallery__slide {
    width: 280px;
  }
}
body.official-top .top-gallery__slide img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  body.official-top .top-gallery__slide {
    width: 160px;
  }
}

/*
    Recruit  /  求人情報（トップページ）
===================================================*/
body.official-top .top-recruit {
  padding: 5rem 0;
  overflow: hidden;
}
body.official-top .top-recruit__inner {
  display: flex;
  align-items: center;
  gap: 6rem;
  background-color: #faf3ea;
  border-radius: 20px;
  position: relative;
  padding: 5rem 10rem;
  overflow: visible;
}
body.official-top .top-recruit__body {
  flex: 0 0 50%;
  position: relative;
}
body.official-top .top-recruit__leaf {
  width: 28px;
  position: absolute;
  top: -1rem;
  left: -2.5rem;
  filter: brightness(0) saturate(100%) invert(29%) sepia(44%) saturate(500%) hue-rotate(116deg) brightness(85%);
}
body.official-top .top-recruit__deco-1 {
  position: absolute;
  bottom: 4%;
  left: -10%;
  width: 15%;
}
body.official-top .top-recruit__deco-2 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 18%;
  filter: brightness(0) saturate(100%) invert(10%) sepia(60%) saturate(800%) hue-rotate(213deg) brightness(88%) contrast(108%);
}
body.official-top .top-recruit__leaf-1 {
  position: absolute;
  bottom: 20%;
  left: -4%;
  width: 8%;
  filter: brightness(0) saturate(100%) invert(10%) sepia(60%) saturate(800%) hue-rotate(213deg) brightness(88%) contrast(108%);
}
body.official-top .top-recruit .sec-ttl-en {
  display: block;
  margin-bottom: 2rem;
}
body.official-top .top-recruit__text {
  font-size: var(--fz-base);
  line-height: 2;
  color: #000;
  margin-bottom: 3rem;
}
body.official-top .top-recruit__text strong {
  font-weight: bold;
  color: #18594d;
  font-size: 1.2em;
  display: block;
}
body.official-top .top-recruit__img {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 45%;
  transform-origin: bottom center;
  opacity: 0;
  transform: perspective(900px) rotateX(62deg) translateY(50px) scale(0.88);
}
body.official-top .top-recruit__img.is-visible {
  animation: recruit-img-rise 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
body.official-top .top-recruit__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 768px) {
  body.official-top .top-recruit__inner {
    flex-direction: column;
    gap: 3rem;
    padding: 3rem;
  }
  body.official-top .top-recruit__body {
    flex: none;
    width: 100%;
  }
  body.official-top .top-recruit__img {
    position: relative;
    right: auto;
    width: 100%;
    border-radius: 16px 0 0 16px;
    margin-right: 0;
  }
  body.official-top .top-recruit__deco-1 {
    width: 28%;
  }
  body.official-top .top-recruit__deco-2 {
    width: 32%;
  }
  body.official-top .top-recruit__leaf-1 {
    width: 16%;
  }
}

/*
    Page Hero  /  下層ページ共通ヒーロー
===================================================*/
.page-hero {
  position: relative;
  width: 100%;
}
.page-hero__img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/1.2;
  overflow: hidden;
  border-radius: 24px;
}
.page-hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.page-hero__img--fallback {
  width: 100%;
  height: 100%;
  background: #faf3ea;
}
.page-hero__badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 600px;
  background: #fcf9f6;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
  padding: 50px 0 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-hero__badge {
    width: 80%;
    padding: 20px 0 0;
  }
}
.page-hero__ttl {
  font-size: clamp(2.4rem, 3.2vw, 4.6rem);
  font-weight: bold;
  color: #131e4c;
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1.4;
}
.page-hero__en {
  color: #18594d;
  letter-spacing: 0.12em;
  margin: 0;
  line-height: 1;
  display: block;
}
@media screen and (max-width: 768px) {
  .page-hero__img {
    aspect-ratio: 16/9;
    border-radius: 12px;
  }
}

@media screen and (max-width: 768px) {
  body.about main,
  body.medical main,
  body.treatment main,
  body.doctor main,
  body.access main,
  body.contact main,
  body.recruit main,
  body.news main {
    padding-top: 8rem;
  }
}
/*
    About  /  クリニック概要
    固定ページのスラッグ: about
    body.about
===================================================*/
body.about #about-page {
  padding-bottom: 5rem;
}
body.about .about-features {
  padding: 7rem 0 3.5rem;
  position: relative;
}
body.about .about-features__deco-1 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 20%;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  body.about .about-features__deco-1 {
    width: 35%;
  }
}
body.about .about-features__leaf-1 {
  position: absolute;
  pointer-events: none;
  --lb: scaleX(-1) rotate(-15deg);
  top: -10%;
  right: 3%;
  width: 6%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  body.about .about-features__leaf-1 {
    width: 12%;
    right: -3%;
  }
}
body.about .about-features__deco-2 {
  position: absolute;
  width: 20%;
  top: 20%;
  left: -10%;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  body.about .about-features__deco-2 {
    left: -10%;
    width: 25%;
  }
}
body.about .about-features__leaf-2 {
  position: absolute;
  pointer-events: none;
  --lb: scaleX(-1) rotate(-15deg);
  top: 35%;
  left: -10%;
  width: 7%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  body.about .about-features__leaf-2 {
    width: 12%;
    left: -2%;
  }
}
body.about .about-features__deco-3 {
  position: absolute;
  width: 20%;
  bottom: -10%;
  right: -10%;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  body.about .about-features__deco-3 {
    width: 30%;
  }
}
body.about .about-features__head {
  margin-bottom: 4rem;
  text-align: center;
}
body.about .about-features__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
body.about .about-features__item {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  background-color: #faf3ea;
  border-radius: 40px;
  padding: 4rem;
}
body.about .about-features__item:nth-child(even) {
  flex-direction: row-reverse;
}
body.about .about-features__img {
  flex-shrink: 0;
  width: 38%;
  border-radius: 40px;
  overflow: hidden;
}
body.about .about-features__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.about .about-features__body {
  flex: 1;
  background: #faf3ea;
  border-radius: 20px;
  padding: 3rem 3.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
  row-gap: 1rem;
  align-items: center;
  align-content: center;
}
body.about .about-features__num {
  grid-column: 1;
  grid-row: 1;
  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: bold;
  color: #e2d2ba;
  line-height: 1;
  letter-spacing: -0.02em;
}
body.about .about-features__ttl {
  grid-column: 2;
  grid-row: 1;
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  font-weight: bold;
  color: #131e4c;
  line-height: 1.5;
}
body.about .about-features__text {
  grid-column: 1/-1;
  grid-row: 2;
  line-height: 2;
  color: #000;
}
@media screen and (max-width: 768px) {
  body.about .about-features {
    padding: 10rem 0 5rem;
  }
  body.about .about-features__item {
    flex-direction: column;
    padding: 2rem;
  }
  body.about .about-features__item:nth-child(even) {
    flex-direction: column;
  }
  body.about .about-features__img {
    width: 100%;
    height: 220px;
    border-radius: 20px 20px 0 0;
  }
  body.about .about-features__body {
    border-radius: 0 0 20px 20px;
    padding: 2rem 2rem 2.5rem;
  }
  body.about .about-features__num {
    font-size: 4rem;
  }
  body.about .about-features__ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 640px) {
  body.about .about-features__item {
    border-radius: 2rem;
  }
  body.about .about-features__img {
    height: 180px;
    border-radius: 12px;
  }
  body.about .about-features__body {
    border-radius: 12px;
    padding: 1rem;
  }
}
body.about .about-interior {
  padding: 3.5rem 0;
  position: relative;
}
body.about .about-interior__deco-1 {
  position: absolute;
  top: -5%;
  right: -5%;
  width: 15%;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
  z-index: 3;
}
body.about .about-interior__leaf-1 {
  position: absolute;
  pointer-events: none;
  --lb: scaleX(-1) rotate(-15deg);
  top: -2%;
  left: -2%;
  width: 7%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  body.about .about-interior__leaf-1 {
    width: 12%;
    left: -2%;
  }
}
body.about .about-interior__head {
  text-align: center;
  margin-bottom: 3.5rem;
}
body.about .about-interior__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}
body.about .about-interior__item {
  padding: 2rem;
  border-radius: 40px;
  background: #faf3ea;
}
body.about .about-interior__img {
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
body.about .about-interior__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.about .about-interior__caption {
  font-size: var(--fz-3);
  font-weight: bold;
  color: #131e4c;
  text-align: center;
  margin: 0 0 0.8rem;
}
@media screen and (max-width: 768px) {
  body.about .about-interior {
    padding: 4rem 0 5rem;
  }
  body.about .about-interior__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  body.about .about-interior__list {
    grid-template-columns: 1fr;
  }
  body.about .about-interior__item {
    border-radius: 2rem;
  }
  body.about .about-interior__img {
    border-radius: 12px;
  }
}
body.about .about-equipment {
  padding: 7rem 0 7rem;
  position: relative;
}
body.about .about-equipment__leaf-1 {
  position: absolute;
  pointer-events: none;
  top: -40%;
  left: -5%;
  width: 7%;
}
@media screen and (max-width: 768px) {
  body.about .about-equipment__leaf-1 {
    width: 15%;
    left: 0;
    top: -10%;
  }
}
body.about .about-equipment__leaf-2 {
  position: absolute;
  pointer-events: none;
  top: -20%;
  left: 5%;
  width: 5%;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
  --lb: scaleX(-1) rotate(-15deg);
}
@media screen and (max-width: 768px) {
  body.about .about-equipment__leaf-2 {
    top: -16%;
    left: 10%;
    width: 12%;
  }
}
body.about .about-equipment__deco-1 {
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 20%;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
  z-index: -1;
}
body.about .about-equipment__head {
  text-align: center;
  margin-bottom: 3.5rem;
}
body.about .about-equipment__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
body.about .about-equipment__item {
  padding: 2rem;
  border-radius: 40px;
  background: #faf3ea;
}
body.about .about-equipment__img {
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
body.about .about-equipment__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.about .about-equipment__caption {
  font-size: var(--fz-3);
  font-weight: bold;
  color: #131e4c;
  text-align: center;
  margin: 0 0 0.8rem;
}
@media screen and (max-width: 768px) {
  body.about .about-equipment {
    padding: 4rem 0 5rem;
  }
  body.about .about-equipment__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }
  body.about .about-equipment__item {
    padding: 1.4rem;
    border-radius: 28px;
  }
  body.about .about-equipment__img {
    border-radius: 24px;
  }
}
@media screen and (max-width: 640px) {
  body.about .about-equipment__list {
    grid-template-columns: 1fr;
  }
  body.about .about-equipment__item {
    border-radius: 2rem;
  }
  body.about .about-equipment__img {
    border-radius: 12px;
  }
}
body.about .about-hours {
  padding: 5rem 0 3.5rem;
}
body.about .about-hours__head {
  text-align: center;
  margin-bottom: 3rem;
}
body.about .about-hours__wrap {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #f7f3ed;
  border-radius: 20px;
  overflow: hidden;
  padding: 3rem;
  background-color: #fffefd;
  font-size: var(--fz-3);
}
body.about .about-hours__table {
  width: 100%;
  border-collapse: collapse;
}
body.about .about-hours__table thead tr {
  background: #131e4c;
}
body.about .about-hours__table thead tr th {
  color: #fff;
  font-weight: bold;
  padding: 1.4rem 1rem;
  text-align: center;
  letter-spacing: 0.06em;
}
body.about .about-hours__table thead tr th:first-child {
  text-align: left;
  padding-left: 2.4rem;
  width: 28%;
}
body.about .about-hours__table tbody tr {
  border-bottom: 1px solid #e0dbd4;
}
body.about .about-hours__table tbody tr:last-child {
  border-bottom: none;
}
body.about .about-hours__table tbody tr td {
  padding: 1.6rem 1rem;
  text-align: center;
  color: #000;
  border-left: 1px solid #f7f3ed;
  border-bottom: 1px solid #f7f3ed;
}
body.about .about-hours__table tbody tr td:first-child {
  border-left: none;
  text-align: left;
  padding-left: 2.4rem;
  font-weight: bold;
  color: #131e4c;
}
body.about .about-hours__table tbody tr td.is-closed {
  color: #000;
}
body.about .about-hours__note {
  padding: 1.6rem 2.4rem 0;
  color: #000;
  margin: 0;
}
body.about .about-hours__note strong {
  font-weight: bold;
  color: #131e4c;
}
@media screen and (max-width: 768px) {
  body.about .about-hours {
    padding: 4rem 0 5rem;
  }
  body.about .about-hours__wrap {
    border-radius: 16px;
    overflow-x: auto;
    font-size: 1.5rem;
  }
  body.about .about-hours__table {
    min-width: 560px;
  }
  body.about .about-hours__table thead tr th {
    padding: 1.2rem 0.6rem;
  }
  body.about .about-hours__table thead tr th:first-child {
    padding-left: 1.6rem;
  }
  body.about .about-hours__table tbody tr td {
    font-size: 1.3rem;
    padding: 1.4rem 0.6rem;
  }
  body.about .about-hours__table tbody tr td:first-child {
    padding-left: 1.6rem;
  }
  body.about .about-hours__note {
    padding: 1.4rem 1.6rem 0;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 640px) {
  body.about .about-hours__wrap {
    overflow-x: visible;
    padding: 1.6rem 1rem;
    font-size: 1.2rem;
  }
  body.about .about-hours__table {
    min-width: 0;
    width: 100%;
  }
  body.about .about-hours__table thead tr th {
    padding: 6px 3px;
    font-size: 1.2rem;
    white-space: nowrap;
  }
  body.about .about-hours__table thead tr th:first-child {
    padding-left: 4px;
    text-align: center;
  }
  body.about .about-hours__table tbody tr td {
    padding: 8px 3px;
    font-size: 1.2rem;
    white-space: nowrap;
  }
  body.about .about-hours__table tbody tr td:first-child {
    padding-left: 4px;
    font-size: 1.1rem;
  }
  body.about .about-hours__note {
    padding: 1rem 0.4rem 0;
    font-size: 1.2rem;
  }
}
body.about .about-payment {
  padding: 3.5rem 0;
}
body.about .about-payment .inner {
  padding: 2rem 10%;
  background-color: #faf3ea;
  border-radius: 60px;
}
body.about .about-payment__head {
  text-align: center;
  margin-bottom: 1rem;
}
body.about .about-payment__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: #fff;
  border-radius: 9999px;
  padding: 2.8rem 4rem;
  margin-bottom: 1rem;
  border: 1px solid #e2d2ba;
}
body.about .about-payment__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.about .about-payment__icon img {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
body.about .about-payment__text {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  font-weight: bold;
  color: #131e4c;
  margin: 0;
  letter-spacing: 0.04em;
}
body.about .about-payment__note {
  font-size: 1.5rem;
  color: #000;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.about .about-payment {
    padding: 4rem 0 5rem;
  }
  body.about .about-payment__card {
    border-radius: 24px;
    padding: 2.4rem 2.4rem;
    gap: 1.4rem;
  }
  body.about .about-payment__icon img {
    width: 52px;
    height: 52px;
  }
  body.about .about-payment__text {
    font-size: 1.8rem;
  }
  body.about .about-payment__note {
    font-size: 1.3rem;
    text-align: left;
  }
}
@media screen and (max-width: 640px) {
  body.about .about-payment .inner {
    border-radius: 2rem;
    padding: 2rem;
  }
  body.about .about-payment__card {
    padding: 2rem;
  }
  body.about .about-payment__icon img {
    width: 32px;
    height: 32px;
  }
  body.about .about-payment__text {
    font-size: 1.6rem;
  }
}

/*
    Medical  /  診療案内
    固定ページのスラッグ: medical
    body.medical
===================================================*/
body.treatment .treatment-page__inner {
  padding: 0 0 10rem;
}
body.treatment .treatment-nav {
  padding: 10rem 0 4rem;
}
@media screen and (max-width: 768px) {
  body.treatment .treatment-nav {
    padding: 5rem 0;
  }
}
body.treatment .treatment-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
body.treatment .treatment-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2d2ba;
  border-radius: 9999px;
  padding: 2.4rem 1rem;
  text-decoration: none;
  font-size: var(--fz-4);
  font-weight: bold;
  color: #131e4c;
  letter-spacing: 0.06em;
  background: #fffefd;
  transition: background 0.2s, border-color 0.2s;
}
@media screen and (max-width: 768px) {
  body.treatment .treatment-nav__link {
    padding: 1.4rem 0.8rem;
  }
}
body.treatment .treatment-nav__link:hover {
  background: #faf3ea;
  border-color: #18594d;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  body.treatment .treatment-nav__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
body.treatment .treatment-section {
  border-radius: 40px;
  color: #18594d;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  body.treatment .treatment-section {
    margin-top: 0;
  }
}
body.treatment .treatment-section__inner {
  padding: 2rem 4rem 4rem;
  background-color: #faf3ea;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  body.treatment .treatment-section__inner {
    padding: 2rem;
    border-radius: 20px;
  }
}
body.treatment .treatment-section + body.treatment .treatment-section {
  border-top: 1px solid #e2d2ba;
}
body.treatment .treatment-section__head {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  body.treatment .treatment-section__head {
    display: block;
    text-align: center;
  }
}
body.treatment .treatment-section__icon {
  flex-shrink: 0;
  width: 170px;
  height: 170px;
  position: absolute;
  left: -40px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  body.treatment .treatment-section__icon {
    width: 80px;
    height: 80px;
    left: -20px;
    top: -40px;
  }
}
body.treatment .treatment-section__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
body.treatment .treatment-section__ttl {
  font-size: var(--heading03);
  font-weight: bold;
  color: #131e4c;
  margin: 0;
  letter-spacing: 0.04em;
  padding-left: 150px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  body.treatment .treatment-section__ttl {
    padding-left: 0;
    padding-bottom: 10px;
  }
}
body.treatment .treatment-section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 2.4rem;
}
body.treatment .treatment-section__img {
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
@media screen and (max-width: 768px) {
  body.treatment .treatment-section__img {
    border-radius: 20px;
  }
}
body.treatment .treatment-section__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.treatment .treatment-section__body {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
body.treatment .treatment-section__symptom-ttl {
  font-size: var(--fz-3);
  font-weight: bold;
  color: #18594d;
  margin: 0;
  letter-spacing: 0.04em;
}
body.treatment .treatment-section__symptom-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
body.treatment .treatment-section__symptom-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #000;
  line-height: 1.6;
}
body.treatment .treatment-section__symptom-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #18594d url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/12px 10px no-repeat;
}
body.treatment .treatment-section__text {
  line-height: 2;
  color: #000;
  margin: 2.4rem 0;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  body.treatment .treatment-section__text {
    padding: 1.6rem 0;
  }
}
body.treatment .treatment-section__prep {
  background: #fff;
  border-radius: 16px;
  padding: 2.4rem 3rem;
  border: 1px solid #e2d2ba;
  border-radius: 40px;
}
body.treatment .treatment-section__prep-ttl {
  font-size: var(--fz-3);
  font-weight: bold;
  color: #18594d;
  margin: 0 0 1rem;
  letter-spacing: 0.03em;
}
body.treatment .treatment-section__prep-text {
  line-height: 2;
  color: #000;
  margin: 0;
}
@media screen and (max-width: 768px) {
  body.treatment .treatment-section {
    padding: 3.5rem 0;
  }
  body.treatment .treatment-section__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  body.treatment .treatment-section__img {
    aspect-ratio: 16/9;
  }
  body.treatment .treatment-section__prep {
    padding: 2rem 1.6rem;
    border-radius: 12px;
  }
}

/*
    Doctor  /  医師紹介
    固定ページのスラッグ: doctor
    body.doctor
===================================================*/
body.doctor main img {
  width: 100%;
  height: auto;
  display: block;
}
body.doctor .doctor-profile {
  padding: 10rem 0;
  position: relative;
}
body.doctor .doctor-profile__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}
body.doctor .doctor-profile__intro__leaf-1 {
  position: absolute;
  pointer-events: none;
  --lb: scaleX(-1) rotate(-15deg);
  bottom: 10%;
  left: -10%;
  width: 5%;
  z-index: 3;
}
body.doctor .doctor-profile__intro__deco-1 {
  position: absolute;
  top: 5%;
  right: -5%;
  width: 15%;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
}
@media screen and (max-width: 768px) {
  body.doctor .doctor-profile__intro__deco-1 {
    width: 30%;
    top: 0;
    right: -5%;
  }
}
body.doctor .doctor-profile__intro__deco-2 {
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 15%;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  body.doctor .doctor-profile__intro__deco-2 {
    width: 30%;
  }
}
body.doctor .doctor-profile__intro__leaf-2 {
  position: absolute;
  pointer-events: none;
  bottom: 0;
  left: -5%;
  width: 5%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  body.doctor .doctor-profile__intro__leaf-2 {
    left: -5%;
    width: 15%;
    z-index: -1;
  }
}
body.doctor .doctor-profile__intro__leaf-3 {
  position: absolute;
  pointer-events: none;
  --lb: scaleX(-1) rotate(-15deg);
  top: -5%;
  left: 30%;
  width: 5%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  body.doctor .doctor-profile__intro__leaf-3 {
    top: -2%;
    left: 10%;
    width: 15%;
  }
}
body.doctor .doctor-profile__text {
  line-height: 2.2;
}
body.doctor .doctor-profile__photo-wrap {
  position: relative;
  width: 100%;
}
body.doctor .doctor-profile__img-bg {
  width: 80%;
  height: auto;
  display: block;
  position: relative;
  z-index: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  body.doctor .doctor-profile__img-bg {
    padding-bottom: 100px;
  }
}
body.doctor .doctor-profile__img-person {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  body.doctor .doctor-profile__img-person {
    bottom: 100px;
  }
}
body.doctor .doctor-profile__name-badge {
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 70%;
  z-index: 2;
  transform-origin: center center;
  opacity: 0;
}
body.doctor .doctor-profile__name-badge.is-visible {
  animation: leaf-fall-in 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s forwards;
}
@media screen and (max-width: 768px) {
  body.doctor .doctor-profile__name-badge {
    width: 90%;
  }
}
body.doctor .doctor-profile__badge-leaf {
  display: block;
  width: 100%;
  height: auto;
}
body.doctor .doctor-profile__badge-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  padding: 15% 8% 12% 18%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.doctor .doctor-profile__badge-text {
    font-size: 3.2vw;
  }
}
body.doctor .doctor-profile__clinic {
  color: #fff;
  letter-spacing: 0.04em;
}
body.doctor .doctor-profile__name {
  font-size: var(--fz-1);
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.06em;
}
body.doctor .doctor-section__inner {
  background: #fff;
  border-radius: 40px;
  padding: 5%;
  border: 1px solid #e2d2ba;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: var(--fz-4);
}
body.doctor .doctor-section__ttl {
  font-size: clamp(2.2rem, 2.2vw, 2.8rem);
  width: 100%;
  font-weight: bold;
  color: #18594d;
  text-align: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #18594d;
  margin: 0 0 2.4rem;
}
@media screen and (max-width: 768px) {
  body.doctor .doctor-section__ttl {
    padding-bottom: 0.5rem;
    margin: 0 0 1.6rem;
  }
}
body.doctor .doctor-career {
  margin-bottom: 2rem;
  position: relative;
}
body.doctor .doctor-career__list {
  margin: 2rem auto;
  padding: 0;
  display: flex;
  flex-direction: column;
}
body.doctor .doctor-career__item {
  display: flex;
  align-items: baseline;
  gap: 3rem;
  padding: 1.4rem 0;
}
body.doctor .doctor-career__item dt {
  color: #18594d;
  font-weight: bold;
  white-space: nowrap;
  min-width: 5.5em;
}
body.doctor .doctor-career__item dd {
  color: #000;
  margin: 0;
  line-height: 1.6;
  font-weight: bold;
}
body.doctor .doctor-credentials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
body.doctor .doctor-credentials__leaf-2 {
  position: absolute;
  pointer-events: none;
  --lb: scaleX(-1) rotate(-15deg);
  top: 60%;
  left: -2%;
  width: 5%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  body.doctor .doctor-credentials__leaf-2 {
    top: 0;
    left: -5%;
    width: 10%;
  }
}
body.doctor .doctor-credentials__leaf-1 {
  position: absolute;
  pointer-events: none;
  --lb: scaleX(-1) rotate(-15deg);
  top: 25%;
  right: -10%;
  width: 7%;
  z-index: 3;
}
body.doctor .doctor-credentials__deco-1 {
  position: absolute;
  top: 55%;
  left: -15%;
  width: 25%;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
  z-index: 3;
}
body.doctor .doctor-credentials__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
body.doctor .doctor-credentials__list li {
  color: #000;
  line-height: 1.7;
  padding-left: 1em;
  position: relative;
}
body.doctor .doctor-credentials__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #18594d;
}
body.doctor .doctor-qualifications {
  position: relative;
  z-index: -1;
}
body.doctor .doctor-qualifications__leaf-1 {
  position: absolute;
  pointer-events: none;
  --lb: scaleX(-1) rotate(10deg);
  bottom: -35%;
  right: -10%;
  width: 7%;
  z-index: 3;
}
body.doctor .doctor-qualifications__leaf-2 {
  position: absolute;
  pointer-events: none;
  bottom: 0;
  right: -10%;
  width: 5%;
  z-index: 3;
}
body.doctor .doctor-qualifications__deco-1 {
  position: absolute;
  top: 55%;
  left: -15%;
  width: 25%;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  body.doctor .doctor-profile {
    padding: 10rem 0 5rem;
  }
  body.doctor .doctor-profile__intro {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
  }
  body.doctor .doctor-profile__photo-wrap {
    margin: 0 auto;
  }
  body.doctor .doctor-career {
    padding: 2rem 1.6rem;
    border-radius: 16px;
  }
  body.doctor .doctor-career__item {
    gap: 0;
    padding: 1rem 0;
  }
  body.doctor .doctor-credentials {
    grid-template-columns: 1fr;
  }
  body.doctor .doctor-credentials__col {
    border-radius: 16px;
    padding: 2rem 1.6rem;
  }
  body.doctor .doctor-qualifications {
    border-radius: 16px;
    padding: 2rem 1.6rem;
    position: relative;
  }
}

/*
    Access  /  アクセス
    固定ページのスラッグ: access
    body.access
===================================================*/
body.access #access-page {
  padding-bottom: 8rem;
}
body.access .access-info {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  body.access .access-info {
    padding: 5rem 0;
  }
}
body.access .access-info__grid {
  display: flex;
  gap: 5rem;
  align-items: center;
  position: relative;
}
body.access .access-info__grid__deco-1 {
  position: absolute;
  left: -10%;
  width: 15%;
  z-index: 3;
  bottom: 0;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
}
body.access .access-info__grid__leaf-1 {
  position: absolute;
  left: -12%;
  width: 8%;
  z-index: 3;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  body.access .access-info__grid__leaf-1 {
    left: -10%;
    width: 15%;
    bottom: -10%;
  }
}
body.access .access-info__grid__leaf-2 {
  position: absolute;
  right: 30%;
  width: 5%;
  z-index: 3;
  bottom: 0;
  --lb: scaleX(-1) rotate(-15deg);
}
body.access .access-info__map {
  flex: 0 0 50%;
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  border-radius: 40px;
}
body.access .access-info__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
body.access .access-info__body {
  flex: 1;
}
body.access .access-info__list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin: 0;
  padding: 0;
}
body.access .access-info__item {
  display: flex;
  gap: 2rem;
  align-items: center;
}
body.access .access-info__icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background-color: #fff;
  border: 1px solid #e2d2ba;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
}
body.access .access-info__icon img {
  width: auto;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
body.access .access-info__content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: var(--fz-4);
}
body.access .access-info__label {
  flex-shrink: 0;
  color: #18594d;
  letter-spacing: 0.06em;
  min-width: 5em;
}
body.access .access-info__text {
  color: #000;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  body.access .access-info__grid {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  body.access .access-info__map {
    flex: none;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
  }
  body.access .access-info__list {
    gap: 1.5rem;
  }
  body.access .access-info__item {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  body.access .access-info__icon {
    width: 35px;
    height: 35px;
  }
  body.access .access-info__icon img {
    width: auto;
    height: 18px;
  }
  body.access .access-info__content {
    gap: 0;
    font-size: 1.3rem;
  }
}
body.access .access-entrance {
  background: #fcf9f6;
}
body.access .access-entrance__inner {
  background-color: #faf3ea;
  border-radius: 60px;
  padding: 5% 10%;
  position: relative;
}
body.access .access-entrance__inner__deco-1 {
  position: absolute;
  left: -15%;
  width: 20%;
  z-index: 1;
  bottom: -5%;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
}
body.access .access-entrance__inner__deco-2 {
  position: absolute;
  right: -10%;
  width: 20%;
  z-index: 3;
  top: -10%;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
}
@media screen and (max-width: 768px) {
  body.access .access-entrance__inner__deco-2 {
    width: 30%;
  }
}
body.access .access-entrance__ttl {
  font-size: clamp(2rem, 2.4vw, 3rem);
  font-weight: bold;
  color: #18594d;
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}
body.access .access-entrance__lead {
  font-size: var(--fz-base);
  line-height: 2;
  color: #000;
  margin-bottom: 4rem;
  text-align: center;
}
body.access .access-entrance__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}
body.access .access-entrance__caption {
  font-size: var(--fz-2);
  font-weight: bold;
  color: #18594d;
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 1.6rem;
}
body.access .access-entrance__img {
  border-radius: 60px;
  overflow: hidden;
}
body.access .access-entrance__img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  body.access .access-entrance__inner {
    border-radius: 20px;
    padding: 2rem;
  }
  body.access .access-entrance__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  body.access .access-entrance__img {
    border-radius: 20px;
  }
}
body.access .access-gallery {
  padding: 10rem 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.access .access-gallery {
    padding: 5rem 0;
  }
}
body.access .access-gallery__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: gallery-marquee 40s linear infinite;
}
body.access .access-gallery__slide {
  width: 460px;
  margin-right: 20px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 16px;
}
body.access .access-gallery__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 1024px) {
  body.access .access-gallery__slide {
    width: 280px;
  }
}
@media screen and (max-width: 768px) {
  body.access .access-gallery__slide {
    width: 200px;
    border-radius: 10px;
  }
}

/*
    Contact  /  お問い合わせ
    固定ページのスラッグ: contact
    body.contact
===================================================*/
/*
    Recruit  /  採用情報
    固定ページのスラッグ: recruit
    body.recruit
===================================================*/
body.recruit #recruit-page {
  padding-bottom: 5rem;
}
body.recruit .recruit-intro {
  display: grid;
  grid-template-columns: 20vw 1fr 20vw;
  align-items: flex-start;
  padding: 10rem 0 5rem;
  position: relative;
}
body.recruit .recruit-intro__deco-1 {
  position: absolute;
  top: 10%;
  left: 15%;
  width: 15%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  body.recruit .recruit-intro__deco-1 {
    width: 30%;
    left: -5%;
    top: 5%;
  }
}
body.recruit .recruit-intro__deco-2 {
  position: absolute;
  left: 10%;
  bottom: -10%;
  width: 15%;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  body.recruit .recruit-intro__deco-2 {
    left: -5%;
    bottom: -10%;
    width: 20%;
  }
}
body.recruit .recruit-intro__deco-3 {
  position: absolute;
  right: -5%;
  bottom: -15%;
  width: 16%;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
  z-index: 3;
}
body.recruit .recruit-intro__leaf-1 {
  position: absolute;
  pointer-events: none;
  top: 18%;
  left: 20%;
  width: 5%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  body.recruit .recruit-intro__leaf-1 {
    top: 10%;
    left: 2%;
    width: 10%;
  }
}
body.recruit .recruit-intro__leaf-2 {
  position: absolute;
  pointer-events: none;
  bottom: 0;
  left: 12%;
  width: 5%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  body.recruit .recruit-intro__leaf-2 {
    left: 5%;
    width: 12%;
    bottom: 10%;
    z-index: -1;
  }
}
body.recruit .recruit-intro__leaf-3 {
  position: absolute;
  pointer-events: none;
  bottom: -5%;
  right: 18%;
  width: 3%;
  z-index: -1;
  --lb: scaleX(-1) rotate(15deg);
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
}
@media screen and (max-width: 768px) {
  body.recruit .recruit-intro__leaf-3 {
    bottom: 0;
    right: 0;
    width: 12%;
  }
}
body.recruit .recruit-intro__leaf-4 {
  position: absolute;
  pointer-events: none;
  bottom: -5%;
  right: 22%;
  width: 5%;
  z-index: -1;
  --lb: scaleX(-1) rotate(15deg);
}
@media screen and (max-width: 768px) {
  body.recruit .recruit-intro__leaf-4 {
    right: 12%;
    width: 10%;
  }
}
body.recruit .recruit-intro__img-left img, body.recruit .recruit-intro__img-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 3/4;
}
body.recruit .recruit-intro__img-left img {
  border-radius: 0 20px 20px 0;
}
body.recruit .recruit-intro__img-right img {
  border-radius: 20px 0 0 20px;
}
body.recruit .recruit-intro__center {
  padding: 0 5rem;
}
body.recruit .recruit-intro__ttl {
  text-align: center;
  font-size: var(--fz-1);
}
body.recruit .recruit-intro__text {
  font-size: var(--fz-4);
  line-height: 2.2;
  color: #000;
  padding: 5%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.recruit .recruit-intro__text {
    padding: 2rem 0;
  }
}
@media screen and (max-width: 1024px) {
  body.recruit .recruit-intro {
    grid-template-columns: 22vw 1fr 22vw;
  }
  body.recruit .recruit-intro__center {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 768px) {
  body.recruit .recruit-intro {
    display: flex;
    flex-direction: column;
    padding: 5rem 0;
  }
  body.recruit .recruit-intro__img-left {
    order: 2;
    width: 45%;
    align-self: flex-start;
  }
  body.recruit .recruit-intro__center {
    order: 1;
    padding: 0 5%;
    width: 100%;
    margin-bottom: 3rem;
  }
  body.recruit .recruit-intro__img-right {
    order: 3;
    width: 45%;
    align-self: flex-end;
    margin-top: -12rem;
  }
}
body.recruit .recruit-job__head {
  text-align: center;
  margin-bottom: 4rem;
}
body.recruit .recruit-job__card {
  background: #fff;
  border-radius: 40px;
  padding: 4rem 8rem;
  border: 1px solid #e2d2ba;
  max-width: 1000px;
  margin: 0 auto;
}
body.recruit .recruit-job__list {
  margin: 0;
  padding: 0;
}
body.recruit .recruit-job__item {
  display: flex;
  align-items: baseline;
  gap: 3rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid #e2d2ba;
}
body.recruit .recruit-job__item:first-child {
  border-top: none;
}
body.recruit .recruit-job__text {
  padding: 2rem 0;
  text-align: center;
}
body.recruit .recruit-job__term {
  flex: 0 0 7em;
  font-weight: normal;
  color: #18594d;
  font-size: var(--fz-base);
}
body.recruit .recruit-job__desc {
  flex: 1;
  font-size: var(--fz-base);
  font-weight: bold;
  line-height: 1.9;
  color: #131e4c;
}
@media screen and (max-width: 768px) {
  body.recruit .recruit-job__head {
    margin-bottom: 2rem;
  }
  body.recruit .recruit-job__card {
    padding: 2rem;
    border-radius: 20px;
  }
  body.recruit .recruit-job__item {
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.4rem 0;
  }
  body.recruit .recruit-job__term {
    flex: none;
  }
}
body.recruit .recruit-flow {
  padding: 10rem 0;
  background: #fcf9f6;
  position: relative;
}
@media screen and (max-width: 768px) {
  body.recruit .recruit-flow {
    padding: 5rem 0 3rem;
  }
}
body.recruit .recruit-flow__deco-1 {
  position: absolute;
  top: 0;
  right: 10%;
  width: 15%;
  z-index: 1;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
}
@media screen and (max-width: 768px) {
  body.recruit .recruit-flow__deco-1 {
    right: -5%;
    width: 20%;
  }
}
body.recruit .recruit-flow__leaf-1 {
  position: absolute;
  pointer-events: none;
  top: 10%;
  left: 20%;
  width: 5%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  body.recruit .recruit-flow__leaf-1 {
    left: 10%;
    width: 8%;
  }
}
body.recruit .recruit-flow__head {
  text-align: center;
  margin-bottom: 4rem;
}
body.recruit .recruit-flow__steps {
  display: flex;
  align-items: stretch;
  position: relative;
}
body.recruit .recruit-flow__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.5rem 2.5rem;
  background: #fffefd;
  border: 1px solid #e2d2ba;
  border-radius: 16px;
  text-align: center;
}
body.recruit .recruit-flow__icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
body.recruit .recruit-flow__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
body.recruit .recruit-flow__text {
  font-size: 1.4rem;
  color: #000;
  text-align: left;
}
body.recruit .recruit-flow__text.is-highlight {
  color: #d9534f;
  font-weight: bold;
}
body.recruit .recruit-flow__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -20px;
  z-index: 1;
}
body.recruit .recruit-flow__arrow img {
  width: 52px;
  height: auto;
  display: block;
}
@media screen and (max-width: 1024px) {
  body.recruit .recruit-flow__icon {
    width: 56px;
    height: 56px;
  }
  body.recruit .recruit-flow__item {
    padding: 2rem 1rem 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  body.recruit .recruit-flow__head {
    margin-bottom: 2rem;
  }
  body.recruit .recruit-flow__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  body.recruit .recruit-flow__item {
    flex-direction: column;
    text-align: center;
    padding: 1rem 2rem;
    gap: 1rem;
  }
  body.recruit .recruit-flow__text {
    text-align: center;
  }
  body.recruit .recruit-flow__icon {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 48px;
    height: 48px;
  }
  body.recruit .recruit-flow__arrow {
    align-self: center;
    margin: 0 auto;
  }
  body.recruit .recruit-flow__arrow img {
    width: 24px;
    height: auto;
    transform: rotate(90deg);
  }
}

.news-body__card--single {
  background: #faf3ea;
  border-radius: 60px;
  padding: 5% 10%;
  margin: 0 auto;
  position: relative;
}
.news-body__card--single__deco-1 {
  position: absolute;
  left: -10%;
  width: 15%;
  z-index: 1;
  top: 0;
}
.news-body__card--single__leaf-1 {
  position: absolute;
  left: -10%;
  width: 7%;
  z-index: 1;
  top: 15%;
}
@media screen and (max-width: 768px) {
  .news-body__card--single__leaf-1 {
    left: -5%;
    width: 12%;
    top: -3%;
  }
}
.news-body__card--single__deco-2 {
  position: absolute;
  right: -10%;
  width: 18%;
  z-index: 1;
  bottom: 0;
  filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(450%) hue-rotate(125deg) brightness(88%) contrast(96%);
}
@media screen and (max-width: 768px) {
  .news-body__card--single__deco-2 {
    width: 30%;
    z-index: 1;
    bottom: -5%;
  }
}
@media screen and (max-width: 768px) {
  .news-body__card--single {
    padding: 5% 6%;
    border-radius: 20px;
  }
}

/*
    News  /  お知らせ一覧・詳細
    固定ページのスラッグ: news
    body.news
===================================================*/
body.news #news-page,
body.archive #news-page {
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  body.news #news-page,
  body.archive #news-page {
    padding-bottom: 0;
  }
}
body.news .news-body,
body.archive .news-body {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  body.news .news-body,
  body.archive .news-body {
    padding: 5rem 0;
  }
}
body.news .news-body__card,
body.archive .news-body__card {
  background: #fffefd;
  border-radius: 24px;
  padding: 5rem 6rem;
}
@media screen and (max-width: 768px) {
  body.news .news-body__card,
  body.archive .news-body__card {
    padding: 3rem 2.4rem;
  }
}
body.news .news-body__grid,
body.archive .news-body__grid {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  body.news .news-body__grid,
  body.archive .news-body__grid {
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  body.news .news-body__grid,
  body.archive .news-body__grid {
    flex-direction: column;
    gap: 4rem;
  }
}
body.news .news-section__ttl,
body.archive .news-section__ttl {
  font-size: var(--fz-2);
  font-weight: bold;
  color: #18594d;
  letter-spacing: 0.06em;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  body.news .news-section__ttl,
  body.archive .news-section__ttl {
    text-align: center;
  }
}
body.news .news-recent,
body.archive .news-recent {
  flex: 1;
}
body.news .news-list,
body.archive .news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  body.news .news-list,
  body.archive .news-list {
    gap: 1.5rem;
  }
}
body.news .news-list__item,
body.archive .news-list__item {
  border-radius: 12px;
  overflow: hidden;
}
body.news .news-list__link,
body.archive .news-list__link {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-decoration: none;
  color: #000;
  transition: background 0.2s;
  background-color: #fcf9f6;
  padding-right: 3rem;
}
body.news .news-list__link:hover,
body.archive .news-list__link:hover {
  background: #fcf9f6;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  body.news .news-list__link,
  body.archive .news-list__link {
    flex-wrap: wrap;
    gap: 0 1.5rem;
    padding-right: 0;
  }
}
body.news .news-list__date,
body.archive .news-list__date {
  flex-shrink: 0;
  background: #faf1e8;
  padding: 3rem 4rem;
  color: #131e4c;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.news .news-list__date,
  body.archive .news-list__date {
    width: 100%;
    padding: 1.2rem 2rem;
    text-align: left;
  }
}
body.news .news-list__title,
body.archive .news-list__title {
  flex: 1;
  font-size: var(--fz-base);
  color: #000;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  body.news .news-list__title,
  body.archive .news-list__title {
    padding: 1.2rem 2rem;
  }
}
body.news .news-list__arrow,
body.archive .news-list__arrow {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  body.news .news-list__arrow,
  body.archive .news-list__arrow {
    padding-right: 1.2rem;
  }
}
body.news .news-list__arrow img,
body.archive .news-list__arrow img {
  width: 40px;
  height: 40px;
  display: block;
}
@media screen and (max-width: 768px) {
  body.news .news-list__arrow img,
  body.archive .news-list__arrow img {
    width: 24px;
    height: 24px;
  }
}
body.news .news-empty,
body.archive .news-empty {
  font-size: var(--fz-base);
  color: rgba(0, 0, 0, 0.5);
  padding: 2rem 0;
}
body.news .news-pagination,
body.archive .news-pagination {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 3rem;
}
body.news .news-pagination__info,
body.archive .news-pagination__info {
  background: #18594d;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 100px;
  padding: 8px 20px;
}
body.news .news-pagination__pages,
body.archive .news-pagination__pages {
  display: flex;
  gap: 0.8rem;
}
body.news .news-pagination__pages a,
body.news .news-pagination__pages span,
body.archive .news-pagination__pages a,
body.archive .news-pagination__pages span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2d2ba;
  font-size: 1.4rem;
  text-decoration: none;
  color: #000;
  transition: background 0.2s;
}
body.news .news-pagination__pages a:hover,
body.archive .news-pagination__pages a:hover {
  background: #faf3ea;
  opacity: 1;
}
body.news .news-pagination__pages .current,
body.archive .news-pagination__pages .current {
  background: #18594d;
  color: #ffffff;
  border-color: #18594d;
}
body.news .news-archive,
body.archive .news-archive {
  flex: 0 0 260px;
}
@media screen and (max-width: 1024px) {
  body.news .news-archive,
  body.archive .news-archive {
    flex: 0 0 200px;
  }
}
@media screen and (max-width: 768px) {
  body.news .news-archive,
  body.archive .news-archive {
    flex: none;
    width: 100%;
  }
}
body.news .news-archive__list,
body.archive .news-archive__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
body.news .news-archive__item, body.news .news-archive__back,
body.archive .news-archive__item,
body.archive .news-archive__back {
  border: 1px solid #e2d2ba;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fcf9f6;
}
body.news .news-archive__link,
body.archive .news-archive__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  text-decoration: none;
  color: #000;
  transition: background 0.2s;
}
body.news .news-archive__link:hover,
body.archive .news-archive__link:hover {
  background: #fcf9f6;
  opacity: 1;
}
body.news .news-archive__date,
body.archive .news-archive__date {
  flex: 1;
  text-align: center;
  font-size: 1.4rem;
  color: #131e4c;
  letter-spacing: 0.04em;
}
body.news .news-archive__all,
body.archive .news-archive__all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  border: 1px solid #e2d2ba;
  border-radius: 12px;
  text-decoration: none;
  color: #000;
  margin-top: 1.2rem;
  transition: background 0.2s;
  background-color: #fcf9f6;
}
body.news .news-archive__all:hover,
body.archive .news-archive__all:hover {
  background: #fcf9f6;
  opacity: 1;
}
body.news .news-archive__all-label,
body.archive .news-archive__all-label {
  flex: 1;
  text-align: center;
  font-size: 1.4rem;
  color: #131e4c;
  letter-spacing: 0.04em;
}
body.news .news-archive .news-list__arrow img,
body.archive .news-archive .news-list__arrow img {
  width: 32px;
  height: 32px;
  display: block;
}
@media screen and (max-width: 768px) {
  body.news .news-archive .news-list__arrow img,
  body.archive .news-archive .news-list__arrow img {
    width: 24px;
    height: 24px;
  }
}

/*
    Single Post  /  お知らせ詳細
    body.single-post
===================================================*/
body.single-post #news-page {
  padding-bottom: 0;
}
body.single-post .news-body {
  padding: 10rem 0 0;
}
@media screen and (max-width: 768px) {
  body.single-post .news-body {
    padding: 5rem 0;
  }
}
body.single-post .single-post {
  margin-bottom: 4rem;
}
body.single-post .single-post__head {
  margin-bottom: 3rem;
}
body.single-post .single-post__date {
  color: #131e4c;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  display: block;
}
body.single-post .single-post__ttl {
  font-size: var(--fz-2);
  font-weight: bold;
  color: #131e4c;
  line-height: 1.6;
}
body.single-post .single-post__img {
  margin-bottom: 3.2rem;
  border-radius: 16px;
  overflow: hidden;
}
body.single-post .single-post__img img {
  width: 100%;
  height: auto;
  display: block;
}
body.single-post .single-post__body {
  font-size: var(--fz-base);
  line-height: 2;
  color: #000;
}
body.single-post .single-post__body h2,
body.single-post .single-post__body h3,
body.single-post .single-post__body h4 {
  font-weight: bold;
  margin: 3rem 0 1.2rem;
}
body.single-post .single-post__body h2 {
  font-weight: 700;
  color: #18594d;
  border-left: 4px solid #18594d;
  padding: 0.4rem 0 0.4rem 1.2rem;
  margin: 4rem 0 1.6rem;
  line-height: 1.5;
  font-size: var(--fz-3);
}
body.single-post .single-post__body h3 {
  font-size: var(--fz-4);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #131e4c;
  margin: 3rem 0 1.2rem;
  line-height: 1.5;
  color: #131e4c;
}
body.single-post .single-post__body ul,
body.single-post .single-post__body ol {
  padding-left: 2em;
  margin-bottom: 2rem;
}
body.single-post .single-post__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
  padding-top: 3.2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 640px) {
  body.single-post .single-post__nav {
    gap: 1rem;
  }
}
body.single-post .single-post__nav-side {
  flex: 1;
}
body.single-post .single-post__nav-side.--right {
  display: flex;
  justify-content: flex-end;
}
body.single-post .single-post__nav-side.--right .single-post__nav-link {
  justify-content: flex-end;
}
body.single-post .single-post__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid #e2d2ba;
  border-radius: 100px;
  text-decoration: none;
  color: #18594d;
  background: #fffefd;
  transition: background 0.2s;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body.single-post .single-post__nav-link {
    padding: 1rem 1.6rem;
  }
}
body.single-post .single-post__nav-link:hover {
  background: #fcf9f6;
  opacity: 1;
}
body.single-post .single-post__nav-link.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}
body.single-post .single-post__nav-arrow {
  flex-shrink: 0;
}
body.single-post .single-post__nav-arrow img {
  width: 32px;
  height: 32px;
  display: block;
}
@media screen and (max-width: 768px) {
  body.single-post .single-post__nav-arrow img {
    width: 24px;
    height: 24px;
  }
}
body.single-post .single-post__nav-arrow.--left img {
  transform: rotate(180deg);
}
body.single-post .single-post__nav-label {
  letter-spacing: 0.04em;
  white-space: nowrap;
}
body.single-post .single-post__nav-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 8rem;
  border: 1px solid #e2d2ba;
  background-color: #fff;
  color: #18594d;
  border-radius: 100px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  transition: opacity 0.2s;
}
body.single-post .single-post__nav-back:hover {
  opacity: 0.8;
}
@media screen and (max-width: 640px) {
  body.single-post .single-post__nav-back {
    padding: 1rem 1.6rem;
  }
}
body.single-post .single-related {
  padding: 4rem 0 8rem;
}
body.single-post .single-related .news-section__ttl {
  text-align: center;
  font-size: var(--fz-2);
  font-weight: bold;
  color: #131e4c;
  letter-spacing: 0.06em;
  margin-bottom: 2.4rem;
}
body.single-post .single-related__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  body.single-post .single-related__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  body.single-post .single-related__list {
    grid-template-columns: 1fr;
  }
}
body.single-post .single-related__item {
  border: 1px solid #e2d2ba;
  border-radius: 100vw;
  overflow: hidden;
  background: #fff;
}
body.single-post .single-related__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  text-decoration: none;
  color: #000;
  transition: background 0.2s;
}
body.single-post .single-related__link:hover {
  background: #faf3ea;
  opacity: 1;
}
body.single-post .single-related__date {
  flex: 1;
  text-align: center;
  color: #131e4c;
  letter-spacing: 0.04em;
}
body.single-post .single-related__arrow img {
  width: 32px;
  height: 32px;
  display: block;
}
@media screen and (max-width: 768px) {
  body.single-post .single-related__arrow img {
    width: 24px;
    height: 24px;
  }
}/*# sourceMappingURL=style-official.css.map */