@charset "UTF-8";
/*---------------------------------

  header

---------------------------------*/
.header {
  background: rgba(255, 255, 255, 0.8);
  height: 8rem;
  position: fixed;
  display: flex;
  align-items: center;
  z-index: 13;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 7rem;
  }
}
@media screen and (max-width: 480px) {
  .header {
    height: 4rem;
  }
}
.header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  .header__inner {
    padding: 5px;
  }
}
.header .logo_pc {
  width: 30%;
  max-width: 200px;
}
@media screen and (max-width: 1200px) {
  .header .logo_pc {
    display: none;
  }
}
.header .nav_wrap {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 1200px) {
  .header .nav_wrap {
    display: none;
  }
}
.header .nav_wrap .navigation {
  display: flex;
  align-items: center;
  list-style: none;
}
.header .nav_wrap .navigation li {
  position: relative;
  padding: 0 17px;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #00AE6E;
}
.header .nav_wrap .navigation li:last-child {
  border-right: 1px solid #00AE6E;
}
.header .nav_wrap .navigation li a {
  color: #222;
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header .nav_wrap .navigation li a span {
  display: block;
  color: #00AE6E;
  font-size: 1rem;
}
.header .nav_wrap .navigation li a img {
  width: 20px;
  height: 20px;
}
.header .nav_wrap .navigation li.navbtn {
  width: 260px;
  height: 6rem;
  border-radius: 50px;
}
.header .nav_wrap .navigation li.navbtn a {
  font-size: 2.2rem;
  padding-left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.header .nav_wrap .navigation li.navbtn a::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
}
.header .nav_wrap .navigation li.active {
  background-color: rgba(0, 174, 110, 0.4);
}
.header .nav_wrap .nav_btn {
  height: 9rem;
  border-radius: 0 10px 10px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #00AE6E;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 10px 14px 0;
}
.header .nav_wrap .nav_btn::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.header__sp {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header__sp .sp_logo {
  width: 30%;
  max-width: 180px;
}
@media screen and (max-width: 1200px) {
  .header__sp {
    display: flex;
  }
}
.header__sp .menu-trigger,
.header__sp .menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
.header__sp .menu-trigger {
  position: relative;
  width: 24px;
  height: 18px;
  border: none;
  appearance: none;
  cursor: pointer;
}
.header__sp .menu-trigger span {
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #222;
}
.header__sp .menu-trigger span:nth-of-type(1) {
  top: 0;
}
.header__sp .menu-trigger span:nth-of-type(2) {
  top: 8px;
}
.header__sp .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.header__sp .menu-trigger.active span:nth-of-type(1) {
  transform: translateY(11px) rotate(-45deg);
}
.header__sp .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.header__sp .menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-5px) rotate(45deg);
}

.gnav {
  position: fixed;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: auto;
  padding: 8rem 0 2rem;
  left: 0;
  top: 0;
  background: #D4FFEF;
  z-index: 12;
  display: none;
}
.gnav__wrap > a {
  color: #00AE6E;
  font-weight: 700;
  font-size: 2.6rem;
  padding: 2rem;
}
.gnav__menu {
  margin-bottom: 3rem;
  padding: 0 2rem;
}
.gnav__menu__item a {
  display: block;
  padding: 3rem 1rem;
  color: #222;
  position: relative;
  font-size: 1.8rem;
  text-align: left;
  border-bottom: 1px solid #00AE6E;
}

/*---------------------------------

  footer

---------------------------------*/
footer {
  background: #717171;
  color: #fff;
}
footer .footer_inner {
  width: min(1200px, 90%);
  margin: 0 auto;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  footer .footer_inner {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 1024px) {
  footer .address {
    text-align: center;
  }
}
footer .address p:nth-child(1) {
  font-size: 3rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  footer .address p:nth-child(1) {
    font-size: 1.8rem;
  }
}
footer .address p:nth-child(2) {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1024px) {
  footer .address p:nth-child(2) {
    font-size: 1.6rem;
  }
}
footer .address p:nth-child(2) span {
  font-size: 1.6rem;
  display: block;
}
@media screen and (max-width: 1024px) {
  footer .address p:nth-child(2) span {
    display: inline-block;
    margin-right: 1.2rem;
  }
}
footer .address p:nth-child(3) {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1024px) {
  footer .address p:nth-child(3) {
    font-size: 1.6rem;
  }
}
footer .address a {
  font-size: 1.4rem;
  border: 1px solid #fff;
  border-radius: 3rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(260px, 90%);
  margin-bottom: 6rem;
}
@media screen and (max-width: 1024px) {
  footer .address a {
    margin: 0 auto;
  }
}
footer .link {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  footer .link {
    display: block;
    margin-bottom: 6rem;
    text-align: center;
  }
}
footer .link li {
  font-size: 1.6rem;
}
footer .link li:not(:last-child) {
  margin-right: 6rem;
}
@media screen and (max-width: 1024px) {
  footer .link li:not(:last-child) {
    margin-right: inherit;
    margin-bottom: 1rem;
  }
}
footer small {
  background-color: #222;
  color: #fff;
  font-size: 10px;
  font-family: Noto Sans;
  letter-spacing: 3px;
  text-align: center;
  display: block;
  padding: 3px 0;
}
@media screen and (max-width: 480px) {
  footer small {
    letter-spacing: 0;
  }
}

/*---------------------------------

  共通

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6em;
  color: #222;
  line-height: 1.7;
  background-color: #fff;
}

a {
  text-decoration: none;
  transition: 0.5s;
}
a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .br_pc {
    display: none;
  }
}

.br_tab {
  display: none;
}
@media screen and (max-width: 1024px) {
  .br_tab {
    display: block;
  }
}

.br_sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .br_sp {
    display: block;
  }
}

.sec_title {
  text-align: center;
  font-weight: 700;
  color: #00AE6E;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .sec_title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 480px) {
  .sec_title {
    font-size: 2rem;
  }
}
.sec_title span {
  display: block;
  font-size: 1.8rem;
  color: #222;
}
@media screen and (max-width: 480px) {
  .sec_title span {
    font-size: 1.2rem;
  }
}

.btn {
  background-color: #00AE6E;
  height: 7rem;
  border-radius: 50px;
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  width: min(90%, 470px);
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .btn {
    font-size: 1.6rem;
    height: 5rem;
  }
}
.btn::after {
  content: " ";
  background-image: url(../img/top/btn_arrow_wh.svg);
  background-size: cover;
  position: absolute;
  right: 20px;
  width: 20px;
  height: 20px;
}

/*---------------------------------

  mv

---------------------------------*/
.mv {
  position: relative;
  /* height: min(800px, 100vh); */
}
.mv__text {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 100px;
  background-color: rgba(0, 174, 110, 0.7);
  padding: 2rem 8rem;
}
@media screen and (max-width: 1024px) {
  .mv__text {
    bottom: 30px;
    padding: 2rem 5rem;
  }
}
@media screen and (max-width: 480px) {
  .mv__text {
    padding: 2rem;
  }
}
.mv__text .text1 {
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}
@media screen and (max-width: 1024px) {
  .mv__text .text1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .mv__text .text1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.mv__text .text2 {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .mv__text .text2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .mv__text .text2 {
    font-size: 1.4rem;
  }
}

/*---------------------------------

  下層ページのmv

---------------------------------*/
.sub_mv {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 8rem;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .sub_mv {
    height: 370px;
    margin-top: 7rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_mv {
    margin-top: 4rem;
    height: 220px;
  }
}
.sub_mv .title {
  background-color: rgba(0, 174, 110, 0.8);
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  padding: 1.6rem 20rem;
  width: max-content;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .sub_mv .title {
    font-size: 2rem;
    padding: 1.6rem 0;
    width: 80%;
  }
}
.sub_mv .title span {
  display: block;
  font-size: 2rem;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .sub_mv .title span {
    font-size: 1.4rem;
  }
}

/*---------------------------------

  about

---------------------------------*/
.top .about {
  background: url(../img/top/about_bg.png);
  background-size: cover;
  padding: 5% 0 10%;
}
.top .about__inner {
  width: min(1200px, 90%);
  margin: 0 auto;
  background-color: #fff;
  padding: 7rem 10rem;
}
@media screen and (max-width: 1024px) {
  .top .about__inner {
    padding: 5rem 3rem;
  }
}
@media screen and (max-width: 480px) {
  .top .about__inner {
    padding: 5rem 2rem;
  }
}
.top .about .sb_title {
  margin: 6rem auto;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
  position: relative;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  .top .about .sb_title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .top .about .sb_title {
    margin: 3rem auto;
    font-size: 1.6rem;
  }
}
.top .about .sb_title::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #00AE6E;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 480px) {
  .top .about .sb_title::after {
    bottom: -10px;
  }
}
.top .about .contents {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.top .about .contents img {
  width: 36%;
}
@media screen and (max-width: 1024px) {
  .top .about .contents img {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.top .about .contents .text_block {
  width: 62%;
}
@media screen and (max-width: 1024px) {
  .top .about .contents .text_block {
    width: 100%;
  }
}
.top .about .contents .text_block p {
  font-size: 2rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 1024px) {
  .top .about .contents .text_block p {
    font-size: 1.6rem;
  }
}

/*---------------------------------

  information

---------------------------------*/
.information {
  padding: 7rem 0;
}
.information__inner {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.information__inner .sec_title {
  width: 30%;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .information__inner .sec_title {
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
  }
}
.information__inner dl {
  width: 68%;
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .information__inner dl {
    width: 100%;
  }
}
.information__inner dl div {
  border-bottom: 1px solid #00AE6E;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 480px) {
  .information__inner dl div {
    font-size: 1.4rem;
  }
}
.information__inner dl div dt {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #717171;
}
.information__inner dl div dd {
  font-size: 1.6rem;
}
.information__inner dl div dd .title {
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
  color: #00AE6E;
}
.information__inner dl div dd span {
  text-decoration: underline;
}

/*---------------------------------

  treatment

---------------------------------*/
.top .treatment {
  background-color: #FAFAFA;
  padding: 7rem 0;
}
.top .treatment__inner {
  width: min(1200px, 90%);
  margin: 0 auto;
}
.top .treatment .items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 4rem;
}
.top .treatment .items .item {
  width: 48%;
  background-color: #fff;
  padding: 3rem;
  margin-bottom: 6rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .top .treatment .items .item {
    width: 100%;
  }
}
.top .treatment .items .item .title {
  margin: 3rem auto;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: #00AE6E;
}
@media screen and (max-width: 480px) {
  .top .treatment .items .item .title {
    font-size: 1.8rem;
  }
}
.top .treatment .items .item .text {
  font-size: 2rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 480px) {
  .top .treatment .items .item .text {
    font-size: 1.6rem;
  }
}
.top .treatment .items .item .text span {
  margin-top: 1.5rem;
  display: block;
}
.top .treatment .items .item .text span.red {
  color: #FA4141;
}
.top .treatment .items .item .text span.small {
  font-size: 1.4rem;
}
.top .treatment .items .item .btn {
  width: 80%;
  margin-top: auto;
}
@media screen and (max-width: 480px) {
  .top .treatment .items .item .btn {
    width: 100%;
  }
}

/*---------------------------------

  introduction

---------------------------------*/
.top .introduction {
  background-image: url(../img/top/introduction_bg.png);
  background-size: cover;
  padding: 12rem 0;
  background-position: center center;
}
.top .introduction__inner {
  width: min(800px, 90%);
  margin: 0 auto;
  background-color: #00AE6E;
  padding: 5rem 0;
}
.top .introduction__inner .sec_title {
  color: #fff;
  margin-bottom: 6rem;
}
.top .introduction__inner .sec_title span {
  color: #fff;
}
.top .introduction__inner .btn {
  background-color: #fff;
  color: #00AE6E;
  width: min(90%, 470px);
}
.top .introduction__inner .btn::after {
  background-image: url(../img/top/btn_arrow_gr.svg);
}

/*---------------------------------

  access

---------------------------------*/
.top .access {
  padding: 7rem 0;
}
.top .access__inner {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.time_list_wrap {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
}
.time_list_wrap img {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .time_list_wrap img {
    width: 100%;
    height: 48rem;
    object-fit: cover;
  }
}
@media screen and (max-width: 480px) {
  .time_list_wrap img {
    height: 30rem;
  }
}
.time_list_wrap > div {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .time_list_wrap > div {
    width: 100%;
  }
}
.time_list_wrap .time_list {
  border-collapse: collapse;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .time_list_wrap .time_list {
    font-size: 1.6rem;
    margin: 2rem auto;
  }
}
.time_list_wrap .time_list tr th {
  width: 180px;
  text-align: left;
  font-weight: normal;
}
@media screen and (max-width: 480px) {
  .time_list_wrap .time_list tr th {
    width: 110px;
  }
}
.time_list_wrap .time_list tr td {
  padding: 1rem 2.2rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .time_list_wrap .time_list tr td {
    padding: 1rem;
  }
}
.time_list_wrap .time_list tr:not(:last-child) {
  border-bottom: 1px solid #00AE6E;
}
.time_list_wrap .time_list tr:nth-child(2) td, .time_list_wrap .time_list tr:nth-child(3) td {
  color: #00AE6E;
}
.time_list_wrap .note {
  margin-bottom: 3rem;
}
@media screen and (max-width: 1024px) {
  .time_list_wrap .note {
    text-align: center;
  }
}
.time_list_wrap .tel_wrap {
  background-color: rgba(0, 174, 110, 0.2);
  padding: 2rem 0;
  text-align: center;
}
.time_list_wrap .tel_wrap .tel {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: Open Sans Hebrew;
  margin-bottom: 2rem;
}
.time_list_wrap .tel_wrap .tel span {
  font-size: 1.6rem;
  font-weight: normal;
}
.time_list_wrap .tel_wrap .add {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}

/*---------------------------------

  スライダー

---------------------------------*/
.slick-slide img {
  width: 100%;
  height: min(800px, 100vh);
  object-fit: cover;
}

.slide-animation {
  animation: fadezoom 8s 0s forwards;
}

@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
/*---------------------------------

  当院について

---------------------------------*/
.about .sub_mv {
  background-image: url(../img/about/about_mv.png);
}
.about .about_text {
  padding: 14rem 0 30rem;
  position: relative;
}
@media screen and (max-width: 1230px) {
  .about .about_text {
    display: flex;
    flex-direction: column-reverse;
    padding: 7rem 0 3rem;
  }
}
.about .about_text > img {
  position: absolute;
  left: 0;
  top: 16%;
  width: 57%;
}
@media screen and (max-width: 1230px) {
  .about .about_text > img {
    position: relative;
    width: 80%;
  }
}
.about .about_text .inner {
  width: min(1200px, 90%);
  margin: 0 auto;
}
.about .about_text .inner .title {
  color: #00AE6E;
  width: max-content;
  font-size: 3.3rem;
  font-weight: 500;
  margin: 0 5rem 3rem auto;
}
@media screen and (max-width: 1024px) {
  .about .about_text .inner .title {
    margin: 0 auto 3rem;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 480px) {
  .about .about_text .inner .title {
    margin: 0 auto 3rem;
    font-size: 1.8rem;
  }
}
.about .about_text .inner .text {
  font-size: 1.6rem;
  margin: 0 5rem 3rem auto;
  width: min(505px, 90%);
}
@media screen and (max-width: 1024px) {
  .about .about_text .inner .text {
    margin: 0 auto 3rem;
  }
}
.about .greeting {
  background-color: #FAFAFA;
  padding: 6rem 0;
}
.about .greeting .title {
  text-align: center;
  color: #00AE6E;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 480px) {
  .about .greeting .title {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
}
.about .greeting .contents {
  width: min(1200px, 90%);
  margin: 0 auto;
}
.about .greeting .contents > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}
.about .greeting .contents > div .text_wrap {
  width: 39%;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .about .greeting .contents > div .text_wrap {
    order: 2;
    width: 100%;
    margin-bottom: 3rem;
  }
}
.about .greeting .contents > div .img_wrap {
  width: calc(54% - 2rem);
  margin-right: 2rem;
}
@media screen and (max-width: 1024px) {
  .about .greeting .contents > div .img_wrap {
    order: 1;
    width: calc(100% - 2rem);
    margin-bottom: 3rem;
  }
}
.about .greeting .contents > div .img_wrap .name_wrap {
  background-color: #00AE6E;
  color: #fff;
  width: max-content;
  padding: 1.4rem 6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  text-align: center;
  justify-content: center;
  margin: -2rem -2rem 0 auto;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 480px) {
  .about .greeting .contents > div .img_wrap .name_wrap {
    padding: 1.4rem 0;
    width: 100%;
  }
}
.about .greeting .contents > div .img_wrap .name_wrap p {
  font-size: 1.4rem;
}
.about .greeting .contents > div .img_wrap .name_wrap p:last-child {
  width: 100%;
}
.about .greeting .contents > div .img_wrap .name_wrap ruby {
  font-size: 2rem;
  font-weight: 500;
  margin-left: 1rem;
}
.about .greeting .contents .career {
  background-color: rgba(0, 174, 110, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3rem 6rem;
}
@media screen and (max-width: 1024px) {
  .about .greeting .contents .career {
    padding: 3rem;
  }
}
.about .greeting .contents .career > div {
  width: 46%;
}
@media screen and (max-width: 480px) {
  .about .greeting .contents .career > div {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.about .greeting .contents .career > div dl dt {
  font-size: 2rem;
  color: #00AE6E;
  border-bottom: 1px solid #00AE6E;
  font-weight: 500;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .about .greeting .contents .career > div dl dt {
    font-size: 1.8rem;
  }
}
.about .greeting .contents .career > div dl dd {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1024px) {
  .about .greeting .contents .career > div dl dd {
    font-size: 1.4rem;
  }
}
.about .greeting .contents.contents01 {
  margin-bottom: 12rem;
}
.about .greeting .contents.contents02 .text_wrap {
  order: 2;
}
.about .greeting .contents.contents02 .img_wrap {
  order: 1;
  margin-right: inherit;
  margin-left: 2rem;
}
.about .greeting .contents.contents02 .img_wrap .name_wrap {
  margin: -2rem auto 0 -2rem;
}

/*---------------------------------

  診療案内

---------------------------------*/
.treatment .sub_mv {
  background-image: url(../img/treatment/treatment_mv.png);
}
.treatment .sec_title {
  text-align: center;
  color: #00AE6E;
  font-size: 3.2rem;
  position: relative;
  font-weight: 600;
  margin-bottom: 6rem;
}
@media screen and (max-width: 480px) {
  .treatment .sec_title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }
}
.treatment .sec_title span {
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: -2rem;
  font-size: 3.4rem;
  font-weight: 300;
  color: rgba(217, 217, 217, 0.8);
}
@media screen and (max-width: 480px) {
  .treatment .sec_title span {
    font-size: 2rem;
    top: -1rem;
  }
}
.treatment .orthopedics {
  padding: 7rem 1rem;
  background-color: #FAFAFA;
}
@media screen and (max-width: 480px) {
  .treatment .orthopedics {
    padding: 4rem 1rem;
  }
}
.treatment .orthopedics > .text {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 480px) {
  .treatment .orthopedics > .text {
    font-size: 1.6rem;
  }
}
.treatment .orthopedics .items {
  width: min(1000px, 90%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.treatment .orthopedics .items .item {
  background-color: #fff;
  width: 48%;
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1024px) {
  .treatment .orthopedics .items .item {
    width: 100%;
  }
}
.treatment .orthopedics .items .item .icon {
  padding: 2rem 0;
  background-color: rgba(0, 174, 110, 0.2);
}
.treatment .orthopedics .items .item .icon img {
  width: 24%;
  margin: 0 auto;
}
.treatment .orthopedics .items .item .icon p {
  font-size: 2rem;
  color: #00AE6E;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media screen and (max-width: 480px) {
  .treatment .orthopedics .items .item .icon p {
    font-size: 1.6rem;
  }
}
.treatment .orthopedics .items .item .title {
  color: #00AE6E;
  margin: 1rem auto;
  font-size: 2rem;
}
@media screen and (max-width: 480px) {
  .treatment .orthopedics .items .item .title {
    font-size: 1.6rem;
  }
}
.treatment .orthopedics .items .item .text {
  font-size: 1.8rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 480px) {
  .treatment .orthopedics .items .item .text {
    font-size: 1.4rem;
  }
}
.treatment .osteoporosis {
  padding: 7rem 1rem;
}
@media screen and (max-width: 480px) {
  .treatment .osteoporosis {
    padding: 4rem 1rem;
  }
}
.treatment .osteoporosis .inner {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-self: flex-start;
}
.treatment .osteoporosis .inner img {
  width: 44%;
}
@media screen and (max-width: 1024px) {
  .treatment .osteoporosis .inner img {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.treatment .osteoporosis .inner p {
  width: 54%;
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .treatment .osteoporosis .inner p {
    width: 100%;
    font-size: 1.6rem;
  }
}
.treatment .rehabilitation {
  padding: 7rem 1rem;
  background-color: #FAFAFA;
}
@media screen and (max-width: 480px) {
  .treatment .rehabilitation {
    padding: 4rem 1rem;
  }
}
.treatment .rehabilitation .inner {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.treatment .rehabilitation .inner img {
  width: 44%;
}
@media screen and (max-width: 1024px) {
  .treatment .rehabilitation .inner img {
    width: 100%;
    margin-bottom: 3rem;
    order: 1;
  }
}
.treatment .rehabilitation .inner .texr_wrap {
  width: 54%;
}
@media screen and (max-width: 1024px) {
  .treatment .rehabilitation .inner .texr_wrap {
    width: 100%;
    order: 2;
  }
}
.treatment .rehabilitation .inner .texr_wrap p:first-child {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .treatment .rehabilitation .inner .texr_wrap p:first-child {
    font-size: 1.8rem;
  }
}
.treatment .rehabilitation .inner .texr_wrap p:nth-child(2) {
  font-size: 2rem;
}
@media screen and (max-width: 480px) {
  .treatment .rehabilitation .inner .texr_wrap p:nth-child(2) {
    font-size: 1.6rem;
  }
}
.treatment .rehabilitation .inner .box {
  width: 100%;
  background-color: #fff;
  padding: 5rem;
  margin-top: 6rem;
}
@media screen and (max-width: 1024px) {
  .treatment .rehabilitation .inner .box {
    order: 3;
  }
}
@media screen and (max-width: 480px) {
  .treatment .rehabilitation .inner .box {
    padding: 2rem;
  }
}
.treatment .rehabilitation .inner .box p:first-child {
  color: #00AE6E;
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .treatment .rehabilitation .inner .box p:first-child {
    font-size: 1.8rem;
  }
}
.treatment .rehabilitation .inner .box p:nth-child(2) {
  font-size: 2rem;
}
@media screen and (max-width: 480px) {
  .treatment .rehabilitation .inner .box p:nth-child(2) {
    font-size: 1.6rem;
  }
}
.treatment .rehabilitation .inner .box p:nth-child(2) span {
  display: block;
  font-size: 1.4rem;
  margin-top: 1rem;
}
.treatment .rehabilitation .inner .box p:nth-child(2) span a {
  color: #00AE6E;
}
.treatment .internalmedicine {
  padding: 7rem 0;
  background-color: #fff;
}
@media screen and (max-width: 480px) {
  .treatment .internalmedicine {
    padding: 4rem 1rem;
  }
}
.treatment .internalmedicine .inner {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.treatment .internalmedicine .inner img {
  width: 44%;
}
@media screen and (max-width: 1024px) {
  .treatment .internalmedicine .inner img {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.treatment .internalmedicine .inner .texr_wrap {
  width: 54%;
}
@media screen and (max-width: 1024px) {
  .treatment .internalmedicine .inner .texr_wrap {
    width: 100%;
  }
}
.treatment .internalmedicine .inner .texr_wrap p {
  font-size: 2rem;
}
@media screen and (max-width: 480px) {
  .treatment .internalmedicine .inner .texr_wrap p {
    font-size: 1.6rem;
  }
}
.treatment .internalmedicine .inner .box {
  width: 100%;
  background-color: #FAFAFA;
  padding: 5rem;
  margin-top: 6rem;
}
@media screen and (max-width: 480px) {
  .treatment .internalmedicine .inner .box {
    padding: 2rem;
  }
}
.treatment .internalmedicine .inner .box p:first-child {
  color: #00AE6E;
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .treatment .internalmedicine .inner .box p:first-child {
    font-size: 1.8rem;
  }
}
.treatment .internalmedicine .inner .box p:nth-child(2) {
  font-size: 2rem;
}
@media screen and (max-width: 480px) {
  .treatment .internalmedicine .inner .box p:nth-child(2) {
    font-size: 1.6rem;
  }
}

/*---------------------------------

  当院について

---------------------------------*/
.introduction .sub_mv {
  background-image: url(../img/introduction/introduction_mv.png);
}
.introduction .items {
  width: min(1200px, 90%);
  margin: 13rem auto 6rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .introduction .items {
    margin: 6rem auto;
  }
}
.introduction .items .item {
  width: 44%;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1024px) {
  .introduction .items .item {
    width: 100%;
  }
}
.introduction .items .item:nth-child(even) {
  margin-top: 6rem;
}
@media screen and (max-width: 1024px) {
  .introduction .items .item:nth-child(even) {
    margin-top: 0;
  }
}
.introduction .items .item img {
  margin-bottom: 2rem;
  width: auto;
  height: 450px;
  box-shadow: 40px 40px rgba(0, 174, 110, 0.2);
}
@media screen and (max-width: 1024px) {
  .introduction .items .item img {
    width: 100%;
    height: auto;
  }
}
.introduction .items .item p:first-of-type {
  font-size: 2rem;
  font-weight: 600;
  color: #00AE6E;
  border-left: 3px solid #00AE6E;
  padding-left: 20px;
  margin-bottom: 26px;
}

/*---------------------------------

  当院について

---------------------------------*/
.osteoporosis .sub_mv {
  background-image: url(../img/osteoporosis/osteoporosis_mv.png);
}
.osteoporosis .sec_1 {
  padding: 10rem 0;
}
@media screen and (max-width: 1024px) {
  .osteoporosis .sec_1 {
    padding: 4rem 0;
  }
}
.osteoporosis .sec_1 > .title {
  color: #00AE6E;
  text-align: center;
  font-size: 4rem;
  margin-bottom: 6rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .osteoporosis .sec_1 > .title {
    font-size: 2rem;
  }
}
.osteoporosis .sec_1 .inner {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.osteoporosis .sec_1 .inner p {
  width: 55%;
  font-size: 2rem;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .osteoporosis .sec_1 .inner p {
    width: 100%;
    order: 2;
    font-size: 1.6rem;
  }
}
.osteoporosis .sec_1 .inner img {
  width: calc(45% - 6rem);
}
@media screen and (max-width: 1024px) {
  .osteoporosis .sec_1 .inner img {
    width: 100%;
    order: 1;
    margin-bottom: 3rem;
  }
}
.osteoporosis .sec_2 {
  position: relative;
  padding-bottom: 20rem;
}
@media screen and (max-width: 1024px) {
  .osteoporosis .sec_2 {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 8rem;
  }
}
.osteoporosis .sec_2 img {
  position: absolute;
  left: 0;
  top: 17%;
  width: 43%;
  box-shadow: 40px 40px rgba(0, 174, 110, 0.2);
}
@media screen and (max-width: 1024px) {
  .osteoporosis .sec_2 img {
    position: relative;
    width: 100%;
  }
}
.osteoporosis .sec_2 .text_wrap {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
.osteoporosis .sec_2 .text_wrap > div {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .osteoporosis .sec_2 .text_wrap > div {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.osteoporosis .sec_2 .text_wrap > div p:nth-of-type(1) {
  color: #00AE6E;
  font-size: 3.2rem;
  margin-bottom: 3rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .osteoporosis .sec_2 .text_wrap > div p:nth-of-type(1) {
    font-size: 2rem;
  }
}
.osteoporosis .sec_2 .text_wrap > div p:nth-of-type(2) {
  font-size: 2rem;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .osteoporosis .sec_2 .text_wrap > div p:nth-of-type(2) {
    font-size: 1.6rem;
  }
}
.osteoporosis .sec_3 {
  background-image: url(../img/osteoporosis/osteoporosis_bg.png);
  background-size: cover;
  text-align: center;
  padding: 8rem 0 12rem;
}
@media screen and (max-width: 1024px) {
  .osteoporosis .sec_3 {
    padding: 4rem 0 6rem;
  }
}
.osteoporosis .sec_3 > .title {
  color: #00AE6E;
  font-size: 3.2rem;
  margin-bottom: 3rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .osteoporosis .sec_3 > .title {
    font-size: 2rem;
  }
}
.osteoporosis .sec_3 > .text {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1024px) {
  .osteoporosis .sec_3 > .text {
    font-size: 1.6rem;
  }
}
.osteoporosis .sec_3 .items {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.osteoporosis .sec_3 .items .item {
  width: 32%;
  background-color: #fff;
  border: 2px solid #00AE6E;
  padding: 3rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .osteoporosis .sec_3 .items .item {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.osteoporosis .sec_3 .items .item .title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #00AE6E;
  font-weight: 600;
}
.osteoporosis .sec_3 .items .item img {
  width: 100px;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 480px) {
  .osteoporosis .sec_3 .items .item img {
    width: 40px;
  }
}
.osteoporosis .sec_3 .items .item p:not([class]) {
  text-align: left;
}
.osteoporosis .sec_3 .items .item::before {
  content: " ";
  position: absolute;
  width: 145px;
  height: 145px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 2%;
  left: 2%;
}
@media screen and (max-width: 480px) {
  .osteoporosis .sec_3 .items .item::before {
    width: 95px;
  }
}
.osteoporosis .sec_3 .items .item:nth-child(1)::before {
  background-image: url(../img/osteoporosis/osteoporosis_item1_bg.png);
}
.osteoporosis .sec_3 .items .item:nth-child(2)::before {
  background-image: url(../img/osteoporosis/osteoporosis_item2_bg.png);
}
.osteoporosis .sec_3 .items .item:nth-child(3)::before {
  background-image: url(../img/osteoporosis/osteoporosis_item3_bg.png);
}

/*---------------------------------

  アクセス

---------------------------------*/
.access .sub_mv {
  background-image: url(../img/access/access_mv.png);
}
.access .access_map {
  width: min(1200px, 90%);
  margin: 16rem auto 3rem;
}
@media screen and (max-width: 480px) {
  .access .access_map {
    margin: 6rem auto 3rem;
  }
}
.access .access_map p {
  font-size: 2.4rem;
  margin: 2rem 0;
}
@media screen and (max-width: 480px) {
  .access .access_map p {
    font-size: 1.6rem;
  }
}
.access .items {
  width: min(1200px, 90%);
  margin: 0 auto 6rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .access .items {
    margin: 0 auto 3rem;
  }
}
.access .items .item {
  width: 30%;
  border: 2px solid #00AE6E;
}
@media screen and (max-width: 1024px) {
  .access .items .item {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.access .items .item .icon_wrap {
  background-color: #00AE6E;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 3rem;
}
.access .items .item .icon_wrap::after {
  content: " ";
  background-image: url(../img/access/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -26px;
}
.access .items .item .icon_wrap img {
  width: auto;
  height: 36px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .access .items .item .icon_wrap img {
    height: 26px;
  }
}
.access .items .item .icon_wrap p {
  font-size: 2rem;
}
.access .items .item > p {
  padding: 1rem;
  font-size: 1.6rem;
}
.access .items .item > span {
  color: #00AE6E;
  display: block;
  padding: 1rem;
}
.access .access_time_list {
  width: min(1200px, 90%);
  margin: 3rem auto 10rem;
  padding: 6rem 3rem;
  background-color: rgba(0, 174, 110, 0.2);
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .access .access_time_list {
    padding: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .access .access_time_list {
    padding: 1.2rem;
  }
}
.access .access_time_list img {
  width: 42%;
}
@media screen and (max-width: 1024px) {
  .access .access_time_list img {
    width: 100%;
    height: 48rem;
    object-fit: cover;
  }
}
@media screen and (max-width: 480px) {
  .access .access_time_list img {
    height: 30rem;
  }
}
.access .access_time_list > div {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .access .access_time_list > div {
    width: 100%;
  }
}
.access .access_time_list .time_list {
  border-collapse: collapse;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .access .access_time_list .time_list {
    font-size: 1.6rem;
    margin: 2rem auto;
  }
}
.access .access_time_list .time_list tr th {
  width: 180px;
  text-align: left;
  font-weight: normal;
}
@media screen and (max-width: 480px) {
  .access .access_time_list .time_list tr th {
    width: 110px;
  }
}
.access .access_time_list .time_list tr td {
  padding: 1rem 2.2rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .access .access_time_list .time_list tr td {
    padding: 0.6rem;
  }
}
.access .access_time_list .time_list tr:not(:last-child) {
  border-bottom: 1px solid #00AE6E;
}
.access .access_time_list .time_list tr:nth-child(2) td, .access .access_time_list .time_list tr:nth-child(3) td {
  color: #00AE6E;
}
.access .access_time_list .note {
  margin-bottom: 3rem;
}
@media screen and (max-width: 1024px) {
  .access .access_time_list .note {
    text-align: center;
  }
}

/*---------------------------------

  訪問診療

---------------------------------*/
.home-visit-medical .sub_mv {
  background-image: url(../img/home-visit-medical/home_mv.png);
}
.home-visit-medical .sec_1 {
  width: min(1200px, 90%);
  margin: 12rem auto;
}
@media screen and (max-width: 1024px) {
  .home-visit-medical .sec_1 {
    margin: 6rem auto;
  }
}
.home-visit-medical .sec_1 .top_text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6rem;
}
.home-visit-medical .sec_1 .top_text .text_wrap {
  width: calc(100% - (340px + 6rem));
}
@media screen and (max-width: 1024px) {
  .home-visit-medical .sec_1 .top_text .text_wrap {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.home-visit-medical .sec_1 .top_text .text_wrap .title {
  color: #00AE6E;
  font-size: 3.6rem;
  font-weight: 500;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1024px) {
  .home-visit-medical .sec_1 .top_text .text_wrap .title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 480px) {
  .home-visit-medical .sec_1 .top_text .text_wrap .title {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
}
.home-visit-medical .sec_1 .top_text .text_wrap .text {
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .home-visit-medical .sec_1 .top_text .text_wrap .text {
    font-size: 1.6rem;
  }
}
.home-visit-medical .sec_1 .top_text img {
  width: 340px;
  margin-left: 6rem;
}
@media screen and (max-width: 1024px) {
  .home-visit-medical .sec_1 .top_text img {
    width: min(100%, 500px);
    margin-left: 0;
  }
}
.home-visit-medical .sec_1 .list {
  width: min(900px, 94%);
  margin: 0 auto 8rem;
}
.home-visit-medical .sec_1 .list p {
  color: #fff;
  padding: 6px 7rem;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #00AE6E;
  width: max-content;
  margin: 0 auto -2rem;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .home-visit-medical .sec_1 .list p {
    padding: 6px 2rem;
  }
}
.home-visit-medical .sec_1 .list ul {
  background-color: rgba(0, 174, 110, 0.2);
  padding: 5rem 5rem 4rem 5rem;
}
@media screen and (max-width: 1024px) {
  .home-visit-medical .sec_1 .list ul {
    padding: 5rem 3rem 4rem 3rem;
  }
}
.home-visit-medical .sec_1 .list ul li {
  margin-bottom: 2rem;
  font-size: 2rem;
  position: relative;
  padding-left: 40px;
}
.home-visit-medical .sec_1 .list ul li::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 5px;
  background-image: url(../img/home-visit-medical/check_icon.svg);
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .home-visit-medical .sec_1 .list ul li::before {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .home-visit-medical .sec_1 .list ul li {
    font-size: 1.6rem;
    padding-left: 26px;
  }
}
.home-visit-medical .sec_1 .circle > p {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1024px) {
  .home-visit-medical .sec_1 .circle > p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .home-visit-medical .sec_1 .circle > p {
    font-size: 1.8rem;
  }
}
.home-visit-medical .sec_1 .circle > p span {
  text-decoration-line: underline;
  text-decoration-thickness: 16px;
  text-underline-offset: -5px;
  text-decoration-color: rgba(0, 174, 110, 0.4);
}
@media screen and (max-width: 480px) {
  .home-visit-medical .sec_1 .circle > p span {
    text-decoration-thickness: 10px;
  }
}
.home-visit-medical .sec_1 .circle .items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.home-visit-medical .sec_1 .circle .items p {
  height: 136px;
  width: 136px;
  text-align: center;
  margin: 0 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00AE6E;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .home-visit-medical .sec_1 .circle .items p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .home-visit-medical .sec_1 .circle .items p {
    height: 80px;
    width: 80px;
    margin: 0 1rem;
    font-size: 1.2rem;
  }
}
.home-visit-medical .sec_2 {
  background-color: #FAFAFA;
  padding: 6rem 0;
}
.home-visit-medical .sec_2 .inner {
  width: min(1200px, 90%);
  margin: 0 auto;
}
.home-visit-medical .sec_2 .inner > .title {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 6rem;
  color: #00AE6E;
}
@media screen and (max-width: 480px) {
  .home-visit-medical .sec_2 .inner > .title {
    font-size: 2.4rem;
  }
}
.home-visit-medical .sec_2 .inner > .text {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 480px) {
  .home-visit-medical .sec_2 .inner > .text {
    font-size: 1.6rem;
  }
}
.home-visit-medical .sec_2 .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.home-visit-medical .sec_2 .items .item {
  background-color: #fff;
  padding: 4rem;
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .home-visit-medical .sec_2 .items .item {
    width: 100%;
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.home-visit-medical .sec_2 .items .item .title {
  color: #00AE6E;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 480px) {
  .home-visit-medical .sec_2 .items .item .title {
    font-size: 1.8rem;
  }
}
.home-visit-medical .sec_2 .items .item .text {
  font-size: 2rem;
}
@media screen and (max-width: 480px) {
  .home-visit-medical .sec_2 .items .item .text {
    font-size: 1.6rem;
  }
}
.home-visit-medical .sec_2 .note {
  font-size: 2rem;
}
@media screen and (max-width: 480px) {
  .home-visit-medical .sec_2 .note {
    font-size: 1.6rem;
  }
}
.home-visit-medical .sec_3 {
  width: min(900px, 90%);
  margin: 0 auto;
  padding: 6rem 0;
}
.home-visit-medical .sec_3 > .title {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 6rem;
  color: #00AE6E;
}
@media screen and (max-width: 480px) {
  .home-visit-medical .sec_3 > .title {
    font-size: 2.4rem;
  }
}
.home-visit-medical .sec_3 > .text {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 480px) {
  .home-visit-medical .sec_3 > .text {
    font-size: 1.6rem;
  }
}
.home-visit-medical .sec_3 .item {
  margin-bottom: 2rem;
}
.home-visit-medical .sec_3 .item .title {
  color: #fff;
  padding: 6px 2rem;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #00AE6E;
  width: max-content;
  margin: 0 auto -2rem;
  border-radius: 5px;
}
@media screen and (max-width: 480px) {
  .home-visit-medical .sec_3 .item .title {
    padding: 6px 1rem;
    font-size: 1.6rem;
  }
}
.home-visit-medical .sec_3 .item .text {
  background-color: rgba(0, 174, 110, 0.2);
  padding: 5rem 7rem 4rem 7rem;
  text-align: center;
  font-size: 2rem;
}
@media screen and (max-width: 480px) {
  .home-visit-medical .sec_3 .item .text {
    font-size: 1.6rem;
    padding: 5rem 2rem 4rem 2rem;
  }
}
.home-visit-medical .sec_3 .note {
  font-size: 2rem;
}
@media screen and (max-width: 480px) {
  .home-visit-medical .sec_3 .note {
    font-size: 1.6rem;
  }
}
.home-visit-medical .sec_4 {
  background-color: #FAFAFA;
  padding: 6rem 0;
}
.home-visit-medical .sec_4 > .title {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 6rem;
  color: #00AE6E;
}
@media screen and (max-width: 480px) {
  .home-visit-medical .sec_4 > .title {
    font-size: 2.4rem;
  }
}
.home-visit-medical .sec_4 .items {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-visit-medical .sec_4 .items .item {
  width: 20%;
  background-color: #fff;
  padding: 2rem;
  position: relative;
}
.home-visit-medical .sec_4 .items .item .title {
  display: flex;
  flex-direction: column;
  color: #00AE6E;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #00AE6E;
}
.home-visit-medical .sec_4 .items .item .title span {
  font-size: 4rem;
}
@media screen and (max-width: 480px) {
  .home-visit-medical .sec_4 .items .item .title span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .home-visit-medical .sec_4 .items .item .title {
    font-size: 1.8rem;
  }
}
.home-visit-medical .sec_4 .items .item .text {
  font-size: 2rem;
}
.home-visit-medical .sec_4 .items .item .text a {
  text-decoration: underline;
}
@media screen and (max-width: 480px) {
  .home-visit-medical .sec_4 .items .item .text {
    font-size: 1.6rem;
  }
}
.home-visit-medical .sec_4 .items .item:not(:last-child)::after {
  content: " ";
  position: absolute;
  right: -20%;
  top: 50%;
  background-image: url(../img/home-visit-medical/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 1024px) {
  .home-visit-medical .sec_4 .items .item {
    width: 100%;
    margin-bottom: 5rem;
  }
  .home-visit-medical .sec_4 .items .item:not(:last-child)::after {
    right: 48%;
    bottom: -13%;
    top: inherit;
    transform: rotate(90deg);
  }
}

/*---------------------------------

  訪問診療

---------------------------------*/
.vaccination .sub_mv {
  background-image: url(../img/vaccination/vaccination_img.png);
}
.vaccination .sec_1 {
  width: min(1200px, 90%);
  margin: 12rem auto;
}
@media screen and (max-width: 1024px) {
  .vaccination .sec_1 {
    margin: 6rem auto;
  }
}
.vaccination .sec_1 > .title {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 6rem;
  color: #00AE6E;
}
@media screen and (max-width: 480px) {
  .vaccination .sec_1 > .title {
    font-size: 2.4rem;
  }
}
.vaccination .sec_1 > .text {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 480px) {
  .vaccination .sec_1 > .text {
    font-size: 1.6rem;
  }
}
.vaccination .sec_1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.vaccination .sec_1 .list ul {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .vaccination .sec_1 .list ul {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.vaccination .sec_1 .list ul li {
  font-size: 2rem;
  margin-bottom: 2rem;
  display: flex;
}
.vaccination .sec_1 .list ul li::before {
  content: "◎";
  color: #00AE6E;
  margin-right: 1.5rem;
}
@media screen and (max-width: 480px) {
  .vaccination .sec_1 .list ul li {
    font-size: 1.6rem;
  }
}
.vaccination .sec_1 .list img {
  width: calc(100% - (40% + 3rem));
}
@media screen and (max-width: 1024px) {
  .vaccination .sec_1 .list img {
    width: 100%;
  }
}
.vaccination .sec_2 {
  background-color: #FAFAFA;
  padding: 6rem 0;
}
.vaccination .sec_2 .inner {
  width: min(1200px, 90%);
  margin: 0 auto;
}
.vaccination .sec_2 .inner > .title {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 6rem;
  color: #00AE6E;
}
@media screen and (max-width: 480px) {
  .vaccination .sec_2 .inner > .title {
    font-size: 2.4rem;
  }
}
.vaccination .sec_2 .inner > .text {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 480px) {
  .vaccination .sec_2 .inner > .text {
    font-size: 1.6rem;
  }
}
.vaccination .sec_2 .inner .list_wrap {
  background-color: #fff;
  padding: 7rem 10rem;
}
@media screen and (max-width: 1024px) {
  .vaccination .sec_2 .inner .list_wrap {
    padding: 3rem;
  }
}
.vaccination .sec_2 .inner dl {
  margin-bottom: 2rem;
}
.vaccination .sec_2 .inner dl div {
  display: flex;
  flex-wrap: wrap;
  font-size: 2rem;
  border-top: 1px solid #C4C4C4;
}
.vaccination .sec_2 .inner dl div:last-child {
  border-bottom: 1px solid #C4C4C4;
}
@media screen and (max-width: 480px) {
  .vaccination .sec_2 .inner dl div {
    font-size: 1.6rem;
  }
}
.vaccination .sec_2 .inner dl dt, .vaccination .sec_2 .inner dl dd {
  padding: 1.6rem 2rem;
}
@media screen and (max-width: 1024px) {
  .vaccination .sec_2 .inner dl dt, .vaccination .sec_2 .inner dl dd {
    padding: 1rem 2rem;
  }
}
.vaccination .sec_2 .inner dl dt {
  background-color: rgba(0, 174, 110, 0.08);
  width: 26%;
}
@media screen and (max-width: 1024px) {
  .vaccination .sec_2 .inner dl dt {
    width: 40%;
  }
}
@media screen and (max-width: 480px) {
  .vaccination .sec_2 .inner dl dt {
    width: 100%;
  }
}
.vaccination .sec_2 .inner .note {
  font-size: 2rem;
}
@media screen and (max-width: 480px) {
  .vaccination .sec_2 .inner .note {
    font-size: 1.6rem;
  }
}
.vaccination .sec_2 .inner .note a {
  text-decoration: underline;
}
@media screen and (max-width: 480px) {
  .vaccination .sec_2 .inner .note a {
    display: block;
  }
}

/*---------------------------------

  予約について

---------------------------------*/
.reservation .sub_mv {
  background-image: url(../img/reservation/reservation_mv.png);
}
.reservation .sec_1 {
  width: min(1200px, 90%);
  margin: 12rem auto;
}
@media screen and (max-width: 1024px) {
  .reservation .sec_1 {
    margin: 6rem auto;
  }
}
.reservation .sec_1 > .title {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 6rem;
  color: #00AE6E;
}
@media screen and (max-width: 480px) {
  .reservation .sec_1 > .title {
    font-size: 2.4rem;
  }
}
.reservation .sec_1 > .text {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 6rem;
}
.reservation .sec_1 > .text span {
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .reservation .sec_1 > .text {
    font-size: 1.6rem;
  }
}
.reservation .sec_1 .note {
  color: #FA4141;
  font-weight: 700;
  background-color: rgba(250, 65, 65, 0.1);
  font-size: 2rem;
  text-align: center;
  padding: 5rem 4rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 480px) {
  .reservation .sec_1 .note {
    font-size: 1.6rem;
    text-align: left;
    padding: 3rem 2rem;
  }
}
.reservation .sec_1 .line_btn a {
  background-color: rgb(0, 174, 110);
  height: 7rem;
  color: rgb(255, 255, 255);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  width: min(90%, 470px);
  position: relative;
  border-radius: 50px;
  margin: 0px auto 2rem;
}
@media screen and (max-width: 480px) {
  .reservation .sec_1 .line_btn a {
    font-size: 1.6rem;
    height: 5rem;
  }
}
.reservation .sec_1 .line_btn a::after {
  content: " ";
  background-image: url(../img/top/btn_arrow_wh.svg);
  background-size: cover;
  position: absolute;
  right: 20px;
  width: 20px;
  height: 20px;
}
.reservation .sec_1 .line_btn span {
  text-align: center;
  color: #FA4141;
  font-size: 2rem;
  display: block;
}
@media screen and (max-width: 480px) {
  .reservation .sec_1 .line_btn span {
    font-size: 1.6rem;
    text-align: left;
  }
}
.reservation .sec_2 {
  background-color: #FAFAFA;
  padding: 6rem 0;
}
.reservation .sec_2 > .title {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 6rem;
  color: #00AE6E;
}
@media screen and (max-width: 480px) {
  .reservation .sec_2 > .title {
    font-size: 2.4rem;
  }
}
.reservation .sec_2 .list_wrap {
  width: min(1200px, 90%);
  margin: 0 auto;
  background-color: #fff;
  padding: 7rem 10rem;
}
@media screen and (max-width: 1024px) {
  .reservation .sec_2 .list_wrap {
    padding: 3rem;
  }
}
.reservation .sec_2 dl {
  margin-bottom: 2rem;
}
.reservation .sec_2 dl div {
  display: flex;
  flex-wrap: wrap;
  font-size: 2rem;
  border-top: 1px solid #C4C4C4;
}
.reservation .sec_2 dl div:last-child {
  border-bottom: 1px solid #C4C4C4;
}
@media screen and (max-width: 480px) {
  .reservation .sec_2 dl div {
    font-size: 1.6rem;
  }
}
.reservation .sec_2 dl dt, .reservation .sec_2 dl dd {
  padding: 1.6rem 2rem;
}
@media screen and (max-width: 1024px) {
  .reservation .sec_2 dl dt, .reservation .sec_2 dl dd {
    padding: 1rem 2rem;
  }
}
.reservation .sec_2 dl dt {
  background-color: rgba(0, 174, 110, 0.08);
  width: 26%;
}
@media screen and (max-width: 1024px) {
  .reservation .sec_2 dl dt {
    width: 100%;
  }
}
.reservation .sec_3 {
  width: min(1200px, 90%);
  margin: 12rem auto;
}
@media screen and (max-width: 1024px) {
  .reservation .sec_3 {
    margin: 6rem auto;
  }
}
.reservation .sec_3 > .title {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 6rem;
  color: #00AE6E;
}
@media screen and (max-width: 480px) {
  .reservation .sec_3 > .title {
    font-size: 2.4rem;
  }
}
.reservation .sec_3 .list_wrap {
  background-color: #FAFAFA;
  padding: 6rem;
}
@media screen and (max-width: 480px) {
  .reservation .sec_3 .list_wrap {
    padding: 3rem;
  }
}
.reservation .sec_3 dl dt {
  color: #00AE6E;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.reservation .sec_3 dl dt span {
  text-decoration: underline;
}
@media screen and (max-width: 480px) {
  .reservation .sec_3 dl dt {
    font-size: 1.6rem;
  }
}
.reservation .sec_3 dl dd {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #C4C4C4;
}
.reservation .sec_3 dl dd span {
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .reservation .sec_3 dl dd {
    font-size: 1.6rem;
  }
}
.reservation .sec_4 {
  background-color: #FAFAFA;
  padding: 6rem 0 10rem;
}
.reservation .sec_4 > .title {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 6rem;
  color: #00AE6E;
}
@media screen and (max-width: 480px) {
  .reservation .sec_4 > .title {
    font-size: 2.4rem;
  }
}
.reservation .sec_4 .items {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reservation .sec_4 .items .item {
  background-color: #fff;
  padding: 4rem;
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .reservation .sec_4 .items .item {
    width: 100%;
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.reservation .sec_4 .items .item .title {
  color: #00AE6E;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .reservation .sec_4 .items .item .title {
    font-size: 1.8rem;
  }
}
.reservation .sec_4 .items .item .text {
  font-size: 2rem;
}
@media screen and (max-width: 480px) {
  .reservation .sec_4 .items .item .text {
    font-size: 1.6rem;
  }
}
.reservation .line_btn_wrap {
  background-image: url(../img/reservation/line_btn_bg.png);
  background-size: cover;
  padding: 10rem 0;
}
.reservation .line_btn_wrap .inner {
  width: min(1200px, 90%);
  margin: 0 auto;
  background-color: #fff;
  padding: 7rem 2rem;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .reservation .line_btn_wrap .inner {
    padding: 3rem 2rem;
  }
}
.reservation .line_btn_wrap .inner > .title {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #FA4141;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .reservation .line_btn_wrap .inner > .title {
    font-size: 1.8rem;
  }
}
.reservation .line_btn_wrap .inner > .text {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 480px) {
  .reservation .line_btn_wrap .inner > .text {
    font-size: 1.6rem;
  }
}
.reservation .line_btn_wrap .inner a {
  background-color: rgb(0, 174, 110);
  height: 7rem;
  color: rgb(255, 255, 255);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  width: min(90%, 550px);
  position: relative;
  border-radius: 50px;
  margin: 0px auto;
}
.reservation .line_btn_wrap .inner a::after {
  content: " ";
  background-image: url(../img/top/btn_arrow_wh.svg);
  background-size: cover;
  position: absolute;
  right: 20px;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 480px) {
  .reservation .line_btn_wrap .inner a {
    font-size: 1.6rem;
    height: 5rem;
  }
}/*# sourceMappingURL=style.css.map */