@charset "UTF-8";
/* ============================================
   Reset & Base Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", sans-serif;
  color: var(--p-txt01);
  overflow-x: hidden;
  font-weight: 500;
  line-height: 1.6em;
  animation: fadeIn 1s 0.5s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

:root {
  --p-txt01: #2E353C;
  --txt01: #56514B;
  --p-main02: #4E8CCA;
  --p-main01: #1C6BB9;
  --i-txt02: #4A4E57;
  --i-txt01: #4B4F55;
  --i-bdr01: #E6E6E6;
  --p-sub01: #5CC0EB;
}

h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5em;
  color: var(--p-txt01);
}

.content-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7em;
  color: var(--p-txt01);
}

.about-section {
  margin: 60px 0;
  position: relative;
  z-index: 0;
  width: 100%;
  overflow: hidden;
  min-height: 1200px;
}

.about-bg-area {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.about-bg1 {
  background: url(../images/top/about-bg1.webp);
  position: relative;
  top: 33.1%;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about-bg2 {
  background: url(../images/top/img05.webp) no-repeat;
  position: absolute;
  background-size: auto 420px;
  background-position: center;
  top: -6%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: 0;
  margin: 0;
}

.about-bg3 {
  background: url(../images/top/img03.webp) no-repeat right;
  position: absolute;
  background-size: 206px 206px;
  top: 3%;
  right: 11%;
  width: 100%;
  height: 100%;
  z-index: 0;
  margin-right: 16px;
}

.about-bg4 {
  background: url(../images/top/img04.webp) no-repeat left;
  position: absolute;
  background-size: 206px 206px;
  top: -25%;
  right: -17%;
  width: 100%;
  height: 100%;
  z-index: 0;
  margin-left: 16px;
}

/* ============================================
   Header Styles
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 135px;
  background: transparent;
  z-index: 1000;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.has-accordion-open {
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}

header.active .header__inner {
  background-color: #fff;
}

/* Logo */
.header__logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.header__logo-img {
  max-width: 311px;
  height: auto;
}

/* Navigation (PC) */
.header__nav {
  position: absolute;
  left: auto;
  right: 550px;
  /* transform: translateX(-50%); */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  width: 407px;
}

.header__nav-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  color: #2E353C;
  transition: opacity 0.3s;
}

.header__nav-link:hover {
  opacity: 0.7;
}

.header__nav-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header__nav-main {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.header__nav-item {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  color: #2E353C;
  transition: opacity 0.3s;
  white-space: nowrap;
  display: inline-block;
  text-decoration: none;
  outline: none;
  border-bottom: 1px;
  text-shadow: 2px 2px 8px #FFF, -2px -2px 8px #FFF, -2px 2px 8px #FFF, 2px -2px 8px #FFF, 0 2px 8px #FFF, 0 -2px 8px #FFF, -2px 0 8px #FFF, 3px 0 8px #FFF;
}

.header__nav-item:hover {
  color: #2E353C;
}

.header__nav-main a {
  position: relative;
}

.header__nav-main a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #1B85FB;
  bottom: -2px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s;
}

.header__nav-main a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

.header__nav-item--accordion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.header__nav-arrow {
  width: 12px;
  height: 7px;
  transition: transform 0.3s;
}

.header__nav-item--accordion[aria-expanded=true] .header__nav-arrow {
  transform: rotate(180deg);
}

/* Accordion Menu (PC) */
.header__nav-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 160px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.header__nav-accordion-content {
  position: fixed;
  top: 135px;
  left: 0;
  width: 100vw;
  /* transform: translateX(-50%); */
  background: transparent;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  z-index: 999;
}

.header__nav-accordion-content::before {
  content: "";
  position: fixed;
  top: 135px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 135px);
  background: rgba(28, 107, 185, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
  /* ← クリック邪魔なら付ける */
  z-index: -1;
}

.header__nav-accordion-col p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7em;
}

.font-small {
  font-size: 14px;
}

.header__nav-accordion-content.is-active {
  opacity: 1;
  visibility: visible;
}

.header__nav-accordion-content.is-active::before {
  opacity: 1;
}

.header__nav-accordion-content .header__nav-accordion-inner {
  width: 100%;
  margin: 0 auto;
  background: #E8F3FF;
  padding: 40px 140px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.header__nav-accordion-content .header__nav-accordion-grid {
  width: 100%;
  margin: 0 auto;
  max-width: 1160px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header__nav-accordion-grid {
  display: flex;
  gap: 40px;
}

.header__nav-accordion-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.header__nav-accordion-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  color: #2E353C;
  transition: opacity 0.3s;
}

.header__nav-accordion-link:hover {
  opacity: 0.7;
}

.header__nav-accordion-icon {
  width: 7px;
  height: 12px;
  flex-shrink: 0;
}

/* Contact Area (PC) */
.header__contact {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}

.header__contact-phone {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid #5CC0EB;
  border-radius: 500px;
  background: #FFFFFF;
  color: #5CC0EB;
  text-decoration: none;
  z-index: 2;
  transition: color 0.4s ease;
}

/* Ripple背景 */
.header__contact-phone::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  margin: auto;
  border-radius: 50%;
  background: #5CC0EB;
  opacity: 0;
  transform: translateY(-50%) scale(0.1);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}

.header__contact-phone:hover,
.header__contact-phone:hover .header__contact-phone-text p {
  color: #FFFFFF;
  opacity: 1;
}

.header__contact-phone:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(2.7);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}

.header__contact-phone-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__contact-phone-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.header__contact-phone-number {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25em;
  letter-spacing: 0.05em;
  color: #3DABDA;
}

.header__contact-phone-time {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  color: #3DABDA;
}

.header__contact-reservation {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 32px;
  background: linear-gradient(237deg, rgb(92, 192, 235) 0%, rgb(78, 142, 207) 100%);
  border-radius: 0 0 0 24px;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.4s ease;
  z-index: 2;
}

/* Ripple背景 */
.header__contact-reservation::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  margin: auto;
  border-radius: 50%;
  background: #ffffff;
  /* 初期状態 */
  opacity: 0;
  transform: translateY(-50%) scale(0.1);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}

.header__contact-reservation:hover {
  color: rgb(78, 142, 207);
  border: 1px solid rgb(78, 142, 207);
  opacity: 1;
}

.header__contact-reservation:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(2.7);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}

.header__contact-reservation::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 50%;
  width: 40px;
  height: 40px;
  background-image: url(../images/top/reservation-header-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, 0);
  z-index: 2;
  display: block;
  opacity: 0;
  transition: all 0.6s ease;
}
.header__contact-reservation:hover::before {
  opacity: 1;
}

.header__contact-reservation-icon {
  width: 40px;
  height: 40px;
}

.with1385 {
  display: none;
}

.header__contact-reservation span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25em;
  letter-spacing: 0.05em;
}

/* Menu Button (SP) */
.header__menu-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 15px;
  width: 64px;
  height: 64px;
  background: linear-gradient(237deg, rgb(92, 192, 235) 0%, rgb(78, 142, 207) 100%);
  border-radius: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.header__menu-btn-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

.header__menu-btn-line {
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  transition: all 0.3s;
}

.header__menu-btn-text {
  font-family: "Marcellus SC", serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1em;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}

.header__menu-btn.is-active .header__menu-btn-line:nth-child(1) {
  transform: translate(0px, 5px) rotate(45deg);
}

.header__menu-btn.is-active .header__menu-btn-line:nth-child(2) {
  opacity: 0;
}

.header__menu-btn.is-active .header__menu-btn-line:nth-child(3) {
  transform: translate(0px, -5px) rotate(-45deg);
}

/* ============================================
   Mobile Menu (SP)
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 390px;
  height: 100vh;
  background: #E8F3FF;
  z-index: 100;
  transition: right 0.3s ease-out;
  overflow-y: auto;
  padding-top: 64px;
}
.mobile-menu::before {
  content: "";
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 390px;
  height: 64px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease-out;
  z-index: 101;
}

.mobile-menu.is-active {
  right: 0;
}
.mobile-menu.is-active::before {
  right: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu.is-active ~ .mobile-menu__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__content {
  padding: 40px 32px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu__accordion-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu__item.mobile-menu__item--link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.mobile-menu__item--link img {
  width: 24px;
  height: auto;
}

.button-group hr {
  width: 1px;
  height: 40px;
  border: none;
  background-color: rgba(78, 142, 207, 0.4);
  margin: 0;
}

.vector01 {
  z-index: 2;
  position: absolute;
  left: 93%;
  top: 16%;
}

.vector02 {
  z-index: 2;
  position: absolute;
  top: 60%;
}

.mobile-menu__accordion-trigger {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.with870 {
  display: none;
}

.button-group {
  display: flex;
  gap: 16px;
  align-items: center;
}

.mobile-menu__item-label {
  display: flex;
  flex-direction: column;
}

.mobile-menu__item-en {
  font-family: "Marcellus SC", serif;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  line-height: 1.4em;
  letter-spacing: 0.1em;
  color: #4E8CCA;
}

.mobile-menu__item-ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  color: #2E353C;
}

.mobile-menu__item-arrow {
  display: flex;
  transition: transform 0.3s;
}

.mobile-menu__accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-left: 16px;
}

.mobile-menu__accordion-content.is-active {
  max-height: 2000px;
}

.mobile-menu__accordion-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  color: #2E353C;
}

.pt16 {
  padding-top: 16px;
}

.pb0 {
  padding-bottom: 0px;
}

.mobile-menu__accordion-link svg {
  width: 7px;
  height: 12px;
  flex-shrink: 0;
}

.sp-only {
  display: none;
}

.sp-only-36 {
  display: none;
}

.mobile-menu__links {
  display: flex;
  gap: 8px;
}

.mobile-menu__link {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 16px;
  background: #FFFFFF;
  border-radius: 8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  color: #2E353C;
}

.mobile-menu__link img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

.mobile-menu__contact {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu__contact-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  color: #2E353C;
}

.mobile-menu__contact-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #5CC0EB;
}

.mobile-menu__contact-phone,
.mobile-menu__contact-reservation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px;
  background: #FFFFFF;
  border-radius: 8px;
}

.mobile-menu__contact-phone-text,
.mobile-menu__contact-reservation-text {
  display: flex;
  gap: 12px;
}

.mobile-menu__contact-phone-number {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  color: #2E353C;
}

.mobile-menu__contact-phone-time {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  color: #2E353C;
}

.mobile-menu__contact-reservation-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25em;
  letter-spacing: 0.05em;
  color: #2E353C;
}

.mobile-menu__contact-reservation-subtitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  color: #2E353C;
}

/* ============================================
   Hero Section
   ============================================ */
.section-hero {
  position: relative;
  width: 100%;
  margin-top: 40px;
  overflow: hidden;
}

.section-hero__title-group {
  margin-top: 100px;
}

.section-hero__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 820px;
  z-index: 1;
  overflow: hidden;
  border-radius: 80px;
}

.section-hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  /* ← これが横中央の鍵 */
  border-radius: 80px;
}

.section-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 250px 140px 80px;
}

/* Title Group */
h1 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.7em;
  letter-spacing: 0.1em;
  color: #2E353C;
  text-shadow: 3px 3px 8px #FFF, -3px -3px 8px #FFF, -3px 3px 8px #FFF, 3px -3px 8px #FFF, 0 3px 8px #FFF, 0 -3px 8px #FFF, -3px 0 8px #FFF, 3px 0 8px #FFF;
}

.section-hero__title {
  gap: 4px;
}

.with480 {
  display: none;
}

.df {
  display: block;
}

.dots {
  background-image: radial-gradient(circle at center, #5CC0EB, transparent 20%);
  background-position: top center;
  background-repeat: repeat-x;
  background-size: 1.1em 0.3em;
  padding-top: 0.2em;
}

.blue {
  color: #4E8CCA;
}

.section-hero__title-decoration {
  width: 182px;
  height: 6px;
  margin-left: 17px;
}

.section-hero__subtitle {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.7em;
  letter-spacing: 0.1em;
  text-shadow: 3px 3px 8px #FFF, -3px -3px 8px #FFF, -3px 3px 8px #FFF, 3px -3px 8px #FFF, 0 3px 8px #FFF, 0 -3px 8px #FFF, -3px 0 8px #FFF, 3px 0 8px #FFF;
}

/* Badge */
.section-hero__badge {
  position: absolute;
  right: 140px;
  margin-top: 84px;
  width: 504px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.section-hero__badge-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 17px 24px;
  border-radius: 8px;
  overflow: hidden;
  z-index: 2;
}

.section-card-bg {
  background: url(../images/top/section-card-bg01.webp) no-repeat top right, url(../images/top/vector22.svg) no-repeat top 5px left;
  background-size: auto 143px, 69px 69px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 8px;
}

.section-hero__badge-title-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.section-hero__badge-title p {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  color: #2E353C;
  text-shadow: 2px 2px 8px #FFF, -2px -2px 8px #FFF, -2px 2px 8px #FFF, 2px -2px 8px #FFF, 0 2px 8px #FFF, 0 -2px 8px #FFF, -2px 0 8px #FFF, 2px 0 8px #FFF;
}

.with768 {
  display: none;
}

.section-hero__badge-line {
  width: 283px;
  height: 0;
  margin-top: 8px;
}

.section-hero__badge-subtitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  color: #2E353C;
  margin-left: 105px;
}

.section-hero__badge-text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  color: #2E353C;
  text-shadow: 0 0 4px rgb(255, 255, 255), 0 0 4px rgb(255, 255, 255);
}

/* Feature Cards */
.section-hero__ffeature {
  display: flex;
  gap: 8px;
  margin-top: 236px;
}

.section-hero__feature-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px 7px;
  background: #F4FAFF;
  border-radius: 8px;
}

.section-hero__feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.section-hero__feature-text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  color: #56514B;
  text-align: center;
}

/* ============================================
   Fixed Menu (SP)
   ============================================ */
.fixed-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-top: 1px solid #E6E6E6;
  z-index: 1500;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fixed-menu.is-visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.fixed-menu__item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px;
  height: 56px;
  border-right: 1px solid #E6E6E6;
  transition: background 0.3s;
}

.fixed-menu__item:last-child {
  border-right: none;
  /* ------------------
  	251210 add
  ------------------ */
}
.fixed-menu__item:last-child .fixed-menu__text {
  font-size: 16px;
}

.fixed-menu__item:hover {
  background: #F5F5F5;
}

.fixed-menu__icon {
  width: 24px;
  height: 24px;
}

.fixed-menu__text {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  color: #2E353C;
}

/* section base */
.news {
  padding: 48px 64px 92px;
}

.news__inner {
  max-width: 959px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.title_gorup {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* head block */
.news__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.news__title {
  font-family: "Marcellus SC", serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--p-main02);
  font-weight: 500;
}

.news__sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--i-txt02);
}

/* link button */
.news__link {
  font-size: 14px;
  line-height: 1.7;
  color: var(--i-txt01);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s;
}

.news__link p {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #c4c4c4;
  text-underline-offset: 2px;
}

.news__link:hover {
  opacity: 0.7;
}

.news__icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #8ba4c6;
  display: inline-block;
  position: relative;
}

.news__icon::after {
  content: "→";
  font-size: 10px;
  color: #8ba4c6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* List */
.news__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news__item {
  display: flex;
  align-items: center;
  gap: 24px;
}

.item__header {
  display: flex;
  gap: 16px;
  align-items: center;
}

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

tr {
  border-bottom: 1px solid #E6E6E6;
}

td {
  padding: 12px 8px;
}

.news__date {
  font-size: 16px;
  color: #555;
  white-space: nowrap;
}

.news-line {
  border: none;
  width: 100%;
  height: 1px;
  background-color: var(--i-bdr01);
}

/* Label */
.news__label {
  width: 96px;
  font-size: 12px;
  border: 1px solid var(--p-main02);
  padding: 0 4px;
  text-align: center;
  color: var(--p-main02);
  border-radius: 100vmax;
  white-space: nowrap;
}

.news__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--i-txt01);
}

.with516 {
  display: none;
}

.clinic-info {
  position: relative;
  width: 100%;
  margin-top: 40px;
  overflow: hidden;
}

.section-clinic__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.section-decorat {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 96px;
  z-index: 2;
  overflow: hidden;
  text-align: center;
}

.tr-line {
  border: none;
  width: 100%;
  height: 1px;
  background-color: #E6E6E6;
}

.title-decorat {
  font-family: "Marcellus SC", serif;
  font-size: 86.4px;
  line-height: 1;
  color: #F6FBFF;
  font-weight: 400;
}

.section-clinic-content {
  position: relative;
  z-index: 2;
  max-width: 1288px;
  margin: 0 auto;
  padding: 0px 64px 120px;
}

.section-clinic__bg-img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  -o-object-position: center;
     object-position: center;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  gap: 4px;
}

.section-header img {
  width: 24px;
  height: 24px;
}

.header-buttom {
  display: flex;
  gap: 12px;
  align-items: center;
}

.section-header .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--p-main02);
  border-radius: 50%;
}

.info-container {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px; */
}

.infi-item {
  width: 100%;
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 76px 0 24px 0;
  align-items: stretch;
}

.child {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.clinic-card,
.map-card {
  flex: 1;
  /* ←高さを揃える本体 */
  display: flex;
  flex-direction: column;
}

.clinic-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 医院情報カード */
.clinic-card {
  background-color: #fff;
  padding: 40px;
  border-radius: 16px;
}

.clinic-name img {
  width: 100%;
  max-width: 351px;
  margin-bottom: 24px;
}

.text {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
}

.hours {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin: 40px 0 16px;
}

.with530 {
  display: none;
}

.day {
  background-color: var(--p-main01);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7em;
  display: flex;
}

.times {
  display: flex;
  align-items: center;
}

.height79 {
  min-height: 79.4px;
}

.hours th,
.hours td {
  padding: 12px 6px;
  line-height: 1.7em;
}

.times .height79 {
  border-bottom: 1px solid #e0e0e0;
}

.with61 {
  min-width: 61px;
}

.hours th {
  flex: 1;
}

.bl {
  color: var(--p-sub01);
  flex: 1;
}

.bc {
  color: var(--p-txt01);
  font-size: 12px;
}

.clinic-ul {
  list-style: none;
  font-size: 14px;
}

.day-left {
  min-width: 145px;
}

.note {
  font-size: 12px;
  color: #666;
}

/* アクセスカード */
.map-card {
  background-color: #fff;
  padding: 0;
  border-radius: 16px;
  min-height: 488px;
}

.map-img {
  border-radius: 16px 16px 0 0;
  max-height: 262px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-bottom {
  display: flex;
  gap: 12px;
  align-items: center;
}

.access-list {
  list-style: none;
  padding-left: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7em;
}

.card-bottom {
  width: 100%;
  padding: 24px;
}

/* 予約カード */
.clinic-contact {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.phone-card,
.web-card {
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  gap: 4px;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.tel-title {
  font-size: 30px;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.7;
  color: var(--p-txt01);
}

.contact-title {
  font-size: 24px;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 2.15;
  color: var(--p-txt01);
}

.phone-number {
  font-size: 20px;
  font-weight: bold;
  margin: 12px 0;
}

.hours-info,
.hours-info {
  font-size: 14px;
  color: var(--p-txt01);
  font-weight: 500;
  line-height: 1.7;
}

.section-worries {
  margin: 120px 0 60px;
  position: relative;
  width: 100%;
  min-height: 800px;
  overflow: hidden;
}

.bg-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg1 {
  background: url("../images/top/img00.webp") no-repeat left bottom;
  background-size: 95% 504px;
  margin-right: 60px;
  position: absolute;
  top: -23%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg2 {
  position: relative;
  background: url("../images/top/img01.webp") no-repeat right top;
  background-size: 95% 504px;
  position: absolute;
  top: 7%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg3 {
  background: url("../images/top/vector20.svg") no-repeat top right;
  background-size: 120px 120px;
  position: absolute;
  top: 20%;
  left: -65%;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.bg4 {
  background: url("../images/top/img02.webp") no-repeat 30% bottom;
  background-size: 446px auto;
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.container {
  position: relative;
  width: 100%;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 36px;
}

.list-box {
  background-color: #FFFFFF;
  border-radius: 16px;
  width: 100%;
  max-width: 700px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-content {
  display: flex;
  gap: 32px;
}

.ch-child {
  flex: 1;
}

.check-list {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px dashed #7E8791;
  padding-bottom: 8px;
}

.check-item {
  color: #56514B;
}

.text-area {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  margin-left: auto;
}

.title-small {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}

.title-main {
  position: relative;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  color: var(--p-main02);
  z-index: 2;
  text-shadow: 2px 2px 2px #FFF, -2px -2px 2px #FFF, -2px 2px 2px #FFF, 2px -2px 2px #FFF, 0 2px 2px #FFF, 0 -2px 2px #FFF, -2px 0 2px #FFF, 2px 0 2px #FFF;
}

.worri-line {
  width: 370px;
  border: none;
  border-top: 4px solid #EFDABB;
  margin: -7px auto 0 auto;
  display: block;
  position: relative;
  z-index: 1;
}

.with675 {
  display: none;
}

.list-content {
  text-align: left;
}

.about-top {
  position: relative;
  padding: 0 16px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.about-title-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
}

.logo-en {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.about-title-small {
  font-family: "Marcellus SC", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.16em;
  color: var(--p-main02);
}

.catchcopy {
  position: relative;
  display: flex;
  align-items: flex-start;
  z-index: 2;
  gap: 12px;
  width: auto;
  margin: 60px 0 0 75%;
}

.catchcopy-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 28px;
  letter-spacing: 0.05em;
  line-height: 1.2em;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 8px;
  display: inline-block;
  height: auto;
  flex: none;
}

.catchcopy-text.line1 {
  margin-top: 32px;
}

.sub-text-area {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7em;
  color: #5F6972;
}

.service-icons {
  margin-top: 180px;
  margin-bottom: 24px;
  position: relative;
  justify-content: center;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px;
  display: flex;
  gap: 29px;
}

.service-item-link {
  max-width: 144px;
  height: 144px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-item p {
  font-size: 16px;
  line-height: 1.7em;
  letter-spacing: 0.03em;
}

.info-cards {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  justify-content: center;
  z-index: 2;
  padding: 16px;
  display: flex;
  gap: 24px;
}

.card-left {
  width: 100%;
  max-width: 716px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  text-align: center;
  min-height: 242px;
}

.card-title p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  color: var(--p-main02);
}

.card-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7em;
  letter-spacing: 0.03em;
}

.weight400 {
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.03em;
  line-height: 2em;
}

.card-right {
  position: relative;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  background-color: #F5F9F9;
  border-radius: 8px;
  z-index: 1;
}

.sub-bg {
  background: url("../images/top/img06.webp") no-repeat top right, url("../images/top/vector21.svg") no-repeat top 30px left;
  background-size: auto 274px, 69px 69px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.card-right-txet {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: auto 0;
}

.card-content {
  position: relative;
  width: 100%;
  max-width: 200px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: -16px;
}

.about-card-title {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  color: var(--p-txt01);
  text-align: center;
}

.about-card-sm-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  color: var(--p-txt01);
  text-align: center;
  margin-top: 4px;
}

.about-card-text {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.5em;
  color: var(--p-txt01);
}

.feature-grid {
  width: 100%;
  padding: 64px 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #EBF5FF;
  border-radius: 24px;
  min-height: 490px;
}

.feature-card-img {
  position: relative;
}

.feature-card-icon {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.feature-card-icon img {
  width: 104px;
  height: auto;
}

.feature-card-body {
  padding: 24px 32px 32px;
}

.feature-card-number {
  font-family: "Marcellus SC", serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--p-sub01);
  line-height: 1.4em;
  letter-spacing: 0.03em;
  text-align: center;
}

.feature-card-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7em;
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: 0.3em;
}

.feature-card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.03em;
  text-align: left;
}

.feature {
  width: 100%;
  position: relative;
  margin: 60px 0;
}

.feature-bg-img {
  position: absolute;
  top: 9%;
  left: 15%;
}

.feature-button-area {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 356px;
  max-width: 100%;
  height: 72px;
  border-radius: 500px;
  background-color: var(--p-main02);
  border: 1px solid var(--p-main02);
  padding: 16px 24px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  z-index: 2;
  transition: color 0.4s ease;
}

/* Ripple背景 */
.feature-link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  margin: auto;
  border-radius: 50%;
  background: #FFFFFF;
  opacity: 0;
  transform: translateY(-50%) scale(0.1);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}

.feature-link:hover {
  opacity: 1;
}

.feature-link:hover p,
.feature-link:hover svg {
  color: var(--p-main02); /* ホバー */
}

.feature-link:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(2.7);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}

.feature-link p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.7em;
  color: #FFFFFF;
  margin: 0 auto;
}

.feature-link svg {
  color: #FFFFFF;
  position: absolute;
  right: 22px;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1650px) {
  .bg4 {
    left: -5%;
  }
  .about-bg3 {
    right: 5%;
  }
  .about-bg4 {
    right: -10%;
  }
  .feature-bg-img {
    left: 60px;
  }
}
@media (max-width: 1385px) {
  .with1385 {
    display: block;
  }
  .about-bg3 {
    right: 0;
  }
  .about-bg4 {
    right: -2%;
  }
}
@media (max-width: 1350px) {
  .header__nav {
    right: 520px;
  }
  .header__contact-phone-time {
    font-size: 10px;
  }
}
@media (max-width: 1280px) {
  .feature-bg-img {
    left: 0;
  }
  .header__inner {
    padding: 0 32px;
  }
  .header__logo-img {
    width: 280px;
  }
  .section-hero__content {
    padding: 200px 64px 60px;
  }
  .section-hero__badge {
    right: 65px;
    width: 450px;
  }
  .text-area {
    max-width: 640px;
  }
  .list-box {
    max-width: 640px;
  }
}
@media (max-width: 1260px) {
  .header__nav,
  .header__contact {
    display: none;
  }
  .header__menu-btn {
    display: flex;
  }
  .header {
    height: 64px;
  }
  .section-clinic-content {
    padding: 0px 36px 120px;
  }
  .clinic-card {
    padding: 24px;
  }
}
/* Tablet (1024px) */
@media (max-width: 1110px) {
  .header__nav {
    width: 350px;
  }
  .with1385 {
    display: none;
  }
  .header__nav-main {
    gap: 16px;
  }
  .header__nav-item {
    font-size: 14px;
  }
  .header__contact {
    gap: 16px;
  }
  .header__contact-phone {
    padding: 10px 20px;
  }
  .header__contact-phone-number {
    font-size: 20px;
  }
  .section-hero__content {
    padding: 180px 60px 50px;
  }
  .section-hero__title {
    font-size: 32px;
  }
  .section-hero__subtitle {
    font-size: 26px;
  }
  .section-hero__badge {
    right: 60px;
  }
  .section-hero__ffeature {
    flex-wrap: wrap;
  }
  .section-hero__feature-card {
    flex: 0 0 calc(50% - 4px);
  }
  .section-hero__feature-card:first-of-type {
    flex: 0 0 100%;
  }
  .container {
    padding: 100px 36px;
  }
  .text-area {
    margin: 280px auto 0;
  }
  .bg1 {
    top: 0;
  }
  .bg2 {
    top: 40%;
  }
  .bg4 {
    position: relative;
    background-size: 446px auto;
    background-position: center;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 1;
  }
}
@media (max-width: 1031px) {
  .infi-item {
    flex-direction: column;
  }
  .section-clinic-content {
    padding: 0px 64px 120px;
  }
  .map-img {
    max-height: 494px;
  }
  .clinic-contact {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }
  .service-icons {
    padding: 8px;
    gap: 16px;
  }
}
@media (max-width: 870px) {
  .with870 {
    display: block;
  }
}
/* Small Tablet (768px) */
@media (max-width: 768px) {
  .vector02 {
    width: 80px;
    height: 80px;
    top: 4%;
  }
  .vector01 {
    width: 62px;
    height: 14px;
    left: 82%;
    top: 11%;
  }
  .section-card-bg {
    background: url(../images/top/section-card-bg01.webp) no-repeat top right, url(../images/top/vector22.svg) no-repeat top 5px left;
    background-size: auto 156px, 69px 69px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .phone-card,
  .web-card {
    padding: 16px;
    border-radius: 8px;
  }
  .tel-title {
    font-size: 24px;
  }
  .contact-title {
    font-size: 22px;
  }
  .feature-bg-img {
    top: 3%;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 40px 16px;
  }
  .section-worries {
    margin: 32px 0;
  }
  .text-area {
    margin: 210px auto 0;
  }
  .bg1 {
    background: url("../images/top/img00-sp.webp") no-repeat left bottom;
    background-size: 98% 217px;
    position: absolute;
    top: -5%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .bg2 {
    position: relative;
    background: url("../images/top/img01-sp.webp") no-repeat right top;
    background-size: 98% 217px;
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .bg4 {
    position: relative;
    background: url("../images/top/img04-sp.webp") no-repeat right top;
    background-size: 256px auto;
    background-position: center;
    top: -25%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .text-area {
    gap: 16px;
  }
  .container {
    padding: 32px 24px;
  }
  .section-clinic-content {
    padding: 32px 16px;
  }
  .card-icon {
    min-width: 40px;
  }
  .about-section {
    margin: 32px 0;
    padding: 0 16px;
    min-height: 1120px;
  }
  .about-top {
    padding: 0;
    margin-bottom: 24px;
  }
  .about-title-main {
    font-size: 24px;
  }
  .about-title-small {
    font-size: 14px;
  }
  .sub-text-area {
    font-size: 16px;
    padding: 0 16px;
  }
  .catchcopy {
    width: 100%;
    margin-top: 0;
  }
  .catchcopy-text {
    font-size: 20px;
    padding: 6px;
  }
  .service-icons {
    margin-top: 150px;
    margin-bottom: 24px;
    padding: 0;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .service-item-link {
    max-width: 100px;
    height: 100px;
    padding: 12px;
  }
  .service-item p {
    font-size: 12px;
  }
  .info-cards {
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }
  .card-left {
    max-width: 100%;
    padding: 20px;
    min-height: auto;
  }
  .card-title p {
    font-size: 20px;
  }
  .card-text {
    font-size: 14px;
  }
  .card-right {
    max-width: 100%;
  }
  .card-content {
    max-width: 210px;
    margin-left: 24px;
    margin-top: 0;
  }
  .about-card-title {
    font-size: 18px;
  }
  .about-card-sm-title {
    font-size: 12px;
  }
  .about-card-text {
    font-size: 12px;
  }
  .title-main {
    font-size: 24px;
  }
  .title-small {
    font-size: 14px;
  }
  .list-box {
    gap: 12px;
    padding: 24px;
  }
  .header {
    /* background: transparent;
    box-shadow: none;
    transition: background 0.3s ease, box-shadow 0.3s ease; */
  }
  .list-content {
    gap: 12px;
  }
  .df {
    display: none;
  }
  .with768 {
    display: block;
  }
  .header.is-scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  .header.has-accordion-open {
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  .header__nav-accordion-content {
    display: none !important;
  }
  .header__inner {
    padding: 0 20px;
  }
  .header__logo {
    left: 20px;
  }
  .header__logo-img {
    width: 263px;
  }
  .section-hero__content {
    padding: 353px 52px 40px;
  }
  .section-hero__title-group {
    padding-bottom: 60px;
    margin-top: 0;
  }
  .section-hero__title {
    font-size: 27px;
    line-height: 1.4em;
  }
  .section-hero__title-decoration {
    width: 134px;
    margin-left: 15px;
  }
  .section-hero__subtitle {
    padding-top: 8px;
    font-size: 20px;
    line-height: 1.5em;
  }
  .section-hero__badge {
    position: absolute;
    width: 100%;
    min-height: 156px;
    margin: 0 auto 40px;
    right: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 480px;
    z-index: 1;
  }
  .section-hero__badge-content {
    padding: 7px 11px 10px 24px;
    z-index: 2;
  }
  .section-hero__badge-title {
    font-size: 16px;
  }
  .section-hero__badge-title p {
    font-size: 16px;
  }
  .section-hero__badge-title-group {
    margin-bottom: 1px;
    gap: 0;
  }
  .section-hero__badge-subtitle {
    font-size: 12px;
    margin-left: 33px;
  }
  .section-hero__badge-text {
    font-size: 14px;
  }
  .section-hero__feature-text {
    font-size: 14px;
  }
  .fixed-menu {
    display: flex;
  }
  .fixed-menu.is-visible {
    display: flex;
  }
  .news {
    padding: 32px 24px;
  }
  .news__inner,
  .news__list {
    gap: 32px;
  }
  .news__text {
    font-size: 14px;
  }
  .news__head {
    gap: 10px;
  }
  .title_gorup {
    flex-direction: column;
    gap: 4px;
  }
  .news__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .day-left {
    min-width: 80px;
  }
  .news__date,
  .news__label {
    margin-bottom: 6px;
  }
  .about-bg1 {
    background: url(../images/top/about-bg1-sp.webp);
    position: relative;
    top: 20%;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .about-bg2 {
    background: url(../images/top/img05-sp.webp) no-repeat;
    position: absolute;
    background-size: auto 358px;
    background-position: center;
    top: -18%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    margin: 0;
  }
  .about-bg3 {
    background-size: 112px 112px;
    top: -14%;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    margin-right: 16px;
  }
  .about-bg4 {
    background-size: 112px 112px;
    top: -45%;
    right: 2%;
    width: 100%;
    height: 100%;
    z-index: 0;
    margin-left: 16px;
  }
  .worri-line {
    width: 290px;
  }
  .check-list {
    line-height: 1.6;
  }
}
@media (max-width: 600px) {
  .service-icons {
    gap: 4px;
  }
  .service-item-link {
    max-width: 80px;
    height: 80px;
    padding: 4px;
  }
  .section-hero__badge {
    max-width: 326px;
  }
  .service-item img {
    width: 32px;
    height: auto;
  }
  .with480 {
    display: block;
  }
  .service-item p {
    font-size: 10px;
  }
  .section-card-bg {
    background-size: auto 178px, 69px 69px;
  }
}
@media (min-width: 574px) and (max-width: 675px) {
  .with675 {
    display: block;
  }
}
@media (max-width: 573px) {
  .list-box {
    font-size: 10px;
  }
}
@media (max-width: 516px) {
  .section-header {
    margin-top: 56px;
  }
  .section-decorat {
    top: 92px;
  }
  .title-decorat {
    font-size: 52px;
  }
  h3 {
    font-size: 24px;
  }
  .clinic-name img {
    max-width: 293px;
  }
  .clinic-card {
    padding: 16px;
  }
  .with61 {
    min-width: 32px;
  }
  .with516 {
    display: block;
  }
  .bc {
    line-height: 1em;
  }
}
@media (min-width: 440px) and (max-width: 530px) {
  .with530 {
    display: block;
  }
}
@media (min-width: 481px) {
  .card-right br.sp {
    display: none;
  }
}
/* Mobile (480px) */
@media (max-width: 480px) {
  .section-hero__bg,
  .section-hero__bg-img {
    border-radius: 32px;
  }
  .section-card-bg {
    background-image: url(../images/top/section-card-bg01_sp.webp), url(../images/top/vector22.svg);
    background-size: auto 156px, 69px 69px;
  }
  .feature-link {
    width: 358px;
    height: 64px;
  }
  .feature-grid {
    gap: 40px;
  }
  .feature-card {
    min-height: 400px;
  }
  .section-hero__feature-card .with1385 {
    display: block;
  }
  .feature-card-body {
    padding: 24px 16px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .header__inner {
    padding: 0 16px;
  }
  .header__logo {
    left: 16px;
  }
  .header__logo-img {
    width: 200px;
  }
  .section-hero__content {
    padding: 420px 20px 30px;
  }
  .section-hero__title {
    font-size: 24px;
  }
  .section-hero__subtitle {
    font-size: 18px;
  }
  .section-hero__badge {
    max-height: 230px;
  }
  .section-hero__feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .section-hero__feature-text {
    text-align: center;
  }
  .fixed-menu__text {
    font-size: 14px;
  }
  .about-section {
    margin: 28px 0;
    padding: 32px 12px 42px;
  }
  .about-section .sub-text-area {
    padding-left: 0;
    padding-right: 0;
  }
  .about-section .about-subtext {
    font-size: 18px;
  }
  .about-section .about-subtext:last-of-type {
    margin-top: 0.55em;
  }
  .about-top {
    margin-bottom: 20px;
  }
  .about-bg2 {
    top: -15%;
  }
  .sub-text-area {
    font-size: 14px;
    padding: 0 8px;
  }
  .catchcopy {
    gap: 8px;
  }
  .catchcopy-text {
    font-size: 16px;
    padding: 4px;
  }
  .service-icons {
    margin-top: 180px;
    margin-bottom: 20px;
  }
  .service-item-link {
    max-width: 64px;
    height: 65px;
    padding: 4px;
  }
  .service-item img {
    width: 30px;
    height: auto;
  }
  .service-item p {
    font-size: 8px;
  }
  .info-cards {
    gap: 12px;
  }
  /* .sub-bg {
    background:
      url('../images/img06-sp.webp') no-repeat top right,
      url('../images/vector21.svg') no-repeat top 30px left;
    background-size: auto 274px, 69px 69px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
  }  */
  .sub-bg {
    background: url(../images/top/img06-sp.webp) no-repeat top right, url(../images/top/vector21.svg) no-repeat top 20px left;
    background-size: auto 180px, 50px 50px;
  }
  .card-right {
    background-color: #FFFFFF;
  }
  .card-right .about-card-text {
    font-size: 14px;
  }
  .card-right .about-card-text br {
    display: none;
  }
  .card-right .about-card-text br.sp {
    display: block;
  }
  .card-right-txet {
    gap: 8px;
  }
  .card-left {
    padding: 16px;
  }
  .card-content {
    margin: 0 0 0 8px;
  }
  .card-title p {
    font-size: 18px;
  }
  .card-text {
    font-size: 12px;
  }
  .info-cards .card-text {
    font-size: 16px;
  }
  .about-card-title {
    font-size: 16px;
  }
  .about-card-text {
    font-size: 11px;
  }
  .hours {
    margin-top: 24px;
  }
  .with480 {
    display: block;
  }
  .feature-card-text {
    font-size: 14px;
  }
}
@media (max-width: 390px) {
  .about-bg2 {
    top: -16%;
  }
  .about-bg1 {
    top: 22%;
  }
  .card-bottom {
    padding: 16px;
  }
  .tel-title {
    font-size: 24px;
  }
  .contact-title {
    font-size: 22px;
  }
  .infi-item {
    padding: 40px 0 32px 0;
  }
}
@media (max-width: 385px) {
  .about-section .about-subtext {
    font-size: 16px;
  }
  .sp-only-36 {
    display: block;
  }
  .clinic-name img {
    max-width: 250px;
  }
  .hours th,
  .hours td {
    padding: 12px 3px;
    line-height: 1.7;
  }
}
@media (max-width: 360px) {
  .section-hero__badge {
    max-width: 280px;
  }
  .section-card-bg {
    background-size: auto 100px, 69px 69px;
  }
  .feature-link {
    width: 250px;
  }
  .service-icons {
    margin-top: 140px;
  }
  .mobile-menu__link {
    flex-direction: column;
  }
  .day {
    font-size: 12px;
  }
  .times {
    font-size: 12px;
  }
  .clinic-card {
    padding: 8px;
  }
  .section-hero__content {
    padding: 420px 16px 30px;
  }
  .news {
    padding: 32px 16px;
  }
  .section-clinic-content {
    padding: 32px 8px;
  }
  .access-list {
    /* font-size: 14px; */
  }
  .card-left {
    gap: 8px;
  }
}
/* Small Mobile (300px) */
@media (max-width: 305px) {
  .sp-only {
    display: block;
  }
  .header__logo-img {
    width: 180px;
  }
  .section-hero__title-main {
    font-size: 20px;
  }
  .section-hero__subtitle {
    font-size: 16px;
  }
}
/* ------------------
	scss common
------------------ */
.tac {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .tac {
    text-align: left;
  }
}

.feature-link.-white-btn {
  background-color: #fff;
  border: 2px solid var(--p-main02);
}
.feature-link.-white-btn p {
  color: var(--p-main02);
}
.feature-link.-white-btn path {
  fill: var(--p-main02);
}
.feature-link.-white-btn::after {
  background-color: var(--p-main02);
}
.feature-link.-white-btn:hover p {
  color: #fff;
}
.feature-link.-white-btn:hover path {
  fill: #fff;
}

.inner {
  max-width: 1160px;
  width: calc(100% - 32px);
  margin: 0 auto;
}

/* ------------------
	top doctor section
------------------ */
.top-doctor {
  position: relative;
  margin: 184px 0 0 60px;
  padding: 30px 0 120px;
  background-color: #E8F3FF;
  border-radius: 80px 0 0 0;
  -webkit-border-radius: 80px 0 0 0;
}
@media screen and (max-width: 1024px) {
  .top-doctor {
    margin: 64px 0 100px 17px;
    padding: 64px 0;
    border-radius: 40px 0 0 16px;
    -webkit-border-radius: 40px 0 0 16px;
  }
}
.top-doctor__flex {
  padding-left: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
@media screen and (min-width: 1681px) {
  .top-doctor__flex {
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .top-doctor__flex {
    padding: 0 15px;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
}
.top-doctor__ttl {
  position: relative;
  margin: 40px 0 24px;
  color: #4B4F55;
}
@media screen and (max-width: 1024px) {
  .top-doctor__ttl {
    margin: 32px 0 16px;
    font-size: 18px;
  }
}
.top-doctor__ttl::before {
  position: absolute;
  content: "";
  width: 191px;
  aspect-ratio: 191/65;
  top: -60px;
  right: 34px;
  z-index: 1;
  background: url(../images/top/doctor-txt.webp) no-repeat center center/cover;
}
@media screen and (max-width: 1024px) {
  .top-doctor__ttl::before {
    width: 141px;
    top: -42px;
    right: 0;
  }
}
.top-doctor__cont {
  max-width: 572px;
}
@media screen and (max-width: 1024px) {
  .top-doctor__cont {
    max-width: 100%;
  }
  .top-doctor__cont .feature-card-text {
    margin-top: 12px;
  }
}
.top-doctor__cont .feature-button-area {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .top-doctor__cont .feature-button-area {
    position: absolute;
    bottom: 64px;
    max-width: calc(100% - 30px);
  }
}
.top-doctor__cont .feature-card-text:not(:first-of-type) {
  margin-top: 1em;
}
.top-doctor__fig {
  position: relative;
  max-width: 688px;
  margin-top: -64px;
}
@media screen and (max-width: 1024px) {
  .top-doctor__fig {
    margin: 0 -15px 112px auto;
  }
}
.top-doctor__img img {
  border-radius: 40px 0 0 40px;
  -webkit-border-radius: 40px 0 0 40px;
}
@media screen and (max-width: 1024px) {
  .top-doctor__img img {
    border-radius: 16px 0 0 16px;
    -webkit-border-radius: 16px 0 0 16px;
  }
}
.top-doctor__cap {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px 40px;
  color: #32313B;
  background-color: #fff;
  border-radius: 40px 0 0 0;
  -webkit-border-radius: 40px 0 0 0;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .top-doctor__cap {
    padding: 16px 24px;
    border-radius: 24px 0 0 0;
    -webkit-border-radius: 24px 0 0 0;
  }
}
@media screen and (max-width: 1024px) {
  .top-doctor__cap-catch {
    font-size: 14px;
  }
}
.top-doctor__cap-name {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1024px) {
  .top-doctor__cap-name {
    margin-top: 4px;
    font-size: 18px;
  }
}
.top-doctor__cap-name small {
  margin-top: 2px;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .top-doctor__cap-name small {
    font-size: 12px;
  }
}

/* ------------------
	top menu section
------------------ */
.top-menu {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .top-menu {
    margin-top: 64px;
  }
}
.top-menu__top {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 10px 40px;
}
@media screen and (max-width: 768px) {
  .top-menu__top {
    max-width: 100%;
    margin-top: 40px;
    padding: 0 10px;
    background-color: #E8F3FF;
  }
}
.top-menu__top::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 200%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #E8F3FF;
  border-radius: 100vmax 100vmax 0 0;
  -webkit-border-radius: 100vmax 100vmax 0 0;
}
@media screen and (max-width: 768px) {
  .top-menu__top::before {
    width: 100%;
    height: 40px;
    background: url(../images/top/pickup-sp_bg.png) no-repeat center center/100% 40px;
    top: -40px;
  }
}
.top-menu__top-txt {
  margin-top: 24px;
  text-align: center;
}
.top-menu__top-txt .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-menu__top-txt .sp {
    display: block;
  }
}
.top-menu__main {
  padding: 64px 0 99.5px;
  background-color: #E8F3FF;
  border-radius: 64px;
  -webkit-border-radius: 64px;
}
@media screen and (max-width: 768px) {
  .top-menu__main {
    padding: 24px 0 64px;
    border-radius: 0 0 40px 40px;
    -webkit-border-radius: 0 0 40px 40px;
  }
}
.top-menu__main-wrap {
  max-width: 1160px;
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 64px;
  background-color: #fff;
  border-radius: 40px;
  -webkit-border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .top-menu__main-wrap {
    padding: 24px 16px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
  }
}
.top-menu__main-wrap.-pick {
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .top-menu__main-wrap.-pick {
    margin-top: 24px;
  }
}
.top-menu__first-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .top-menu__first-flex {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
.top-menu__first-flex:not(:first-of-type) {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .top-menu__first-flex:not(:first-of-type) {
    font-size: 24px;
  }
}
.top-menu__first-ttl {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .top-menu__first-ttl {
    font-size: 18px;
  }
}
.top-menu__first-ttl::before, .top-menu__first-ttl::after {
  position: absolute;
  content: "";
  width: 8px;
  aspect-ratio: 1;
  top: calc(50% - 4px);
  background-color: #4E8CCA;
  z-index: 1;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
.top-menu__first-ttl::before {
  left: 0;
}
.top-menu__first-ttl::after {
  right: 0;
}
.top-menu__first-ttl strong {
  font-weight: 500;
  color: #4E8CCA;
}
.top-menu__first-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .top-menu__first-grid {
    margin-top: 16px;
  }
}
.top-menu__first-grid li {
  list-style: none;
}
.top-menu__first-grid__link {
  display: block;
  padding: 34px 16px 32px;
  background-color: #EBF5FF;
  border-radius: 16px;
  -webkit-border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .top-menu__first-grid__link {
    padding: 8px;
    background-color: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    -webkit-border-radius: 8px;
  }
}
.top-menu__first-grid__link.-hassml {
  padding-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .top-menu__first-grid__link.-hassml {
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .top-menu__first-grid__link.-sp {
    padding-top: 14.5px;
    padding-bottom: 14.5px;
  }
}
.top-menu__first-grid__ico {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top-menu__first-grid__ico {
    max-width: 62px;
  }
}
.top-menu__first-grid__flex {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .top-menu__first-grid__flex {
    margin-top: 2px;
  }
}
.top-menu__first-grid__flex .feature-card-text {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top-menu__first-grid__flex .feature-card-text {
    margin: 0 auto;
    font-size: 12px;
    text-align: center;
  }
}
.top-menu__first-grid__flex small {
  display: block;
  font-size: 0.75em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .top-menu__first-grid__flex small {
    font-size: 10px;
    text-align: center;
  }
}
.top-menu__first-grid__arw {
  width: 24px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5CC0EB;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 768px) {
  .top-menu__first-grid__arw {
    display: none;
  }
}
.top-menu__first-grid__arw svg {
  width: 12px;
}
.top-menu__first-grid__arw path {
  fill: #fff;
}
.top-menu__pick-ttl {
  padding-top: 22px;
  text-align: center;
  font-size: 20px;
  color: #9F8662;
  font-family: "Quicksand", sans-serif;
  background: url(../images/top/vector13.svg) no-repeat top center/57px auto;
}
@media screen and (max-width: 768px) {
  .top-menu__pick-ttl {
    font-size: 18px;
  }
}
.top-menu__pick-catch {
  position: relative;
  max-width: 574px;
  margin: 11px auto 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #fff;
  text-align: center;
  background: url(../images/top/vector14.webp) no-repeat center center/contain;
  border-top: 2px solid #2E353C;
  border-bottom: 2px solid #2E353C;
}
@media screen and (max-width: 768px) {
  .top-menu__pick-catch {
    padding: 5px 0;
    background: url(../images/top/vector14.webp) no-repeat center center/90% 100%;
    font-size: 20px;
    line-height: 1.5;
  }
}
.top-menu__pick-catch::before, .top-menu__pick-catch::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #2E353C;
  left: 0;
  z-index: 1;
}
.top-menu__pick-catch::before {
  top: -5px;
}
.top-menu__pick-catch::after {
  bottom: -5px;
}
.top-menu__pick-catch br {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-menu__pick-catch br {
    display: block;
  }
}
.top-menu__pick-list {
  margin-top: 48px;
}
.top-menu__pick-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .top-menu__pick-item {
    flex-direction: column;
    gap: 16px;
  }
}
.top-menu__pick-item:not(:first-of-type) {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid #D2DBE3;
}
@media screen and (max-width: 768px) {
  .top-menu__pick-item:not(:first-of-type) {
    margin-top: 32px;
    padding-top: 0;
    border-top-width: 0;
  }
}
.top-menu__pick-lft {
  position: relative;
  max-width: 496px;
  padding-top: 14px;
}
@media screen and (max-width: 768px) {
  .top-menu__pick-lft {
    max-width: 100%;
  }
}
.top-menu__pick-num {
  position: absolute;
  top: 0;
  left: 40px;
  width: 80px;
  aspect-ratio: 80/100;
  padding-top: 27px;
  padding-right: 5px;
  font-size: 32px;
  color: #4E8CCA;
  text-align: center;
  font-family: "Marcellus SC", serif;
  background: url(../images/top/pickup-num_bg.svg) no-repeat top left/cover;
}
@media screen and (max-width: 768px) {
  .top-menu__pick-num {
    left: 16px;
    width: 64px;
    padding-top: 20px;
    font-size: 28px;
  }
}
.top-menu__pick-cont {
  max-width: 496px;
}
@media screen and (max-width: 768px) {
  .top-menu__pick-cont {
    max-width: 100%;
  }
}
.top-menu__pick-cont__catch {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 1px;
  color: #4B4F55;
}
@media screen and (max-width: 768px) {
  .top-menu__pick-cont__catch {
    font-size: 18px;
  }
}
.top-menu__pick-hg {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #4E8CCA;
}
@media screen and (max-width: 768px) {
  .top-menu__pick-hg {
    margin-bottom: 16px;
  }
}
.top-menu__pick-hg__ico {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.top-menu__pick-hg__ttl {
  margin-top: 10px;
  font-size: 42px;
  color: #4E8CCA;
  font-family: "Marcellus SC", serif;
  text-align: center;
  font-weight: 400;
  letter-spacing: 4px;
}
@media screen and (max-width: 768px) {
  .top-menu__pick-hg__ttl {
    font-size: 32px;
    letter-spacing: 3px;
  }
}
.top-menu__pick-hg__txt {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #899096;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-menu__pick-hg__txt {
    margin-top: 5px;
    font-size: 18px;
  }
}
.top-menu__pick-img__wrap {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .top-menu__pick-img__wrap {
    margin-top: 16px;
  }
}
.top-menu__pick-img__wrap img {
  border-radius: 16px;
  -webkit-border-radius: 16px;
}
.top-menu .feature-link {
  margin: 64px auto 0;
  display: flex;
}
@media screen and (max-width: 768px) {
  .top-menu .feature-link {
    margin-top: 40px;
  }
}
@media screen and (max-width: 450px) {
  .top-menu .feature-link {
    width: calc(100% - 32px);
  }
}

/* ------------------
	top price section
------------------ */
.top-price {
  max-width: 1160px;
  margin: 120px auto 0;
  padding-bottom: 40px;
  background: url(../images/top/price-img.webp) no-repeat bottom center/100% auto;
}
@media screen and (max-width: 768px) {
  .top-price {
    margin-top: 64px;
    background-image: url(../images/top/price-img_sp.webp);
  }
}
.top-price__inner {
  position: relative;
  max-width: 876px;
  margin: 0 auto;
  width: calc(100% - 32px);
  padding: 40px 64px;
  border-radius: 0 0 64px 64px;
  -webkit-border-radius: 0 0 64px 64px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-price__inner {
    padding: 40px 16px;
    border-radius: 0 0 40px 40px;
    -webkit-border-radius: 0 0 40px 40px;
  }
}
.top-price__inner::before {
  position: absolute;
  content: "";
  inset: 0;
  backdrop-filter: blur(40px) brightness(1.1);
  -webkit-backdrop-filter: blur(40px) brightness(1.1);
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}
.top-price__cont {
  position: relative;
  z-index: 3;
}
.top-price .feature-card-text {
  margin: 24px 0;
}
.top-price .feature-link {
  display: flex;
  margin: 0 auto;
}
@media screen and (max-width: 450px) {
  .top-price .feature-link {
    width: 100%;
  }
}

/* ------------------
	top facility section
------------------ */
.top-facility {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .top-facility {
    margin-top: 64px;
    overflow: hidden;
  }
}
.top-facility__gala {
  margin: 64px 0;
  display: flex;
}
@media screen and (max-width: 768px) {
  .top-facility__gala {
    margin: 40px 0;
  }
}
@media screen and (max-width: 480px) {
  .top-facility__gala {
    min-width: 193%;
    margin-left: -46.5%;
  }
}
@media screen and (max-width: 480px) {
  .top-facility__img:first-of-type {
    order: 3;
  }
  .top-facility__img:nth-of-type(2) {
    order: 2;
  }
  .top-facility__img:last-of-type {
    order: 1;
  }
}
.top-facility .feature-link {
  display: flex;
  margin: 0 auto;
}

/* ------------------
	top blog section
------------------ */
.top-blog {
  margin: 120px auto 0;
  width: calc(100% - 32px);
}
.top-blog .news__inner {
  max-width: 1160px;
}
.top-blog__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .top-blog__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.top-blog__thum {
  aspect-ratio: 365/226;
}
.top-blog__thum img {
  width: 100%;
  height: 100%;
  aspect-ratio: 365/226;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 16px;
  -webkit-border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .top-blog__thum img {
    border-radius: 8px;
    -webkit-border-radius: 8px;
  }
}
.top-blog__flex {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 5px 16px;
}
@media screen and (max-width: 768px) {
  .top-blog__flex {
    margin-top: 16px;
    flex-wrap: wrap;
  }
}
.top-blog__date {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .top-blog__date {
    font-size: 14px;
  }
}
.top-blog__cate {
  width: 96px;
  padding: 4px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: var(--p-main02);
  border: 1px solid var(--p-main02);
  background-color: #fff;
  text-align: center;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 768px) {
  .top-blog__cate {
    width: 70px;
  }
}
.top-blog__ttl {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top-blog__ttl {
    margin-top: 8px;
  }
}

/* ------------------
	top access section
------------------ */
.top-access {
  max-width: 1160px;
  width: calc(100% - 32px);
  margin: 120px auto 0;
}
@media screen and (max-width: 768px) {
  .top-access {
    margin-top: 64px;
  }
}
.top-access .infi-item {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .top-access .infi-item {
    padding-bottom: 32px;
    gap: 32px;
  }
}
.top-access .clinic-details {
  width: 50%;
}
@media screen and (max-width: 1031px) {
  .top-access .clinic-details {
    width: 100%;
  }
}
.top-access .clinic-card {
  background-color: #E8F3FF;
  border-radius: 16px;
  -webkit-border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .top-access .clinic-card {
    border-radius: 8px;
    -webkit-border-radius: 8px;
  }
}
.top-access .card-bottom {
  background-color: #E8F3FF;
  border-radius: 0 0 16px 16px;
  -webkit-border-radius: 0 0 16px 16px;
}
.top-access__bnr {
  display: block;
}
.top-access__bnr img {
  border-radius: 8px;
  -webkit-border-radius: 8px;
}
.top-access__wrap {
  margin-top: 16px;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 1031px) {
  .top-access__wrap {
    justify-content: center;
    gap: 8px;
  }
}
.top-access__link {
  height: 56px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
}
.top-access__link.feature-link.-white-btn {
  border-width: 1px;
}
@media screen and (max-width: 768px) {
  .top-access__link {
    padding: 16px;
    height: 56px;
  }
  .top-access__link svg {
    right: 16px;
  }
}
@media screen and (max-width: 390px) {
  .top-access__link svg {
    right: 10px;
  }
}
.top-access .phone-card {
  border: 1px solid #5CC0EB;
}
.top-access .web-card {
  border: 1px solid #1C6BB9;
}

/* ------------------
	footer
------------------ */
.footer {
  margin-top: 80px;
  padding: 64px 0;
  background-color: #EBF5FF;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 64px;
    margin-bottom: 56px;
    padding: 16px;
  }
}

.sitemap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .sitemap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .sitemap {
    display: none;
  }
}
.sitemap-list {
  list-style: none;
}
.sitemap-item:not(:first-of-type) {
  margin-top: 16px;
}
.sitemap-item:has(.sitemap-dtl__list) {
  margin-top: 24px;
}
.sitemap-item a {
  position: relative;
  display: block;
  padding-left: 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: #4B4F55;
}
.sitemap-item a::before {
  position: absolute;
  content: "";
  width: 7px;
  aspect-ratio: 7/12;
  top: calc(50% - 6px);
  left: 0;
  background: url(../images/top/vector18.svg) no-repeat center center/cover;
}
.sitemap-item a.no-item {
  height: 1.7em;
}
.sitemap-item a.no-item::before {
  display: none;
}
.sitemap-dtl__list {
  margin-left: 8px;
  list-style: none;
}
.sitemap-dtl__item {
  margin-top: 16px;
}
.sitemap-dtl__item a {
  font-weight: 400;
}
.sitemap-dtl__item a::before {
  content: "-";
  top: 50%;
  transform: translateY(-50%);
  aspect-ratio: unset;
  background: none;
  color: #AEB6C5;
}
.sitemap-dtl__item:has(img) a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.copy {
  margin-top: 40px;
  display: block;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #4B4F55;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .copy {
    margin-top: 0;
  }
}
.copy br {
  display: none;
}
@media screen and (max-width: 768px) {
  .copy br {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */