@charset "UTF-8";
/* -----------------------------------------*/
/* -----------------------------------------*/
/* -----------------------------------------*/
/* -----------------------------------------*/
/* -----------------------------------------*/
/*header.scss
/* -----------------------------------------*/
.header__wrapper.open {
  opacity: 1;
  transform: translateX(0);
}

.header__wrapper {
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media (max-width: 768px) {
  .header__wrapper {
    flex-direction: column-reverse;
    background-color: #A1CBCE;
  }
}

.header__left,
.header__right {
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

/* -----------------------------------------*/
/*header__left
/* -----------------------------------------*/
.header__left {
  width: 52%;
  background-color: #1A7D84;
}
@media (max-width: 768px) {
  .header__left {
    width: 100%;
    background-color: inherit;
    flex-direction: column-reverse;
    justify-content: end;
  }
}

.heading__h1 {
  margin-bottom: 6.7rem;
}

.nav__overlay span {
  color: #fff;
  font-size: 3.6rem;
}

.nav__overlay {
  margin-bottom: 7.2rem;
}
@media (max-width: 768px) {
  .nav__overlay {
    margin: 0;
    display: none;
  }
}

.button-wrapper {
  color: #1A7D84;
  width: 260px;
  background-color: #fff;
  text-align: center;
  font-size: 2rem;
  transition: transform 0.4s ease;
  transform: scale(1);
}
.button-wrapper:hover {
  background-color: #DAEAEB;
  transform: scale(1.1);
}

.button--reserve {
  margin-bottom: 2.3rem;
}
@media (max-width: 768px) {
  .button--reserve {
    margin-bottom: 1.6rem;
  }
}

.button--reserve__text {
  position: relative;
  padding: 35px 0 30px 20px;
}
@media (max-width: 768px) {
  .button--reserve__text {
    padding: 13px 72px 13px 104px;
  }
}
.button--reserve__text::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 69px;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .button--reserve__text::before {
    width: 25px;
    height: 41px;
    left: 20%;
  }
}
.button--reserve__text[data-icon=reserve]::before {
  background-image: url(../img/booking.png);
}

@media (max-width: 768px) {
  .button--tel {
    margin-bottom: 3rem;
  }
}

.button--tel__text {
  position: relative;
  padding: 17px 0 18px;
}
@media (max-width: 768px) {
  .button--tel__text {
    padding: 13px 0 14px;
  }
}

.button--tel__number {
  color: #575756;
  font-family: "Inter";
  font-size: 2.4rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}

.button--tel-prefix {
  font-size: 1.6rem;
}

.button--label {
  margin-bottom: 1.1rem;
}

/* -----------------------------------------*/
/*header__right
/* -----------------------------------------*/
.header__right {
  width: 48%;
  background-color: #fff;
}
@media (max-width: 768px) {
  .header__right {
    width: 100%;
    background-color: inherit;
    justify-content: flex-end;
  }
}

.nav__label--en {
  font-size: 3.6rem;
  font-family: "Inria Serif";
  color: #1A7D84;
}
@media (max-width: 768px) {
  .nav__label--en {
    font-size: 2rem;
    color: #fff;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---------------- */
/* ハンバーガーメニュー */
/* ---------------- */
.hamburger {
  position: fixed;
  width: 80px;
  height: 80px;
  background-color: #1A7D84;
  z-index: 100;
  top: 1.6rem;
  right: 1.6rem;
  color: #fff;
}
@media (max-width: 768px) {
  .hamburger {
    width: 56px;
    height: 56px;
    top: 0;
    right: 0;
  }
}
.hamburger span {
  position: absolute;
  top: 2.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4.7rem;
  height: 0.5rem;
  background: #fff;
  border-radius: 5px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .hamburger span {
    top: 1.8rem;
    width: 3.29rem;
    height: 0.3rem;
  }
}
.hamburger span::before, .hamburger span::after {
  content: "";
  position: absolute;
  transition: 0.5s;
  width: 100%;
  height: 0.5rem;
  background: #fff;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .hamburger span::before, .hamburger span::after {
    height: 0.3rem;
  }
}
.hamburger span::before {
  top: -15px;
}
@media (max-width: 768px) {
  .hamburger span::before {
    top: -10px;
  }
}
.hamburger span::after {
  top: 15px;
}
@media (max-width: 768px) {
  .hamburger span::after {
    top: 10px;
  }
}

.open.hamburger span {
  background-color: #1A7D84;
}
.open.hamburger span::before {
  transform: rotate(45deg);
  top: 1px;
}
.open.hamburger span::after {
  transform: rotate(-45deg);
  top: 1px;
}

.nav__list {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (max-width: 768px) {
  .nav__list {
    gap: 3rem;
  }
}

.hamburger__text {
  text-align: center;
  padding-top: 50px;
}
@media (max-width: 768px) {
  .hamburger__text {
    padding-top: 36px;
    font-size: 1.2rem;
  }
}

/* -----------------------------------------*/
/*style.scss(common)
/* -----------------------------------------*/
html {
  font-size: 10px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 1.6em;
  color: #575756;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

.wrapper {
  margin: 0 auto;
}
@media (max-width: 1250px) {
  .wrapper {
    padding: 0 16px;
  }
}

.wrapper1080 {
  max-width: 1080px;
  margin-bottom: 105px;
}
@media (max-width: 768px) {
  .wrapper1080 {
    margin-bottom: 5.3rem;
  }
}

.wrapper900 {
  max-width: 900px;
}

@media (max-width: 768px) {
  .full-image-wrapper {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
  }
}

.header__h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  color: #1A7D84;
  margin: 1.2rem 0 1.1rem;
  padding-left: 2.4rem;
  position: relative;
}
@media (max-width: 768px) {
  .header__h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-left: 2.2rem;
  }
}
.header__h2::before {
  content: "";
  width: 1.2rem;
  height: 4.8rem;
  background-color: #A1CBCE;
  position: absolute;
  top: 0.4rem;
  left: 0;
}
@media (max-width: 768px) {
  .header__h2::before {
    height: 3.5rem;
    top: -2.5px;
  }
}

.header--jp {
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .header--jp {
    font-size: 1.4rem;
  }
}

.medical .header__h2::before,
.virus .header__h2::before,
.news .header__h2::before,
.access .header__h2::before,
.reception .header__h2::before {
  display: none;
}

.header__h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.7rem;
  color: #1A7D84;
}

.btn-text {
  flex: 1;
  text-align: center;
}

/* ---------------------------------------- */
/*リンクボタン矢印*/
/* ---------------------------------------- */
.arrow {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 1px;
  margin-top: 7px;
  border-radius: 9999px;
  background-color: #ffffff;
}
.arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10.9px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(25deg);
  transform-origin: calc(100% - 0.5px) 50%;
}
.arrow:hover {
  background-color: #1A7D84;
}
.arrow:hover::before {
  background-color: #1A7D84;
}

/* ---------------------------------------- */
/*フェードアップjs*/
/* ---------------------------------------- */
.js-fadeup {
  opacity: 0;
  transform: translateY(200px);
  transition: opacity 1s ease, transform 1s ease;
}

.js-fadeup.is-inview {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.5s;
}

/* -----------------------------------------*/
/* topへ戻るボタン */
/* -----------------------------------------*/
#pageTop {
  opacity: 0;
  position: fixed;
  bottom: 39%;
  right: 1.6rem;
  background-color: #fff;
  transition: opacity 0.5s ease-in-out;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 10%;
  border: 3px solid #A1CBCE;
}
#pageTop a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#pageTop.show {
  pointer-events: auto; /* ← 表示されたらクリック可能に */
  opacity: 1;
}

.arrow-top {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 3px;
  height: 31px;
  border-radius: 9999px;
  background-color: #a1cbce;
}

.arrow-top::before,
.arrow-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 1.5px);
  width: 3px;
  height: 13px;
  border-radius: 9999px;
  background-color: #a1cbce;
  transform-origin: 50% 1.5px;
}

.arrow-top::before {
  transform: rotate(45deg);
}

.arrow-top::after {
  transform: rotate(-45deg);
}

.fixed-bg {
  height: 50vh;
  margin-bottom: 100px;
  background-image: url(../img/swing.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .fixed-bg {
    height: 20vh;
    margin-bottom: 20px;
  }
}

/* =========================================*/
/*mv*/
/* =========================================*/
.mv {
  position: relative;
  margin-bottom: 18.6rem;
}

.overlay__img.slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0;
}

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

.mv-img {
  height: 100%;
}

.mv__overlay {
  color: #1A7D84;
  position: absolute;
}

.mv__catch {
  top: 9%;
  left: 7%;
  padding: 4rem 4.5rem;
  font-size: 3.6rem;
  background-color: rgba(255, 255, 255, 0.57);
}
@media (max-width: 768px) {
  .mv__catch {
    font-size: 2.4rem;
    top: 26%;
    left: 1.7rem;
    padding: 3.5rem 5rem 3.5rem 3.5rem;
  }
}

/* -----------------------------------------*/
/* 診療時間 */
/* -----------------------------------------*/
.mv__hours {
  bottom: -7rem;
  right: 11.7rem;
  width: 46.8rem;
}
@media (max-width: 768px) {
  .mv__hours {
    right: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85.6%;
    bottom: -155px;
  }
}

.hours__table-wrapper {
  padding: 2.7rem 2.1rem 3rem;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.87);
  position: relative;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hours__table-wrapper {
    width: 85.7%;
    padding: 1.9rem 1.4rem 2rem;
  }
}
.hours__table-wrapper::before, .hours__table-wrapper::after {
  position: absolute;
  content: "";
  width: 55%;
  height: 9.3rem;
  bottom: -5%;
  z-index: -10;
}
.hours__table-wrapper::before {
  background-color: #F1F5C3;
  left: -5%;
}
.hours__table-wrapper::after {
  background-color: rgba(26, 125, 132, 0.26);
  right: -5%;
}

.hours__table-label {
  font-size: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .hours__table-label {
    font-size: 1.6rem;
    margin-bottom: 2.7rem;
  }
}

.hours__table {
  width: 91%;
  box-sizing: border-box;
  margin: 0 auto;
}

.hours__table-header, .hours__table-cell {
  padding: 15px;
  border-bottom: 1px solid #1A7D84;
  font-weight: 400;
}
@media (max-width: 768px) {
  .hours__table-header, .hours__table-cell {
    padding: 5% 0;
  }
}

@media (max-width: 768px) {
  .hours__table-header {
    padding: 0;
    text-align: start;
  }
}

#hours-original .break {
  display: none;
}

/* =========================================*/
/*doctor section*/
/* =========================================*/
.doctor {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .doctor {
    flex-direction: column;
  }
}

.doctor__text-area {
  width: 40%;
  padding-left: 17px;
}
@media (max-width: 768px) {
  .doctor__text-area {
    width: 100%;
    margin-bottom: 4rem;
    padding-left: 0;
  }
}

.doctor__text {
  margin-bottom: 2.1rem;
}
@media (max-width: 768px) {
  .doctor__text {
    margin-bottom: 4rem;
  }
}

.doctor__img-area {
  width: 60%;
}
@media (max-width: 768px) {
  .doctor__img-area {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
  }
}

/* -----------------------------------------*/
/*doctorリンクボタン*/
/* -----------------------------------------*/
.btn-doctor {
  margin-left: -65px;
  width: 28rem;
  height: 6rem;
  background-color: #1A7D84;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  padding: 1.8rem;
  transition: transform 0.8s ease, background-color 0.5s ease-in-out, color 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid transparent;
  cursor: pointer;
  transform: translateX(0);
}
.btn-doctor .arrow,
.btn-doctor .arrow::before {
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}
.btn-doctor:hover .arrow,
.btn-doctor:hover .arrow::before {
  background-color: #1A7D84;
}
.btn-doctor:hover {
  color: #1A7D84;
  background-color: #fff;
  border: 1px solid #1A7D84;
  transform: translateX(30px);
}
@media (max-width: 768px) {
  .btn-doctor:hover {
    transform: translateX(0);
  }
}
.btn-doctor:hover {
  transform: translateX(-30px);
}
@media (max-width: 768px) {
  .btn-doctor:hover {
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .btn-doctor {
    margin: 0 auto;
  }
}

.arrow-doctor {
  position: relative;
}
.arrow-doctor::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  left: 0;
  width: 12.1px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(-25deg);
  transform-origin: 0.5px 50%;
}
.arrow-doctor:hover::before {
  background-color: #1A7D84;
}

/* =========================================*/
/*clinic section*/
/* =========================================*/
.clinic {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .clinic {
    flex-direction: column;
  }
}

.clinic__text-area {
  width: 40%;
  padding-right: 16px;
}
@media (max-width: 768px) {
  .clinic__text-area {
    width: 100%;
    margin-bottom: 4rem;
    padding-left: 0;
  }
}

.clinic__text {
  margin-bottom: 2.4rem;
}
@media (max-width: 768px) {
  .clinic__text {
    margin-bottom: 4rem;
  }
}

.clinic__img-area {
  width: 60%;
}
@media (max-width: 768px) {
  .clinic__img-area {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
  }
}

/* -----------------------------------------*/
/*clinicリンクボタン*/
/* -----------------------------------------*/
.btn-clinic {
  margin-left: 186px;
  position: relative;
  z-index: 10;
  justify-content: flex-end;
  width: 28rem;
  height: 6rem;
  background-color: #1A7D84;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  padding: 1.8rem;
  transition: transform 0.8s ease, background-color 0.5s ease-in-out, color 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid transparent;
  cursor: pointer;
  transform: translateX(0);
}
.btn-clinic .arrow,
.btn-clinic .arrow::before {
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}
.btn-clinic:hover .arrow,
.btn-clinic:hover .arrow::before {
  background-color: #1A7D84;
}
.btn-clinic:hover {
  color: #1A7D84;
  background-color: #fff;
  border: 1px solid #1A7D84;
  transform: translateX(30px);
}
@media (max-width: 768px) {
  .btn-clinic:hover {
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .btn-clinic {
    margin: 0 auto;
  }
}

/* =========================================*/
/*medical section*/
/* =========================================*/
.medical {
  margin-bottom: 7.1rem;
  background-color: #DAEAEB;
  background-image: url(../img/bg-dental.png);
  position: relative;
  background-size: 57%;
  overflow: hidden;
  background-position: bottom 50px right 0px;
}
@media (max-width: 768px) {
  .medical {
    background-image: none;
    margin-bottom: 2.1rem;
  }
}

.medical__h2-area {
  width: 117px;
  height: 117px;
  border: 5px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 23px auto 33px;
}
@media (max-width: 768px) {
  .medical__h2-area {
    width: 92px;
    height: 92px;
    margin: 24px auto 18px;
  }
}

.medical__h2-inner {
  text-align: center;
  background-color: #DAEAEB;
}

.medical__header {
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .medical__header {
    padding: 0 20px;
  }
}

.medical-grid__area {
  max-width: 108rem;
  margin: 0 auto 5.6rem;
}
@media (max-width: 768px) {
  .medical-grid__area {
    margin-bottom: 2.4rem;
  }
}

.medical-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2.7rem;
}
@media (max-width: 768px) {
  .medical-grid__list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

.medical-grid__text {
  margin: 0 auto 4.8rem;
  width: 80%;
}
@media (max-width: 768px) {
  .medical-grid__text {
    margin-bottom: 0;
    width: 65%;
    padding: 1.8rem 1.6rem;
  }
}

.medical-grid__item {
  background: #fff;
}
@media (max-width: 768px) {
  .medical-grid__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.medical-grid__img {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .medical-grid__img {
    width: 35%;
  }
}

.break-word {
  display: inline-block;
}
@media (max-width: 768px) {
  .break-word {
    display: block;
  }
}

.medical__img {
  margin: 3rem 0 1.6rem;
}

@media (max-width: 768px) {
  .btn-medical__text,
  .btn-news__text,
  .btn-virus__text {
    font-size: 1.6rem;
  }
}

.medical__btn-area {
  padding-bottom: 5.8rem;
}
@media (max-width: 768px) {
  .medical__btn-area {
    padding-bottom: 3.2rem;
  }
}

.btn-medical {
  margin: 0 auto;
  justify-content: center;
  width: 60%;
  height: 6.8rem;
  background-color: #1A7D84;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  padding: 0 3.4rem;
  transition: transform 0.8s ease, background-color 0.5s ease-in-out, color 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid transparent;
  cursor: pointer;
  transform: translateX(0);
}
.btn-medical .arrow,
.btn-medical .arrow::before {
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}
.btn-medical:hover .arrow,
.btn-medical:hover .arrow::before {
  background-color: #1A7D84;
}
.btn-medical:hover {
  color: #1A7D84;
  background-color: #fff;
  border: 1px solid #1A7D84;
  transform: translateX(30px);
}
@media (max-width: 768px) {
  .btn-medical:hover {
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .btn-medical {
    width: 31.5rem;
    height: 4.5rem;
    background-color: #1A7D84;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    padding: 0 2rem;
    transition: transform 0.8s ease, background-color 0.5s ease-in-out, color 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid transparent;
    cursor: pointer;
    transform: translateX(0);
  }
  .btn-medical .arrow,
  .btn-medical .arrow::before {
    background-color: #ffffff;
    transition: background-color 0.3s ease;
  }
  .btn-medical:hover .arrow,
  .btn-medical:hover .arrow::before {
    background-color: #1A7D84;
  }
  .btn-medical:hover {
    color: #1A7D84;
    background-color: #fff;
    border: 1px solid #1A7D84;
    transform: translateX(30px);
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .btn-medical:hover {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .arrow-medical,
  .arrow-news,
  .arrow-virus {
    width: 1.6rem;
  }
  .arrow-medical::before,
  .arrow-news::before,
  .arrow-virus::before {
    width: 8px;
  }
}

.medical-header {
  position: relative;
  text-align: center;
  padding: 6rem 0;
}
.medical-header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12rem;
  height: 12rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 5px solid #fff;
  background-color: #DAEAEB;
  z-index: -1;
}

.medical-header__en {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #1A7D84;
}

.medical-header__jp {
  font-size: 1.6rem;
  margin-top: 1rem;
  color: #333;
}

/* =========================================*/
/*news section*/
/* =========================================*/
.news__section {
  margin-bottom: 8.7rem;
}
@media (max-width: 768px) {
  .news__section {
    margin-bottom: 2.1rem;
  }
}

.news {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0 40px;
  margin-bottom: 4.7rem;
}
@media (max-width: 768px) {
  .news {
    display: block;
    margin-bottom: 2.4rem;
  }
}

.news__h2-inner {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 5.2rem;
}
@media (max-width: 768px) {
  .news__h2-inner {
    margin-bottom: 0.7rem;
  }
}

.news__right {
  grid-column: 2;
  grid-row: 1/span 2; /* 1行目から2行目まで縦に結合 */
}

.news-header,
.virus-header,
.access-header,
.reception-header {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 1.6rem;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (max-width: 768px) {
  .news-list {
    margin-bottom: 2.4rem;
    gap: 0.8rem;
  }
}

.news__link {
  display: flex;
  align-items: flex-start;
  gap: 3.3rem;
}
@media (max-width: 768px) {
  .news__link {
    flex-direction: column;
    gap: 0;
  }
}

.news-date {
  flex: 0 0 100px; /* 固定幅 */
}
@media (max-width: 768px) {
  .news-date {
    flex: 0;
  }
}

.news__text {
  flex: 1; /* 残りの幅を使う */
}

/* -----------------------------------------*/
/*newsリンクボタン*/
/* -----------------------------------------*/
.btn-news {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  z-index: 10;
  justify-content: flex-end;
  width: 35rem;
  height: 6.8rem;
  background-color: #1A7D84;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  padding: 2rem;
  transition: transform 0.8s ease, background-color 0.5s ease-in-out, color 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid transparent;
  cursor: pointer;
  transform: translateX(0);
}
.btn-news .arrow,
.btn-news .arrow::before {
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}
.btn-news:hover .arrow,
.btn-news:hover .arrow::before {
  background-color: #1A7D84;
}
.btn-news:hover {
  color: #1A7D84;
  background-color: #fff;
  border: 1px solid #1A7D84;
  transform: translateX(30px);
}
@media (max-width: 768px) {
  .btn-news:hover {
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .btn-news {
    width: 31.5rem;
    height: 4.5rem;
    background-color: #1A7D84;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    padding: 0 2rem;
    transition: transform 0.8s ease, background-color 0.5s ease-in-out, color 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid transparent;
    cursor: pointer;
    transform: translateX(0);
    margin: 0 auto;
  }
  .btn-news .arrow,
  .btn-news .arrow::before {
    background-color: #ffffff;
    transition: background-color 0.3s ease;
  }
  .btn-news:hover .arrow,
  .btn-news:hover .arrow::before {
    background-color: #1A7D84;
  }
  .btn-news:hover {
    color: #1A7D84;
    background-color: #fff;
    border: 1px solid #1A7D84;
    transform: translateX(30px);
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .btn-news:hover {
    transform: translateX(0);
  }
}

/* -----------------------------------------*/
/*newsスライダー*/
/* -----------------------------------------*/
.slider__img {
  margin-left: 0.8rem;
}

/* =========================================*/
/*virus section*/
/* =========================================*/
.virus {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.4rem;
  margin-bottom: 7.1rem;
}
@media (max-width: 768px) {
  .virus {
    flex-direction: column;
    gap: 0;
    margin-bottom: 2.4rem;
  }
}

.virus__h2-inner {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .virus__h2-inner {
    margin-bottom: 0.7rem;
  }
}

.virus__right {
  width: 70%;
}
@media (max-width: 768px) {
  .virus__right {
    width: 100%;
  }
}

.virus__left {
  width: 30%;
}
@media (max-width: 768px) {
  .virus__left {
    width: 100%;
  }
}

.virus__text {
  margin-bottom: 4.2rem;
}
@media (max-width: 768px) {
  .virus__text {
    margin-bottom: 2.4rem;
  }
}

.btn-virus {
  position: relative;
  z-index: 10;
  justify-content: flex-end;
  width: 35rem;
  height: 6.8rem;
  background-color: #1A7D84;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  padding: 2rem;
  transition: transform 0.8s ease, background-color 0.5s ease-in-out, color 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid transparent;
  cursor: pointer;
  transform: translateX(0);
}
.btn-virus .arrow,
.btn-virus .arrow::before {
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}
.btn-virus:hover .arrow,
.btn-virus:hover .arrow::before {
  background-color: #1A7D84;
}
.btn-virus:hover {
  color: #1A7D84;
  background-color: #fff;
  border: 1px solid #1A7D84;
  transform: translateX(30px);
}
@media (max-width: 768px) {
  .btn-virus:hover {
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .btn-virus {
    width: 31.5rem;
    height: 4.5rem;
    background-color: #1A7D84;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    padding: 0 2rem;
    transition: transform 0.8s ease, background-color 0.5s ease-in-out, color 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid transparent;
    cursor: pointer;
    transform: translateX(0);
    margin: 0 auto 2.4rem;
  }
  .btn-virus .arrow,
  .btn-virus .arrow::before {
    background-color: #ffffff;
    transition: background-color 0.3s ease;
  }
  .btn-virus:hover .arrow,
  .btn-virus:hover .arrow::before {
    background-color: #1A7D84;
  }
  .btn-virus:hover {
    color: #1A7D84;
    background-color: #fff;
    border: 1px solid #1A7D84;
    transform: translateX(30px);
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .btn-virus:hover {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .virus__right {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
  }
}

/* =========================================*/
/*access section*/
/* =========================================*/
.access {
  margin-bottom: 7.6rem;
}
@media (max-width: 768px) {
  .access {
    margin-bottom: 2.4rem;
  }
}

.access__h2-inner {
  margin-bottom: 2.3rem;
}
@media (max-width: 768px) {
  .access__h2-inner {
    margin-bottom: 0.7rem;
  }
}

.access-header,
.reception-header {
  justify-content: center;
}

.map {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .map {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .map__area {
    height: 118px;
  }
}

.map__img {
  width: 100%;
  height: 30rem;
}
@media (max-width: 768px) {
  .map__img {
    height: 100%;
  }
}

.acccess__list,
.access__address {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .acccess__list,
  .access__address {
    display: block;
  }
}

.access__address {
  margin-bottom: 1.8rem;
}
@media (max-width: 768px) {
  .access__address {
    margin-bottom: 1.3rem;
  }
}

@media (max-width: 768px) {
  .access__train {
    margin-bottom: 2.4rem;
  }
}

.access__train--top {
  margin-bottom: 0.8rem;
}

.map-button {
  background-color: inherit;
}
.map-button .button--tel__text {
  padding: 0;
}
.map-button .button--tel__number {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .map-button {
    display: inline;
  }
}

/* =========================================*/
/*reception section*/
/* =========================================*/
.reception {
  color: #1A7D84;
  max-width: 79rem;
  margin-bottom: 10.8rem;
}
@media (max-width: 768px) {
  .reception {
    margin-bottom: 4rem;
  }
}

.reception__h2-inner {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .reception__h2-inner {
    margin-bottom: 1.3rem;
  }
}

/*診療時間テーブル*/
#hours-in-visual {
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  #hours-in-visual {
    margin-bottom: 0.8rem;
  }
}
@media (max-width: 768px) {
  #hours-in-visual .hours__table-wrapper {
    width: 100%;
  }
}
#hours-in-visual .hours__table {
  width: 100%;
}
#hours-in-visual .hours__table--bordered .hours__table-header,
#hours-in-visual .hours__table--bordered .hours__table-cell {
  border: 1px solid #005f5f;
  text-align: center;
}
#hours-in-visual .hours__table-label,
#hours-in-visual .hours__table-wrapper::after,
#hours-in-visual .hours__table-wrapper::before {
  display: none;
}
#hours-in-visual .hours__table-wrapper {
  padding: 0;
  background-color: inherit;
}
#hours-in-visual .break {
  display: none;
}
@media (max-width: 768px) {
  #hours-in-visual .break {
    display: inline;
  }
}

.reception__closed,
.reception__reserve {
  display: inline;
}
@media (max-width: 768px) {
  .reception__closed,
  .reception__reserve {
    display: block;
  }
}

.reception__reserve {
  padding-left: 5rem;
}
@media (max-width: 768px) {
  .reception__reserve {
    padding: 0;
  }
}

/* =========================================*/
/*footer section*/
/* =========================================*/
.footer {
  width: 100%;
  height: 37.5rem;
  background-color: #1A7D84;
  color: #fff;
}
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    height: 42.8rem;
    justify-content: flex-start;
  }
}
.footer .button--tel__number {
  color: inherit;
}
.footer .access__address {
  gap: 1.8rem;
  justify-content: flex-start;
}
.footer .access__item {
  margin-bottom: 4.4rem;
}
@media (max-width: 768px) {
  .footer .access__item {
    margin-bottom: 4.2rem;
  }
}

.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding-top: 71px;
}
@media (max-width: 768px) {
  .footer__wrapper {
    display: block;
    padding-top: 41px;
  }
}

.footer__left,
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .footer__left,
  .footer__right {
    width: 100%;
  }
}

.footer__h1 {
  width: 24.5rem;
  margin-bottom: 2.7rem;
}
@media (max-width: 768px) {
  .footer__h1 {
    margin-bottom: 0.9rem;
  }
}

@media (max-width: 768px) {
  .footer .access__address {
    margin-bottom: 3.1rem;
  }
}
@media (max-width: 768px) {
  .footer .access__train {
    margin-bottom: 0;
  }
}/*# sourceMappingURL=style.css.map */