@charset "UTF-8";
/*----------------------------------------
	variables
----------------------------------------*/
:root {
  --c_main: #332F26;
  --c_sub: #555555;
  --c_bg: #EFF9FA;
  --c_white: #FFFFFF;
  --c_blue-1: #0099BB;
  --c_blue-2: #0564B5;
  --c_orange: #ED7F00;
  --c_green: #00C300;
  --c_lightblue: #00B4C8;
  --c_naby: #224371;
}

/*----------------------------------------
	base
----------------------------------------*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  color: var(--c_main);
  line-height: 1;
  overflow-x: hidden;
}

a,
button {
  text-decoration: none;
  color: var(--c_main);
  cursor: pointer;
}

a:hover,
button:hover {
  opacity: 0.8;
}

li {
  list-style: none;
}

img,
iframe {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
/*----------------------------------------
	header
----------------------------------------*/
/*PC*/
.header--pc {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
.header--pc .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 32px;
}
.header--pc .header__box {
  display: flex;
  align-items: flex-end;
  gap: 22px;
}
.header--pc .header__about {
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: 500;
  color: var(--c_white);
}
.header--pc .header__tel {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #77AEEF;
}
.header--pc .header__tel a {
  color: var(--c_white);
  font-family: "Crimson Text", serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.header--pc .header__address {
  font-size: 14px;
  font-weight: 500;
  color: var(--c_white);
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-top: 10px;
}

.header__btns {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.header__action-btns {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__action-lead {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 13px;
  color: var(--c_white);
  margin-bottom: 10px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__action-lead::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-left: 1px solid var(--c_white);
  transform: rotate(-15deg);
  margin-right: -5px;
}

.header__action-lead::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-right: 1px solid var(--c_white);
  transform: rotate(15deg);
  margin-left: -5px;
}

.header__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 224px;
  height: 56px;
  text-decoration: none;
  font-size: 14px;
  color: #ffffff;
  border: 1px solid #C6DDF7;
  box-shadow: 4px 4px 18px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}

.header__action-btn::after {
  content: "";
  position: absolute;
  bottom: 6px;
  right: 6px;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent var(--c_white) transparent;
}

.header__action-btn span {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.header__action-btn--reserve {
  background-color: var(--c_orange);
}

.header__action-btn--shop {
  background-color: var(--c_lightblue);
}

.header__contact-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.header__contact-btn {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  box-shadow: 4px 4px 18px 0 rgba(0, 0, 0, 0.1);
}

.header__contact-btn--line {
  background-color: var(--c_green);
}

.header__contact-btn--mail {
  background-color: var(--c_white);
}

/*SP*/
.header--sp {
  display: none;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: var(--c_white);
  height: 44px;
}
.header--sp .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 8px 20px;
}
.header--sp .header__box {
  display: flex;
  align-items: center;
  gap: 9px;
}
.header--sp .header__info {
  padding-left: 9px;
  border-left: 1px solid var(--c_naby);
}
.header--sp .header__about {
  font-size: 10px;
  font-weight: 500;
  color: var(--c_naby);
  letter-spacing: 0.1em;
}
.header--sp .header__tel {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
}
.header--sp .header__tel a {
  color: var(--c_naby);
  font-family: "Crimson Text", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.header--sp .contact__action-btns {
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.header--sp .contact__action-btn {
  margin-left: 0;
  margin-right: 0;
}

@media screen and (max-width: 1200px) {
  .header--pc .header__inner {
    padding-right: 5px;
  }
  .header--pc .header__box {
    gap: 10px;
  }
  .header--pc .header__address {
    margin-top: 5px;
  }
  .header__action-btns {
    gap: 10px;
  }
  .header__contact-btns {
    gap: 10px;
  }
}
@media screen and (max-width: 995px) {
  .header--pc {
    display: none;
  }
  .header--sp {
    display: block;
  }
}
/*----------------------------------------
	hamburger
----------------------------------------*/
.hamburger {
  display: none;
  width: 48px;
  height: 44px;
  position: fixed;
  top: 0;
  right: 0;
  background: var(--c_naby);
  z-index: 200;
/* green_gd */
background: linear-gradient(90deg, #17B62D 0%, #50D2D2 100%);
backdrop-filter: blur(5px);
}

.hamburger__line {
  width: 18px;
  height: 2px;
  background: var(--c_white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hamburger__line::before,
.hamburger__line::after {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--c_white);
  position: absolute;
  transition: transform 0.3s;
}

.hamburger__line::before {
  top: -5px;
}

.hamburger__line::after {
  top: 5px;
}

/*OPEN時スタイル*/
.hamburger[aria-expanded=true] .hamburger__line {
  background: transparent;
}

.hamburger[aria-expanded=true] .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger[aria-expanded=true] .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}

body.is-fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

@media screen and (max-width: 995px) {
  .hamburger {
    display: block;
  }
}
/*----------------------------------------
	gnav
----------------------------------------*/
/*PC*/
.gnav--pc {
  background-color: var(--c_white);
  box-shadow: 0px 4px 24px 0 rgba(0, 0, 0, 0.12);
  width: 100%;
  height: 84px;
  display: grid;
  place-content: center;
}
.gnav--pc .gnav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.gnav--pc .gnav__item {
  padding-right: 32px;
  border-right: 1px solid #44B034;
}
.gnav--pc .gnav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.gnav--pc .gnav__link--ja {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.gnav--pc .gnav__link--en {
  font-family: "Crimson Text", serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #44B034;
  margin-top: 8px;
}
.gnav--pc .gnav__item:last-child{
  border-right: none;
}

/*SP*/
.gnav--sp {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  inset: 0;
  z-index: 100;
  background: var(--c_white);
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 115px;
}
.gnav--sp .gnav__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.gnav--sp .gnav__item {
  padding-bottom: 20px;
  border-bottom: 1px solid #B4ADA9;
}
.gnav--sp .gnav__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gnav--sp .gnav__link--ja {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.gnav--sp .gnav__link--en {
  font-family: "Crimson Text", serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #B4ADA9;
  margin-top: 8px;
}

@media screen and (max-width: 995px) {
  .gnav--pc {
    display: none;
  }
}
/*----------------------------------------
	footer
----------------------------------------*/
.footer {
  position: relative;
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
}

.footer__logo {
  text-align: center;
  padding: 16px 0;
}

.footer__inner {
  background-color: #0DA369;
  padding-top: 40px;
  padding-bottom: 72px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.footer__inner .btn--more{
  background: linear-gradient(91.76deg, #ED7F00 0.17%, #FF961C 100.17%);
  color: #fff;
  border: 1px solid #fff;
}

.footer-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.footer-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-nav__link--ja {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c_white);
}

.footer-nav__link--en {
  font-family: "Crimson Text", serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c_white);
}

.footer__clinic .clinic__heading-lv3 {
  color: var(--c_white);
  margin-top: 56px;
}
.footer__clinic .clinic__heading-lv3::before {
  background: var(--c_white);
}
.footer__clinic .clinic__heading-lv3::after {
  width: calc(100% - 302px);
  max-width: 672px;
  background: var(--c_white);
}
.footer__clinic .clinic__inner {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer__clinic .clinic__txt-box {
  max-width: 570px;
  width: 50%;
}
.footer__clinic .clinic__table {
  width: 100%;
}
.footer__clinic .clinic__th,
.footer__clinic .clinic__td {
  padding: 10px;
}
.footer__clinic .clinic__info::before {
  background: var(--c_white);
}
.footer__clinic .clinic__note,
.footer__clinic .clinic__info p {
  color: var(--c_white);
}
.footer__clinic .clinic__link-btn {
  color: var(--c_white);
  border-color: var(--c_white);
}
.footer__clinic .clinic__link-arrow {
  border-left: 10px solid var(--c_white);
}
.footer__clinic .clinic__map {
  width: 390px;
  right: 0;
}
.footer__clinic .clinic__map iframe {
  aspect-ratio: 390/234;
  box-shadow: 0;
}
.footer__clinic .clinic__card-list {
  max-width: 459px;
  margin-top: 40px;
  gap: 27px;
}

.footer__clinic .clinic__map{
  top: 0;
}

.site-info {
  margin-top: 48px;
  background-color: var(--c_white);
  padding: 24px 32px 33px 32px;
}

.site-info__heading-lv2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-bottom: 12px;
  border-bottom: 1px solid #332F26;
  display: inline-block;
}

.site-info__txt {
  margin-top: 20px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.site-info__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.site-info__item {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #767676;
  text-decoration: underline;
}

.copyright {
  width: 100%;
  padding: 18px 0;
  background-color: var(--c_white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright__text,
.copyright__link {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
}

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

.copyright__item {
  padding-right: 16px;
  border-right: 1px solid var(--c_main);
}

.copyright__item:last-of-type {
  padding-right: 0;
  border-right: 0;
}

@media screen and (max-width: 1399px) {
  .footer__clinic .clinic__txt-box {
    width: 55%;
  }
  .footer__clinic .clinic__map {
    width: 40%;
    margin-left: 20px;
  }
  .footer__clinic .clinic__map iframe {
    height: 250px;
  }
}
@media screen and (max-width: 1200px) {
  .footer-nav__list {
    gap: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .footer-nav__list {
    flex-direction: column;
    align-items: start;
    gap: 14px;
  }
  .footer-nav__item {
    padding-bottom: 14px;
    border-bottom: 1px solid #647B9C;
    padding-left: 8px;
    display: block;
    width: 100%;
  }
  .footer-nav__link {
    align-items: start;
    gap: 18px;
  }
  .footer__clinic .clinic__heading-lv3 {
    margin-top: 48px;
  }
  .footer__clinic .clinic__txt-box {
    max-width: none;
    width: 100%;
  }
  .footer__clinic .clinic__map {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    left: 0;
  }
  .footer__clinic .clinic__map iframe {
    aspect-ratio: 375/180;
  }
  .copyright {
    flex-direction: column;
    gap: 13px;
    padding: 16px 0;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo {
    padding: 14px 0;
  }
  .footer__logo img {
    width: 144px;
  }
  .footer__inner {
    padding-top: 32px;
    padding-bottom: 24px;
  }
  .footer__clinic .clinic__heading-lv3::after {
    width: calc(100% - 185px);
  }
  .footer__clinic .clinic__inner {
    flex-direction: column;
    gap: 24px;
  }
  .footer__clinic .clinic__card-list {
    margin-top: 16px;
    gap: 8px;
  }
  .site-info {
    padding: 24px 20px;
  }
  .copyright__text,
  .copyright__link {
    font-size: 10px;
  }
  .copyright__list {
    gap: 10px;
  }
  .copyright__item {
    padding-right: 10px;
  }
}
/*----------------------------------------
	container
----------------------------------------*/
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 200px;
}

@media screen and (max-width: 1399px) {
  .container {
    padding: 0 14.29%;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}
/*----------------------------------------
    section
----------------------------------------*/
.concept {
  padding-top: 108px;
  padding-bottom: 96px;
}

.clinic {
  padding-top: 80px;
  padding-bottom: 72px;
}

.news {
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact {
  padding-top: 80px;
  padding-bottom: 0;
}

.features {
  padding-top: 100px;
  padding-bottom: 80px;
}

.surgery {
  padding-top: 80px;
  padding-bottom: 80px;
}

.symptom {
  padding-top: 80px;
  padding-bottom: 80px;
}

.menu {
  padding-top: 80px;
}

.doctor {
  padding-top: 24px;
  padding-bottom: 38px;
}

.group {
  padding-top: 132px;
  padding-bottom: 120px;
}

.recruit {
  margin-top: 167px;
}

.column {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: 995px) {
  .concept {
    padding-top: 188px;
  }
}
@media screen and (max-width: 767px) {
  .concept {
    padding-bottom: 40px;
  }
  .clinic {
    padding-top: 32px;
    padding-bottom: 48px;
  }
  .news {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .contact {
    padding-top: 48px;
  }
  .features {
    padding-top: 40px;
    padding-bottom: 56px;
  }
  .surgery {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .symptom {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .menu {
    padding-top: 32px;
  }
  .doctor {
    padding-bottom: 60px;
  }
  .group {
    padding-top: 76px;
    padding-bottom: 84px;
  }
  .recruit {
    margin-top: 100px;
  }
  .column {
    padding-top: 48px;
    padding-bottom: 104px;
  }
}
/*----------------------------------------
    heading
----------------------------------------*/
/*大見出し*/
.heading-lv2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.heading-lv2--center {
  align-items: center;
}

.heading-lv2--en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 64px;
  color: #44B034;
  display: inline-block;
}

.heading-lv2--ja {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .heading-lv2 {
    gap: 6px;
  }
  .heading-lv2--en {
    font-size: 40px;
  }
  .heading-lv2--ja {
    font-size: 18px;
  }
}
/*----------------------------------------
    txt
----------------------------------------*/
.txt {
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.txt--white {
  color: var(--c_white);
}

@media screen and (max-width: 767px) {
  .txt {
    font-size: 12px;
  }
}
/*----------------------------------------
    button
----------------------------------------*/
.btn--more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 285px;
  height: 50px;
  background: linear-gradient(110.97deg, #17B62D 0.65%, #50D2D2 100%);
  border-radius: 25px;
  color: var(--c_white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  gap: 16px;
  box-shadow: 4px 4px 18px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .btn--more {
    width: 280px;
    height: 46px;
    font-size: 12px;
  }
}
/*----------------------------------------
    br
----------------------------------------*/
.br--pc {
  display: block;
}

@media screen and (max-width: 1023px) {
  .br--pc {
    display: none;
  }
}
/*----------------------------------------
	トップページ専用
----------------------------------------*/
/* ファーストビュー
------------------------------ */
.fv {
  width: 100%;
  position: relative;
}

.fv__inner {
  height: 100%;
  position: relative;
}

.fv__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fv__image img {
  width: 100%;
  height: 100%;
  object-position: top center;
  display: block;
}

.fv__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 559px;
}

.fv__catch {
  position: absolute;
  bottom: 5.1%;
  left: 4.5%;
  width: 70%;
  max-width: 1200px;
}

.fv__ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 3.2vw;
  color: var(--c_white);
  line-height: 1.4;
  padding-bottom: 24px;
}
.fv__ttl span{
/* green_gd */
background: linear-gradient(90deg, #17B62D 0%, #50D2D2 100%);
border-radius: 8px;
display: inline-block;
    margin-bottom: 1vw;
    padding: 1vw;
}
.fv__catch .en-txt{
  width: 60%;
}
.fv__txt {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: var(--c_white);
  margin-top: 24px;
  font-family: "Noto Serif JP";
}

.fv__swiper-wrapper {
  position: absolute;
  width: 365px;
  bottom: 48px;
  right: 54px;
  overflow: visible;
  z-index: 1;
  /* デフォルトの矢印を削除 */
}
.fv__swiper-wrapper .swiper-button-prev,
.fv__swiper-wrapper .swiper-button-next {
  position: absolute;
  top: 55%;
  width: 15px;
  height: 15px;
}
.fv__swiper-wrapper .swiper-button-prev {
  left: -28px;
}
.fv__swiper-wrapper .swiper-button-next {
  right: -28px;
}
.fv__swiper-wrapper .swiper-button-prev:after,
.fv__swiper-wrapper .swiper-button-next:after {
  display: none;
}
.fv__swiper-wrapper .swiper-button-prev img,
.fv__swiper-wrapper .swiper-button-next img {
  width: 100%;
  height: 100%;
}
.fv__swiper-wrapper .swiper-pagination {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.fv__swiper-wrapper .swiper-pagination-bullet {
  position: relative;
  width: 12px;
  height: 12px;
  background: transparent;
  border-radius: 50%;
  margin: 0 12px;
  overflow: hidden;
  opacity: 1;
}
.fv__swiper-wrapper .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  border-radius: 50%;
  z-index: 1;
}
.fv__swiper-wrapper .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--c_white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.3s;
}
.fv__swiper-wrapper .swiper-pagination-bullet .bullet-inner {
  /* 中に仕込んだspan（bullet-inner）が、アクティブ時だけ青丸になる */
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: none;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.fv__swiper-wrapper .swiper-pagination-bullet .bullet-inner.is-active {
  width: 6px;
  height: 6px;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
}

.fv__swiper {
  width: 100%;
  overflow: hidden;
}
.fv__swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.fv__swiper .swiper-slide,
.fv__swiper .swiper-slide img {
  width: 100%;
  height: 136px;
}

@media screen and (max-width: 1200px) {
  .fv__catch {
    width: 45%;
  }
}
@media screen and (max-width: 995px) {
  .fv {
    height: 100dvh;
  }
  .fv__image img {
    object-position: center 44px;
  }
  .fv__catch {
    bottom: 46px;
    left: 20px;
    right: 20px;
    width: 90%;
    max-width: none;
  }
  .fv__swiper-wrapper {
    width: 100%;
    max-width: 298px;
    bottom: -130px;
    right: 50%;
    transform: translateX(50%);
  }
  .fv__swiper-wrapper .swiper-button-prev,
  .fv__swiper-wrapper .swiper-button-next {
    position: absolute;
    top: 60%;
    width: 12px;
    height: 12px;
  }
  .fv__swiper-wrapper .swiper-button-prev {
    left: -20px;
  }
  .fv__swiper-wrapper .swiper-button-next {
    right: -20px;
  }
  .fv__swiper-wrapper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 10px;
  }
  .fv__swiper-wrapper .swiper-pagination-bullet::after {
    width: 8px;
    height: 8px;
  }
  .fv__swiper .swiper-slide,
  .fv__swiper .swiper-slide img {
    height: 110px;
  }
}
@media screen and (max-width: 767px) {
  .fv {
    height: 175vw;
  }
  .fv__image img {
    object-position: center;
    object-fit: contain;
}
  .fv__ttl {
    font-size: 6.5vw;
    padding-bottom: 10px;
  }
  .fv__txt {
    font-size: 14px;
    margin-top: 10px;
  }
  .fv__catch {
    left: 13px;
    width: 95%;
}
  .fv__ttl span {
    padding: 2vw 2vw;
  }
  .fv__catch .en-txt{
    width: 93%
  }
}
/* 私たちの想い
------------------------------ */
.concept {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.concept__bg {
  position: absolute;
  width: 100%;
  height: 344px;
  top: 148px;
  left: 0;
  background-color: var(--c_bg);
  z-index: -1;
}

.concept__bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-image: url(../img/concept-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: -3;
}

.concept__bg::after {
  content: "";
  position: absolute;
  width: 23%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to top right, var(--c_blue-1), #0562B1);
  mix-blend-mode: multiply;
  z-index: -2;
}

.concept__img {
  margin-top: 48px;
  box-shadow: 16px 16px 36px 0 rgba(0, 0, 0, 0.16);
}

.concept__txt-box {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
  padding: 0 100px;
}

.concept__heading-lv3 {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

@media screen and (max-width: 995px) {
  .concept__bg {
    top: 229px;
  }
}
@media screen and (max-width: 767px) {
  .concept__bg {
    height: 130px;
    top: 209px;
  }
  .concept__bg::after {
    width: 11%;
  }
  .concept__img {
    margin-top: 20px;
    box-shadow: 8px 8px 20px 0 rgba(0, 0, 0, 0.12);
  }
  .concept__txt-box {
    margin-top: 24px;
    gap: 20px;
    padding: 0;
  }
  .concept__heading-lv3 {
    font-size: 16px;
  }
}
/* 医院紹介
------------------------------ */
.clinic {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  position: relative;
}
.clinic__inner {
  position: relative;
}
.clinic-bg{
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
  z-index: -1;
}
.clinic__txt-box {
  width: 604px;
}

.clinic__heading-lv3 {
  margin-top: 64px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  padding-left: 26px;
  position: relative;
}

.clinic__heading-lv3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
}

.clinic__heading-lv3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: calc(100% - 249px);
  max-width: 355px;
  height: 1px;
  background: linear-gradient(to right, var(--c_blue-1), var(--c_blue-2));
}

.clinic__table {
  width: 522px;
  border-collapse: collapse;
  text-align: center;
  background: var(--c_white);
  border: 2px solid #fff;
  margin-top: 40px;
}

.clinic__thead {
  background: #39C42A;
  color: var(--c_white);
}

.clinic__tr {
  border-bottom: 1px solid #CFCFCF;
}

.clinic__th,
.clinic__td {
  border: 1px solid #39C42A;
  padding: 18px;
  font-size: 14px;
  text-align: center;
}

.clinic__th {
  font-weight: 500;
  letter-spacing: 0.1em;
  border-right: 1px solid #fff;
}
.clinic__th.last-item{
  border-right: #39C42A;
}

.clinic__td {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: var(--c_sub);
}

.clinic__td--icon {
  color: #39C42A;
}
.clinic-logo{
  display: block;
    margin: 35px 0 20px;
    width: 354px;
    object-fit: cover;
}

.clinic__note-box {
  margin-top: 16px;
}

.clinic__note {
  color: var(--c_sub);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.clinic__note + .clinic__note {
  margin-top: 4px;
}

.clinic__info {
  margin-top: 32px;
  position: relative;
  width: 450px;
}

.clinic__info p {
  margin-top: 12px;
  color: var(--c_sub);
  font-weight: 500px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-size: 15px;
}

.clinic-name{
  border-bottom: 1px solid #39C42A;
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #2CAD1D!important;
  padding-bottom: 5px;
}

.clinic__map {
  position: absolute;
  top: 100px;
  right: -200px;
  width: 598px;
  z-index: 1;
}

.clinic__map iframe {
  width: 100%;
  aspect-ratio: 390/234;
  box-shadow: 8px 8px 36px 0 rgba(0, 0, 0, 0.16);
}

.clinic__link {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.clinic__link-btn {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--c_sub);
  letter-spacing: 0.1em;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c_sub);
  text-decoration: none;
}

.clinic__link-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid var(--c_sub);
  margin-left: 8px;
}

.clinic__card {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c_white);
  gap: 32px;
  width: 100%;
  max-width: 1000px;
  padding: 24px;
  position: relative;
  margin-top: 40px;
}

.clinic__card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
}

.clinic__card-info {
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid #E3E3E3;
  padding-right: 32px;
}

.clinic__card-text {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
}

.clinic__card-list {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
}

.clinic__img-box {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: flex;
  align-items: center;
  width: 100vw;
  height: 336px;
}

.clinic__img {
  width: 100%;
  height: 100%;
}

.clinic__img img {
  max-width: none;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1399px) {
  .clinic__txt-box {
    width: 60%;
  }
  .clinic__map {
    right: -14.29%;
    width: 40%;
  }
  .clinic__map iframe {
    height: 400px;
  }
  .clinic__th,
  .clinic__td {
    padding: 10px;
  }
  .clinic__card {
    gap: 16px;
  }
  .clinic__card-list {
    gap: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .clinic__inner {
    display: flex;
    flex-direction: column;
    gap: 23px;
  }
  .clinic__txt-box {
    width: 100%;
  }
  .clinic__map {
    position: static;
    top: auto;
    right: auto;
    width: 100%;
  }
  .clinic__map iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 390/234;
  }
  .clinic__th,
  .clinic__td {
    padding: 10px;
  }
  .clinic__card {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    margin-top: 32px;
  }
  .clinic__card-info {
    gap: 8px;
    border-right: none;
    border-bottom: 1px solid #E3E3E3;
    padding-right: 0;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 767px) {
  .clinic__table {
    width: 100%;
    border: 1px solid #CFCFCF;
  }
  .clinic__heading-lv3 {
    margin-top: 24px;
    font-size: 12px;
    padding-left: 10px;
  }
  .clinic__heading-lv3::before {
    width: 6px;
    height: 6px;
  }
  .clinic__heading-lv3::after {
    width: calc(100% - 140px);
  }
  .clinic__table {
    margin-top: 22px;
  }
  .clinic__th {
    font-size: 10px;
  }
  .clinic__td {
    font-size: 10px;
  }
  .clinic__note-box {
    margin-top: 9px;
  }
  .clinic__note {
    font-size: 10px;
  }
  .clinic__note + .clinic__note {
    margin-top: 2px;
  }
  .clinic__info {
    margin-top: 18px;
    padding-left: 14px;
    width: 100%;
  }
  .clinic__info p {
    margin-top: 11px;
  }
  .clinic__map iframe {
    box-shadow: 8px 8px 20px 0 rgba(0, 0, 0, 0.12);
  }
  .clinic__link {
    margin-top: 16px;
  }
  .clinic__link-btn {
    font-size: 12px;
  }
  .clinic__link-arrow {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 8px solid var(--c_sub);
  }
  .clinic__card-text {
    font-size: 14px;
  }
  .clinic__img-box {
    height: 140px;
  }
}
/* お知らせ
------------------------------ */
.news {
  display: flex;
  justify-content: space-between;
}

.news__btn {
  margin-top: 48px;
}

.news__list {
  margin-top: 107px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news__item {
  padding-bottom: 24px;
  border-bottom: 1px solid #CBCDD2;
}

.news__link {
  display: flex;
  align-items: center;
  gap: 48px;
}

.news__date {
  color: #7E8C8D;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.news__heading-lv3 {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1023px) {
  .news {
    flex-direction: column;
    gap: 32px;
    position: relative;
  }
  .news__btn {
    position: absolute;
    margin-top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .news__list {
    margin-top: 0;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .news{
    padding-bottom: 120px;
  }
  .news__btn {
    bottom: 35px;
  }
  .news__item {
    padding-bottom: 16px;
  }
  .news__link {
    gap: 16px;
  }
  .news__date {
    font-size: 12px;
  }
  .news__heading-lv3 {
    font-size: 12px;
  }
}
.tv {
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  position: relative;
}

.tv__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c_bg);
  z-index: -1;
}

.tv__heading-lv2 {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 500;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: absolute;
  top: -16px;
  left: 80px;
}

.tv__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.tv__thumb {
  max-width: 409px;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  padding: 32px;
  margin-left: 80px;
  margin-bottom: -40px;
  margin-top: 36px;
  box-shadow: 8px 8px 36px 0 rgba(0, 0, 0, 0.16);
}

.tv__thumb iframe {
  width: 100%;
}

.tv__date {
  font-size: 12px;
  font-weight: 500;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: 0.1em;
}

.tv__desc {
  margin-top: 10px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  position: relative;
  width: 333px;
}

.tv__desc::before {
  content: "";
  position: absolute;
  left: -48px;
  bottom: -16px;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  width: 413px;
  height: 1px;
}

@media screen and (max-width: 1023px) {
  .tv {
    margin-top: 110px;
  }
  .tv__bg {
    height: 60%;
  }
  .tv__inner {
    flex-direction: column;
    align-items: start;
    gap: 58px;
  }
  .tv__heading-lv2 {
    left: 20px;
  }
  .tv__thumb {
    max-width: 295px;
    padding: 24px;
    box-shadow: 6px 6px 26px rgba(0, 0, 0, 0.16);
    margin-left: 20px;
    margin-bottom: -40px;
  }
  .tv__txt {
    margin-left: 20px;
  }
  .tv__desc {
    width: 100%;
  }
  .tv__desc::before {
    left: 0;
    bottom: -16px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .tv__heading-lv2 {
    font-size: 18px;
    top: -9px;
  }
  .tv__thumb {
    margin-top: 25px;
  }
}
.media {
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  position: relative;
  margin-top: 88px;
  padding-bottom: 50px;
}

.media__heading-lv2 {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 500;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: absolute;
  top: -16px;
  right: 80px;
}

.media__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.media__thumb {
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  box-shadow: 8px 8px 36px rgba(0, 0, 0, 0.16);
  margin-top: 52px;
  margin-bottom: -36px;
  width: 409px;
  display: grid;
  place-content: center;
  padding: 24px 32px;
}

.media__thumb img {
  height: 135px;
}

.media__date {
  font-weight: 500;
  font-size: 12px;
  color: var(--c_white);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 29px;
}

.media__desc {
  font-weight: 500;
  color: var(--c_white);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-top: 10px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--c_white);
}

@media screen and (max-width: 767px) {
  .media {
    margin-top: 55px;
  }
  .media__heading-lv2 {
    font-size: 18px;
    top: -9px;
    right: 20px;
  }
  .media__inner {
    flex-direction: column;
  }
  .media__thumb {
    box-shadow: 6px 6px 26px rgba(0, 0, 0, 0.16);
    max-width: 295px;
    width: 100%;
    height: auto;
    padding: 24px;
    margin-top: 25px;
  }
  .media__thumb img {
    height: 95px;
  }
  .media__date {
    margin-top: 16px;
  }
}
.book {
  background-color: var(--c_bg);
  position: relative;
  margin-top: 88px;
  margin-bottom: 120px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.book__heading-lv2 {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 500;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.book__list {
  position: relative;
  top: 40px;
  display: grid;
  place-content: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 844px;
  margin-right: auto;
  margin-left: auto;
  padding: 12px 24px 0 24px;
}

.book__item {
  text-align: center;
  background: var(--c_white);
  box-shadow: 8px 8px 36px rgba(0, 0, 0, 0.16);
}

.book__thumb {
  width: 100%;
  padding: 16px 24px;
  display: grid;
  place-content: center;
}

.book__thumb img {
  width: 145px;
  aspect-ratio: 145/200;
}

.book__body {
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.book__ttl {
  color: var(--c_white);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  min-height: 70px;
  display: grid;
  place-content: center;
}

.book__info {
  color: var(--c_white);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  border-top: 1px solid var(--c_white);
  padding-top: 10px;
}

@media screen and (max-width: 767px) {
  .book {
    margin-top: 95px;
    margin-bottom: 112px;
  }
  .book__heading-lv2 {
    font-size: 18px;
    top: -9px;
  }
  .book__list {
    top: 32px;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 12px 24px 0 24px;
  }
  .book__item {
    box-shadow: 6px 6px 26px rgba(0, 0, 0, 0.16);
  }
  .book__thumb {
    padding: 12px 15px;
  }
  .book__thumb img {
    width: 104px;
    aspect-ratio: 104/144;
  }
  .book__body {
    padding: 8px 16px 16px 16px;
  }
  .book__ttl {
    font-size: 12px;
    min-height: 52px;
  }
  .book__info {
    font-size: 12px;
    padding-top: 8px;
  }
}
/* ご予約・お問い合わせ案内
------------------------------ */
.contact {
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.contact__heading-lv2 {
  position: relative;
  text-align: center;
}

.contact__heading-lv2--en {
  color: var(--c_white);
  font-family: "Cormorant Garamond", serif;
  font-size: 240px;
  font-weight: 400;
  letter-spacing: 0.2em;
  opacity: 0.2;
  position: absolute;
  top: -125px;
  left: 50%;
  transform: translateX(-49%);
  white-space: nowrap;
}

.contact__heading-lv2--ja {
  color: var(--c_white);
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.contact__txt {
  margin-top: 70px;
  text-align: center;
}

.contact__action-btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 47px;
}

.contact__action-btn {
  text-align: center;
  width: 100%;
  max-width: 480px;
  border: 1px solid var(--c_white);
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
}

.contact__action-lead {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  letter-spacing: 0.1em;
  font-size: 18px;
  position: relative;
  padding: 7px 0;
  background-color: var(--c_white);
}

.contact__action-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 68px;
}
.contact__action-box span {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 30px;
  color: var(--c_white);
}

.contact__action-btn::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent var(--c_white) transparent;
}

.contact__action-btn--tel .contact__action-box {
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
}

.contact__action-btn--tel .contact__action-lead--gradient {
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.contact__action-btn--reserve .contact__action-box {
  background-color: var(--c_orange);
}

.contact__action-btn--reserve .contact__action-lead {
  color: var(--c_orange);
}

.contact__action-btn--reserve .contact__action-lead::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-left: 1px solid var(--c_orange);
  transform: rotate(-15deg);
  margin-right: -5px;
}

.contact__action-btn--reserve .contact__action-lead::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-right: 1px solid var(--c_orange);
  transform: rotate(15deg);
  margin-left: -5px;
}

.contact__action-btn--line {
  background-color: var(--c_green);
}

.contact__action-btn--line .contact__action-lead {
  color: var(--c_green);
}

.contact__action-btn--shop {
  background-color: var(--c_lightblue);
}

.contact__action-btn--shop .contact__action-lead {
  color: var(--c_lightblue);
}

.contact__action-btn--shop .contact__action-lead::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-left: 1px solid var(--c_lightblue);
  transform: rotate(-15deg);
  margin-right: -5px;
}

.contact__action-btn--shop .contact__action-lead::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-right: 1px solid var(--c_lightblue);
  transform: rotate(15deg);
  margin-left: -5px;
}

.contact__img {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 80px;
}

.contact__img img {
  max-width: none;
  width: 100%;
}

@media screen and (max-width: 1399px) {
  .contact__heading-lv2--en {
    font-size: 17vw;
  }
}
@media screen and (max-width: 1200px) {
  .contact__action-lead {
    font-size: 12px;
    padding: 5px 0;
  }
  .contact__action-box {
    gap: 8px;
    height: 46px;
  }
  .contact__action-box span {
    font-size: 20px;
  }
  .contact__action-btn::after {
    bottom: 5px;
    right: 5px;
    border-width: 0 0 7px 7px;
  }
  .contact__action-btn--reserve .contact__action-lead::before {
    width: 14px;
    height: 14px;
    margin-right: -7px;
  }
  .contact__action-btn--reserve .contact__action-lead::after {
    width: 14px;
    height: 14px;
    margin-left: -7px;
  }
  .contact__action-btn--shop .contact__action-lead::before {
    width: 14px;
    height: 14px;
    margin-right: -7px;
  }
  .contact__action-btn--shop .contact__action-lead::after {
    width: 14px;
    height: 14px;
    margin-left: -7px;
  }
}
@media screen and (max-width: 767px) {
  .contact__heading-lv2--en {
    font-size: 27vw;
    top: -70px;
  }
  .contact__heading-lv2--ja {
    font-size: 24px;
  }
  .contact__txt {
    margin-top: 24px;
  }
  .contact__action-btns {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-top: 32px;
  }
  .contact__img {
    margin-top: 48px;
  }
  .contact-2.header-btn .contact__action-btn{
    border: 1px solid #39C42A;
  }
  .contact__action-btn.contact__action-btn--shop .contact__action-lead{
    display: none;
  }
}
/* 当院の特徴
------------------------------ */
.features__list {
  margin-top: 64px;
}

.features__item {
  padding: 80px 0;
  position: relative;
}

.features__item--third {
  border-right: 1px solid #E3E3E3;
}

.features__item--third,
.features__item--forth {
  padding: 40px 0;
}
.features__item--third{
  padding-right: 40px;
}
@media screen and (min-width: 1400px){
  .features__item--third {
    width: 125%;
}
}

.features__item--fifth {
  padding-bottom: 0;
}

.features__item--first::before,
.features__item--second::before,
.features__item--fifth::before,
.features__flex::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1400px;
  width: 100vw;
  height: 1px;
  background-color: #E3E3E3;
}

.features__item--first .features__txt-box {
  max-width: 800px;
}

.features__item--second .features__txt-box {
  max-width: 577px;
}

.features__num {
  position: absolute;
  font-family: "EB Garamond", serif;
  font-size: 100px;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.features__item--first .features__num,
.features__item--second .features__num,
.features__item--fifth .features__num {
  right: 5%;
  top: -50px;
}

.features__item--third .features__num,
.features__item--forth .features__num {
  right: 10%;
  top: -130px;
}

.features__item--fifth .features__heading-lv3,
.features__item--fifth .features__lead,
.features__item--fifth .features__txt {
  text-align: center;
}

.features__item--third .features__img,
.features__item--forth .features__img,
.features__card .features__img {
  margin-top: 32px;
}

.features__item--third .features__img img,
.features__item--forth .features__img img,
.features__card .features__img img {
  width: 100%;
}

.features__item--second .features__img img {
  max-width: 357px;
}

.features__heading-lv3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.4em;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.features__lead {
  margin-top: 32px;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.features__txt {
  margin-top: 32px;
}

.features__btn {
  margin-top: 32px;
}

.features__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.features__img-box {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.features__img img {
  box-shadow: 8px 8px 36px 0 rgba(0, 0, 0, 0.16);
}

.features__flex {
  padding: 80px 0;
  position: relative;
  display: flex;
  gap: 40px;
}

.features__card-box {
  display: flex;
  gap: 40px;
}

.features__card {
  max-width: 306px;
}

.features__card .features__txt {
  text-align: left;
}

.features--sp {
  display: none;
}

@media screen and (max-width: 1399px) {
  .features__item--third {
    border-right: none;
  }
  .features__item--forth::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1400px;
    width: 100vw;
    height: 1px;
    background-color: #E3E3E3;
  }
  .features__item--third .features__num,
  .features__item--forth .features__num {
    top: -50px;
    right: 5%;
  }
  .features__flex {
    flex-direction: column;
    padding: 0;
  }
}
@media screen and (max-width: 1200px) {
  .features__card-box {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .features__card {
    max-width: none;
  }
}
@media screen and (max-width: 1023px) {
  .features__box {
    display: block;
  }
  .features__item--second .features__txt-box {
    max-width: none;
    width: 100%;
  }
  .features__img-box {
    gap: 24px;
  }
  .features__item--second .features__img {
    margin-top: 32px;
  }
  .features__item--second .features__img img {
    max-width: none;
    width: 100%;
  }
  .features__item--second .features__img:last-of-type img {
    width: 80%;
  }
  .features--pc {
    display: none;
  }
  .features--sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .features__list {
    margin-top: 24px;
  }
  .features__item {
    padding: 32px 0 40px 0;
  }
  .features__item--third,
  .features__item--forth {
    padding: 32px 0 40px 0;
  }
  .features__item--first .features__txt-box {
    max-width: none;
    width: 100%;
  }
  .features__num {
    font-size: 40px;
    right: 20px;
  }
  .features__item--first .features__num,
  .features__item--second .features__num,
  .features__item--fifth .features__num {
    top: -20px;
  }
  .features__item--third .features__num,
  .features__item--forth .features__num {
    top: -20px;
  }
  .features__heading-lv3 {
    font-size: 20px;
  }
  .features__lead {
    margin-top: 16px;
    font-size: 18px;
  }
  .features__btn {
    margin-top: 32px;
  }
  .features__flex {
    padding: 32px 0 40px 0;
  }
}
/* 当院の治療・手術
------------------------------ */
.surgery {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.surgery::before {
  content: "";
  position: absolute;
  width: 105vw;
  height: 100%;
  inset: 0;
  background-image: url(../img/surgery-bg1.jpg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -3;
  left: -3vw;
}
.surgery-wrap{
  width: 100%;
  border-radius: 40px;
  background-color: #F6F5ED;
}

.surgery__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 34.28%;
  height: 100%;
  background-image: url(../img/surgery-bg2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
}

.surgery__bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  opacity: 0.9;
  z-index: -1;
}

.surgery__tab-list {
  display: flex;
  margin-top: 64px;
  width: 100%;
}
.surgery .heading-lv2{
  background-image: url(../img/surgery-tit-bg.jpg);
  border-radius: 40px 40px 0 0;
  padding: 102px 0;
  background-size: cover;
}
.surgery .txt-box{
  padding: 64px 60px;
  text-align: center;
}
.cta-block-tit{
  margin: 0 auto;  
}
.cta-block h3{
  font-size: 20px;
  color: #2CAD1D;
  border-bottom: 1px solid #2CAD1D;
  display: inline-block;
  padding-bottom: 5px;
  font-weight: bold;
}
.cta-block .btn-wrap{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.surgery .cta-block{
  width: 100%;
  background-color: #fff;
  padding: 35px 20px;
  border-radius: 8px;
}
.surgery .btn--more{
  margin: 30px auto 0;
}
.clinic-btn{
  width: 320px;
  border: 1px solid #2CAD1D;
  border-radius: 8px;
}
.clinic-btn .contact__action-box span{
  color: #332F26;
  font-size: 16px;
  text-align: left;
  font-family: "Noto Sans JP";
}
.clinic-btn .contact__action-box span.tel-txt{
  font-size: 20px;
}
.clinic-btn .contact__action-box img{
  width: 35px;
  height: 35px;
  object-fit: contain;
}
.surgery .txt-box p{
  margin-bottom: 25px;
  line-height: 1.8;
  color: #332F26;
}
.surgery .heading-lv2--en, .surgery .heading-lv2--ja{
  text-align: center;

}

.surgery__tab-item {
  width: 20%;
  display: grid;
  place-content: center;
  font-weight: 700;
  color: var(--c_blue-1);
  border: 1px solid var(--c_blue-1);
  background-color: var(--c_white);
  cursor: pointer;
  transition: all 0.3s;
  padding: 7px 20px;
  text-align: center;
  line-height: 1.2;
}

.surgery__tab-item.is-active {
  background-color: var(--c_blue-1);
  color: var(--c_white);
}

.surgery__content {
  max-width: 1000px;
  background-color: var(--c_white);
  display: grid;
  place-content: center;
  border-left: 1px solid var(--c_blue-1);
  border-bottom: 1px solid var(--c_blue-1);
  border-right: 1px solid var(--c_blue-1);
}

.surgery__item {
  display: none;
}

.surgery__item.is-active {
  display: block;
}

[role=tabpanel][aria-hidden=true] {
  display: none;
}

.surgery__box {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 48px;
  margin: 0 56px;
}

.surgery__box--reverse {
  flex-direction: row-reverse;
}

.surgery__box + .surgery__box {
  border-top: 1px solid #E3E3E3;
}

.surgery__img {
  box-shadow: 8px 8px 36px 0 rgba(0, 0, 0, 0.16);
}

.surgery__info {
  width: 100%;
}

.surgery__en {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.surgery__ttl {
  margin-top: 8px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.surgery__txt {
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 16px;
}

.surgery__point-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.surgery__point-item {
  overflow: visible;
}

.surgery__point-inner {
  position: relative;
  background: linear-gradient(to bottom right, #EABB15, #ED7F00);
  display: flex;
  align-items: center;
  padding-left: 76px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.surgery__point-inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55px;
  height: 32px;
  background-image: url(../img/surgery-bg3.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.surgery__point-num {
  position: absolute;
  left: 16px;
  top: -20px;
}

.surgery__point-txt {
  color: var(--c_white);
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.surgery__link {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  margin-top: 24px;
}

.surgery__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  width: 143px;
  height: 1px;
}

.surgery__link span {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1023px) {
  .surgery__tab-list {
    flex-wrap: wrap;
    margin-top: 32px;
    border-top: 1px solid var(--c_blue-1);
    border-left: 1px solid var(--c_blue-1);
  }
  .surgery__tab-item {
    width: 50%;
    padding: 7px 16px;
    border-top: 0;
    border-bottom: 1px solid var(--c_blue-1);
    border-left: 0;
    border-right: 1px solid var(--c_blue-1);
    font-size: 12px;
  }
  .surgery__content {
    width: 100%;
  }
  .surgery__box {
    flex-direction: column;
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 32px;
    margin: 0 20px;
  }
  .surgery__box--reverse {
    flex-direction: column;
  }
  .surgery__img img {
    width: 100%;
    aspect-ratio: 295/160;
  }
}
@media screen and (max-width: 767px) {
  .surgery__bg {
    width: 16.8%;
  }
  .surgery__img {
    box-shadow: 8px 8px 20px 0 rgba(0, 0, 0, 0.12);
  }
  .surgery__en {
    font-size: 12px;
  }
  .surgery__ttl {
    font-size: 18px;
  }
  .surgery__txt {
    font-size: 12px;
  }
  .surgery__point-list {
    gap: 16px;
  }
  .surgery__point-inner {
    padding-left: 50px;
    height: 42px;
  }
  .surgery__point-inner::after {
    height: 48px;
  }
  .surgery__point-num {
    left: 8px;
    top: -17px;
  }
  .surgery__point-txt {
    font-size: 12px;
  }
  .surgery__link {
    gap: 8px;
    margin-top: 20px;
  }
  .surgery__link::before {
    bottom: -8px;
    width: 108px;
  }
  .surgery__link span {
    font-size: 11px;
  }
}
/* 目の症状から探す
------------------------------ */
.symptom {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.symptom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
}

.symptom__inner {
  background-color: #EEF3F3;
  border: 1px solid var(--c_blue-1);
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 95px;
}

.symptom__heading-lv2 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: relative;
}

.symptom__heading-lv2::after {
  content: "";
  position: absolute;
  width: 389px;
  height: 1px;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  background-color: var(--c_blue-1);
}

.symptom__heading-lv2 span {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.symptom__list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.symptom__item {
  background-color: var(--c_blue-1);
  border-radius: 20px;
}

.symptom__link {
  padding: 4px 4px 4px 24px;
  color: var(--c_white);
  display: flex;
  align-items: center;
  gap: 16px;
}

.symptom__link span {
  font-weight: 700;
  line-height: 1.2;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.symptom__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--c_white);
  border-radius: 50%;
}

@media screen and (max-width: 1023px) {
  .symptom__item {
    width: 100%;
  }
  .symptom__link {
    justify-content: space-between;
    padding: 12px 8px 12px 14px;
    gap: 9px;
  }
}
@media screen and (max-width: 767px) {
  .symptom__inner {
    padding: 32px 16px;
  }
  .symptom__heading-lv2 {
    gap: 8px;
  }
  .symptom__heading-lv2::after {
    width: 249px;
    bottom: -18px;
  }
  .symptom__heading-lv2 span {
    font-size: 18px;
  }
  .symptom__list {
    gap: 10px;
  }
  .symptom__link span {
    font-size: 13px;
    letter-spacing: 0.05em;
  }
}
/* 診療案内
------------------------------ */
.menu__inner {
  margin-top: 48px;
  padding: 40px 0;
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.menu__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/menu-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.menu__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  opacity: 0.9;
  z-index: -1;
}

.menu__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.menu__item {
  position: relative;
  box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.15);
}

.menu__link {
  display: grid;
  place-content: center;
  height: 64px;
  padding: 10px 26px;
  background-color: #39C42A;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--c_blue-1);
  border-radius: 8px;
}
.menu__link span {
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .menu__inner {
    margin-top: 24px;
    padding: 40px 20px;
  }
  .menu__list {
    gap: 10px;
  }
  .menu__link {
    height: 64px;
    font-size: 14px;
    padding: 15px 10px;
  }
}
/* 院長紹介
------------------------------ */
.doctor {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  position: relative;
}
.doctor .heading-lv2 .heading-lv2--en{
  color: #44B034;
}
.doctor .heading-lv2 .heading-lv2--ja{
  color: #332F26;
}
.doctor__inner{
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  position: relative;
  background: linear-gradient(to bottom, #fff 0, #fff 50px, #F6F5ED 50px, #F6F5ED 100%);
  padding-bottom: 80px;
}
.doctor__inner.inner-02{
  margin-top: 80px;
}
.doctor .column-block{
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.doctor .column-block .text-column{
  width: 430px;
  padding-top: 125px;
}
.doctor .column-block .image-column{
  width: 47%;
}
.doctor-clinic-name{
  font-size: 14px;
  color: #332F26;
  font-family: "Noto Serif JP";
  font-weight: bold;
}
.doctor-name{
  font-size: 28px;
  color: #332F26;
  font-family: "Noto Serif JP";
  font-weight: bold;
  margin: 20px 0 40px;
}
.doctor-name span{
  font-size: 16px;
}
.doctor-txt{
  line-height: 1.8;
  color: #332F26;
  font-family: "Noto Sans JP";
  font-size: 16px;
}
.doctor .btn--more{
  margin: 30px auto 0;
}
.career-box{
  display: flex;
  justify-content: flex-start;
  background: #fff;
  border: 1px solid #39C42A;
  border-radius: 8px;
  margin: 60px auto 0;
  padding: 50px 70px;
}
.keireki{
  padding-right:50px;
  border-right: 1px solid #E6E6E6;
  width: 65%;
}
.shikaku{
  padding-left:50px;
  border-left: 1px solid #E6E6E6;
  width: 35%;
}
.doctor__list--01 li {
    border-bottom: 1px solid #39C42A;
    color: #332F26;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.shikaku .doctor__list.doctor__list--02 li{
  background-color: #2CAD1D;
  padding: 7px 15px 10px;
  border-radius: 100px;
  color: #fff;
  margin-bottom: 10px;
  display: inline-block;
  line-height: 1.5;
}
.year {
    margin-right: 15px;
    font-size: 14px;
    width: 125px;
    display: inline-block;
}
.career-box h3{
  font-size: 16px;
  font-weight: bold;
  padding: 0px 0 0px 20px;
  position: relative;
  margin-bottom: 20px;
}
.career-box h3:before{
  content: "";
  width: 3px;
  height: 100%;
  background-color: #39C42A;
  left: 0;
  top: 0;
  position: absolute;
}

/* よつばグループ
------------------------------ */
.group {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  position: relative;
}
.group .heading-lv2 {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.group::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/group-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: -1;
}

.group::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #D9D9D9;
  z-index: -2;
}

.group__inner {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  background-color: var(--c_white);
  display: flex;
  justify-content: center;
  gap: 2px;
  padding: 50px;
}

.group__heading-lv3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 40px;
  letter-spacing: 0.2em;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.group__list {
  margin-top: 32px;
  display: grid;
  gap: 39px 32px;
  grid-template-columns: repeat(2, 1fr);
}

.group__item {
  display: flex;
  align-items: start;
  gap: 12px;
}

.group__name {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--c_blue-1);
  letter-spacing: 0.1em;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--c_blue-1);
  display: inline-block;
}

.group__address {
  margin-top: 8px;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.map {
  position: relative;
  width: 325px;
  height: 326px;
  margin: 0 auto;
}

.map__inner {
  position: relative;
}

.map__image {
  position: relative;
}

.map__image img:first-child {
  display: block;
}

.map__pin {
  position: absolute;
  transition: transform 0.3s ease;
}

.map__pin.is-active {
  transform: scale(1.5);
}

.map__pin--main {
  top: -10%;
  left: 52%;
}

.map__pin--01 {
  top: 15%;
  left: 75%;
}

.map__pin--02 {
  top: 10%;
  left: 40%;
}

.map__pin--03 {
  top: 28%;
  left: 73%;
}

.map__pin--04 {
  top: 62%;
  left: 27%;
}

.map-card__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
  margin-bottom: -200px;
}

.map-card__item {
  position: relative;
  box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.map-card__item:nth-child(1) {
  background-image: url("../img/group01.jpg");
}

.map-card__item:nth-child(2) {
  background-image: url("../img/group.jpg");
}

.map-card__item:nth-child(3) {
  background-image: url("../img/group02.png");
}

.map-card__item:nth-child(4) {
  background-image: url("../img/group03.png");
}

.map-card__item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.map-card__item::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 153, 187, 0.8), rgba(5, 100, 181, 0.8));
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}

.map-card__item:hover::before {
  background-color: transparent;
}

.map-card__item:hover::after {
  opacity: 1;
}

.map-card__link {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 38px 20px;
}

.map-card__link:hover {
  opacity: 1;
}

.map-card__body {
  text-align: center;
  position: relative;
  z-index: 2;
}

.map-card__title {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c_white);
  line-height: 1.2;
}

.map-card__title-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--c_white);
  line-height: 1.2;
  margin-top: 8px;
}

.map-card__btn {
  margin-top: 28px;
  background-color: var(--c_white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 6px 27px;
  border-radius: 25px;
  margin-right: auto;
  margin-left: auto;
}
.map-card__btn span {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.map-card__item:hover .map-card__btn span {
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.map-card__item:hover .map-card__btn img {
  content: url("../img/more2.svg");
}

@media screen and (max-width: 1200px) {
  .map-card__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
    margin-bottom: -175px;
  }
}
@media screen and (max-width: 1023px) {
  .group__inner {
    flex-direction: column;
    gap: 50px;
    padding: 24px;
  }
  .group__list {
    gap: 15px;
  }
  .group__item {
    gap: 6px;
  }
  .group__address {
    margin-top: 4px;
  }
  .map-card__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
    margin-bottom: -175px;
  }
  .map-card__btn {
    margin-top: 12px;
    padding: 6px;
  }
}
@media screen and (max-width: 767px) {
  .group .heading-lv2 {
    top: -20px;
  }
  .group__heading-lv3 {
    font-size: 24px;
  }
  .group__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 25px;
  }
  .group__name {
    font-size: 16px;
    padding-bottom: 2px;
  }
  .group__address {
    font-size: 12px;
  }
  .map {
    position: relative;
    width: 100%;
    max-width: 325px;
    height: auto;
  }
  .map-card__list {
    margin-bottom: -135px;
  }
  .map-card__link {
    padding: 12px 4px;
  }
  .map-card__title {
    font-size: 16px;
  }
  .map-card__title-en {
    font-size: 12px;
  }
  .map-card__btn span {
    font-size: 10px;
  }
}
/* 採用情報
------------------------------ */
.recruit {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.recruit__inner {
  width: 94.28vw;
  padding: 76px 0 54px 140px;
  margin: 0 auto;
  background: linear-gradient(to bottom right, rgba(0, 153, 187, 0.9), rgba(5, 100, 181, 0.9));
  box-shadow: 16px 16px 36px 0 rgba(0, 0, 0, 0.16);
  position: relative;
}

.recruit__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/recruit-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.recruit__content {
  margin-right: auto;
  margin-left: auto;
  padding: 0 1%;
}

.recruit__heading-lv2 {
  position: relative;
}

.recruit__heading-lv2--en {
  position: absolute;
  top: -80%;
  left: -80px;
  font-family: "Cormorant Garamond", serif;
  font-size: 11.43vw;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--c_white);
  opacity: 0.4;
}

.recruit__heading-lv2--ja {
  font-family: "Noto Serif JP", serif;
  font-size: 4vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--c_white);
}

.recruit__txt {
  font-family: "Noto Serif JP", serif;
  font-size: 1.43vw;
  letter-spacing: 0.1em;
  color: var(--c_white);
  line-height: 1.6;
  margin-top: 3.57vw;
  max-width: 37.43vw;
}

.recruit__btn {
  margin-top: 3.36vw;
  display: inline-block;
}
.recruit__btn .btn--more {
  background-color: var(--c_white);
  width: 20.64vw;
  height: 3.57vw;
  font-size: 1.07vw;
}
.recruit__btn .btn--more span {
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.recruit__images {
  position: absolute;
  top: 0;
  right: 0;
  width: 71.43%;
  height: 100%;
  background-image: url("../img/recruit-pc.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1023px) {
  .recruit__images {
    top: 20%;
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .recruit__inner {
    width: 100;
    padding: 32px 20px 30% 20px;
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.16);
  }
  .recruit__heading-lv2--en {
    top: -12px;
    left: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 45px;
  }
  .recruit__heading-lv2--ja {
    font-size: 22px;
  }
  .recruit__txt {
    font-size: 12px;
    margin-top: 14px;
    width: 100%;
    max-width: none;
  }
  .recruit__btn {
    margin-top: 14px;
  }
  .recruit__btn .btn--more {
    width: 150px;
    height: 28px;
    font-size: 10px;
  }
  .recruit__images {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: none;
    background-image: url("../img/recruit-sp.png");
    background-position: bottom center;
    background-size: cover;
  }
}
@media screen and (max-width: 400px) {
  .recruit__inner {
    padding-bottom: 130px;
  }
}
/* おすすめコラム
------------------------------ */
.column__swiper-wrapper {
  margin-top: 64px;
  overflow: visible;
  position: relative;
  z-index: 1;
  /* デフォルトの矢印を削除 */
}
.column__swiper-wrapper .swiper-button-prev,
.column__swiper-wrapper .swiper-button-next {
  position: absolute;
  top: 45%;
  width: 48px;
  height: 48px;
}
.column__swiper-wrapper .swiper-button-prev {
  left: -80px;
}
.column__swiper-wrapper .swiper-button-next {
  right: -80px;
}
.column__swiper-wrapper .swiper-button-prev:after,
.column__swiper-wrapper .swiper-button-next:after {
  display: none;
}
.column__swiper-wrapper .swiper-button-prev img,
.column__swiper-wrapper .swiper-button-next img {
  width: 100%;
}
.column__swiper-wrapper .swiper-pagination {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.column__swiper-wrapper .swiper-pagination-bullet {
  position: relative;
  width: 14px;
  height: 14px;
  background: transparent;
  border-radius: 50%;
  margin: 0 20px;
  overflow: hidden;
  opacity: 1;
}
.column__swiper-wrapper .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  border-radius: 50%;
  z-index: 1;
}
.column__swiper-wrapper .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--c_white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.column__swiper-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
  width: 14px;
  height: 14px;
}

.column__swiper {
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.column__swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.column__swiper .column__card {
  height: 305px;
  padding: 16px 16px 20px 16px;
  background-color: var(--c_white);
  display: grid;
  place-content: center;
  box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.15);
}
.column__swiper .column__card img {
  width: 100%;
}
.column__swiper .column__card .column__date {
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 16px;
}
.column__swiper .column__card .column__heading-lv3 {
  margin-top: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-left: 8px;
  position: relative;
}
.column__swiper .column__card .column__heading-lv3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom right, var(--c_blue-1), var(--c_blue-2));
}
.column__swiper .column__card .column__txt {
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .column__swiper-wrapper {
    margin-top: 32px;
  }
  .column__swiper-wrapper .swiper-button-prev,
  .column__swiper-wrapper .swiper-button-next {
    position: absolute;
    top: auto;
    bottom: -38px;
    width: 40px;
    height: 40px;
  }
  .column__swiper-wrapper .swiper-button-prev {
    left: 25%;
  }
  .column__swiper-wrapper .swiper-button-next {
    right: 25%;
  }
  .column__swiper-wrapper .swiper-pagination {
    bottom: -24px;
  }
  .column__swiper-wrapper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .column__swiper-wrapper .swiper-pagination-bullet::after {
    width: 8px;
    height: 8px;
  }
  .column__swiper-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    width: 10px;
    height: 10px;
  }
  .column__swiper {
    width: 100vw;
    height: 300px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .column__swiper .column__card {
    height: 273px;
  }
  .column__swiper .column__card .column__heading-lv3 {
    font-size: 16px;
  }
  .column__swiper .column__card .column__txt {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */


.contact-2 .contact__heading-lv2--en-2 {
  color: var(--c_white);
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-weight: 400;
}
.contact__heading-lv2--ja-2 {
    color: var(--c_white);
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-top: 20px;
    display: block;
}
.contact.contact-2 {
    background: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    background-image: url("../img/contact-bg.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.contact-2 .contact__txt{
  margin-top: 30px;
}
.contact-2 .contact__action-btns .contact__action-btn{
  box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.06);
}
.contact-2 .contact__action-box,.contact-2 .contact__action-btn--tel .contact__action-box,.contact-2 .contact__action-btn--shop{
  background-color: initial;
  background: initial;
}
.contact-2 .contact__action-box span{
  color: #39C42A;
  font-family: "noto sans JP";
  font-weight: normal;
  font-size: 28px;
}
.contact-2 .contact__action-btn--tel .contact__action-lead--gradient{
  background: none;
  color: #39C42A;
  -webkit-text-fill-color: initial;
}
.contact-2 .contact__action-btn{
  border-radius: 16px;
  background: #fff;
  padding: 15px 0;
}
.contact-2 .contact__action-lead{
  background-color: initial;
}
.contact-2 .contact__action-box{
  background-color: initial;
  height: 35px;
}
.contact-2 .contact__action-lead{
  color: #39C42A;
}
.contact-2 .contact__action-lead::after,.contact-2 .contact__action-lead::before{
  display: none;
}
.glass{
  display: flex;
    flex-wrap: nowrap;
    padding-top: 50px;
    border-top: 1px solid #fff;
    margin-top: 50px;
    padding-bottom: 50px;
}
.glass .glass-1{
  width: 30%;
  background-color: #fff;
  color: #39C42A;
  font-size: 20px;
  text-align: center;
  padding: 30px 10px;
  line-height: 1.6;
  font-weight: bold;
  border-radius: 16px 0 0 16px;
}
.glass .glass-2{
  width: 70%;
    border: 1px solid #fff;
    color: #fff;
    padding: 30px;
    font-size: 18px;
    line-height: 1.6;
    font-weight: bold;
    border-radius: 0 16px 16px 0;
}
@media screen and (max-width: 767px) {
  .glass{
    flex-wrap: wrap;
  }
  .glass .glass-1{
    width: 100%;
    border-radius: 14px 14px 0 0;
    padding: 10px;
  }
  .glass .glass-2{
    width: 100%;
    border-radius:  0 0 14px 14px;
    padding: 20px;
  }
}
.section.news{
/*   background-image: url("../img/news-bg.jpg"); */
  margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
	background: #fff;
}
.section.news .heading-lv2--en{
	color:#44B034;
}
.section.news .heading-lv2--ja{
	color: #332F26;
}
.section.news .news__date, .section.news .news__heading-lv3{
	color: var(--c_main);
}
.section.news .btn--more {
    background: #fff;
    color: #39C42A;
    border: 1px solid #39c42a;
}
.heading-lv2--en, .heading-lv2--ja{
  color: #fff;
}
.section.clinic .heading-lv2--en{
  color: #332F26;
}
.section.clinic .heading-lv2--ja{
  color: #44B034;
}
.news__date, .news__heading-lv3{
  color: #fff;
}
.section.news .btn--more{
  background: #fff;
  color: #39C42A;
}
.concept{
  background-image: url("../img/concept-bg.jpg");
  background-size: cover;
  background-position: top;
  padding-bottom: 300px;
}
.concept .heading-lv2--en{
  color: #44B034;
}
.concept .heading-lv2--ja{
  color: #332F26;
}
.concept-wrap{
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.concept__box{
  margin-bottom: 120px;
}
.clo-wrap{
  position: relative;
  width: 420px;
}
.concept-wrap .left-wrap{
  width: 420px;
}
.concept-wrap .right-wrap{
  width: 440px;
}
.clo-wrap img{
  width: 100%;
}
.clo-item{
  position: absolute;
    text-align: center;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
}
.clo-item span{
  font-weight: normal;
  margin-bottom: 10px;
  display: block;
}
.clo-item.item01 {
    width: 210px;
    top: 54px;
    left: 0;
}
.clo-item.item02 {
    width: 180px;
    top: 54px;
    right: 30px;
}
.clo-item.item03 {
    width: 180px;
    top: 255px;
    left: 26px;
}
.clo-item.item04 {
    width: 180px;
    top: 230px;
    right: 30px;
}
.concept-tit{
  font-size: 24px;
    color: #39C42A;
    font-family: "Noto Serif JP";
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 40px;
}
.concept-txt{
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
    .concept{
      padding-top: 50px;
      padding-bottom: 50px;
      background: url("../img/concept-bg-sp.jpg");
      background-size: cover
    }
    .concept__box{
      margin-bottom: 50px;
    }
    .clo-wrap{
      width: 300px;
    }
    .clo-item{
      font-size: 16px;
    }
    .clo-item.item01 {
    width: 147px;
    top: 33px;
    left: 0;
  }
  .clo-item.item02 {
    width: 147px;
    top: 38px;
    right: 18px;
  }
  .clo-item.item03 {
    width: 147px;
    top: 185px;
    left: 13px;
  }
  .clo-item.item04 {
    width: 147px;
    top: 156px;
    right: 13px;
  }
  .concept-wrap{
    flex-wrap: wrap;
  }
  .concept-wrap .right-wrap{
    width: 100%;
  }
}

/*タブ切り替え全体のスタイル*/
#top-menu .tabs {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  margin: 60px auto 30px;
}

/*タブのスタイル*/
#top-menu .tab_item {
  width: calc(100% / 5);
    height: 95px;
    border-bottom: 3px solid var(--body-title-color);
    background-color: #E4E3E2;
    text-align: center;
    color: #7A7A7A;
    display: block;
    float: left;
    text-align: center;
    font-family: var(--font-mincho);
    transition: all 0.2s ease;
    align-content: center;
}

#top-menu .tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
#top-menu .tab_content {
  display: none;
  padding: 35px;
  clear: both;
  overflow: hidden;
  background: #F6F5ED;
}


/*選択されているタブのコンテンツのみを表示*/
#top-menu-01:checked~#top-menu-01_content,
#top-menu-02:checked~#top-menu-02_content,
#top-menu-03:checked~#top-menu-03_content,
#top-menu-04:checked~#top-menu-04_content,
#top-menu-05:checked~#top-menu-05_content,
#top-menu-06:checked~#top-menu-06_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
#top-menu .tabs input:checked+.tab_item {
  background-color: #fff;
  color: var(--body-title-color);
  background-color: #F6F5ED;
  border-top: 5px solid #2CAD1D;
}

#top-menu .tab_item img {
  width: 40px;
  max-width: 56px;
  height: 40px;
  max-height: 56px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  margin-bottom: min(10px, 0.7vw);
  display: block;
}

#top-menu .tabs label {
  border-right: 3px solid var(--body-title-color);
}

@media screen and (min-width: 767px) {
  #top-menu .tabs .border-right-none {
    border-right: none;
  }

  #top-menu .top-menu-btn-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 20px;
  }
}

.top-btn-gray {
  width: 215px;
    padding: 8px 5px;
    background: #fff;
    display: block;
    position: relative;
    border: 1px solid #2CAD1D;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.top-btn-gray::before {
  content: "";
  display: inline-block;
  width: 1.7vw;
  max-width: 24px;
  height: 1.7vw;
  max-height: 24px;
  background-image: url(https://jiyugaoka.gen-gen-cocoro-eye.jp/wp/wp-content/themes/yotsuba-jiyugaoka.com/img/top-btn-icon-arrow-black.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: min(20px, 1.4vw);
}

@media screen and (max-width: 767px) {
  #top-menu .tab_item{
    align-content: baseline;
    padding-top: 10px;
    font-weight: bold;
    font-size: 14px;
  }
  .top-menu-btn-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 0;
  }
  .top-btn-gray{
    width: 48%;
    padding: 10px 5px;
    line-height: 1.4;
    border-radius: 10px;
  }
  #top-menu .tab_content{
    padding: 5vw;
  }
}

.section.menu{
  background: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    background-image: url("../img/menu-bg-1.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding-bottom: 80px;
}
.menu .contact__heading-lv2--en-2 {
    color: var(--c_white);
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    font-weight: 400;
}
.tab-wrap{
  background: #fff;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 48px;
}
.menu-un-txt{
  text-align: center;
  margin-bottom: 40px;
}
.menu-un-txt p{
  border-bottom: 1px solid #2CAD1D;
  font-size: 15px;
  display: inline;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .menu-un-txt p{
    border-bottom: none;
  }
  .menu-un-txt{
    border-bottom: 1px solid #2CAD1D;
    padding-bottom: 5px;
  }
  .section.menu{
    padding-bottom: 0;
    border-bottom: 1px solid #2CAD1D;
  }
}
.features{
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  position: relative;
}
.feature-wrap{
  width: 100%;
  position: relative;
  margin: 200px auto 300px;
}
.feature-wrap.last-fe{
  margin-bottom: 100px;
}
.img-col{
  position: absolute;
  height: 100%;
  top: -60px;
  z-index: -1;
  width: 632px;
  object-fit: cover;
  left: -220px;
}
.right .img-col{
  position: absolute;
  height: 100%;
  top: -60px;
  z-index: -1;
  width: 632px;
  object-fit: cover;
  left: initial;
  right: -220px;
}
.feature-txt-box{
  width: 504px;
  margin: 0 0 0 auto;
}
.right .feature-txt-box{
  margin: 0 auto 0 0;
}
.feature-tit-h3{
  font-size: 28px;
  color: #39C42A;
  line-height: 1.4;
  font-weight:bold;
  margin-bottom: 20px;
  font-family: "Noto Serif JP";
}
.feature-txt-box{
  line-height: 1.6;
  font-size: 16px;
  font-family: "noto sans JP";
}
.features .heading-lv2--en{
  color: #44B034;
  text-align: center;
}
.features .heading-lv2--ja{
  color: #332F26;
  text-align: center;
}

.feature-wrap{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 1399px) {
    .img-col {
        width: 60%;
        left: -20%;
    }.right .img-col{
        width: 60%;
        right: -20%;
    }
    .feature-txt-box{
      width: 430px;
    }
}
@media screen and (max-width: 767px) {
  .feature-wrap{
    flex-wrap: wrap;
    margin: 50px auto;
  }
    .img-col {
        position: relative;
        width: 105%;
        left: -20px;
        top: initial;
    }
    .right .img-col{
      position: relative;
        width: 105%;
        right: -20px;
        top: initial;
    }
}
.media .heading-lv2--en{
  color: #44B034;
}
.media .heading-lv2--ja{
  color: #332F26
}
.media .heading-lv2{
  text-align: center;
}
@media screen and (max-width: 767px) {
  .features{
    padding-bottom: 0;
  }
  .surgery .heading-lv2{
    padding: 50px 0;
  }
  .surgery .txt-box{
    padding: 35px 20px;
  }
  .cta-block .btn-wrap{
    flex-wrap: wrap;
  }
  .clinic-btn{
    width: 100%;
  }
  .contact__action-box{
    height: 60px;
  }
  .clinic-btn .contact__action-box img{
    width: 25px;
    height: 25px;
  }
  .doctor .column-block{
    flex-wrap: wrap;
  }
  .doctor .column-block .text-column{
    padding-top: 0;
  }
  .doctor__inner{
    margin-top: 50px;
  }
  .doctor .column-block .image-column{
    width: 100%;
  }
  .career-box{
    flex-wrap: wrap;
    padding: 10vw 8vw;
  }
  .keireki, .shikaku{
    width: 100%;
    border: none;
  }
  .keireki{
    padding-right: 0;
  }
  .shikaku{
    padding-left: 0;
    margin-top: 30px;
  }
  .footer-nav__item{
    border-bottom: 1px solid #fff;
  }
  .year {
    display: inline-block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .doctor__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    line-height: 1.5;
}
.contact-2 .contact__action-box span{
  font-size: 24px;
}
}