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

html,
body {
  padding: 0;
  margin: 0;
}

body {
  min-width: 375px;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.wrap {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}

@media (min-width: 1200px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
@media (max-width: 1199px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  a[href^="tel:"] {
    display: block;
    pointer-events: painted;
  }
}

/*デバイスごとの表示切り替え*/
@media (max-width: 1199px) {
  .pc-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (max-width: 767px) {
  .pc-tab {
    display: none;
  }
}

.tab-below {
  display: none;
}
@media (max-width: 1199px) {
  .tab-below {
    display: block;
  }
}

@media (min-width: 1200px) {
  .tab-only {
    display: none;
  }
}
@media (max-width: 1199px) {
  .tab-only {
    display: block;
  }
}
@media (max-width: 767px) {
  .tab-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

/*************************************************************************************
インナー幅
**************************************************************************************/
.common-inner {
  max-width: 1200px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .common-inner {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .common-inner {
    width: 89%;
  }
}

.common-inner--1000 {
  max-width: 1000px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .common-inner--1000 {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .common-inner--1000 {
    width: 89%;
  }
}

.section__title {
  font-size: 34px;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .section__title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .section__title {
    font-size: 20px;
  }
}
.section__title::before {
  font-size: 15px;
  color: #04A95C;
  display: block;
  content: attr(data-en);
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .section__title::before {
    font-size: 14px;
  }
}

/*************************************************************************************
下層ページタイトル
**************************************************************************************/
.page-title {
  background-color: #F2FFF9;
  padding: 72px 0;
  margin-top: 100px;
}
@media (max-width: 1199px) {
  .page-title {
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  .page-title {
    padding: 42px 0;
  }
}

.page-title__treatment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.page-title__treatment .page-title__icon {
  width: 87px;
}
@media (max-width: 767px) {
  .page-title__treatment .page-title__icon {
    width: 75px;
  }
}

.page-title__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 1199px) {
  .page-title__title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .page-title__title {
    font-size: 26px;
  }
}
.page-title__title span {
  display: block;
  font-size: 16px;
  color: #04A95C;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .page-title__title span {
    font-size: 14px;
  }
}

/*************************************************************************************
パンくずリスト
**************************************************************************************/
.breadcrumb {
  color: #D5D5D5;
  padding: 20px 0;
  font-size: 14px;
}
.breadcrumb a {
  text-decoration: none;
}
.breadcrumb .home {
  text-decoration: none;
  padding: 0 10px;
}
.breadcrumb .current-item {
  color: #04A95C;
}
.breadcrumb .post-page {
  color: #04A95C;
  padding: 0 10px;
}
.breadcrumb .category {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 9998;
}

.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1440px;
  width: 96%;
  margin-right: auto;
  margin-left: auto;
  padding: 15px 0;
  padding-bottom: 0;
}
@media (max-width: 1199px) {
  .header__wrap {
    padding: 8px 0;
  }
}

.header__logo {
  display: block;
  width: 320px;
  position: relative;
  margin: 0;
}
@media (max-width: 1199px) {
  .header__logo {
    width: 210px;
  }
}
.header__logo img {
  display: block;
}

@media (max-width: 1199px) {
  .header__link {
    display: none;
  }
}

.header__link__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  margin-bottom: 15px;
}

.header__link__top__btn a {
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 50px;
  border: 1px solid #04A95C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 240px;
  text-align: center;
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1199px) {
  .header__link__top__btn a {
    width: 100%;
    padding: 10px;
    padding-left: 35px;
    font-size: 14px;
  }
}
.header__link__top__btn a:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1199px) {
  .header__link__top__btn:not(:last-of-type) {
    margin-bottom: 10px;
  }
}

.header__btn__tel a {
  color: #04A95C;
  background-color: #ffffff;
}
.header__btn__tel a span {
  font-size: 14px;
  margin-right: 16px;
}
.header__btn__tel a:hover {
  background-color: #04A95C;
  color: #ffffff;
}

.header__btn__reservation a {
  background-color: #04A95C;
  border: 1px solid #04A95C;
  color: #ffffff;
  padding-left: 40px;
  position: relative;
}
.header__btn__reservation a::after {
  position: absolute;
  content: "";
  top: 50%;
  left: calc(50% - 65px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background: url(../img/common/header-reservation-white.png) no-repeat center/cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__btn__reservation a:hover {
  background-color: #ffffff;
  color: #04A95C;
}
.header__btn__reservation a:hover::after {
  background: url(../img/common/header-reservation-green.png) no-repeat center/cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__nav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__nav__link a {
  display: block;
  padding: 0 20px;
  padding-bottom: 10px;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.header__nav__link a::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 1px;
  background: #04A95C;
  bottom: 10px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__nav__link a:hover {
  opacity: 1;
  color: #04A95C;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header__nav__link a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.parent-menu {
  padding-right: 15px;
  position: relative;
}
.parent-menu::after {
  position: absolute;
  content: "";
  top: calc(50% - 7px);
  right: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url(../img/common/header-arrow.png) no-repeat center/cover;
}

.parent-menu .child-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 20px;
  background-color: #F2FFF9;
  border-radius: 4px;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease, visibility 0s linear 0.2s, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s, -webkit-transform 0.2s ease;
  z-index: 20;
  pointer-events: none;
}

.child-menu {
  background-color: #F2FFF9;
  border-radius: 4px;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
.child-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 30px;
}

.parent-menu:hover .child-menu,
.parent-menu:focus-within .child-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  pointer-events: auto;
}

.child-menu__li a {
  display: block;
  text-align: center;
  white-space: nowrap;
  padding-left: 30px;
  padding-bottom: 6px;
  border-bottom: 1px solid #04A95C;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.child-menu__li a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../img/common/header-dropdown-arrow.png) no-repeat center/cover;
}
.child-menu__li a::after {
  position: static;
}
.child-menu__li a:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.5;
}
.child-menu__li:not(:last-of-type) {
  margin-bottom: 15px;
}

/*************************************************************************************
ハンバーガーボタン
**************************************************************************************/
.hamburger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 50%;
  position: fixed;
  z-index: 9999;
  top: 5px;
  right: 5px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background-color: transparent;
}
@media (min-width: 1200px) {
  .hamburger {
    display: none;
  }
}
.hamburger::after {
  position: absolute;
  content: "Menu";
  bottom: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 12px;
  color: #04A95C;
  font-family: "Lato", sans-serif;
}

.hamburger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 13px;
  height: 3px;
  border-radius: 2px;
  background-color: #04A95C;
  width: 33px;
}

.hamburger span:nth-of-type(1) {
  top: 15px;
}

.hamburger span:nth-of-type(2) {
  top: 23px;
}

.hamburger span:nth-of-type(3) {
  top: 31px;
}

.hamburger.active::after {
  content: "Close";
}

.hamburger.active span:nth-of-type(1) {
  top: 16px;
  left: 14px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 33px;
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  top: 28px;
  left: 14px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 33px;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}
@media (min-width: 1200px) {
  #overlay {
    position: static;
  }
}

/* Prevent background scrolling when menu is active */
body.panelactive {
  overflow: hidden;
}
@media (min-width: 1200px) {
  body.panelactive {
    overflow: auto;
  }
}

/*************************************************************************************
ドロワーメニュー
**************************************************************************************/
#drawer-nav {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: -120%;
  width: 312px;
  height: 100%;
  background: #ffffff;
  overflow-y: scroll;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
#drawer-nav::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 20px;
  width: 210px;
  height: 54px;
  background: url(../img/common/logo.svg) no-repeat center/cover;
}
#drawer-nav::after {
  position: absolute;
  content: "";
  top: 70px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #D5D5D5;
}
@media (min-width: 1200px) {
  #drawer-nav {
    display: none;
  }
}
@media (max-width: 1199px) {
  #drawer-nav {
    width: 375px;
  }
}
@media (max-width: 767px) {
  #drawer-nav {
    width: 100%;
  }
}

#drawer-nav.panelactive {
  right: 0;
}

.drawer-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer__contents {
  position: absolute;
  z-index: 999;
  top: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 87%;
  padding-bottom: 52px;
}
@media (max-width: 767px) {
  .drawer__contents {
    width: 87%;
  }
}

.drawer__btn a {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #04A95C;
}
.drawer__btn a img {
  display: block;
  width: 22px;
  margin-right: 10px;
}

.drawer__nav__wrap {
  margin-top: 20px;
}

.drawer__nav__parent {
  margin-top: 22px;
}

.drawer__nav__link {
  text-decoration: none;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #D5D5D5;
}

.drawer__nav__link__child {
  padding-left: 20px;
}

.drawer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.drawer__sns a {
  display: block;
  margin-top: 17px;
  width: 20px;
}
.drawer__sns a img {
  display: block;
}

/*************************************************************************************
フッター
**************************************************************************************/
.footer {
  background-color: #04A95C;
  color: #ffffff;
  padding: 54px 0;
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 0;
  }
}

.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
@media (max-width: 1199px) {
  .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 590px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .footer__wrap {
    gap: 40px;
    max-width: 390px;
  }
}

@media (min-width: 1200px) {
  .footer__logo a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .footer__logo a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.7;
  }
}
.footer__logo a img {
  display: block;
  width: 286px;
}

.footer__address {
  font-style: normal;
  margin-top: 18px;
}
@media (max-width: 767px) {
  .footer__address {
    font-size: 14px;
  }
}

.footer__tel {
  text-decoration: none;
  color: #ffffff;
  margin-top: 6px;
}
.footer__tel span {
  margin-right: 20px;
  font-size: 14px;
  font-weight: 300;
}

.footer__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  margin-top: 27px;
}
@media (max-width: 767px) {
  .footer__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__btn a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 208px;
  background-color: #ffffff;
  color: #04A95C;
  border-radius: 50px;
  padding: 14px;
}
.footer__btn a img {
  width: 20px;
}
@media (min-width: 1200px) {
  .footer__btn a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .footer__btn a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .footer__btn a {
    width: 100%;
  }
}

.footer__table {
  display: block;
  margin-top: 27px;
  font-size: 11px;
  text-align: right;
  font-weight: 300;
}

.footer__nav__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 767px) {
  .footer__nav__container {
    gap: 60px;
  }
}

.footer__nav__half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 767px) {
  .footer__nav__half {
    display: block;
  }
}

.footer__nav a {
  position: relative;
  display: inline-block;
}
@media (min-width: 1200px) {
  .footer__nav a::after {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 1px;
    background: #ffffff;
    bottom: 10px;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .footer__nav a:hover {
    opacity: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .footer__nav a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.footer__nav__link {
  display: block;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 0;
}
@media (max-width: 767px) {
  .footer__nav__link {
    font-size: 13px;
    padding: 6px 0;
  }
}
.footer__nav__link img {
  display: block;
  width: 20px;
}

.footer__nav__label {
  white-space: nowrap;
  padding: 10px 0;
}

.footer__nav__child__link {
  display: block;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 0;
  font-size: 14px;
}
@media (max-width: 767px) {
  .footer__nav__child__link {
    font-size: 13px;
    padding: 6px 0;
  }
}

.footer__copy {
  display: block;
  margin-top: 20px;
  font-size: 12px;
  text-align: right;
}
@media (max-width: 1199px) {
  .footer__copy {
    margin-top: 60px;
    text-align: center;
  }
}

/*************************************************************************************
fv
**************************************************************************************/
.fv {
  margin-top: 120px;
  position: relative;
}
@media (max-width: 1199px) {
  .fv {
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  .fv {
    padding-bottom: 70px;
  }
}
.fv::after {
  position: absolute;
  content: "";
  bottom: -150px;
  left: 0;
  width: 39%;
  height: 150px;
  background-color: #F5F4F2;
}
@media (max-width: 1199px) {
  .fv::after {
    bottom: -80px;
    height: 80px;
  }
}
@media (max-width: 767px) {
  .fv::after {
    width: 78.5%;
    bottom: 0;
    height: 75px;
  }
}

.fv__img {
  position: relative;
  display: block;
  padding-right: 2%;
}
@media (max-width: 1199px) {
  .fv__img {
    padding-right: 0;
  }
}
.fv__img img {
  display: block;
}

.fv__contents {
  position: absolute;
  top: 50%;
  left: 19%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .fv__contents {
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    left: 50%;
    top: auto;
    bottom: 20px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.fv__point {
  background-color: #FFFDF1;
  border: 2px solid #04A95C;
  position: relative;
  min-width: 280px;
}
@media (max-width: 1199px) {
  .fv__point {
    min-width: 200px;
  }
}
@media (max-width: 767px) {
  .fv__point {
    padding: 10px 5px;
    min-width: 110px;
    width: 100%;
  }
}
.fv__point:not(:last-of-type) {
  margin-bottom: 42px;
}
@media (max-width: 1199px) {
  .fv__point:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .fv__point:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.fv__point::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 160px;
  height: 20px;
  background-color: #FFFDF2;
}
@media (max-width: 1199px) {
  .fv__point::before {
    position: static;
  }
}
@media (max-width: 767px) {
  .fv__point::before {
    width: 100%;
  }
}

.fv__point__label {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  background-color: #ffffff;
  padding: 0 3.5%;
  text-align: center;
  color: #04A95C;
  margin-top: -20px;
  font-size: 20px;
  font-family: "Lato", sans-serif;
  position: relative;
  z-index: 999;
}
@media (max-width: 1199px) {
  .fv__point__label {
    margin-top: 0;
    font-size: clamp(10px, 0.24vw + 13.12px, 16px);
  }
}
@media (max-width: 767px) {
  .fv__point__label {
    margin-top: -15px;
    font-size: 10px;
  }
}

.fv_point__text {
  text-align: center;
  margin-top: 10px;
  font-size: 20px;
  letter-spacing: 0.09em;
}
@media (max-width: 1199px) {
  .fv_point__text {
    margin: 5px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .fv_point__text {
    margin: 0;
    margin-top: 5px;
    letter-spacing: normal;
    font-size: 12px;
  }
}
.fv_point__text span {
  color: #04A95C;
}

/*************************************************************************************
お知らせ
**************************************************************************************/
.top-news {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  padding: 50px;
  margin-top: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 4px;
}
@media (max-width: 1199px) {
  .top-news {
    padding: 35px;
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .top-news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 90px;
    bottom: 60px;
    gap: 10px;
    padding: 0;
  }
}

.top-news__parts {
  width: 180px;
}
@media (max-width: 767px) {
  .top-news__parts {
    display: contents;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .top-news__title {
    text-align: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.top-news__btn a {
  margin-top: 25px;
  text-decoration: none;
  display: block;
  width: 180px;
  text-align: center;
  padding: 10px;
  color: #04A95C;
  border: 1px solid #04A95C;
  background-color: #ffffff;
  border-radius: 50px;
}
@media (min-width: 1200px) {
  .top-news__btn a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .top-news__btn a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #04A95C;
    color: #ffffff;
  }
}
@media (max-width: 1199px) {
  .top-news__btn a {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .top-news__btn a {
    margin-right: auto;
    margin-left: auto;
    margin-top: 28px;
  }
}
@media (max-width: 767px) {
  .top-news__btn {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.top-news__wrap {
  max-width: 785px;
  width: 100%;
}
@media (max-width: 767px) {
  .top-news__wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.top-news__list a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 0;
  border-bottom: 1px solid #D5D5D5;
}
@media (min-width: 1200px) {
  .top-news__list a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .top-news__list a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .top-news__list a {
    display: block;
    padding: 10px 0;
  }
}
.top-news__list a data {
  font-size: 14px;
  color: #04A95C;
  width: 110px;
}
@media (max-width: 767px) {
  .top-news__list a data {
    width: 100%;
    font-size: 12px;
  }
}
.top-news__list a .top-news__head {
  text-decoration: underline;
  font-size: 15px;
  font-weight: 400;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .top-news__list a .top-news__head {
    width: 100%;
  }
}

/*************************************************************************************
クリニックの特徴
**************************************************************************************/
.feature {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .feature {
    margin-top: 60px;
  }
}

.feature__title {
  text-align: center;
}

.feature__lead {
  text-align: center;
  line-height: 200%;
  margin-top: 34px;
}
@media (max-width: 1199px) {
  .feature__lead {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .feature__lead {
    margin-top: 20px;
    max-width: 630px;
    width: 89%;
    margin-right: auto;
    margin-left: auto;
  }
}

.feature__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .feature__wrap {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .feature__wrap {
    display: block;
  }
}

.feature__block {
  display: -ms-grid;
  display: grid;
  width: calc(33.3% - 30px);
}
@media (max-width: 1199px) {
  .feature__block {
    width: calc(33.3% - 16px);
  }
}
@media (max-width: 767px) {
  .feature__block {
    max-width: 500px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .feature__block:not(:last-of-type) {
    margin-bottom: 30px;
  }
}

.feature__label {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-size: 12px;
  color: #04A95C;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .feature__label {
    margin-top: 10px;
  }
}
.feature__label span {
  font-size: 16px;
}
.feature__label::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -42px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 1px;
  background-color: #04A95C;
}

.feature__block__label {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  font-size: 20px;
  color: #04A95C;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .feature__block__label {
    font-size: 18px;
  }
}

.feature__block__text {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  line-height: 200%;
  margin-top: 8px;
  min-height: 160px;
}
@media (max-width: 1199px) {
  .feature__block__text {
    min-height: 200px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .feature__block__text {
    min-height: auto;
  }
}

.feature__img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0;
}
.feature__img img {
  display: block;
}

.feature__detail {
  margin-top: 100px;
  max-width: 1440px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .feature__detail {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .feature__detail {
    max-width: 550px;
    margin-right: auto;
    margin-left: auto;
  }
}

.feature__detail__block {
  max-width: 1320px;
  width: 98%;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .feature__detail__block {
    gap: 20px;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .feature__detail__block {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.feature__detail__block:nth-of-type(1) .feature__detail__contents::before {
  background: url(../img/top/feature-number01.png) no-repeat center/contain;
}
.feature__detail__block:nth-of-type(2) .feature__detail__contents::before {
  background: url(../img/top/feature-number02.png) no-repeat center/cover;
}
.feature__detail__block:nth-of-type(3) .feature__detail__contents::before {
  background: url(../img/top/feature-number03.png) no-repeat center/cover;
}

.feature__detail__block--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: 0;
}
@media (max-width: 767px) {
  .feature__detail__block--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.feature__detail__block--reverse::before {
  right: 0;
}

.feature__detail__block--right {
  margin-right: 0;
}
.feature__detail__block--right::before {
  left: 0;
}

.feature__detail__contents {
  width: calc(100% - 696px);
  position: relative;
}
@media (max-width: 1199px) {
  .feature__detail__contents {
    width: calc(100% - 400px);
  }
}
@media (max-width: 767px) {
  .feature__detail__contents {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 89%;
    margin-right: auto;
    margin-left: auto;
  }
}
.feature__detail__contents::before {
  position: absolute;
  content: "";
  top: -80px;
  right: 0;
  width: 195px;
  height: 160px;
}
@media (max-width: 1199px) {
  .feature__detail__contents::before {
    top: -40px;
    width: 120px;
    height: 100px;
  }
}
@media (max-width: 767px) {
  .feature__detail__contents::before {
    top: -10px;
  }
}

.feature__detail__block__title {
  font-size: 28px;
  color: #04A95C;
}
@media (max-width: 1199px) {
  .feature__detail__block__title {
    font-size: 20px;
  }
}

.feature__detail__block__text {
  margin: 0;
  margin-top: 34px;
  line-height: 200%;
}
@media (max-width: 1199px) {
  .feature__detail__block__text {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .feature__detail__block__text {
    margin-top: 20px;
  }
}

.feature__detail__img {
  width: 696px;
  margin: 0;
}
@media (max-width: 1199px) {
  .feature__detail__img {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .feature__detail__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}
.feature__detail__img img {
  display: block;
  width: 100%;
  aspect-ratio: 696/429;
  -o-object-fit: cover;
     object-fit: cover;
}

/*************************************************************************************
診療内容
**************************************************************************************/
.treatment {
  background-color: #F2FFF9;
  margin-top: 60px;
  padding: 48px 0;
}
@media (max-width: 767px) {
  .treatment {
    margin-top: 34px;
    padding: 32px 0;
  }
}

.treatment__title {
  text-align: center;
}

.treatment__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 34px;
}
@media (max-width: 767px) {
  .treatment__wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 25px;
    gap: 14px;
  }
}

.treatment__block a {
  text-decoration: none;
  border: 1px solid #04A95C;
  border-radius: 10px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
  padding: 15px;
  min-height: 200px;
}
@media (min-width: 1200px) {
  .treatment__block a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .treatment__block a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.7;
  }
}
@media (max-width: 1199px) {
  .treatment__block a {
    min-height: 265px;
  }
}
@media (max-width: 767px) {
  .treatment__block a {
    display: block;
    min-height: auto;
    position: relative;
  }
}

.treatment__contents h3 {
  color: #04A95C;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .treatment__contents h3 {
    font-size: 18px;
    padding-left: 90px;
    margin-top: 15px;
  }
}
.treatment__contents p {
  font-size: 14px;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .treatment__contents p {
    margin-top: 30px;
  }
}

.treatment__img {
  width: 87px;
}
@media (max-width: 767px) {
  .treatment__img {
    position: absolute;
    top: 10px;
    left: 15px;
    width: 70px;
  }
}
.treatment__img img {
  display: block;
}

/*************************************************************************************
クリニックのご案内
**************************************************************************************/
.clinic {
  margin: 60px 0;
}
@media (max-width: 767px) {
  .clinic {
    margin: 40px 0;
  }
}

.clinic__title {
  text-align: center;
}

.clinic__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 56px;
  margin-top: 34px;
}
@media (max-width: 1199px) {
  .clinic__container {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .clinic__container {
    display: block;
  }
}

.clinic__contents {
  width: 50%;
}
@media (max-width: 767px) {
  .clinic__contents {
    max-width: 390px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.clinic__contents h3 {
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .clinic__contents h3 {
    font-size: 15px;
  }
}

.clinic__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  margin-top: 15px;
}
@media (max-width: 1199px) {
  .clinic__description {
    display: block;
  }
}
@media (max-width: 767px) {
  .clinic__description {
    font-size: 14px;
  }
}
.clinic__description dt {
  width: 170px;
}
.clinic__description dd {
  width: 100%;
  margin: 0;
  line-height: 180%;
}
.clinic__description dd address {
  font-style: normal;
}
.clinic__description dd span {
  display: block;
}

.clinic-table {
  display: block;
  margin-top: 30px;
}

.clinic__table__caption {
  display: block;
  text-align: right;
  font-size: 13px;
}

.clinic__map {
  width: 50%;
}
@media (max-width: 767px) {
  .clinic__map {
    max-width: 390px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
  }
}
.clinic__map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 520/450;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .clinic__map iframe {
    aspect-ratio: 2/1.8;
  }
}

/*************************************************************************************
医師紹介
**************************************************************************************/
.message {
  margin: 60px auto;
}
@media (max-width: 767px) {
  .message {
    max-width: 550px;
    margin-top: 25px;
    margin-bottom: 30px;
  }
}

.message__title {
  font-size: 28px;
  color: #04A95C;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 767px) {
  .message__title {
    text-align: left;
    font-size: 22px;
  }
}

.message__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .message__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 23px;
  }
}

.message__contents {
  width: 623px;
}
@media (max-width: 1199px) {
  .message__contents {
    width: calc(100% - 300px);
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .message__contents {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
}

.message__label {
  font-size: 15px;
  color: #04A95C;
}

.message__text {
  font-weight: 400;
  line-height: 180%;
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .message__text {
    font-size: 15px;
  }
}

.message__img {
  width: 476px;
}
@media (max-width: 1199px) {
  .message__img {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .message__img {
    width: 100%;
  }
}
.message__img img {
  display: block;
  width: 100%;
  aspect-ratio: 476/667;
  -o-object-fit: cover;
     object-fit: cover;
}

.message__director {
  padding-left: 18px;
  border-left: 1px solid #04A95C;
  font-size: 18px;
  font-weight: 400;
}
.message__director span {
  font-size: 12px;
  display: block;
}

/*************************************************************************************
経歴・資格
**************************************************************************************/
.career {
  background-color: #F5F4F2;
  padding: 65px 0;
}

.career__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1172px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .career__wrap {
    display: block;
    width: 92%;
  }
}
@media (max-width: 767px) {
  .career__wrap {
    width: 87%;
  }
}

@media (max-width: 1199px) {
  .career__block:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
.career__block ul {
  list-style: disc;
  list-style-position: inside;
}
.career__block ul li {
  text-indent: -22px;
  padding-left: 22px;
}
.career__block ul li::marker {
  color: #04A95C;
}
.career__block ol li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.career__block ol li span {
  white-space: nowrap;
  min-width: 100px;
}

.career__title {
  padding-left: 20px;
  font-size: 30px;
  font-weight: 500;
  border-left: 5px solid #04A95C;
  line-height: 130%;
}
@media (max-width: 767px) {
  .career__title {
    font-size: 22px;
  }
}

.career__lists {
  margin-top: 24px;
}

.career__list {
  margin-bottom: 10px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .career__list {
    font-size: 15px;
  }
}

/*************************************************************************************
クリニック紹介文
**************************************************************************************/
.info-introduction {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .info-introduction {
    margin-top: 25px;
    max-width: 390px;
  }
}

.info-introduction__title {
  font-size: 28px;
  color: #04A95C;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .info-introduction__title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .info-introduction__title {
    font-size: 20px;
  }
}

.info-introduction__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 48px;
  margin-top: 37px;
}
@media (max-width: 1199px) {
  .info-introduction__wrap {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .info-introduction__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 25px;
    margin-top: 25px;
  }
}

.info-introduction__contents {
  width: calc(100% - 680px);
}
@media (max-width: 1199px) {
  .info-introduction__contents {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .info-introduction__contents {
    width: 100%;
  }
}

.info-introduction__text {
  font-weight: 400;
  line-height: 180%;
}
@media (max-width: 1199px) {
  .info-introduction__text {
    font-size: 15px;
  }
}

.info-introduction__img {
  width: 680px;
  margin: 0;
}
@media (max-width: 1199px) {
  .info-introduction__img {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .info-introduction__img {
    width: 100%;
  }
}
.info-introduction__img img {
  width: 100%;
  aspect-ratio: 680/453;
  -o-object-fit: cover;
     object-fit: cover;
}

/*************************************************************************************
こんな症状はありませんか？
**************************************************************************************/
.main--treatment {
  margin-top: 66px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .main--treatment {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}

.empathy {
  position: relative;
}

.empathy--first-visit {
  margin-top: 40px;
}
.empathy--first-visit::after {
  position: static;
}
.empathy--first-visit ul {
  padding-top: 50px;
}
@media (max-width: 1199px) {
  .empathy--first-visit ul {
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .empathy--first-visit ul {
    padding-top: 25px;
  }
}

.empathy__title {
  position: absolute;
  top: -25px;
  left: 45px;
  font-size: 26px;
  font-weight: 500;
  background-color: #ffffff;
  border-radius: 50px;
  border: 1px solid #04A95C;
  padding: 1px 30px;
  z-index: 1;
}
.empathy__title span {
  color: #04A95C;
  font-size: 30px;
}
@media (max-width: 1199px) {
  .empathy__title {
    font-size: 20px;
  }
  .empathy__title span {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .empathy__title {
    top: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    white-space: nowrap;
    text-align: center;
    line-height: 150%;
    font-size: 16px;
  }
  .empathy__title span {
    font-size: 18px;
  }
}

.empathy__title--fz22 {
  left: 30px;
}
@media (max-width: 767px) {
  .empathy__title--fz22 {
    left: 50%;
  }
}
.empathy__title--fz22 span {
  font-size: 22px;
}
@media (max-width: 1199px) {
  .empathy__title--fz22 span {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .empathy__title--fz22 span {
    font-size: 18px;
  }
}

.empathy__lists {
  background-color: #F5F4F2;
  padding: 50px;
  padding-bottom: 30px;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 6px;
  position: relative;
}
.empathy__lists::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: -20px;
  width: 167px;
  height: 151px;
  background: url(../img/under/empathy-illust.png) no-repeat center/cover;
}
@media (max-width: 1199px) {
  .empathy__lists::after {
    width: 112px;
    height: 101px;
  }
}
@media (max-width: 767px) {
  .empathy__lists::after {
    display: none;
  }
}
@media (max-width: 1199px) {
  .empathy__lists {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    padding: 35px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .empathy__lists {
    display: block;
    padding: 20px;
    padding-top: 40px;
    padding-bottom: 30px;
  }
}

.access-way::after {
  display: none;
}

.grid-row4 {
  -ms-grid-rows: (auto)[4];
  grid-template-rows: repeat(4, auto);
}

.grid-row3 {
  -ms-grid-rows: (auto)[3];
  grid-template-rows: repeat(3, auto);
}

.empathy__list {
  padding-left: 25px;
  position: relative;
}
@media (max-width: 767px) {
  .empathy__list {
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
    font-size: 15px;
  }
  .empathy__list:not(:last-of-type) {
    margin-bottom: 3px;
  }
}
.empathy__list::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url(../img/under/empathy-checkicon.png) no-repeat center/cover;
}
@media (max-width: 767px) {
  .empathy__list::before {
    width: 14px;
    height: 14px;
  }
}

.empathy__text {
  margin: 0;
  margin-top: 16px;
}
@media (max-width: 1199px) {
  .empathy__text {
    font-size: 15px;
  }
}

/*************************************************************************************
診療内容説明
**************************************************************************************/
.treatment-explanation {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .treatment-explanation {
    margin-top: 40px;
  }
}

.treatment-explanation__title {
  padding-left: 20px;
  position: relative;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .treatment-explanation__title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .treatment-explanation__title {
    padding-left: 15px;
  }
}
.treatment-explanation__title::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #04A95C;
}

.vaccination__label {
  max-width: 1000px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: 40px;
  position: absolute;
  font-size: 26px;
  font-weight: 500;
  background-color: #ffffff;
  border-radius: 50px;
  border: 1px solid #04A95C;
  padding: 1px 30px;
  margin-top: 30px;
}
.vaccination__label span {
  color: #04A95C;
  font-size: 22px;
}
@media (max-width: 1199px) {
  .vaccination__label {
    font-size: 20px;
    margin-left: 15px;
  }
  .vaccination__label span {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .vaccination__label {
    white-space: nowrap;
    text-align: center;
    line-height: 120%;
    font-size: 16px;
    padding: 3px 25px;
  }
  .vaccination__label span {
    font-size: 18px;
  }
}

.vaccination__wrap {
  margin-top: 50px !important;
}
@media (max-width: 767px) {
  .vaccination__wrap {
    padding-top: 40px !important;
  }
}

.treatment-explanation__lists {
  border-radius: 10px;
  background-color: #F5F4F2;
  padding: 40px 48px;
  list-style: disc;
  list-style-position: inside;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 10px;
  margin-top: 24px;
}
@media (max-width: 1199px) {
  .treatment-explanation__lists {
    padding: 25px 35px;
    margin-top: 16px;
  }
}
@media (max-width: 767px) {
  .treatment-explanation__lists {
    padding: 20px;
    margin-top: 10px;
    display: block;
  }
}

.grid-row1 {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}

.grid-row2 {
  -ms-grid-rows: (auto)[2];
  grid-template-rows: repeat(2, auto);
}

.grid-row3 {
  -ms-grid-rows: (auto)[3];
  grid-template-rows: repeat(3, auto);
}

.grid-row4 {
  -ms-grid-rows: (auto)[4];
  grid-template-rows: repeat(4, auto);
}

.grid-row5 {
  -ms-grid-rows: (auto)[5];
  grid-template-rows: repeat(5, auto);
}

.grid-row6 {
  -ms-grid-rows: (auto)[6];
  grid-template-rows: repeat(6, auto);
}

.grid-row7 {
  -ms-grid-rows: (auto)[7];
  grid-template-rows: repeat(7, auto);
}

.grid-row8 {
  -ms-grid-rows: (auto)[8];
  grid-template-rows: repeat(8, auto);
}

.treatment-explanation__list {
  text-indent: -24px;
  padding-left: 16px;
}
@media (max-width: 1199px) {
  .treatment-explanation__list {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .treatment-explanation__list {
    text-indent: -18px;
    padding-left: 16px;
  }
  .treatment-explanation__list:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
.treatment-explanation__list::marker {
  color: #04A95C;
}
@media (max-width: 767px) {
  .treatment-explanation__list::marker {
    font-size: 12px;
  }
}
.treatment-explanation__list span {
  color: #04A95C;
}
.treatment-explanation__list .green-fz20 {
  font-size: 20px;
  line-height: 200%;
}
@media (max-width: 767px) {
  .treatment-explanation__list .green-fz20 {
    font-size: 16px;
    line-height: 150%;
  }
}

.treatment-explanation__text {
  list-style: disc;
  list-style-position: inside;
  font-weight: 400;
}
.treatment-explanation__text li::marker {
  color: #04A95C;
}
@media (max-width: 1199px) {
  .treatment-explanation__text {
    font-size: 15px;
  }
}

.treatment-explanation__img {
  margin-top: 40px;
}

/*************************************************************************************
特徴
**************************************************************************************/
.treatment-explanation__features {
  display: -ms-grid;
  display: grid;
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 1199px) {
  .treatment-explanation__features {
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .treatment-explanation__features {
    gap: 24px 12px;
  }
}

.grid-column3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px 24px;
}
@media (max-width: 767px) {
  .grid-column3 {
    gap: 24px;
  }
}
.grid-column3 .treatment-feature {
  width: calc(33.3% - 16px);
  padding: 30px 45px;
}
@media (max-width: 767px) {
  .grid-column3 .treatment-feature {
    width: 100%;
  }
}

.grid-column4 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .grid-column4 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-column5 {
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
@media (max-width: 1199px) {
  .grid-column5 {
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 12px;
  }
}
@media (max-width: 767px) {
  .grid-column5 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid-column5 .treatment-feature {
  padding: 20px 15px;
  padding-bottom: 8px;
}

.treatment-feature {
  background-color: #FFFDF1;
  border: 2px solid #04A95C;
  position: relative;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1199px) {
  .treatment-feature {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .treatment-feature {
    padding: 20px 15px;
  }
}
.treatment-feature::before {
  position: absolute;
  content: "";
  top: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 137px;
  height: 3px;
  background-color: #FFFDF1;
  z-index: 1;
}

.explanation-feature__label {
  color: #04A95C;
  text-align: center;
  position: absolute;
  top: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}

.explanation-feature__text {
  text-align: center;
  margin: 0;
}
@media (max-width: 1199px) {
  .explanation-feature__text {
    font-size: 15px;
  }
}

/*************************************************************************************
受信の流れ
**************************************************************************************/
.treatment-flow__lists {
  margin-top: 40px;
  position: relative;
}
.treatment-flow__lists::before {
  position: absolute;
  content: "";
  top: 0;
  left: 32px;
  width: 1px;
  height: 100%;
  background-color: #D5D5D5;
}

.treatment-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .treatment-flow__list {
    margin-bottom: 30px;
  }
}

.treatment-flow__label {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #F2FFF9;
  border: 1px solid #04A95C;
  border-radius: 50px;
  padding: 10px 13px;
  color: #04A95C;
  position: relative;
}

.number {
  display: block;
  text-align: center;
  line-height: 120%;
  font-weight: 600;
}

.treatment-flow__contents h2 {
  font-size: 20px;
  color: #04A95C;
  font-weight: 400;
}
@media (max-width: 767px) {
  .treatment-flow__contents h2 {
    font-size: 18px;
  }
}
.treatment-flow__contents p {
  margin: 0;
}
@media (max-width: 767px) {
  .treatment-flow__contents p {
    font-size: 15px;
  }
}

/*************************************************************************************
目的
**************************************************************************************/
.purpose__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .purpose__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    margin-top: 18px;
  }
}

.purpose__text {
  line-height: 180%;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767px) {
  .purpose__text {
    font-size: 15px;
  }
}

.purpose__img {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.purpose__img img {
  display: block;
  width: 100%;
  aspect-ratio: 476/289;
  -o-object-fit: cover;
     object-fit: cover;
}

.treatment-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  border-color: #D5D5D5;
}
.treatment-table tbody tr th {
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 767px) {
  .treatment-table tbody tr th {
    font-size: 15px;
    padding: 12px;
  }
}
.treatment-table tbody tr th:first-of-type {
  width: 32%;
}
.treatment-table tbody tr td {
  padding: 16px;
  text-align: center;
}
.treatment-table tbody .yellow th {
  background-color: #FFFDF1;
}

.treatment-lists {
  margin-top: 18px;
  list-style: disc;
  list-style-position: inside;
}

.treatment-list {
  text-indent: -24px;
  padding-left: 26px;
}

/*************************************************************************************
コラム記事へのリンク
**************************************************************************************/
.column-link {
  margin-top: 60px;
}

.column-link__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 27px;
  margin-top: 24px;
}

.column-link__link a {
  font-weight: 400;
  text-decoration: none;
  display: block;
  background-color: #FFFDF1;
  border: 1px solid #04A95C;
  border-radius: 4px;
  padding: 10px 40px 10px 24px;
  min-width: 165px;
  text-align: center;
  position: relative;
}
.column-link__link a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 20px;
  background: url(../img/under/column-link-icon.png) no-repeat center/cover;
}

/*************************************************************************************
よくある質問
**************************************************************************************/
.main {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .main {
    margin-bottom: 60px;
  }
}

.faq {
  margin-top: 24px;
  list-style: none;
}
@media (max-width: 767px) {
  .faq {
    margin-top: 15px;
  }
}

.faq__block {
  background-color: #F5F4F2;
  padding: 30px;
  border-radius: 4px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .faq__block {
    padding: 20px 15px;
    margin-bottom: 15px;
    font-size: 15px;
  }
}

.faq__dl {
  margin: 0;
}
.faq__dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq__dl dt img {
  display: block;
  width: 29px;
}
.faq__dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .faq__dl dd {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.faq__dl dd img {
  display: block;
  width: 29px;
  margin-top: 3px;
}

/*************************************************************************************
お知らせ一覧
**************************************************************************************/
.main--news {
  margin-top: 40px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .main--news {
    margin-top: 20px;
    margin-bottom: 60px;
  }
}

.news {
  max-width: 784px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .news {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .news {
    width: 89%;
  }
}

.pagination {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination .page {
  font-family: "Lato", sans-serif;
}
.pagination .current {
  color: #04A95C;
}
.pagination .page, .pagination a, .pagination span {
  border: none !important;
  font-weight: 400 !important;
  font-size: 18px;
}
.pagination .previouspostslink, .pagination .nextpostslink {
  position: relative;
}
.pagination .previouspostslink::after, .pagination .nextpostslink::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 12px;
  height: 24px;
}
.pagination .previouspostslink::after {
  background: url(../img/under/prev.png) no-repeat center/contain;
}
.pagination .nextpostslink::after {
  background: url(../img/under/next.png) no-repeat center/contain;
}
.pagination .pages {
  display: none;
}

/*************************************************************************************
詳細ページ(お知らせ、コラム共通)
**************************************************************************************/
.article {
  max-width: 792px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .article {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .article {
    width: 89%;
  }
}

.data {
  color: #04A95C;
  margin: 0;
}

.article__title {
  font-size: 30px;
  font-weight: 500;
  border-bottom: 1px solid #D5D5D5;
  padding-bottom: 5px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .article__title {
    font-size: 20px;
  }
}

.article__contents h2 {
  margin: 15px 0;
  font-size: 22px;
  font-weight: 500;
  position: relative;
}
.article__contents h2::after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: #04A95C;
}
.article__contents h3 {
  margin: 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #04A95C;
}
.article__contents h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 15px 0;
}
.article__contents p {
  margin: 25px 0;
}
.article__contents img {
  display: block;
  width: 100%;
}

.article__btn a {
  margin-top: 60px;
  text-decoration: none;
  display: block;
  width: 220px;
  margin-right: auto;
  margin-left: auto;
  padding: 11px;
  text-align: center;
  border-radius: 50px;
  border: 1px solid #04A95C;
  font-size: 15px;
  color: #04A95C;
}
@media (min-width: 1200px) {
  .article__btn a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .article__btn a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #04A95C;
    color: #ffffff;
  }
}

/*************************************************************************************
コラム一覧(コラム詳細のスタイルはお知らせと共通)
**************************************************************************************/
.main--column {
  margin-top: 60px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .main--column {
    margin-top: 20px;
    margin-bottom: 60px;
    max-width: 500px;
  }
}

.column {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1199px) {
  .column {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .column {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 767px) {
  .column__list:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
.column__list a {
  text-decoration: none;
}
.column__list a img {
  display: block;
  width: 100%;
  aspect-ratio: 304/158;
  -o-object-fit: cover;
     object-fit: cover;
}
.column__list a data {
  font-size: 14px;
  color: #04A95C;
  font-family: "Lato", sans-serif;
}
.column__list a h3 {
  font-weight: 400;
  font-size: 15px;
  text-decoration: underline;
}
@media (max-width: 1199px) {
  .column__list a h3 {
    font-size: 15px;
  }
}

/*************************************************************************************
設備紹介
**************************************************************************************/
.facility {
  margin-top: 40px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .facility {
    margin-bottom: 80px;
  }
}

.facility__text {
  font-size: 18px;
  text-align: center;
  line-height: 180%;
}
@media (max-width: 1199px) {
  .facility__text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .facility__text {
    text-align: left;
  }
}

.facility__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 48px 1fr 48px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 48px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .facility__list {
    gap: 30px 20px;
  }
}
@media (max-width: 767px) {
  .facility__list {
    display: block;
  }
}

.facility__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  .facility__block:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
.facility__block h2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-size: 20px;
  color: #04A95C;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .facility__block h2 {
    font-size: 18px;
  }
}
.facility__block p {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin: 0;
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .facility__block p {
    font-size: 15px;
  }
}
.facility__block figure {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0;
}

.facility__appeal {
  background-color: #F5F4F2;
  max-width: 880px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 78px;
  padding: 42px;
  position: relative;
}
@media (max-width: 1199px) {
  .facility__appeal {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .facility__appeal {
    padding: 20px 15px;
  }
}
.facility__appeal::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: -50px;
  width: 111px;
  height: 129px;
  background: url(../img/under/facility-iillust.png) no-repeat center/cover;
}
@media (max-width: 1199px) {
  .facility__appeal::before {
    left: -20px;
  }
}
@media (max-width: 767px) {
  .facility__appeal::before {
    width: 78px;
    height: 90px;
    bottom: -50px;
  }
}
.facility__appeal h3 {
  font-size: 26px;
  color: #04A95C;
  font-weight: 500;
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  .facility__appeal h3 {
    font-size: 22px;
    white-space: nowrap;
    top: -20px;
  }
}
.facility__appeal h3::before, .facility__appeal h3::after {
  position: absolute;
  content: "";
  top: 25%;
  width: 2px;
  height: 25px;
  background-color: #04A95C;
}
.facility__appeal h3::before {
  left: -30px;
  -webkit-transform: rotate(150deg);
          transform: rotate(150deg);
}
.facility__appeal h3::after {
  right: -30px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.facility__appeal p {
  text-align: center;
  line-height: 180%;
}
@media (max-width: 1199px) {
  .facility__appeal p {
    font-size: 15px;
  }
}