@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "FOT-筑紫明朝 Pr6 M", "游明朝体", "游明朝", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
  font-size: 1.6rem;
  color: #1b1b1b;
}
@media screen and (min-width: 1080px), print {
  body {
    font-size: 1.8rem;
  }
}
body.hamburgerOpen {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  margin: 0;
  border: 0;
}

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

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

p {
  margin: 0;
}

.tel > a {
  color: #245287;
  font-family: "HalisGR-SLight", sans-serif;
  font-size: 2.6rem;
}
.tel > a > span {
  font-size: 1.6rem;
}

.btn {
  display: inline-block;
  text-align: center;
  padding: 5px 10px;
  background-color: #fff;
  border: 1px solid #245287;
  border-radius: 15px;
  transition: 0.25s;
}
.btn > a {
  margin: auto;
  color: #245287;
  font-size: 1.6rem;
  text-align: center;
  transition: 0.25s;
}
.btn:hover {
  background-color: #245287;
  border: 1px solid transparent;
}
.btn:hover > a {
  color: #fff;
}
.btn--reverce {
  background-color: #245287;
  border: 1px solid transparent;
}
.btn--reverce > a {
  color: #fff;
}
.btn--reverce:hover {
  background-color: #fff;
  border: 1px solid #245287;
}
.btn--reverce:hover > a {
  color: #245287;
}
.btn--arrow {
  position: relative;
  padding-right: 5rem;
  padding-left: 2.5rem;
}
.btn--arrow::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: solid 1px #245287;
  border-right: solid 1px #245287;
  position: absolute;
  top: 50%;
  right: 2.7rem;
  transform: translateY(-50%);
  margin-top: -4px;
  transform: rotate(45deg);
  transition: 0.25s;
}
.btn--arrow:hover.btn--arrow::after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}

.pageTop {
  cursor: pointer;
  position: fixed;
  bottom: 50px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  transition: 0.25s;
  opacity: 0;
}
@media screen and (min-width: 1080px), print {
  .pageTop {
    padding: 8px;
    bottom: 122px;
    right: 5%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 8px 8px 10px rgba(151, 151, 151, 0.3);
  }
}

.header {
  padding: 0 5%;
}
.header__inner {
  max-width: 1200px;
  padding: 4% 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__right {
  display: none;
  width: 60%;
}
.header__rightHead {
  margin: 0 auto;
  display: flex;
  justify-content: right;
  align-items: center;
}
@media screen and (min-width: 1080px), print {
  .header__right {
    display: block;
  }
}
.header__tel {
  padding-right: 20px;
}

.logo {
  width: 240px;
}
@media screen and (min-width: 1080px), print {
  .logo {
    width: 320px;
  }
}

.hamburger__wrap {
  position: fixed;
  top: 5px;
  right: 27px;
  z-index: 2;
}

.hamburger {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
@media screen and (min-width: 1080px), print {
  .hamburger {
    display: none;
  }
}
.hamburger__line {
  display: inline-block;
  transition: 0.25s;
  position: absolute;
  left: 13px;
  height: 2px;
  background-color: #666;
}
.hamburger__line:nth-of-type(1) {
  top: 22px;
  width: 50%;
}
.hamburger__line:nth-of-type(2) {
  top: 29px;
  width: 30%;
}
.hamburger.active .hamburger__line:nth-of-type(1) {
  top: 20px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 35%;
}
.hamburger.active .hamburger__line:nth-of-type(2) {
  top: 32px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 35%;
}

.hidden {
  display: none;
}

.gnav {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(237, 242, 247, 0.7);
  transition: 0.25s;
  z-index: -1;
  opacity: 0;
}
.gnav.active {
  z-index: 1;
  opacity: 1;
}
.gnav.active .gnav__inner {
  transform: translateX(100vw);
}
@media screen and (min-width: 1080px), print {
  .gnav {
    display: none;
  }
}
.gnav__inner {
  position: fixed;
  top: 0;
  left: -100vw;
  background-color: #fff;
  width: 80%;
  height: 90%;
  padding: 10% 8%;
  transition: 0.25s;
}
.gnav__logo {
  width: 230px;
  margin-bottom: 10%;
  transform: translateX(-10px);
}
.gnav__body {
  margin-bottom: 10%;
}
.gnav__item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #edf2f7;
}
.gnav__link {
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #245287;
}
.gnav__link:hover {
  opacity: 0.5;
}
.gnav .material-symbols-outlined {
  transform: translateY(20%);
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 20;
}
.gnav__txt {
  padding-bottom: 5px;
  font-size: 1.4rem;
}
.gnav__tel {
  padding: 0 0 5% 0;
}
.gnav__tel > a {
  font-size: 2.4rem;
}

.mnav {
  padding-left: 10px;
}
.mnav__link {
  margin-bottom: 15px;
  padding: 0 10px 0 20px;
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  color: #245287;
}
.mnav__link:first-child {
  margin-top: 15px;
}
.mnav__link:last-child {
  margin-bottom: 0;
}
.mnav__link:hover {
  opacity: 0.5;
}
.mnav__txt {
  color: #245287;
}

.gnavPc__list {
  display: flex;
  justify-content: space-between;
}
.gnavPc__item {
  padding: 12px 12px;
  position: relative;
  cursor: pointer;
}
.gnavPc__item:hover .gnavPc__link {
  opacity: 0.5;
}
.gnavPc__link {
  letter-spacing: 0.2rem;
  color: #245287;
  transition: 0.25s;
}
.gnavPc__current::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  background-color: #245287;
  width: 100%;
  height: 2px;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mnavPc {
  position: relative;
}
.mnavPc:hover .mnavPc__container {
  opacity: 1;
}
.mnavPc__inner {
  color: #245287;
  letter-spacing: 0.2rem;
}
.mnavPc__container {
  padding: 10px 30px;
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  background-color: #fff;
  box-shadow: 5px 5px 20px rgba(151, 151, 151, 0.3);
  border-radius: 5px;
  z-index: 1;
  opacity: 0;
  transition: 0.25s;
}
.mnavPc__list {
  padding: 10px 0;
}
.mnavPc__item {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: linear-gradient(to right, #a9bcd1, 3px, transparent 3px, transparent 10px);
  background-size: 8px 1px;
  background-position: bottom right;
  background-repeat: repeat-x;
}
.mnavPc__item:last-child {
  background: none;
}
.mnavPc__item:hover .mnavPc__link, .mnavPc__item:hover .mnavPc__icon {
  opacity: 0.5;
}
.mnavPc__link {
  color: #245287;
}
.mnavPc__icon {
  color: #245287;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20;
}

.mainVisual {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
  overflow: hidden;
}
@media screen and (min-width: 1080px), print {
  .mainVisual {
    overflow: hidden;
    max-width: 100%;
    height: 81vh;
    min-height: 570px;
    margin: 0 0 200px;
  }
}
.mainVisual__img {
  border-radius: 0 80px 0 0;
  background: url(../img/mainVisual_01.jpg) no-repeat right 72% top;
  background-size: cover;
  position: relative;
  width: calc(100vw - 35px);
  height: calc((100vw - 35px) * 0.798);
}
@media screen and (min-width: 1080px), print {
  .mainVisual__img {
    border-radius: 0 160px 0 0;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 75px);
    height: 100%;
  }
}
.mainVisual__txt {
  position: absolute;
  top: 35px;
  right: 22px;
  color: #245287;
  letter-spacing: 0.2rem;
  writing-mode: vertical-rl;
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}
@media screen and (min-width: 1080px), print {
  .mainVisual__txt {
    top: 11.5%;
    right: 12%;
    font-size: 3.6rem;
  }
}
.mainVisual__layer {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0;
  background-color: #fff;
  -webkit-animation-name: fadeSlide;
          animation-name: fadeSlide;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

@-webkit-keyframes fadeSlide {
  from {
    transform: translateX(-100%);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0.8;
  }
}

@keyframes fadeSlide {
  from {
    transform: translateX(-100%);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0.8;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  50% {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  50% {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.read {
  margin-bottom: 100px;
  padding: 0 10%;
  position: relative;
}
@media screen and (min-width: 1080px), print {
  .read {
    margin-bottom: 200px;
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
  }
}
.read__title {
  color: #245287;
  font-size: 2.2rem;
  letter-spacing: 0.15rem;
  margin-bottom: 50px;
}
@media screen and (min-width: 1080px), print {
  .read__title {
    margin: 0 0 0 100px;
    font-size: 3rem;
    writing-mode: vertical-rl;
  }
}
.read__body {
  margin-bottom: 50px;
}
@media screen and (min-width: 1080px), print {
  .read__body {
    margin: 0 0 0 50px;
    writing-mode: vertical-rl;
  }
}
.read__imgWrap {
  position: absolute;
  top: 5%;
  right: 6%;
  width: 110px;
}
@media screen and (min-width: 1080px), print {
  .read__imgWrap {
    top: 66%;
    right: 14%;
    width: 200px;
  }
}
.read__txt {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.15rem;
  line-height: 2;
}
@media screen and (min-width: 1080px), print {
  .read__txt {
    font-size: 1.8rem;
  }
}
.read__txt + .read__txt {
  padding-top: 20px;
}
@media screen and (min-width: 1080px), print {
  .read__txt + .read__txt {
    padding-top: 0;
    padding-right: 30px;
  }
}
.read__link {
  font-size: 1.4rem;
  color: #245287;
  border-bottom: 1px solid #1c6c70;
  transition: 0.25s;
}
@media screen and (min-width: 1080px), print {
  .read__link {
    font-size: 1.8rem;
    font-weight: 500;
    border-bottom: none;
  }
}
.read__link:hover {
  opacity: 0.5;
}
.read__linkWrap {
  text-align: right;
}
@media screen and (min-width: 1080px), print {
  .read__linkWrap {
    margin-right: 50px;
    text-align: left;
    writing-mode: vertical-rl;
  }
}
.read__linkWrap .material-symbols-outlined {
  color: #1c6c70;
  transform: translateY(28%);
  font-variation-settings: "FILL" 0, "wght" 150, "GRAD" 0, "opsz" 20;
}
@media screen and (min-width: 1080px), print {
  .read__linkWrap .material-symbols-outlined {
    font-variation-setting: "opsz" 28;
  }
}

.news {
  margin-bottom: 100px;
}
@media screen and (min-width: 1080px), print {
  .news {
    margin-bottom: 200px;
  }
}
.news__list {
  padding: 0 5%;
}
@media screen and (min-width: 1080px), print {
  .news__list {
    padding: 0 20%;
  }
}

.accordion {
  padding: 20px 3% 0;
  border-bottom: 1px solid #edf2f7;
}
.accordion:first-child {
  border-top: 1px solid #edf2f7;
}
.accordion__item {
  padding-bottom: 20px;
  position: relative;
  border: none;
  width: 100%;
  background-color: inherit;
  cursor: pointer;
  text-align: left;
  font-family: "FOT-筑紫明朝 Pr6 M", "游明朝体", "游明朝", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
  font-weight: normal;
}
.accordion__time {
  font-size: 1.2rem;
}
.accordion__title {
  font-size: 1.6rem;
  font-weight: normal;
}
.accordion__plus {
  display: block;
  position: absolute;
  top: 28px;
  right: 13px;
  width: 13px;
  height: 13px;
  transition: 0.4s ease-in;
}
.accordion__plus::before, .accordion__plus::after {
  display: block;
  content: "";
  position: absolute;
  background-color: #245287;
  transition: 0.4s;
}
.accordion__plus::before {
  top: 6px;
  left: 0;
  width: 100%;
  height: 1px;
}
.accordion__plus::after {
  top: 0;
  left: 6px;
  width: 1px;
  height: 100%;
}
.accordion__plus.active::before {
  transform: rotate(45deg);
}
.accordion__plus.active::after {
  transform: rotate(45deg);
}
.accordion__body {
  height: 0;
  padding-bottom: 0;
  padding-left: 3%;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease-out;
}
.accordion__body.open {
  height: auto;
  padding-bottom: 20px;
  opacity: 1;
}

.imgBox {
  max-width: 1000px;
  padding: 0 2%;
  margin: 0 auto;
  margin-bottom: calc(90px - 2%);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 1080px), print {
  .imgBox {
    margin-bottom: calc(200px - 2%);
  }
}
.imgBox__img {
  width: 49%;
  margin-bottom: 2%;
}

.service {
  margin: 0 auto 50px;
  padding: 50px 5%;
  width: 100%;
  max-width: 1100px;
  background-color: #edf2f7;
}
@media screen and (min-width: 1080px), print {
  .service {
    margin: 100px auto;
    padding: 50px;
    border-radius: 30px;
  }
}
.service__header {
  margin: 0 auto;
  padding-bottom: 50px;
  max-width: 900px;
  text-align: center;
}
.service__title {
  padding-bottom: 30px;
}
.service__cards {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 1080px), print {
  .service__cards {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    border: 1px solid #a9bcd1;
  }
}
.service__card {
  width: 100%;
  padding: 20px;
  position: relative;
  background-image: linear-gradient(to right, #a9bcd1, 3px, transparent 3px, transparent 10px);
  background-size: 8px 1px;
  background-position: bottom right;
  background-repeat: repeat-x;
}
.service__card:last-child {
  background-image: none;
}
@media screen and (min-width: 1080px), print {
  .service__card {
    padding: 0 30px;
    background-image: linear-gradient(to bottom, #a9bcd1, 3px, transparent 3px, transparent 10px);
    background-size: 1px 8px;
    background-position: right top;
    background-repeat: repeat-y;
  }
  .service__card:last-child {
    background-image: none;
  }
}

.card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1080px), print {
  .card {
    display: block;
  }
}
.card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1080px), print {
  .card__link {
    display: none;
  }
}
.card__body {
  padding-left: 9%;
  flex: 2;
  text-align: left;
}
@media screen and (min-width: 1080px), print {
  .card__body {
    margin-top: 15px;
    padding: 0;
    text-align: center;
  }
}
.card__title {
  color: #245287;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .card__title {
    font-size: 2.2rem;
  }
}
.card__txt {
  color: #919191;
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
}
@media screen and (min-width: 768px) {
  .card__txt {
    margin-bottom: 20px;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
  }
}
.card__btn {
  display: none;
}
@media screen and (min-width: 1080px), print {
  .card__btn {
    display: block;
  }
}
.card__imgWrap {
  flex: 1.3;
  width: 100%;
  max-width: 230px;
  position: relative;
  overflow: hidden;
  transition: 0.25s;
}
@media screen and (min-width: 1080px), print {
  .card__imgWrap {
    display: block;
    padding-top: 75%;
    max-width: 100%;
  }
}
.card__imgWrap:hover {
  opacity: 0.7;
}
.card__img {
  aspect-ratio: 4/3;
}
@media screen and (min-width: 1080px), print {
  .card__img {
    aspect-ratio: auto;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
  }
}

.workDay {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 50px;
  padding: 0 5%;
}
@media screen and (min-width: 1080px), print {
  .workDay {
    margin-bottom: 100px;
    display: flex;
    justify-content: space-around;
  }
}
.workDay__info {
  margin-bottom: 30px;
  padding-left: 25px;
}
@media screen and (min-width: 1080px), print {
  .workDay__info {
    margin: 0;
    padding-top: 15px;
  }
}
@media screen and (min-width: 1080px), print {
  .workDay__body {
    margin: 0;
  }
}

.medicalInfo__txt {
  padding-bottom: 10px;
  color: #245287;
  letter-spacing: 0.15rem;
}
@media screen and (min-width: 1080px), print {
  .medicalInfo__txt {
    font-size: 1.8rem;
  }
}
.medicalInfo__logo {
  padding-bottom: 20px;
  width: 240px;
  transform: translateX(-8px);
}
@media screen and (min-width: 1080px), print {
  .medicalInfo__logo {
    width: 300px;
  }
}
.medicalInfo__addressTxt {
  font-size: 1.6rem;
  letter-spacing: 0.15rem;
}
@media screen and (min-width: 1080px), print {
  .medicalInfo__addressTxt {
    font-size: 1.8rem;
  }
}
.medicalInfo__tel > a {
  font-size: 1.6rem;
  letter-spacing: 0.15rem;
}
@media screen and (min-width: 1080px), print {
  .medicalInfo__tel > a {
    font-size: 2.4rem;
  }
}

.schedule {
  width: auto;
  min-width: 100%;
  text-align: center;
}
.schedule__wrap {
  border-top: 1px solid #edf2f7;
  overflow-x: auto;
}
.schedule__header {
  padding: 10px 0;
  height: 73px;
  border-bottom: 1px solid #edf2f7;
  vertical-align: middle;
  background-color: #fff;
  color: #245287;
  font-size: 1.4rem;
  white-space: nowrap;
}
@media screen and (min-width: 1080px), print {
  .schedule__header {
    padding: 15px;
    font-size: 1.6rem;
  }
}
.schedule__header--date {
  font-size: 1.4rem;
}
@media screen and (min-width: 1080px), print {
  .schedule__header--date {
    font-size: 1.6rem;
  }
}
.schedule__header--small {
  font-size: 1.1rem;
  line-height: 0.3rem;
}
@media screen and (min-width: 1080px), print {
  .schedule__header--small {
    font-size: 1.2rem;
  }
}
.schedule__txt {
  padding: 5px;
  border-bottom: 1px solid #edf2f7;
  vertical-align: middle;
  color: #245287;
  font-size: 1.4rem;
  white-space: nowrap;
}
.schedule__lead {
  padding: 15px 0 0 30px;
  color: #245287;
  font-size: 1.4rem;
  font-weight: 500;
}

.guide {
  margin-bottom: 100px;
  padding: 0 10%;
}
@media screen and (min-width: 1080px), print {
  .guide {
    margin: auto;
    margin-bottom: 200px;
    padding: 0;
    max-width: 1200px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.guide__map {
  margin: 0 auto 30px;
}
@media screen and (min-width: 1080px), print {
  .guide__map {
    margin: 0;
    width: 48%;
  }
}
.guide__body {
  padding: 40px 30px;
  background-color: #edf2f7;
  border-radius: 2%;
}
@media screen and (min-width: 1080px), print {
  .guide__body {
    width: 48%;
  }
}
.guide__title {
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.guide__txt {
  margin-bottom: 20px;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
}
.guide__alert {
  padding-left: 20px;
  font-size: 1.2rem;
  position: relative;
  margin-bottom: 15px;
}
.guide__alert::before {
  display: block;
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.guide__alert:last-child {
  margin-bottom: 0;
}

.gmap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gmap__wrap {
  padding-top: 56.25%;
  position: relative;
}
@media screen and (min-width: 1080px), print {
  .gmap__wrap {
    padding-top: 20%;
  }
}

#infomationContents .contentImage .contentImage__inner {
  background-image: url(../img/contentImage_01.jpg);
  background-position: center bottom;
}

#aboutContents .contentImage .contentImage__inner {
  background-image: url(../img/contentImage_02.jpg);
  background-position: center center;
}

#internalContents .contentImage .contentImage__inner {
  background-image: url(../img/contentImage_01.jpg);
  background-position: center bottom;
}

#surgeryContents .contentImage .contentImage__inner {
  background-image: url(../img/contentImage_01.jpg);
  background-position: center bottom;
}

#medicalChekupContents .contentImage .contentImage__inner {
  background-image: url(../img/contentImage_01.jpg);
  background-position: center bottom;
}

#accessContents .contentImage .contentImage__inner {
  background-image: url(../img/contentImage_01.jpg);
  background-position: center bottom;
}

.contentImage {
  position: relative;
  width: 94vw;
  height: 70.5vw;
  margin: 0 auto 100px;
}
@media screen and (min-width: 1080px), print {
  .contentImage {
    height: calc(100vh - 240px);
    min-height: 700px;
    max-height: 900px;
    margin: 0 auto 200px;
  }
}
.contentImage__inner {
  border-radius: 5px 160px 5px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contentImage__link {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  border-radius: 0 5px 0 0;
  padding: 10px;
}
@media screen and (min-width: 1080px), print {
  .contentImage__link {
    padding: 20px 40px;
  }
}
.contentImage__txt {
  padding-bottom: 5px;
  font-size: 1rem;
  color: #245287;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 1080px), print {
  .contentImage__txt {
    padding-bottom: 10px;
    font-size: 1.4rem;
  }
}
.contentImage__title {
  font-size: 1.4rem;
  color: #245287;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 1080px), print {
  .contentImage__title {
    font-size: 1.8rem;
    letter-spacing: 0.25rem;
  }
}

.infomationNews {
  margin-bottom: 150px;
  position: relative;
}
@media screen and (min-width: 1080px), print {
  .infomationNews {
    margin-bottom: 250px;
  }
}
.infomationNews__list {
  margin-bottom: 50px;
  padding: 0 5%;
}
.infomationNews__btn {
  position: absolute;
  bottom: -56px;
  right: 7%;
}
@media screen and (min-width: 1080px), print {
  .infomationNews__btn {
    bottom: -76px;
  }
}

.leadAbout {
  margin-bottom: 60px;
  padding: 0 5%;
  width: 850px;
  margin: 0 auto 160px;
  padding: 110px 0 0 210px;
  position: relative;
}
.leadAbout__title {
  padding-bottom: 30px;
  font-size: 3.5rem;
  color: #245287;
  letter-spacing: 0.25rem;
  position: absolute;
  top: 0;
  left: 50px;
  writing-mode: vertical-rl;
}
.leadAbout__body {
  padding: 0 10px;
}
.leadAbout__txt {
  padding-bottom: 1.6rem;
  color: #245287;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}
.leadAbout__img {
  position: absolute;
  top: 200px;
  right: -30px;
  width: 140px;
}

.clinicPolicy {
  margin: 0 auto 100px;
  width: 1030px;
}
.clinicPolicy__imgWrap {
  margin-bottom: 85px;
}
.clinicPolicy__body {
  position: relative;
}
.clinicPolicy__body::after {
  display: block;
  content: "";
  position: absolute;
  top: -20px;
  left: 25px;
  width: 50px;
  height: 1px;
  background-color: #245287;
  opacity: 0.2;
}
.clinicPolicy__inner {
  padding: 0 0 0 290px;
}
.clinicPolicy__title {
  position: absolute;
  top: 5px;
  left: 22px;
  padding-bottom: 30px;
  color: #245287;
  font-size: 2rem;
  letter-spacing: 0.2rem;
}
.clinicPolicy__titleSmall {
  text-transform: uppercase;
  font-size: 1rem;
}
.clinicPolicy__avatar {
  position: absolute;
  top: 60px;
  right: 40px;
  width: 150px;
}
.clinicPolicy__list {
  margin: 0;
}
.clinicPolicy__item {
  margin-bottom: 30px;
  padding-left: 50px;
  position: relative;
  font-size: 2rem;
  line-height: 1.8;
}
.clinicPolicy__icon {
  position: absolute;
  top: 0;
  left: 0;
  color: #245287;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  font-style: normal;
}
.clinicPolicy__icon::after {
  display: block;
  content: "";
  position: absolute;
  top: 16px;
  left: 30px;
  background-color: #245287;
  width: 12px;
  height: 1px;
  opacity: 0.2;
}

.introduction {
  width: 1000px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.introduction__imgbox {
  width: 300px;
  margin-inline: auto;
}
.introduction__body {
  padding-left: 7rem;
}
.introduction__doctor {
  padding-bottom: 4rem;
}
.introduction__doctorTitle {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.introduction__doctorName {
  display: block;
  margin: 0 0 15px -1px;
  font-size: 23px;
  letter-spacing: 0.18em;
}
.introduction__doctorEnglish {
  display: block;
  margin-left: 1px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: lowercase;
  font-weight: normal;
  font-style: normal;
}

.footer {
  max-width: 1200px;
  margin: 0 auto 8%;
}
@media screen and (min-width: 1080px), print {
  .footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.footer__wrap {
  width: 100%;
  padding: 0 5%;
  margin: 0 auto;
}
@media screen and (min-width: 1080px), print {
  .footer__inner + .footer__inner {
    padding-left: 50px;
  }
}
.footer__clinic {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 1080px), print {
  .footer__clinic {
    text-align: left;
    margin-bottom: 0;
  }
}
.footer__center {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 1080px), print {
  .footer__center {
    text-align: left;
    margin-bottom: 0;
  }
}
.footer__induction {
  display: none;
  text-align: center;
}
@media screen and (min-width: 1080px), print {
  .footer__induction {
    display: block;
  }
}
.footer__logo {
  margin: 20px auto;
  max-width: 270px;
}
@media screen and (min-width: 1080px), print {
  .footer__logo {
    margin: 0;
    margin-left: -12px;
    padding: 10px 0 20px;
  }
}
.footer__tel {
  margin-bottom: 15px;
  padding: 0;
}
@media screen and (min-width: 1080px), print {
  .footer__tel {
    margin-bottom: 5px;
  }
}
.footer__btn {
  margin-bottom: 30px;
  width: 80%;
}
@media screen and (min-width: 1080px), print {
  .footer__btn {
    width: auto;
    margin-bottom: 15px;
  }
}
.footer__nav {
  margin-left: 50px;
}
@media screen and (min-width: 1080px), print {
  .footer__nav {
    display: flex;
    align-items: flex-start;
  }
}
.footer__navInner {
  text-align: center;
}
.footer__navInner + .footer__navInner {
  margin-top: 1.4rem;
}
@media screen and (min-width: 1080px), print {
  .footer__navInner + .footer__navInner {
    margin-top: 0;
  }
}
@media screen and (min-width: 1080px), print {
  .footer__navInner {
    margin-right: 50px;
  }
}
.footer__navInner:last-child {
  margin-right: 0;
}
.footer__navList {
  position: relative;
  text-align: left;
  padding-left: 10px;
  margin-bottom: 1.4rem;
}
.footer__navList::before {
  display: block;
  content: "";
  position: absolute;
  top: 1.4rem;
  left: 0;
  background: #245287;
  width: 5px;
  height: 1px;
  opacity: 0.4;
}
.footer__navList:last-child {
  margin: 0;
}
.footer__txt {
  color: #245287;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}
.footer__txt--en {
  font-family: "HalisGR-SBook", sans-serif;
  letter-spacing: 0.6rem;
  text-transform: uppercase;
  line-height: 3.5rem;
}
.footer__txt--small {
  font-size: 1.4rem;
}
.footer__txt--alert {
  color: #1c6c70;
  font-size: 1.8rem;
  transition: 0.25s;
}
.footer__txt--alert:hover {
  opacity: 0.5;
}
/*# sourceMappingURL=style.css.map */