@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
body {
  color: #333333;
}

body {
  font-family: "Kosugi Maru", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 780px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 780px) {
  .sp-only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

/* マウスホバーがあるデバイスでのアニメーション（タッチデバイス除く） */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 780px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*==============================
  インナー幅用の基本CSS
==============================*/
.inner {
  width: 100%;
  padding-inline: 10px;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .inner {
    max-width: 1250px;
    padding-inline: 25px;
  }
}

/*==============================
  共通パーツ：logo
==============================*/
.logo__mark {
  display: block;
  width: 1.5625rem;
}
@media screen and (min-width: 780px) {
  .logo__mark {
    width: 4.1875rem;
  }
}

.logo__mark img {
  aspect-ratio: 54/86;
  width: 100%;
}

.logo__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.logo__text--dept {
  color: #FFF;
  font-size: 0.5625rem;
  line-height: 1;
  background-color: #1e8c63;
  padding: 0.25rem 0.1875rem;
}
@media screen and (min-width: 780px) {
  .logo__text--dept {
    font-size: 0.875rem;
    padding: 0.375rem 0.375rem;
  }
}

.logo__text--name {
  color: #1e8c63;
  font-size: 1.125rem;
  line-height: 1;
  margin-top: 0.125rem;
}
@media screen and (min-width: 780px) {
  .logo__text--name {
    font-size: 2.125rem;
    margin-top: 0.25rem;
  }
}

/*==============================
  共通パーツ：tel
==============================*/
.tel__link {
  display: inline-block;
  position: relative;
  color: #FFF;
  font-size: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #1e8c63;
  border-radius: 25px;
  padding: 0.375rem 0.625rem 0.375rem 1.5625rem;
}

.tel__link::before {
  position: absolute;
  content: "";
  background-image: url(../images/icon-tel@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  color: #FFF;
  width: 0.75rem;
  height: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 0.5rem;
}

/*==============================
  共通パーツ：セクションタイトル
==============================*/
.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e8c63;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .section-title {
    font-size: 2.125rem;
  }
}

/*==============================
  共通パーツ：btn
==============================*/
.btn {
  text-align: center;
}

.btn__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 55%;
  max-width: 15rem;
  margin-inline: auto;
  gap: 0.5rem;
  padding: 0.5rem 2.875rem;
  border: 1px solid #1e8c63;
  border-radius: 999px;
  position: relative;
}

.btn__text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e8c63;
}
@media screen and (min-width: 780px) {
  .btn__text {
    font-size: 1.25rem;
  }
}

.btn__arrow {
  position: relative;
}

.btn__arrow::before {
  position: absolute;
  content: "";
  background-image: url(../images/arrow-right@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.125rem;
  height: 0.875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 0.6875rem;
}
@media screen and (min-width: 780px) {
  .btn__arrow::before {
    width: 1.375rem;
    height: 0.875rem;
    left: 1.3125rem;
  }
}

/*==============================
  topページ　医師紹介セクション用パーツ
==============================*/
.doctor-card {
  width: 100%;
  max-width: 32.625rem;
  padding: 1.125rem;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 18px rgba(0, 162, 115, 0.11);
          box-shadow: 0 0 18px rgba(0, 162, 115, 0.11);
}
@media screen and (min-width: 780px) {
  .doctor-card {
    padding: 2.1875rem 2.3125rem;
  }
}

.doctor-card__dept {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  color: #FFF;
  font-size: 0.75rem;
  line-height: 1;
}
@media screen and (min-width: 780px) {
  .doctor-card__dept {
    padding: 0.5rem 1rem;
    font-size: 1.125rem;
  }
}

.doctor-card__dept--ent {
  background-color: #12a7e5;
}

.doctor-card__dept--derm {
  background-color: #dd811d;
}

.doctor-card__body {
  margin-top: 0.625rem;
}
@media screen and (min-width: 780px) {
  .doctor-card__body {
    margin-top: 0.875rem;
  }
}

.doctor-card__name {
  font-size: 1.25rem;
  line-height: 1;
  color: #1e8c63;
}
@media screen and (min-width: 780px) {
  .doctor-card__name {
    font-size: 1.75rem;
  }
}

.doctor-card__profile {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (min-width: 780px) {
  .doctor-card__profile {
    margin-top: 0.875rem;
    font-size: 1.0625rem;
  }
}

.doctor-card__info {
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .doctor-card__info {
    margin-top: 1.625rem;
  }
}

.doctor-card__info-title {
  color: #1e8c63;
  line-height: 1;
  font-size: 1.125rem;
}
@media screen and (min-width: 780px) {
  .doctor-card__info-title {
    font-size: 1.375rem;
  }
}

.doctor-card__info-row {
  margin-top: 0.625rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 47% 53%;
  grid-template-columns: 47% 53%;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (min-width: 780px) {
  .doctor-card__info-row {
    -ms-grid-columns: 40% 60%;
    grid-template-columns: 40% 60%;
    margin-top: 0.875rem;
    font-size: 1rem;
  }
}

/*==============================
  header
==============================*/
.header {
  height: 2.625rem;
}
@media screen and (min-width: 780px) {
  .header {
    height: 5rem;
  }
}

.header__inner {
  padding-inline: 0.625rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (min-width: 780px) {
  .header__inner {
    padding-inline: 0.875rem;
  }
}

.header__logo {
  background-color: #FFF;
  width: 9.125rem;
  height: 10.5rem;
  border-radius: 0 0 15px 0;
  z-index: 100;
  padding-top: 4.3125rem;
  margin-left: -0.625rem;
}
@media screen and (min-width: 780px) {
  .header__logo {
    width: 12.8125rem;
    height: 22.125rem;
    border-radius: 0 0 25px 0;
    padding-top: 9.375rem;
    margin-left: 0;
  }
}

.header__logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.header__logo-mark {
  display: block;
  width: 1.875rem;
}
@media screen and (min-width: 780px) {
  .header__logo-mark {
    width: 4.1875rem;
  }
}

.header__logo-mark img {
  aspect-ratio: 54/86;
  width: 100%;
}

.header__logo-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 780px) {
  .header__content {
    width: 82%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header__text {
  font-size: 0.625rem;
}
@media screen and (min-width: 780px) {
  .header__text {
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 780px) {
  .header__menu {
    color: #333333;
    font-size: 0.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.875rem;
  }
}

@media screen and (min-width: 780px) {
  .header__menu-news {
    color: #333333;
    font-size: 0.875rem;
    display: inline-block;
  }
}

.header__menu-tel {
  display: inline-block;
  position: relative;
  color: #FFF;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #1e8c63;
  border-radius: 25px;
  padding: 0.375rem 0.625rem 0.375rem 1.5625rem;
}
@media screen and (min-width: 780px) {
  .header__menu-tel {
    font-size: 1.125rem;
    font-weight: 700;
    padding: 0.4375rem 0.875rem 0.4375rem 2.875rem;
    border-radius: 100px;
  }
}

.header__menu-tel::before {
  position: absolute;
  content: "";
  background-image: url(../images/icon-tel@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  color: #FFF;
  width: 0.75rem;
  height: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 0.5rem;
}
@media screen and (min-width: 780px) {
  .header__menu-tel::before {
    width: 1.375rem;
    height: 1.375rem;
    left: 0.9375rem;
  }
}

/*==============================
   topページ　　ファーストビュー
==============================*/
.top-fv__inner {
  padding-inline: 1.5625rem;
  position: relative;
}
@media screen and (min-width: 780px) {
  .top-fv__inner {
    padding-inline: 3.125rem;
  }
}

.top-fv__image {
  height: 20rem;
}
@media screen and (min-width: 780px) {
  .top-fv__image {
    height: 80vh;
  }
}

.top-fv__image img {
  aspect-ratio: 1360/580;
  width: 100%;
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
@media screen and (min-width: 780px) {
  .top-fv__image img {
    height: 80vh;
  }
}

.top-fv__catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.3125rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: absolute;
  top: 0.625rem;
  right: 2rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1rem;
  color: #1e8c63;
}
@media screen and (min-width: 780px) {
  .top-fv__catch {
    top: 3.25rem;
    right: 7.6875rem;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 2.625rem;
    font-weight: 400;
    gap: 0.3125rem;
    letter-spacing: -0.07em;
  }
}

.top-fv__catch--right,
.top-fv__catch--left {
  display: inline-block;
  padding: 0.5rem 0.25rem;
  background-color: #FFF;
  border-radius: 6px;
}
@media screen and (min-width: 780px) {
  .top-fv__catch--right,
  .top-fv__catch--left {
    padding: 0.125rem 1rem;
    border-radius: 15px;
  }
}

.top-fv__catch--left {
  margin-top: 0.625rem;
}
@media screen and (min-width: 780px) {
  .top-fv__catch--left {
    margin-top: 0;
    margin-left: 2.625rem;
  }
}

/*==============================
  topページ　お知らせセクション
==============================*/
.top-news {
  padding-top: 3.125rem;
  position: relative;
}
@media screen and (min-width: 780px) {
  .top-news {
    padding-top: 3.75rem;
  }
}

.top-news__inner {
  padding-inline: 1.25rem;
}
@media screen and (min-width: 780px) {
  .top-news__inner {
    padding-inline: 4.375rem;
  }
}

/* ピックアップ */
.top-news__pickup {
  width: 80%;
  position: absolute;
  top: -2.5rem;
  right: 0;
  margin-right: 1.25rem;
}
@media screen and (min-width: 780px) {
  .top-news__pickup {
    width: 48.5%;
    top: -3.8125rem;
  }
}

.top-news__pickup-link {
  display: block;
  padding: 0.375rem 1.25rem 0.375rem 0.625rem;
  background-color: #FFF;
  border-radius: 10px 0 0 0;
  color: #333333;
}
@media screen and (min-width: 780px) {
  .top-news__pickup-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 1.25rem 1.0625rem;
  }
}

@media (any-hover: hover) {
  a .top-news__pickup-link {
    -webkit-transition: none;
    transition: none;
  }
  .top-news__pickup-link:hover {
    opacity: 1;
  }
}
.top-news__pickup-label {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: #FFF;
  border-radius: 999px;
}
@media screen and (min-width: 780px) {
  .top-news__pickup-label {
    font-size: 0.75rem;
  }
}

.top-news__pickup-label--important {
  background-color: #d55656;
}

.top-news__pickup-date {
  margin-left: 0.625rem;
  font-size: 0.75rem;
  color: #333333;
}
@media screen and (min-width: 780px) {
  .top-news__pickup-date {
    font-size: 1rem;
    font-weight: 700;
    margin-inline: 0.625rem 1.25rem;
  }
}

.top-news__pickup-title {
  font-size: 0.75rem;
  line-height: 1.5;
}
@media screen and (min-width: 780px) {
  .top-news__pickup-title {
    font-size: 1rem;
    font-weight: 700;
  }
}

.top-news__list {
  border-top: 1px solid #dfdfdf;
}
@media screen and (min-width: 780px) {
  .top-news__list {
    border-top: none;
    width: 67.5rem;
    max-width: 67.5rem;
    margin-inline: auto;
    margin-top: 1.125rem;
  }
}

.top-news__item {
  border-bottom: 1px solid #dfdfdf;
}

.top-news__link {
  display: block;
  padding: 0.6875rem 0.3125rem;
  text-decoration: none;
  color: #333333;
}
@media screen and (min-width: 780px) {
  .top-news__link {
    padding: 0.75rem 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 6.3125rem 5.9375rem 50rem;
    grid-template-columns: 6.3125rem 5.9375rem 50rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.top-news__label {
  display: inline-block;
  padding: 0.1875rem 0.5rem;
  border-radius: 999px;
  font-size: 0.625rem;
  color: #FFF;
  text-align: center;
  width: 5.375rem;
}
@media screen and (min-width: 780px) {
  .top-news__label {
    width: 6.3125rem;
    padding: 0.5rem 0;
    font-size: 0.75rem;
  }
}

.cat-important {
  background-color: #d55656;
}

.cat-duty {
  background-color: #3284cd;
}

.cat-news {
  background-color: #dfdfdf;
  color: #333333;
}

.top-news__date {
  margin-left: 0.3125rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 780px) {
  .top-news__date {
    margin-left: 0.9375rem;
    font-size: 1.0625rem;
  }
}

.top-news__text {
  margin-top: 0.375rem;
  margin-left: 0.1875rem;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media screen and (min-width: 780px) {
  .top-news__text {
    margin-top: 0;
    margin-left: 1.625rem;
    font-size: 1rem;
  }
}

.top-news__btn {
  margin-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .top-news__btn {
    margin-top: 2.1875rem;
  }
}

/*==============================
  topページ　受付時間セクション
==============================*/
.top-hours {
  margin-top: 2.75rem;
  padding: 2.125rem 1.25rem 0;
}
@media screen and (min-width: 780px) {
  .top-hours {
    margin-top: 5.625rem;
    width: 43.125rem;
    max-width: 43.125rem;
    margin-inline: auto;
    padding: 6.25rem 0 0;
  }
}

/* 中央寄せ ＋ 枠本体（下の四角部分） */
.top-hours__inner {
  max-width: 600px;
  margin-inline: auto;
  padding: 0 0.9375rem 0.625rem;
  background-color: #FFF;
  border: 2px solid #1e8c63;
  border-radius: 16px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 780px) {
  .top-hours__inner {
    max-width: 43.125rem;
    padding: 0 3.125rem 2.5rem;
    border: 4px solid #1e8c63;
    border-radius: 22px;
  }
}

/* 上の半円部分（ロゴが乗るところ） */
.top-hours__inner::before {
  content: "";
  position: absolute;
  top: -3.4375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 13.375rem;
  height: 14.5rem;
  background-color: #FFF;
  border: 2px solid #1e8c63;
  border-bottom: none;
  border-radius: 100%;
  z-index: -1;
}
@media screen and (min-width: 780px) {
  .top-hours__inner::before {
    top: -6.25rem;
    width: 24.25rem;
    height: 23.5rem;
    border: 4px solid #1e8c63;
  }
}

/* 半円の内側にある上辺の線を隠すマスク */
.top-hours__inner::after {
  content: "";
  position: absolute;
  top: -0.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 11.0625rem;
  height: 0.1875rem;
  border-radius: 6.25rem;
  background-color: #FFF;
}
@media screen and (min-width: 780px) {
  .top-hours__inner::after {
    width: 20.25rem;
    height: 0.5625rem;
    top: -0.40625rem;
  }
}
@media screen and (min-width: 1200px) {
  .top-hours__inner::after {
    width: 20.5625rem;
    height: 0.375rem;
    top: -0.3125rem;
  }
}

.top-hours__title {
  margin-top: -0.625rem;
  font-size: 1.25rem;
  z-index: 100;
  position: relative;
}
@media screen and (min-width: 780px) {
  .top-hours__title {
    margin-top: -0.75rem;
    font-size: 2.125rem;
  }
}

.top-hours__title::before {
  position: absolute;
  content: "";
  background-image: url(../images/logo-green@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: -2.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.75rem;
  height: 3rem;
  z-index: 100;
}
@media screen and (min-width: 780px) {
  .top-hours__title::before {
    top: -4.5rem;
    width: 3.4375rem;
    height: 5rem;
  }
}

.top-hours__title::before img {
  aspect-ratio: 54/86;
  width: 100%;
}

.top-hours__lead {
  margin-inline: -0.5rem;
  font-size: 0.6875rem;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .top-hours__lead {
    font-size: 1rem;
    margin-top: -0.125rem;
    letter-spacing: -0.04em;
  }
}

.top-hours__table-wrapper {
  overflow-x: auto;
  margin-top: 0.625rem;
}
@media screen and (min-width: 780px) {
  .top-hours__table-wrapper {
    margin-top: 1rem;
  }
}

.top-hours__table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.75rem;
}
@media screen and (min-width: 780px) {
  .top-hours__table {
    width: 35.625rem;
    max-width: 35.625rem;
    margin-inline: auto;
  }
}

.top-hours__th {
  padding: 0.5rem;
  background-color: #e6f8f1;
  border: 1px solid #333333;
  font-weight: 700;
}
@media screen and (min-width: 780px) {
  .top-hours__th {
    padding: 1rem;
    font-size: 1.1875rem;
  }
}

.top-hours__th--time {
  width: 30%;
  background-color: #e6f8f1;
}
@media screen and (min-width: 780px) {
  .top-hours__th--time {
    width: 27%;
  }
}

.top-hours__time {
  padding: 0.5rem;
  border: 1px solid #333333;
  background-color: #FFF;
  font-weight: 700;
}
@media screen and (min-width: 780px) {
  .top-hours__time {
    font-size: 1.25rem;
  }
}

.top-hours__cell {
  padding: 0.5rem;
  border: 1px solid #333333;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}
@media screen and (min-width: 780px) {
  .top-hours__cell {
    padding: 1.1875rem;
    font-size: 1.4375rem;
  }
}

.top-hours__cell--important::before {
  position: absolute;
  content: "※";
  color: #c62323;
  top: 0.125rem;
  right: 0.125rem;
  font-size: 0.625rem;
}
@media screen and (min-width: 780px) {
  .top-hours__cell--important::before {
    font-size: 1rem;
  }
}

.top-hours__note {
  font-size: 0.75rem;
  line-height: 1.1;
  margin-top: 0.625rem;
  color: #333333;
}
@media screen and (min-width: 780px) {
  .top-hours__note {
    font-size: 1rem;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
  }
}

.top-hours__note--important {
  color: #c62323;
}

.top-hours__btn {
  margin-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .top-hours__btn {
    margin-top: 2.1875rem;
  }
}

.top-hours__btn .btn__arrow::before {
  background-image: url(../images/arrow-down@2x@2x.png);
}

/*==============================
   topページ　　医師紹介セクション
==============================*/
.top-doctors {
  margin-block: 3.125rem 4rem;
}
@media screen and (min-width: 780px) {
  .top-doctors {
    margin-block: 7.125rem 8rem;
  }
}

.top-doctors__inner {
  padding-inline: 1.25rem;
}
@media screen and (min-width: 780px) {
  .top-doctors__inner {
    padding-inline: 4.375rem;
  }
}

.top-doctors__list {
  padding-top: 1.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 1.5rem;
  width: 100%;
  max-width: 32.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .top-doctors__list {
    margin-top: 2.375rem;
    -ms-grid-columns: 1fr 2.25rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    width: 67.5rem;
    max-width: 67.5rem;
    margin-inline: auto;
    row-gap: 1.875rem;
    -webkit-column-gap: 2.25rem;
       -moz-column-gap: 2.25rem;
            column-gap: 2.25rem;
  }
}

/*==============================
   topページ　　アクセスセクション
==============================*/
.top-access {
  padding-block: 1.625rem 3.25rem;
  background-color: #e6f8f1;
}
@media screen and (min-width: 780px) {
  .top-access {
    padding-block: 4.375rem 2.8125rem;
  }
}

.top-access__inner {
  padding-inline: 1.25rem;
}

.top-access__map {
  margin-top: 0.625rem;
}
@media screen and (min-width: 780px) {
  .top-access__map {
    margin-top: 1.25rem;
    margin-inline: auto;
  }
}

.top-access__map iframe {
  width: 100%;
  height: 15.625rem;
}
@media screen and (min-width: 780px) {
  .top-access__map iframe {
    height: 20.625rem;
  }
}

.top-access__content {
  margin-top: 0.3125rem;
  padding-inline: 0.3125rem;
  font-size: 0.75rem;
  line-height: 1;
}
@media screen and (min-width: 780px) {
  .top-access__content {
    width: 75rem;
    max-width: 75rem;
    margin-top: 1.25rem;
    font-size: 1rem;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1.75rem;
  }
}

.top-access__list {
  margin-top: 0.625rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2.1875rem 0.5rem 1fr;
  grid-template-columns: 2.1875rem 1fr;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  row-gap: 0.6875rem;
}
@media screen and (min-width: 780px) {
  .top-access__list {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 0;
  }
}

.top-access__label,
.top-access__detail {
  display: inline-block;
}

.top-access__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1e8c63;
  background-color: #FFF;
  border: 1px solid #1e8c63;
  width: 2.1875rem;
  text-align: center;
  margin-right: 0.3125rem;
  padding-block: 0.125rem;
}
@media screen and (min-width: 780px) {
  .top-access__label {
    margin-right: 0.5rem;
  }
}

.top-access__detail {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (min-width: 780px) {
  .top-access__detail {
    margin-right: 1.5rem;
  }
}

.top-access__bottom {
  margin-top: 1.875rem;
  max-width: 21.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  gap: 1.25rem;
}
@media screen and (min-width: 780px) {
  .top-access__bottom {
    width: 34.0625rem;
    max-width: 34.0625rem;
    margin-top: 2.5rem;
    gap: 2.5rem;
  }
}

.top-access__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-access__logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3125rem;
}
@media screen and (min-width: 780px) {
  .top-access__logo-link {
    gap: 1.25rem;
  }
}

.top-access__logo-mark {
  width: 2.375rem;
}
@media screen and (min-width: 780px) {
  .top-access__logo-mark {
    width: 3.9375rem;
  }
}

.top-access__logo-text--dept {
  font-size: 0.6875rem;
}
@media screen and (min-width: 780px) {
  .top-access__logo-text--dept {
    font-size: 1.0625rem;
  }
}

.top-access__logo-text--name {
  font-size: 1.625rem;
}
@media screen and (min-width: 780px) {
  .top-access__logo-text--name {
    font-size: 2.3125rem;
  }
}

.top-access__tel-link {
  font-size: 1rem;
  padding: 0.4375rem 0.9375rem 0.4375rem 2.5rem;
}
@media screen and (min-width: 780px) {
  .top-access__tel-link {
    font-size: 1.5625rem;
    padding: 0.6875rem 2.25rem 0.6875rem 4rem;
    border-radius: 100px;
  }
}

.top-access__tel-link::before {
  width: 1.1875rem;
  height: 1.1875rem;
  left: 0.875rem;
}
@media screen and (min-width: 780px) {
  .top-access__tel-link::before {
    width: 1.9375rem;
    height: 1.9375rem;
    left: 1.375rem;
  }
}

/*==============================
  footer
==============================*/
.footer {
  height: 3.25rem;
}

.footer__inner {
  padding-inline: 1.25rem;
}

.footer__copy {
  display: inline-block;
  padding-block: 0.8125rem;
  width: 100%;
  text-align: center;
  font-size: 0.6875rem;
  color: #1e8c63;
}
@media screen and (min-width: 780px) {
  .footer__copy {
    padding-block: 1.25rem;
    font-size: 1rem;
  }
}
/*# sourceMappingURL=styles.css.map */