@font-face {
  font-family: DIN2014-NarrowDemi;
  src: url(../font/DIN-2014_Narrow-Demi.otf) format("opentype");
}
html {
  font-size: 1px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  font-feature-settings: "palt";
  line-height: 1.4;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, figure {
  margin: 0;
}

.d-flex {
  display: flex;
}

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

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

p {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

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

.pc {
  display: flex !important;
}

.pc-block {
  display: block !important;
}

.font-mincho {
  font-family: "Hina Mincho", serif;
}

.sp {
  display: none !important;
}

.sp-block {
  display: none !important;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-end {
  justify-content: flex-end;
}

.align-items-baseline {
  align-items: baseline;
}

.text-center {
  text-align: center !important;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.jusify-content-left {
  justify-content: left !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaled_x {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
@keyframes scaled_x_reserve {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
@keyframes scaled_x_down {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
.anim {
  opacity: 0;
}
.anim.fadeInUp.is-animated {
  animation: fadeInUp 1s ease-in-out forwards;
}
.anim.fadeInDown.is-animated {
  animation: fadeInDown 0.5s ease-in-out forwards;
}
.anim.fadeIn.is-animated {
  animation: fadeIn 1s ease-in-out forwards;
}
.anim.fadeInLeft.is-animated {
  animation: fadeInLeft 1s ease-in-out forwards;
}
.anim.fadeInRight.is-animated {
  animation: fadeInRight 1s ease-in-out forwards;
}
.anim.scaled_x.is-animated {
  transform-origin: left;
  animation: scaled_x 1s ease-in-out forwards;
}
.anim.scaled_x_reserve.is-animated {
  transform-origin: right;
  animation: scaled_x_reserve 1s ease-in-out forwards;
}
.anim.scaled_x_down.is-animated {
  transform-origin: right;
  animation: scaled_x_down 1s ease-in-out forwards;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 0.133333vw;
  }
  .pc {
    display: none !important;
  }
  .pc-block {
    display: none !important;
  }
  .sp {
    display: flex !important;
  }
  .sp-block {
    display: block !important;
  }
}
header {
  width: 100%;
  height: 75rem;
  padding: 0 35rem;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
header.fixed {
  position: fixed;
  animation: fadeIn 0.3s forwards;
}
header .logo {
  width: 268rem;
  display: flex;
}
header nav {
  display: flex;
  align-items: center;
}
header nav ul {
  display: flex;
  align-items: center;
}
header nav ul li {
  padding: 0 15rem;
}
header nav ul li a {
  font-weight: 500;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 28rem;
  text-align: right;
  color: #050404;
  transition: 0.3s;
}
header nav ul li a:hover {
  color: #07634C;
}
header nav .tel__part {
  margin-left: 15rem;
}
header nav .tel__part .tel {
  display: flex;
  align-items: center;
}
header nav .tel__part .tel .icon {
  width: 20rem;
  margin-right: 7rem;
  display: flex;
}
header nav .tel__part .tel .lbl {
  font-weight: bold;
  font-size: 26rem;
  line-height: 1;
  text-align: left;
  color: #050404;
}
header nav .tel__part .w__txt {
  font-weight: 500;
  font-size: 10rem;
  letter-spacing: 0.05em;
  line-height: 23.93rem;
  text-align: right;
  color: #000;
}

.frontview {
  width: 88.8888888889%;
  margin: 75rem 0 0 auto;
  position: relative;
}
.frontview .front__slider {
  width: 100%;
  border-radius: 0 0 0 100rem;
}
.frontview .front__slider .c__item {
  width: 100%;
  display: flex;
}
.frontview .front__slider .c__item.swiper-slide-active img {
  transform: scale(1.15);
}
.frontview .front__slider .c__item img {
  transform: scale(1);
  transition: 10s linear;
  -o-object-position: center bottom;
  object-position: center bottom;
}
.frontview .front__content {
  width: 550rem;
  position: absolute;
  left: -110rem;
  bottom: 40rem;
  z-index: 1;
}
.frontview .front__content .catchcopy__text {
  font-weight: bold;
  font-size: 36rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: left;
  color: #07634c;
}
.frontview .front__content .catchcopy__text span {
  padding: 5rem;
  margin: 10rem 0;
  background: white;
  display: inline-block;
}
.frontview .front__content .catchcopy__text span:nth-child(2) {
  width: 100%;
}
.frontview .front__content .catchcopy__text span:nth-child(3) {
  width: 100%;
}
.frontview .front__content .gap__items {
  margin-top: 30rem;
  display: flex;
  justify-content: space-between;
}
.frontview .front__content .gap__items .g__item {
  width: 175rem;
  height: 50rem;
  background: #07634c;
  display: flex;
  justify-content: center;
  align-items: center;
}
.frontview .front__content .gap__items .g__item span {
  font-weight: bold;
  font-size: 15rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.frontview .front__content .new__content {
  width: 550rem;
  height: 60rem;
  padding: 10rem 30rem;
  margin-top: 40rem;
  border-radius: 30rem;
  background: #fff;
  display: flex;
  align-items: center;
}
.frontview .front__content .new__content .date {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: left;
  color: #07634c;
}
.frontview .front__content .new__content .line {
  width: 0rem;
  height: 100%;
  margin: 0 30rem;
  background: transparent;
  border: 1rem solid #1ca18a;
}
.frontview .front__content .new__content .n__txt {
  font-weight: 500;
  font-size: 14rem;
  letter-spacing: 0.02em;
  line-height: 24.5rem;
  text-align: left;
  color: #050404;
}

.section-title .en__txt {
  font-weight: normal;
  font-size: 20rem;
  letter-spacing: 0.05em;
  line-height: 35rem;
  text-align: center;
  color: #07634c;
}
.section-title .ja__txt {
  font-weight: bold;
  font-size: 40rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 5rem;
  text-align: center;
  color: #07634c;
}

.section-about {
  padding-top: 100rem;
}
.section-about .about__image {
  width: 100%;
  height: 300rem;
  display: flex;
  margin-top: 35rem;
  position: relative;
}
.section-about .about__image .detail__btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

.detail__btn {
  width: 240rem;
  height: 60rem;
  padding-left: 62rem;
  border-radius: 30rem;
  background: #07634c;
  position: relative;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.detail__btn .arrow {
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: white;
  position: absolute;
  right: 15rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.detail__btn .arrow span {
  width: 15rem;
  display: flex;
}
.detail__btn .arrow span svg {
  width: 100%;
  height: 100%;
}
.detail__btn .arrow span svg line {
  transition: 0.3s;
}
.detail__btn .lbl {
  font-weight: 500;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}

.section-guide {
  max-width: 1140rem;
  width: 95%;
  margin: auto;
  margin-top: 100rem;
}
.section-guide .ttl__part {
  display: flex;
  align-items: flex-end;
}
.section-guide .section-title .en__txt {
  text-align: left;
}
.section-guide .section-title .ja__txt {
  text-align: left;
}
.section-guide .d__txt {
  font-weight: normal;
  font-size: 18rem;
  letter-spacing: 0.05em;
  line-height: 25rem;
  margin-left: 150rem;
  margin-bottom: 10rem;
  text-align: left;
  color: #050404;
}
.section-guide .guide__items {
  margin-top: 35rem;
}
.section-guide .guide__items .g__item {
  width: 100%;
  height: auto;
  margin-bottom: 50rem;
  padding: 40rem 40rem;
  border-radius: 20rem;
  background: #fff;
  border: 3rem solid #07634c;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-guide .guide__items .g__item:last-child {
  margin-bottom: 0;
}
.section-guide .guide__items .g__item .title__part {
  display: flex;
  align-items: center;
}
.section-guide .guide__items .g__item .title__part .num {
  font-family: DIN2014-NarrowDemi;
  font-weight: normal;
  font-size: 50rem;
  line-height: 35rem;
  margin-right: 15rem;
  text-align: left;
  color: #07634c;
}
.section-guide .guide__items .g__item .title__part .lbl {
  font-weight: bold;
  font-size: 26rem;
  letter-spacing: 0.05em;
  line-height: 35rem;
  text-align: left;
  color: #07634c;
}
.section-guide .guide__items .g__item .content__text {
  width: 565rem;
}
.section-guide .guide__items .g__item .content__text .txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 24rem;
  padding-left: 15rem;
  margin: 15rem 0;
  text-align: left;
  color: #050404;
  border-left: 3rem solid #07634c;
}
.section-guide .guide__items .g__item .content__text .txt span {
  color: #FD3B1F;
}
.section-guide .guide__items .g__item .content__text .detail__btn {
  width: 500rem;
  margin-top: 20rem;
  padding-left: 0;
  justify-content: center;
}

.section-news {
  max-width: 1140rem;
  width: 95%;
  margin: auto;
  margin-top: 100rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.section-news .title__part .section-title .en__txt {
  text-align: left;
}
.section-news .title__part .section-title .ja__txt {
  text-align: left;
}
.section-news .title__part .detail__btn {
  margin-top: 50rem;
}
.section-news .news__items {
  width: 700rem;
}
.section-news .news__items .n__item {
  padding: 25rem 20rem;
  display: flex;
  align-items: center;
  border-top: 1rem dashed #706768;
  position: relative;
  transition: 0.3s;
}
.section-news .news__items .n__item:last-child {
  border-bottom: 1rem dashed #706768;
}
.section-news .news__items .n__item:hover {
  background: #e6f6f0;
}
.section-news .news__items .n__item .date {
  font-weight: normal;
  font-size: 14rem;
  margin-right: 30rem;
  line-height: 1;
  text-align: left;
  color: #07634c;
}
.section-news .news__items .n__item .news__part {
  display: flex;
  align-items: center;
}
.section-news .news__items .n__item .news__part .cat {
  width: 100rem;
  height: 20rem;
  margin-right: 20rem;
  border-radius: 10rem;
  background: #07634c;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-news .news__items .n__item .news__part .cat span {
  font-weight: 500;
  font-size: 12rem;
  letter-spacing: 0.02em;
  line-height: 21rem;
  text-align: center;
  color: #fff;
}
.section-news .news__items .n__item .news__part .txt {
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.02em;
  line-height: 24.5rem;
  text-align: left;
  color: #050404;
}
.section-news .news__items .n__item .arrow {
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: #07634c;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 20rem;
  top: 50%;
  transform: translateY(-50%);
}
.section-news .news__items .n__item .arrow span {
  width: 13rem;
  display: flex;
}
.section-news .news__items .n__item .arrow span svg {
  width: 100%;
  height: 100%;
}

.hospital__content {
  max-width: 1260rem;
  width: 95%;
  height: auto;
  margin: auto;
  margin-top: 100rem;
  padding: 50rem 60rem;
  border-radius: 20rem;
  background: #e6f6f0;
}
.hospital__content .section-worktime {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hospital__content .section-worktime .title__part .section-title .en__txt {
  text-align: left;
}
.hospital__content .section-worktime .title__part .section-title .ja__txt {
  text-align: left;
}
.hospital__content .section-worktime .title__part .c__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.02em;
  line-height: 24rem;
  margin-top: 30rem;
  text-align: left;
  color: #120807;
}
.hospital__content .section-worktime .worktime__part {
  width: 600rem;
}
.hospital__content .section-worktime .worktime__part .wk__table {
  width: 100%;
}
.hospital__content .section-worktime .worktime__part .wk__table .wk__image {
  width: 100%;
  display: flex;
}
.hospital__content .section-worktime .worktime__part .wk__text {
  margin-top: 20rem;
  display: flex;
  align-items: center;
}
.hospital__content .section-worktime .worktime__part .wk__text .w__txt {
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.02em;
  line-height: 24.5rem;
  text-align: left;
  color: #050404;
}
.hospital__content .section-worktime .worktime__part .wk__text .w__sign {
  margin-left: 20rem;
  display: flex;
  align-items: center;
}
.hospital__content .section-worktime .worktime__part .wk__text .w__sign .icon {
  width: 16rem;
  display: flex;
  margin-right: 1rem;
}
.hospital__content .section-worktime .worktime__part .wk__text .w__sign .txt {
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.02em;
  line-height: 24.5rem;
  text-align: left;
  color: #050404;
}
.hospital__content .section-access {
  padding-top: 100rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hospital__content .section-access .title__part .section-title {
  margin-bottom: 30rem;
}
.hospital__content .section-access .title__part .section-title .en__txt {
  text-align: left;
}
.hospital__content .section-access .title__part .section-title .ja__txt {
  text-align: left;
}
.hospital__content .section-access .title__part .c__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.02em;
  line-height: 24rem;
  margin-bottom: 25rem;
  text-align: left;
  color: #120807;
}
.hospital__content .section-access .title__part .c__txt span {
  font-weight: bold;
  display: block;
}
.hospital__content .section-access .map {
  width: 600rem;
  height: 400rem;
}
.hospital__content .section-access .map iframe {
  width: 100%;
  height: 100%;
}

.tel__content {
  max-width: 1260rem;
  width: 95%;
  height: 200rem;
  margin: auto;
  margin-top: 50rem;
  background: #07634c;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  outline: 1rem solid #fff;
  outline-offset: -10rem;
}
.tel__content .n__txt {
  font-weight: bold;
  font-size: 18rem;
  letter-spacing: 0.05em;
  line-height: 23.93rem;
  text-align: center;
  color: #fff;
}
.tel__content .tel {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tel__content .tel .icon {
  width: 44rem;
  margin: 4rem 4rem 0 0;
}
.tel__content .tel .lbl {
  font-weight: bold;
  font-size: 48rem;
  line-height: 57.6rem;
  text-align: center;
  color: #fff;
}

.fixed__banner {
  display: flex;
  flex-direction: column;
  gap: 20rem;
  position: fixed;
  top: 170rem;
  right: 0;
  z-index: 2;
}
.fixed__banner .banner {
  width: 75rem;
  height: 200rem;
  background: #07634C;
  border-radius: 20rem 0 0 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.fixed__banner .banner:nth-child(2) {
  background: #104896;
}
.fixed__banner .banner:nth-child(3) {
  height: auto;
  background: transparent;
}
.fixed__banner .banner .icon {
  width: 32rem;
  height: 32rem;
}
.fixed__banner .banner .lbl {
  font-weight: bold;
  font-size: 18rem;
  margin-top: 8rem;
  color: white;
  writing-mode: vertical-lr;
}

footer {
  margin-top: 50rem;
  border-top: 4rem solid #07634c;
  padding: 80rem 0 30rem;
}
footer .footer__content {
  max-width: 1260rem;
  width: 95%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
footer .footer__content .footer__info .f__logo {
  width: 336rem;
  display: flex;
}
footer .footer__content .footer__info .address__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.02em;
  line-height: 24rem;
  margin-top: 45rem;
  text-align: left;
  color: #120807;
}
footer .footer__content .footer__info .contact__info {
  margin-top: 5rem;
  display: flex;
  align-items: center;
}
footer .footer__content .footer__info .contact__info .tel {
  margin-right: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer__content .footer__info .contact__info .tel .icon {
  width: 24rem;
  margin: 4rem 4rem 0 0;
}
footer .footer__content .footer__info .contact__info .tel .lbl {
  font-weight: 500;
  font-size: 26rem;
  line-height: 31.2rem;
  text-align: left;
  color: #050404;
}
footer .footer__content .footer__info .contact__info .instagram {
  display: flex;
  align-items: center;
}
footer .footer__content .footer__info .contact__info .instagram .icon {
  width: 32rem;
  margin-right: 6rem;
  display: flex;
}
footer .footer__content .footer__info .contact__info .instagram .lbl {
  font-weight: 500;
  font-size: 12rem;
  letter-spacing: 0.05em;
  line-height: 14.5rem;
  text-align: left;
  color: #050404;
}
footer .footer__content .footer__menu {
  width: 700rem;
  padding-top: 20rem;
}
footer .footer__content .footer__menu ul {
  display: flex;
  flex-wrap: wrap;
}
footer .footer__content .footer__menu ul li {
  margin-right: 34rem;
  margin-bottom: 15rem;
}
footer .footer__content .footer__menu ul li a {
  font-weight: 500;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: left;
  color: #050404;
}
footer .footer__content .footer__menu ul li a span {
  color: #07634C;
}
footer .footer__content .footer__menu .link__btns {
  margin-top: 15rem;
  display: flex;
  gap: 30rem;
}
footer .footer__content .footer__menu .link__btns .detail__btn {
  width: 300rem;
  height: 50rem;
  border-radius: 5rem;
  padding-left: 0;
  justify-content: center;
}
footer .footer__content .footer__menu .link__btns .detail__btn:last-child {
  background: #5c3620;
}
footer .footer__content .footer__menu .link__btns .detail__btn:last-child .arrow span svg line {
  stroke: #5c3620;
}
footer .footer__content .footer__menu .link__btns .arrow {
  width: 22rem;
  height: 22rem;
}
footer .footer__content .footer__menu .link__btns .arrow span {
  width: 11rem;
}
footer .copyright {
  font-weight: normal;
  font-size: 14rem;
  line-height: 24rem;
  margin: 50rem 50rem 0 0;
  text-align: right;
  color: #120807;
}

.subfrontview {
  width: 89.5833333333%;
  display: flex;
  margin: 75rem 0 0 auto;
  position: relative;
}
.subfrontview .sub__title {
  width: -moz-max-content;
  width: max-content;
  height: 120rem;
  padding-right: 15rem;
  background: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
}
.subfrontview .sub__title .en__txt {
  font-weight: 500;
  font-size: 26rem;
  letter-spacing: 0.05em;
  line-height: 45.5rem;
  text-align: left;
  color: #07634c;
}
.subfrontview .sub__title .ja__txt {
  font-weight: bold;
  font-size: 50rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: left;
  color: #07634c;
}

.dotors__wrapper {
  padding-top: 140rem;
}
.dotors__wrapper .content__items {
  max-width: 1140rem;
  width: 95%;
  margin: auto;
}
.dotors__wrapper .content__items .c__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 140rem;
}
.dotors__wrapper .content__items .c__item:last-child {
  margin-bottom: 0;
}
.dotors__wrapper .content__items .c__item .c__image {
  width: 450rem;
  display: flex;
}
.dotors__wrapper .content__items .c__item .content__info {
  width: 630rem;
}
.dotors__wrapper .content__items .c__item .content__info .member__text {
  display: flex;
  align-items: flex-end;
}
.dotors__wrapper .content__items .c__item .content__info .member__text .job {
  font-weight: 500;
  font-size: 22rem;
  line-height: 1;
  text-align: left;
  color: #120807;
}
.dotors__wrapper .content__items .c__item .content__info .member__text .c__name {
  font-family: KozGoPr6N-Medium;
  font-weight: 500;
  font-size: 40rem;
  line-height: 1;
  margin-left: 35rem;
  text-align: left;
  color: #120807;
}
.dotors__wrapper .content__items .c__item .content__info .member__info {
  width: 100%;
  height: auto;
  margin-top: 25rem;
  padding: 30rem;
  background: #f0eeea;
}
.dotors__wrapper .content__items .c__item .content__info .member__info .c__inner {
  display: flex;
}
.dotors__wrapper .content__items .c__item .content__info .member__info .c__inner .major__info {
  width: 182rem;
  padding-right: 0;
  border-right: 1rem solid rgba(18, 8, 7, 0.486);
}
.dotors__wrapper .content__items .c__item .content__info .member__info .c__inner .major__info .m__lbl {
  font-weight: bold;
  font-size: 18rem;
  line-height: 31.5rem;
  text-align: left;
  color: #050404;
}
.dotors__wrapper .content__items .c__item .content__info .member__info .c__inner .major__info .m__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 36rem;
  margin-top: 22rem;
  text-align: left;
  color: #120807;
}
.dotors__wrapper .content__items .c__item .content__info .member__info .c__inner .qual__info {
  width: calc(100% - 180rem);
  padding-left: 70rem;
}
.dotors__wrapper .content__items .c__item .content__info .member__info .c__inner .qual__info .q__lbl {
  font-weight: bold;
  font-size: 18.08rem;
  line-height: 31.64rem;
  text-align: left;
  color: #050404;
}
.dotors__wrapper .content__items .c__item .content__info .member__info .c__inner .qual__info .q__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 36rem;
  margin-top: 22rem;
  text-align: left;
  color: #120807;
}
.dotors__wrapper .content__items .c__item .content__info .member__history {
  margin-top: 50rem;
}
.dotors__wrapper .content__items .c__item .content__info .member__history table {
  width: 100%;
  border-collapse: collapse;
}
.dotors__wrapper .content__items .c__item .content__info .member__history table tr:first-child td {
  padding-top: 0;
}
.dotors__wrapper .content__items .c__item .content__info .member__history table tr:first-child td:first-child {
  padding-bottom: 0;
}
.dotors__wrapper .content__items .c__item .content__info .member__history table tr:first-child td:first-child::before {
  top: 5rem;
}
.dotors__wrapper .content__items .c__item .content__info .member__history table tr:first-child td:first-child:after {
  top: 4rem;
}
.dotors__wrapper .content__items .c__item .content__info .member__history table tr:last-child td:first-child:before {
  transform: translateY(calc(-100% + 20rem));
}
.dotors__wrapper .content__items .c__item .content__info .member__history table tr td {
  font-weight: normal;
  font-size: 14rem;
  line-height: 21rem;
  padding: 8rem 0;
  text-align: left;
  color: #050404;
}
.dotors__wrapper .content__items .c__item .content__info .member__history table tr td:first-child {
  width: 105rem;
  vertical-align: top;
  font-weight: bold;
  font-size: 18rem;
  line-height: 1.3;
  padding-left: 27rem;
  text-align: left;
  color: #07634c;
  position: relative;
}
.dotors__wrapper .content__items .c__item .content__info .member__history table tr td:first-child:before {
  content: "";
  width: 0;
  height: 100%;
  border-left: 1rem solid #07634c;
  position: absolute;
  left: 0;
  top: 0;
}
.dotors__wrapper .content__items .c__item .content__info .member__history table tr td:first-child:after {
  content: "";
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: #07634c;
  position: absolute;
  left: 0;
  top: 12rem;
  transform: translate(-50%);
}
.dotors__wrapper .content__items .c__item .content__info .detail__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 32rem;
  padding-top: 28rem;
  margin-top: 30rem;
  text-align: left;
  color: #120807;
  border-top: 1rem dashed #706768;
}

.surgery__wrapper {
  padding-top: 150rem;
}
.surgery__wrapper .sub__links {
  display: flex;
  justify-content: center;
  gap: 40rem;
}
.surgery__wrapper .sub__links .sub__link {
  width: 255rem;
  height: 120rem;
  border-radius: 8.66rem;
  background: #07634c;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.surgery__wrapper .sub__links .sub__link .lbl {
  font-weight: bold;
  font-size: 20rem;
  letter-spacing: 0.02em;
  line-height: 50rem;
  text-align: center;
  color: #fff;
}
.surgery__wrapper .sub__links .sub__link .arrow {
  width: 30rem;
  height: 30rem;
  margin-top: 5rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.surgery__wrapper .sub__links .sub__link .arrow span {
  width: 11rem;
  display: flex;
}
.surgery__wrapper .sub__links .sub__link .arrow span svg {
  width: 100%;
  height: 100%;
}
.surgery__wrapper .surgery__content {
  padding: 80rem 0;
  margin-top: 80rem;
  background: #e6f6f0;
}
.surgery__wrapper .surgery__content .sc__item {
  max-width: 1140rem;
  width: 95%;
  margin: auto;
  padding: 50rem 60rem;
  height: auto;
  border-radius: 18.41rem;
  margin-bottom: 80rem;
  background: #fff;
}
.surgery__wrapper .surgery__content .sc__item:last-child {
  margin-bottom: 0;
}
.surgery__wrapper .surgery__content .sc__item .sc__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 32rem;
  margin-top: 20rem;
  text-align: left;
  color: #120807;
}
.surgery__wrapper .surgery__content .sc__item .t__lbl {
  font-weight: bold;
  font-size: 38rem;
  letter-spacing: 0.05em;
  line-height: 66.5rem;
  text-align: left;
  color: #07634c;
}
.surgery__wrapper .surgery__content .sc__item .cp__items {
  margin-top: 30rem;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item {
  width: 100%;
  margin-bottom: 60rem;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item:last-child {
  margin-bottom: 0;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__title {
  font-weight: bold;
  font-size: 22rem;
  letter-spacing: 0.05em;
  line-height: 38.5rem;
  padding-left: 18rem;
  text-align: left;
  color: #07634c;
  background: #cdc;
  border-left: 8rem solid #07634c;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__title.c01 {
  margin-top: 60rem;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 32rem;
  margin-top: 25rem;
  text-align: left;
  color: #120807;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__content {
  margin-top: 30rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__content.c01 {
  margin-bottom: 50rem;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__content.c01 li .icon {
  margin-right: 5rem;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__content.c01 li .lbl {
  font-size: 15rem;
  letter-spacing: 0;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__content li {
  width: 49.0196078431%;
  padding: 20rem 5rem;
  display: flex;
  align-items: center;
  border-bottom: 1rem dashed #706768;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__content li:nth-child(1) {
  border-top: 1rem dashed #706768;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__content li:nth-child(2) {
  border-top: 1rem dashed #706768;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__content li .icon {
  width: 20rem;
  margin-right: 20rem;
  display: flex;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__content li .lbl {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: left;
  color: #000;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .cf__items {
  margin-top: 10rem;
  margin-bottom: 30rem;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .cf__items .cf__item {
  padding: 20rem 0;
  border-bottom: 1rem dashed #706768;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .cf__items .cf__item:last-child {
  border-bottom: 0;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .cf__items .cf__item .c__lbl {
  font-weight: bold;
  font-size: 22rem;
  letter-spacing: 0.05em;
  line-height: 38.5rem;
  text-align: left;
  color: #07634c;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .cf__items .cf__item .txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 32rem;
  margin-top: 4rem;
  text-align: left;
  color: #120807;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .cf__items .cf__item .work__flow {
  margin-top: 40rem;
  padding: 0 30rem;
  display: flex;
  justify-content: space-between;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .cf__items .cf__item .work__flow .w__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .cf__items .cf__item .work__flow .w__item .num {
  font-weight: bold;
  font-size: 20rem;
  line-height: 21rem;
  text-align: center;
  color: #120807;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .cf__items .cf__item .work__flow .w__item .p__txt {
  font-weight: normal;
  font-size: 14rem;
  line-height: 21rem;
  margin-top: 10rem;
  text-align: center;
  color: #120807;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .cf__items .cf__item .work__flow .w__item .p__image {
  width: 140rem;
  display: flex;
  margin-top: 15rem;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .cf__items .cf__item .w__txt {
  font-weight: normal;
  font-size: 14rem;
  line-height: 32rem;
  margin-top: 20rem;
  text-align: center;
  color: #120807;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .frame__text {
  width: 100%;
  height: auto;
  margin-top: 30rem;
  margin-bottom: 60rem;
  padding: 30rem;
  background: #f3f6ef;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .frame__text table {
  border-collapse: collapse;
  width: 100%;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .frame__text table tr td {
  font-weight: normal;
  font-size: 15rem;
  line-height: 25rem;
  padding: 10rem 0;
  text-align: left;
  color: #120807;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .frame__text table tr td:first-child {
  width: 159.2rem;
  font-weight: bold;
  font-size: 18rem;
  letter-spacing: 0.05em;
  line-height: 31.5rem;
  text-align: left;
  color: #07634c;
  vertical-align: top;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .frame__text .line {
  width: 100%;
  height: 0;
  margin: 15rem 0 25rem;
  border-bottom: 1rem dashed #706768;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .frame__text .f__lbl {
  font-weight: bold;
  font-size: 18rem;
  letter-spacing: 0.05em;
  line-height: 31.5rem;
  text-align: left;
  color: #07634c;
}
.surgery__wrapper .surgery__content .sc__item .cp__items .c__item .frame__text .f__txt {
  font-weight: normal;
  font-size: 15rem;
  line-height: 25rem;
  margin-top: 5rem;
  text-align: left;
  color: #120807;
}

.about__wrapper {
  margin-top: 150rem;
}
.about__wrapper .detail__content {
  display: flex;
  align-items: flex-start;
}
.about__wrapper .detail__content .c__image {
  width: 41.6666666667%;
  display: flex;
}
.about__wrapper .detail__content .content__text {
  width: 480rem;
  margin-left: 120rem;
}
.about__wrapper .detail__content .content__text .t__txt {
  font-weight: bold;
  font-size: 34rem;
  letter-spacing: 0.05em;
  line-height: 55rem;
  text-align: left;
  color: #050404;
}
.about__wrapper .detail__content .content__text .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 42rem;
  margin-top: 35rem;
  text-align: left;
  color: #120807;
}
.about__wrapper .detail__content .content__text .detail__btn {
  margin-top: 60rem;
  padding-left: 38rem;
}
.about__wrapper .feature__content {
  padding: 55rem 0;
  margin-top: 100rem;
  background: #e6f6f0;
}
.about__wrapper .feature__content .content__inner {
  max-width: 1140rem;
  width: 95%;
  margin: auto;
}
.about__wrapper .feature__content .content__inner .section-title .en__txt {
  text-align: left;
}
.about__wrapper .feature__content .content__inner .section-title .ja__txt {
  text-align: left;
}
.about__wrapper .feature__content .content__inner .feature__items {
  margin-top: 35rem;
  display: flex;
  justify-content: space-between;
}
.about__wrapper .feature__content .content__inner .feature__items .f__item {
  width: 360rem;
  height: auto;
  padding: 34rem 20rem 25rem;
  border-radius: 20rem;
  background: #fff;
}
.about__wrapper .feature__content .content__inner .feature__items .f__item .num {
  font-weight: bold;
  font-size: 24rem;
  line-height: 48rem;
  text-align: center;
  color: #07634c;
}
.about__wrapper .feature__content .content__inner .feature__items .f__item .t__txt {
  font-weight: bold;
  font-size: 24rem;
  letter-spacing: 0.02em;
  line-height: 36rem;
  margin-top: 20rem;
  text-align: center;
  color: #07634c;
}
.about__wrapper .feature__content .content__inner .feature__items .f__item .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 32rem;
  margin-top: 20rem;
  text-align: left;
  color: #120807;
}
.about__wrapper .gallery__items {
  max-width: 1140rem;
  width: 95%;
  margin: 80rem auto;
  display: flex;
  flex-wrap: wrap;
}
.about__wrapper .gallery__items .g__item {
  width: 33.3333333333%;
  display: flex;
}
.about__wrapper .inspection__content {
  max-width: 1140rem;
  width: 95%;
  margin: auto;
}
.about__wrapper .inspection__content .section-title .en__txt {
  text-align: left;
}
.about__wrapper .inspection__content .section-title .ja__txt {
  text-align: left;
}
.about__wrapper .inspection__content .check__items {
  width: calc(100% + 20rem);
  margin-top: 35rem;
  margin-left: -10rem;
  margin-right: -10rem;
  display: flex;
  flex-wrap: wrap;
}
.about__wrapper .inspection__content .check__items .c__item {
  width: 25%;
  padding: 10rem;
}
.about__wrapper .inspection__content .check__items .c__item .c__inner {
  width: 100%;
  height: 80rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  background: #e6f6f0;
}
.about__wrapper .inspection__content .check__items .c__item .c__inner span {
  font-weight: normal;
  font-size: 20rem;
  line-height: 32rem;
  text-align: center;
  color: #07634c;
}
.about__wrapper .inspection__content .content__items {
  margin-top: 10rem;
  display: flex;
  justify-content: space-between;
}
.about__wrapper .inspection__content .content__items .c__item {
  width: 360rem;
  height: auto;
  padding: 30rem 25rem;
  border-radius: 10rem;
  background: #e6f6f0;
}
.about__wrapper .inspection__content .content__items .c__item .t__lbl {
  font-weight: bold;
  font-size: 20rem;
  line-height: 32rem;
  text-align: left;
  color: #07634c;
}
.about__wrapper .inspection__content .content__items .c__item .c__txt {
  font-weight: normal;
  font-size: 12rem;
  letter-spacing: 0.02em;
  line-height: 24rem;
  margin-top: 15rem;
  text-align: left;
  color: #120807;
}

.care__wrapper {
  margin-top: 160rem;
  padding: 55rem 0;
  background: #e7f4f5;
}
.care__wrapper .content__inner {
  max-width: 1140rem;
  width: 95%;
  margin: auto;
}
.care__wrapper .content__inner .t__lbl {
  font-weight: bold;
  font-size: 30rem;
  letter-spacing: 0.05em;
  line-height: 52.5rem;
  text-align: left;
  color: #07634c;
}
.care__wrapper .content__inner .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 32rem;
  margin-top: 20rem;
  text-align: left;
  color: #120807;
}
.care__wrapper .content__inner .care__items {
  margin-top: 45rem;
  width: calc(100% + 22rem);
  display: flex;
  flex-wrap: wrap;
}
.care__wrapper .content__inner .care__items .c__item {
  width: 20%;
  padding: 11rem;
}
.care__wrapper .content__inner .care__items .c__item .c__inner {
  width: 100%;
  height: 80rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #07634c;
  position: relative;
  cursor: pointer;
}
.care__wrapper .content__inner .care__items .c__item .c__inner:after {
  content: "";
  width: 12rem;
  height: 12rem;
  background: url(../img/sign.png);
  background-size: cover;
  position: absolute;
  top: 5rem;
  left: 5rem;
}
.care__wrapper .content__inner .care__items .c__item .c__inner span {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.02em;
  line-height: 50rem;
  text-align: center;
  color: #fff;
}

.care__modal {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 5;
  left: 0;
  top: 0;
  display: none;
}
.care__modal .overlay {
  width: 100%;
  height: 100%;
  background: #050404;
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
}
.care__modal .modal__inner {
  max-width: 1260rem;
  width: 95%;
  padding: 40rem;
  background: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.care__modal .modal__inner.no {
  width: auto;
}
.care__modal .modal__inner.no .modal__content .main__image {
  display: none !important;
}
.care__modal .modal__inner.no .modal__content .content__text {
  width: 540rem;
}
.care__modal .modal__inner .close__btn {
  width: 20rem;
  display: flex;
  position: absolute;
  top: 40rem;
  right: 40rem;
  cursor: pointer;
}
.care__modal .modal__inner .modal__content {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
}
.care__modal .modal__inner .modal__content .main__image {
  width: 46.8253968254%;
  display: flex;
  margin: auto;
}
.care__modal .modal__inner .modal__content .main__image.c01 {
  width: 300rem;
}
.care__modal .modal__inner .modal__content .content__text {
  width: 42.8571428571%;
}
.care__modal .modal__inner .modal__content .content__text .t__txt {
  font-weight: bold;
  font-size: 30rem;
  letter-spacing: 0.05em;
  line-height: 52.5rem;
  text-align: left;
  color: #07634c;
}
.care__modal .modal__inner .modal__content .content__text .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 32rem;
  margin-top: 20rem;
  text-align: left;
  color: #050404;
}
.care__modal .modal__inner .modal__content .content__text .detail__btn {
  margin-top: 25rem;
  padding-left: 35rem;
}

.news__wrapper {
  max-width: 1140rem;
  width: 95%;
  margin: auto;
  margin-top: 150rem;
}
.news__wrapper .news__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.news__wrapper .cat__part {
  width: 200rem;
}
.news__wrapper .cat__part ul {
  width: 100%;
}
.news__wrapper .cat__part ul li {
  margin-bottom: 20rem;
}
.news__wrapper .cat__part ul li.active a {
  background: #07634C;
}
.news__wrapper .cat__part ul li.active a span {
  color: white;
}
.news__wrapper .cat__part ul li a {
  width: 100%;
  height: 50rem;
  border-radius: 24.49rem;
  background: transparent;
  border: 1rem solid #07634c;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news__wrapper .cat__part ul li a span {
  font-weight: 500;
  font-size: 14rem;
  letter-spacing: 0.05em;
  line-height: 50rem;
  text-align: center;
  color: #07634c;
}
.news__wrapper .section-news {
  width: 860rem;
  margin: 0;
}
.news__wrapper .section-news .news__items {
  width: 100%;
}
.news__wrapper .pagination {
  margin-top: 60rem;
}
.news__wrapper .pagination ul {
  display: flex;
  justify-content: right;
  gap: 20rem;
}
.news__wrapper .pagination ul li {
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background: #fff;
  border: 1rem solid #07634c;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 12rem;
  line-height: 21rem;
  text-align: center;
  color: #07634c;
}
.news__wrapper .pagination ul li.current {
  background: #07634C;
  color: white;
}
.news__wrapper .pagination ul li.next {
  position: relative;
}
.news__wrapper .pagination ul li.next:after {
  content: "";
  width: 12.11rem;
  height: 7.74rem;
  background: url(../img/arrow.png);
  background-size: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.news__wrapper .pagination ul li.prev {
  position: relative;
}
.news__wrapper .pagination ul li.prev:after {
  content: "";
  width: 12.11rem;
  height: 7.74rem;
  background: url(../img/arrow.png);
  background-size: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}

.news-detail__wrapper {
  max-width: 1140rem;
  width: 95%;
  margin: auto;
  margin-top: 150rem;
}
.news-detail__wrapper .info__part {
  display: flex;
  align-items: center;
}
.news-detail__wrapper .info__part .cat {
  width: 140rem;
  height: 30rem;
  border-radius: 15rem;
  background: #07634c;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-detail__wrapper .info__part .cat span {
  font-weight: 500;
  font-size: 14rem;
  letter-spacing: 0.02em;
  line-height: 24.5rem;
  text-align: center;
  color: #fff;
}
.news-detail__wrapper .info__part .date {
  font-weight: 500;
  font-size: 14rem;
  margin-left: 20rem;
  line-height: 1;
  text-align: left;
  color: #07634c;
}
.news-detail__wrapper h2 {
  font-weight: bold;
  font-size: 26rem;
  letter-spacing: 0.02em;
  line-height: 45.5rem;
  margin-top: 20rem;
  text-align: left;
  color: #050404;
}
.news-detail__wrapper .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 42rem;
  margin-top: 15rem;
  text-align: left;
  color: #050404;
}
.news-detail__wrapper .detail__btn {
  margin: auto;
  margin-top: 50rem;
  padding-left: 50rem;
}

@media screen and (max-width: 1380px) {
  header nav ul li {
    padding: 0 10rem;
  }
  header nav ul li a {
    font-size: 14rem;
  }
  header .logo {
    width: 200rem;
  }
}
@media screen and (max-width: 1190px) {
  html {
    font-size: 0.8px;
  }
}
@media screen and (max-width: 940px) {
  html {
    font-size: 0.7px;
  }
  header nav .tel__part .tel .lbl {
    font-size: 20rem;
  }
  header {
    padding: 0 15rem;
  }
  header .logo {
    width: 189rem;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.26666vw;
  }
  header {
    width: 100%;
    height: 50rem;
    padding: 0 0 0 15rem;
  }
  header .logo {
    width: 150rem;
    position: relative;
    z-index: 1;
  }
  .frontview {
    width: 100%;
    height: 600rem;
    margin: 50rem 0 0 0;
  }
  .frontview .front__content {
    width: 345rem;
    position: absolute;
    left: 50%;
    bottom: 25rem;
    transform: translate(-50%);
  }
  .frontview .front__content .catchcopy__text {
    font-size: 22rem;
  }
  .frontview .front__slider {
    width: 100%;
    height: 100%;
    border-radius: 0 0 60rem 60rem;
  }
  .frontview .front__content .new__content {
    width: 100%;
    height: 48rem;
    padding: 10rem 24rem;
    margin-top: 40rem;
  }
  .frontview .front__content .catchcopy__text span {
    padding: 5rem;
    margin: 5rem 0;
  }
  .frontview .front__content .gap__items .g__item {
    width: 100%;
    height: 30rem;
    border-radius: 5rem;
  }
  .frontview .front__content .gap__items .g__item span {
    font-size: 12rem;
    letter-spacing: 0;
  }
  .frontview .front__content .gap__items {
    margin-top: 15rem;
  }
  .frontview .front__content .new__content {
    width: 100%;
    height: 48rem;
    padding: 10rem 24rem;
    margin-top: 140rem;
  }
  .frontview .front__content .new__content .date {
    font-size: 14rem;
  }
  .frontview .front__content .new__content .n__txt {
    height: 16rem;
    overflow: hidden;
    font-size: 13rem;
    letter-spacing: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .frontview .front__content .new__content .line {
    margin: 0 15rem;
  }
  .section-title .en__txt {
    font-size: 16rem;
    line-height: 1.4;
  }
  .section-title .ja__txt {
    font-size: 28rem;
  }
  .section-about .about__image {
    width: 100%;
    height: 200rem;
  }
  .section-guide {
    width: 345rem;
    margin: auto;
    margin-top: 80rem;
  }
  .section-guide .ttl__part {
    display: block;
  }
  .section-guide .d__txt {
    font-size: 14rem;
    letter-spacing: 0.05em;
    line-height: 23rem;
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 10rem;
  }
  .section-guide .guide__items .g__item {
    margin-bottom: 20rem;
    padding: 30rem 20rem;
    border-radius: 20rem;
    background: #fff;
    border: 3rem solid #07634c;
    display: block;
  }
  .section-guide .guide__items .g__item .title__part .num {
    font-size: 40rem;
    margin-right: 10rem;
  }
  .section-guide .guide__items .g__item .title__part .lbl {
    font-size: 20rem;
    line-height: 25rem;
  }
  .section-guide .guide__items .g__item .content__text {
    width: 100%;
  }
  .section-guide .guide__items .g__item .content__text .txt {
    font-size: 14rem;
    line-height: 1.5;
    padding-left: 10rem;
    margin: 10rem 0;
  }
  .section-guide .guide__items .g__item .content__text .detail__btn {
    width: 100%;
  }
  .section-news {
    width: 345rem;
    margin: auto;
    margin-top: 100rem;
    display: block;
  }
  .section-news .news__items {
    width: 100%;
    margin-bottom: 40rem;
    margin-top: 35rem;
  }
  .section-news .news__items .n__item {
    padding: 15rem 10rem;
    flex-wrap: wrap;
    position: relative;
  }
  .section-news .news__items .n__item .news__part .cat {
    width: 100rem;
    height: 20rem;
    margin-right: 0;
    position: absolute;
    left: 90rem;
    top: 13rem;
  }
  .section-news .news__items .n__item .news__part {
    width: 100%;
    margin-top: 9rem;
  }
  .section-news .news__items .n__item .news__part .txt {
    width: 86%;
    font-size: 13rem;
    line-height: 21.5rem;
  }
  .hospital__content {
    width: 100%;
    height: auto;
    margin: auto;
    margin-top: 100rem;
    padding: 35rem 15rem;
    border-radius: 0;
  }
  .hospital__content .section-worktime {
    display: block;
  }
  .hospital__content .section-worktime .title__part .c__txt {
    font-size: 14rem;
    letter-spacing: 0.02em;
    line-height: 22rem;
    margin-top: 12rem;
  }
  .hospital__content .section-worktime .worktime__part {
    width: 100%;
    margin-top: 20rem;
  }
  .hospital__content .section-worktime .worktime__part .wk__table {
    width: 100%;
    overflow: auto;
  }
  .hospital__content .section-worktime .worktime__part .wk__table .wk__image {
    width: 600rem;
  }
  .hospital__content .section-worktime .worktime__part .wk__text {
    display: block;
  }
  .hospital__content .section-worktime .worktime__part .wk__text .w__txt {
    font-size: 14rem;
    letter-spacing: 0;
  }
  .hospital__content .section-worktime .worktime__part .wk__text .w__sign {
    margin-left: 0;
    margin-top: 6rem;
  }
  .hospital__content .section-access {
    padding-top: 80rem;
    display: block;
  }
  .hospital__content .section-access .title__part .c__txt {
    font-size: 14rem;
    letter-spacing: 0.02em;
    line-height: 22rem;
    margin-bottom: 20rem;
  }
  .hospital__content .section-access .map {
    width: 100%;
    height: 230rem;
  }
  .tel__content {
    width: 345rem;
  }
  .tel__content .n__txt {
    font-size: 14rem;
  }
  .tel__content .tel .lbl {
    font-size: 36rem;
  }
  .tel__content .tel .icon {
    width: 40rem;
  }
  footer {
    margin-top: 80rem;
    border-top: 4rem solid #07634c;
    padding: 40rem 0 60rem;
  }
  footer .footer__content {
    width: 345rem;
    margin: auto;
    display: block;
  }
  footer .footer__content .footer__info .f__logo {
    width: 260rem;
    margin: auto;
  }
  footer .footer__content .footer__menu ul li a {
    font-size: 14rem;
    line-height: 1.3;
  }
  footer .footer__content .footer__menu {
    width: 100%;
    padding-top: 32rem;
  }
  footer .footer__content .footer__menu ul li {
    margin-right: 20rem;
  }
  footer .footer__content .footer__menu .link__btns .detail__btn {
    width: 160rem;
    padding-left: 35rem;
    justify-content: left;
  }
  footer .footer__content .footer__info .address__txt {
    font-size: 14rem;
    letter-spacing: 0.02em;
    line-height: 24rem;
    margin-top: 30rem;
    text-align: center;
  }
  footer .footer__content .footer__info .contact__info {
    margin-top: 15rem;
    display: block;
  }
  footer .footer__content .footer__info .contact__info .tel .lbl {
    font-size: 36rem;
  }
  footer .footer__content .footer__info .contact__info .tel .icon {
    width: 40rem;
  }
  footer .footer__content .footer__info .contact__info .instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12rem;
  }
  footer .footer__content .footer__info .contact__info .instagram .icon {
    width: 40rem;
  }
  footer .footer__content .footer__info .contact__info .instagram .lbl {
    font-size: 14rem;
    line-height: 1.4;
  }
  footer .copyright {
    font-size: 11rem;
    line-height: 24rem;
    margin: 45rem auto 0;
    text-align: center;
  }
  .sp-menu {
    width: 50rem;
    height: 50rem;
    background: #007F65;
    position: relative;
  }
  .sp-menu.open span:nth-child(1) {
    top: 25rem;
    transform: translate(-50%) rotate(45deg);
  }
  .sp-menu.open span:nth-child(2) {
    top: 25rem;
    transform: translate(-50%) rotate(-45deg);
  }
  .sp-menu span {
    width: 20rem;
    height: 0;
    border-top: 1rem solid #fff;
    position: absolute;
    left: 50%;
    top: 21rem;
    transform: translate(-50%);
    transition: 0.3s;
  }
  .sp-menu span + span {
    top: 29rem;
  }
  .subfrontview {
    width: 100%;
    height: 150rem;
    display: flex;
    margin: 50rem 0 0 auto;
  }
  .subfrontview .sub__title {
    width: -moz-max-content;
    width: max-content;
    height: 80rem;
    padding: 0 20rem;
  }
  .subfrontview .sub__title .en__txt {
    font-size: 16rem;
    line-height: 1.3;
  }
  .subfrontview .sub__title .ja__txt {
    font-size: 30rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
  .about__wrapper .detail__content {
    display: flex;
    flex-direction: column-reverse;
  }
  .about__wrapper .detail__content .content__text {
    width: 345rem;
    margin: auto;
  }
  .about__wrapper .detail__content .content__text .t__txt {
    font-size: 28rem;
    letter-spacing: 0.05em;
    line-height: 42rem;
  }
  .about__wrapper .detail__content .content__text .c__txt {
    font-size: 14rem;
    line-height: 35rem;
    margin-top: 20rem;
  }
  .about__wrapper .detail__content .content__text .detail__btn {
    margin-top: 30rem;
  }
  .about__wrapper .detail__content .c__image {
    width: 100%;
    margin-top: 60rem;
  }
  .about__wrapper .feature__content .content__inner {
    width: 345rem;
  }
  .about__wrapper .feature__content .content__inner .feature__items {
    display: block;
  }
  .about__wrapper .feature__content .content__inner .feature__items .f__item {
    width: 100%;
    margin-bottom: 20rem;
  }
  .about__wrapper .feature__content .content__inner .feature__items .f__item .num {
    font-size: 22rem;
    line-height: 40rem;
  }
  .about__wrapper .feature__content .content__inner .feature__items .f__item .t__txt {
    font-size: 22rem;
    letter-spacing: 0.02em;
    line-height: 32rem;
  }
  .about__wrapper .feature__content .content__inner .feature__items .f__item .c__txt {
    font-size: 14rem;
    line-height: 28rem;
  }
  .about__wrapper .gallery__items {
    width: 100%;
    margin: 40rem auto;
  }
  .about__wrapper .gallery__items .g__item {
    width: 50%;
  }
  .about__wrapper .inspection__content {
    width: 345rem;
  }
  .about__wrapper .inspection__content .check__items .c__item {
    width: 50%;
    padding: 6rem;
  }
  .about__wrapper .inspection__content .check__items .c__item .c__inner {
    width: 100%;
    height: 50rem;
  }
  .about__wrapper .inspection__content .check__items .c__item .c__inner span {
    font-size: 16rem;
  }
  .about__wrapper .inspection__content .content__items {
    margin-top: 10rem;
    display: block;
  }
  .about__wrapper .inspection__content .content__items .c__item {
    width: 100%;
    height: auto;
    margin-bottom: 20rem;
  }
  .about__wrapper .inspection__content .content__items .c__item:last-child {
    margin-bottom: 0;
  }
  .about__wrapper .inspection__content .content__items .c__item .t__lbl {
    font-size: 18rem;
  }
  .dotors__wrapper .content__items {
    width: 345rem;
  }
  .dotors__wrapper .content__items .c__item {
    width: 100%;
    display: block;
    margin-bottom: 70rem;
  }
  .dotors__wrapper .content__items .c__item .c__image {
    width: 100%;
    margin-bottom: 25rem;
  }
  .dotors__wrapper .content__items .c__item .content__info .member__text .job {
    font-size: 14rem;
  }
  .dotors__wrapper .content__items .c__item .content__info .member__text .c__name {
    font-size: 28rem;
    line-height: 1;
    margin-left: 20rem;
  }
  .dotors__wrapper .content__items .c__item .content__info {
    width: 100%;
  }
  .dotors__wrapper .content__items .c__item .content__info .member__info {
    width: 100%;
    height: auto;
    margin-top: 25rem;
    padding: 20rem;
  }
  .dotors__wrapper .content__items .c__item .content__info .member__info .c__inner {
    flex-direction: column;
  }
  .dotors__wrapper .content__items .c__item .content__info .member__info .c__inner .major__info {
    width: 100%;
    padding-right: 0;
    padding-bottom: 15rem;
    border-bottom: 1rem solid rgba(18, 8, 7, 0.486);
    border-right: 0;
  }
  .dotors__wrapper .content__items .c__item .content__info .member__info .c__inner .major__info .m__lbl {
    font-size: 16rem;
    line-height: 1.3;
  }
  .dotors__wrapper .content__items .c__item .content__info .member__info .c__inner .major__info .m__txt {
    font-weight: normal;
    font-size: 14rem;
    line-height: 1.5;
    margin-top: 10rem;
  }
  .dotors__wrapper .content__items .c__item .content__info .member__info .c__inner .qual__info {
    width: 100%;
    padding-top: 15rem;
    padding-left: 0;
  }
  .dotors__wrapper .content__items .c__item .content__info .member__info .c__inner .qual__info .q__lbl {
    font-size: 16.08rem;
    line-height: 1.2;
  }
  .dotors__wrapper .content__items .c__item .content__info .member__info .c__inner .qual__info .q__txt {
    font-size: 14rem;
    line-height: 1.8;
    margin-top: 10rem;
  }
  .dotors__wrapper .content__items .c__item .content__info .member__history {
    margin-top: 35rem;
    padding-left: 4rem;
  }
  .dotors__wrapper .content__items .c__item .content__info .member__history table tr td:first-child {
    width: 85rem;
    font-size: 16rem;
    line-height: 1.3;
    padding-left: 18rem;
  }
  .dotors__wrapper .content__items .c__item .content__info .member__history table tr td {
    font-size: 12rem;
    line-height: 18rem;
    padding: 5rem 0;
  }
  .dotors__wrapper .content__items .c__item .content__info .member__history table tr td:first-child:after {
    top: 8rem;
    width: 14rem;
    height: 14rem;
  }
  .dotors__wrapper .content__items .c__item .content__info .detail__txt {
    font-size: 14rem;
    line-height: 28rem;
    padding-top: 20rem;
    margin-top: 20rem;
  }
  .surgery__wrapper {
    padding-top: 120rem;
  }
  .surgery__wrapper .sub__links .sub__link {
    width: 167rem;
    height: 80rem;
  }
  .surgery__wrapper .sub__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10rem;
  }
  .surgery__wrapper .sub__links .sub__link .lbl {
    font-size: 14rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
  }
  .surgery__wrapper .sub__links .sub__link .arrow {
    width: 16rem;
    height: 16rem;
    margin-top: 10rem;
  }
  .surgery__wrapper .sub__links .sub__link .arrow span {
    width: 7rem;
  }
  .surgery__wrapper .surgery__content {
    padding: 40rem 0;
    margin-top: 70rem;
  }
  .surgery__wrapper .surgery__content .sc__item {
    width: 345rem;
    margin: auto;
    padding: 17rem;
    height: auto;
    border-radius: 18.41rem;
    margin-bottom: 40rem;
  }
  .surgery__wrapper .surgery__content .sc__item .t__lbl {
    font-size: 26rem;
    letter-spacing: 0.05em;
    line-height: 45rem;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__title {
    font-size: 18rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    padding-left: 15rem;
    border-left: 6rem solid #07634c;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items {
    margin-top: 20rem;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__txt {
    font-size: 14rem;
    line-height: 28rem;
    margin-top: 18rem;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__content {
    margin-top: 20rem;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__content li {
    width: 100%;
    padding: 15rem 0;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__content li .icon {
    width: 20rem;
    margin-right: 10rem;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__content li .lbl {
    font-size: 14rem;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__content li:nth-child(2) {
    border-top: 0;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .cf__items .cf__item .c__lbl {
    font-size: 18rem;
    letter-spacing: 0.05em;
    line-height: 32.5rem;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .cf__items .cf__item .txt {
    font-size: 14rem;
    line-height: 28rem;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .cf__items .cf__item .work__flow {
    margin-top: 30rem;
    padding: 0;
    display: block;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .cf__items .cf__item .work__flow .w__item {
    display: flex;
    margin-bottom: 40rem;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .cf__items .cf__item .work__flow .w__item:last-child {
    margin-bottom: 0;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .cf__items .cf__item .w__txt {
    font-size: 12rem;
    line-height: 24rem;
    margin-top: 20rem;
    text-align: left;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .c__content.c01 li .lbl {
    width: 275rem;
    font-size: 14rem;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .frame__text table tr {
    display: grid;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .frame__text table tr td:first-child {
    width: 100%;
    font-weight: bold;
    font-size: 16rem;
    letter-spacing: 0.05em;
    line-height: 28.5rem;
    padding-bottom: 0;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .frame__text table tr td {
    font-weight: normal;
    font-size: 14rem;
    line-height: 24rem;
    padding: 10rem 0;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .frame__text {
    width: 100%;
    height: auto;
    margin-top: 30rem;
    margin-bottom: 60rem;
    padding: 20rem;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .frame__text .f__lbl {
    font-size: 16rem;
    letter-spacing: 0.05em;
    line-height: 28.5rem;
  }
  .surgery__wrapper .surgery__content .sc__item .cp__items .c__item .frame__text .f__txt {
    font-size: 14rem;
    line-height: 24rem;
  }
  .surgery__wrapper .surgery__content .sc__item .sc__txt {
    font-size: 14rem;
    line-height: 28rem;
    margin-top: 15rem;
  }
  .care__wrapper .content__inner .t__lbl {
    font-size: 24rem;
    letter-spacing: 0.05em;
    line-height: 36rem;
    text-align: center;
  }
  .care__wrapper .content__inner {
    width: 345rem;
  }
  .care__wrapper .content__inner .c__txt {
    font-size: 14rem;
    line-height: 28rem;
  }
  .care__wrapper .content__inner .care__items {
    margin-top: 25rem;
    width: 100%;
    justify-content: space-between;
  }
  .care__wrapper .content__inner .care__items .c__item {
    width: 167rem;
    padding: 0;
    margin-bottom: 10rem;
  }
  .care__wrapper .content__inner .care__items .c__item .c__inner {
    width: 100%;
    height: 60rem;
  }
  .care__wrapper .content__inner .care__items .c__item .c__inner span {
    font-size: 14rem;
  }
  .care__wrapper .content__inner .care__items .c__item .c__inner:after {
    width: 10rem;
    height: 10rem;
    top: 4rem;
    left: 4rem;
  }
  .care__modal .modal__inner {
    width: 325rem;
    height: 70vh;
    padding: 15rem 20rem;
    top: calc(50% + 25rem);
  }
  .care__modal .modal__inner .modal__content {
    height: 100%;
    padding-right: 5rem;
    overflow: auto;
    display: block;
  }
  .care__modal .modal__inner .modal__content::-webkit-scrollbar {
    width: 5rem; /* Mostly for vertical scrollbars */
  }
  .care__modal .modal__inner .modal__content::-webkit-scrollbar-thumb { /* Foreground */
    background: #007F65;
  }
  .care__modal .modal__inner .modal__content::-webkit-scrollbar-track { /* Background */
    background: transparent;
  }
  .care__modal .modal__inner .modal__content .main__image {
    width: 100%;
    margin-top: 20rem;
  }
  .care__modal .modal__inner .modal__content .content__text {
    width: 100%;
  }
  .care__modal .modal__inner.no {
    width: 325rem;
  }
  .care__modal .modal__inner .modal__content .content__text .t__txt {
    font-size: 20rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
  }
  .care__modal .modal__inner .modal__content .content__text .c__txt {
    font-size: 14rem;
    line-height: 28rem;
    margin-top: 18rem;
  }
  .care__modal .modal__inner.no .modal__content .content__text {
    width: 100%;
  }
  .care__modal .modal__inner .close__btn {
    width: 14rem;
    top: 10rem;
    right: 5rem;
  }
  .care__modal .modal__inner .modal__content .main__image.c01 {
    width: 160rem;
  }
  .fixed__banner {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 0;
    position: fixed;
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
  }
  .fixed__banner .banner {
    width: 50%;
    height: 50rem;
    padding: 0 15rem;
    background: #07634C;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  .fixed__banner .banner .icon {
    width: 25rem;
    height: 25rem;
  }
  .fixed__banner .banner .lbl {
    font-weight: bold;
    font-size: 15rem;
    margin-top: 0;
    color: white;
    writing-mode: unset;
  }
  header nav {
    width: 100%;
    height: 100%;
    background: white;
    position: fixed;
    left: 0;
    top: 0;
    padding-top: 80rem;
    display: none;
  }
  header nav ul {
    display: block;
    text-align: center;
  }
  header nav ul li {
    padding: 15rem 0;
  }
  header nav .tel__part .tel {
    margin-top: 30rem;
    justify-content: center;
  }
  header nav .tel__part .w__txt {
    text-align: center;
  }
  .news__wrapper {
    width: 345rem;
    margin-top: 100rem;
  }
  .news__wrapper .news__inner {
    flex-direction: column;
    gap: 50rem;
  }
  .news__wrapper .cat__part {
    width: 100%;
  }
  .news__wrapper .cat__part ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .news__wrapper .cat__part ul li {
    width: 167rem;
    margin-bottom: 10rem;
  }
  .news__wrapper .cat__part ul li a {
    width: 100%;
    height: 30rem;
  }
  .news__wrapper .cat__part ul li a span {
    font-size: 13rem;
  }
  .news__wrapper .section-news {
    width: 345rem;
  }
  .news__wrapper .section-news .news__items {
    margin-top: 0;
  }
  .news__wrapper .pagination ul {
    justify-content: center;
  }
  .news__wrapper .pagination {
    margin-top: 10rem;
  }
}/*# sourceMappingURL=style.css.map */