@charset "UTF-8";
:root {
  --font-size-base: 20px;
  --font-weight-base: 500;
  --line-height-base: 2;
  --font-size-base-sp: 16px;
  --font-family-base: "Zen Maru Gothic", sans-serif;
  --theme-color-orange: #e38650;
  --theme-color-l-orange: #e79767;
  --theme-color-d-orange: #e38750;
  --font-color-black: #402e23;
  --font-color-white: #fff;
  --font-color-brawn: #743c1b;
  --font-color-d-black: #201c19;
  --bg-color-white: #fff;
  --bg-color-gray: #c2c0bd;
  --bg-color-d-pink: #ffb0a0;
  --bg-color-pink: #ffe6e1;
  --bg-color-l-pink: #fff5ef;
  --bg-color-l-yellow: #ffe9c8;
  --bg-color-l-orange: #ffd7af;
  --bg-color-circle-pink: #ffb0a0;
  --bg-color-circle-l-pink: #ffefec;
  --bg-color-circle-orange: #ffbc85;
  --bg-color-circle-l-orange: #fff8ed;
  --bg-color-circle-yellow: #ffd37f;
  --bg-color-circle-l-yellow: #fff6e8;
  --relation-icon-color: #e38750;
}

/* ===========================================
共通設定
=========================================== */
.home-page-content{
body {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--font-color-black);
  font-family: var(--font-family-base);
  font-weight: 500;
  position: relative;
}
@media not screen and (min-width: 768px) {
  body {
    font-size: var(--font-size-base-sp);
  }
}

.inline-block {
  display: inline-block;
  font-weight: inherit;
}

@media not screen and (min-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .hidden-pc.not-hidden-tb {
    display: initial;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .hidden-tb {
    display: none;
  }
}

.inner {
  padding-inline: 40px;
  max-width: 1280px;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .inner {
    padding-inline: 15px;
  }
}

.wide-inner {
  padding-inline: 40px;
  max-width: 1580px;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .wide-inner {
    padding-inline: 15px;
  }
}

.button {
  position: relative;
  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;
  min-width: 400px;
  font-weight: 700;
  padding-top: 24px;
  padding-bottom: 23px;
  background: var(--theme-color-orange);
  border: 2px solid var(--theme-color-orange);
  border-radius: 100px;
  color: var(--font-color-white);
  line-height: 1;
}
@media not screen and (min-width: 768px) {
  .button {
    min-width: 300px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .button {
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .button:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.button.button--arrow-down .fa-circle-down {
  position: absolute;
  top: 50%;
  right: 1.65em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.button.button--arrow-right .fa-circle-right,.button.button--arrow-right .fa-external-link-alt {
  position: absolute;
  top: 50%;
  right: 1.65em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.button.button--width-380 {
  min-width: 380px;
}
@media not screen and (min-width: 768px) {
  .button.button--width-380 {
    min-width: 300px;
  }
}
.button.button--width-350 {
  min-width: 350px;
}
@media not screen and (min-width: 768px) {
  .button.button--width-350 {
    min-width: 300px;
  }
}

@media not screen and (min-width: 768px) {
  .button.button--icon-align-right {
    min-width: 330px;
  }
}

.button.button--width-290 {
  min-width: 290px;
}
@media not screen and (min-width: 768px) {
  .button.button--width-290 {
    min-width: 290px;
  }
}
.button.button--icon-align-right .fa-circle-right {
  right: 0.6em;
}
.button.button--bg-white {
  background: var(--font-color-white);
  color: var(--font-color-black);
  font-weight: 500;
  padding-top: 26px;
  padding-bottom: 25px;
  border: 4px solid var(--theme-color-d-orange);
}
.button.button--bg-white.button--arrow-right .fa-circle-right {
  color: var(--theme-color-d-orange);
}

.heading {
  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;
  gap: 18px;
}
@media not screen and (min-width: 768px) {
  .heading {
    gap: 6px;
  }
}
.heading.heading--black .heading-en,
.heading.heading--black .heading-ja {
  color: var(--font-color-black);
}
.heading.heading--left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.heading-en {
  font-size: 20px;
  color: var(--theme-color-orange);
  line-height: 1;
  font-weight: inherit;
}
@media not screen and (min-width: 768px) {
  .heading-en {
    font-size: 16px;
  }
}

.heading-ja {
  font-size: 40px;
  color: var(--font-color-brawn);
  line-height: 1;
  font-weight: inherit;
}
@media not screen and (min-width: 768px) {
  .heading-ja {
    font-size: 24px;
  }
}

/* ===========================================
メッセージ
=========================================== */
.message__box {
  margin-top: 38px;
  padding-top: 163px;
  padding-bottom: 154px;
  border-radius: 60px;
  background: url(../images/message-bg.webp) no-repeat center center/cover;
}
@media not screen and (min-width: 768px) {
  .message__box {
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 40px;
  }
}

.message__title {
  text-align: center;
  font-size: 30px;
  line-height: 1.5;
  color: var(--font-color-white);
  padding-inline: 40px;
  max-width: 1080px;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .message__title {
    font-size: 24px;
    line-height: 1.4;
    padding-inline: 15px;
  }
}

.message__text {
  text-align: center;
  margin-top: 45px;
  line-height: 2;
  color: var(--font-color-white);
  padding-inline: 40px;
  max-width: 1080px;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .message__text {
    text-align: left;
    line-height: 1.5;
    padding-inline: 15px;
  }
}

.inspection {
  margin-top: 125px;
}
@media not screen and (min-width: 768px) {
  .inspection {
    margin-top: 60px;
  }
}

.inspection__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 30px;
}
@media not screen and (min-width: 768px) {
  .inspection__tabs {
    gap: 10px;
  }
}

.inspection__tab {
  padding-top: 33px;
  padding-bottom: 32px;
  width: 31.6666666667%;
  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: 10px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  color: var(--font-color-black);
}
@media not screen and (min-width: 768px) {
  .inspection__tab {
    padding-top: 12px;
    padding-bottom: 12px;
    width: 33.3333333333%;
    gap: 4px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .inspection__tab {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    outline: none;
  }
  .inspection__tab:hover {
    opacity: 0.7;
  }
}
.inspection__tab.is-active {
  pointer-events: none;
}
.inspection__tab:nth-of-type(1) {
  background: var(--bg-color-pink);
}
.inspection__tab:nth-of-type(1) .inspection__tab-icon {
  max-width: 30px;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .inspection__tab:nth-of-type(1) .inspection__tab-icon {
    max-width: 20px;
  }
}
.inspection__tab:nth-of-type(2) {
  background: var(--bg-color-l-yellow);
}
.inspection__tab:nth-of-type(2) .inspection__tab-icon {
  max-width: 37px;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .inspection__tab:nth-of-type(2) .inspection__tab-icon {
    max-width: 22px;
  }
}
.inspection__tab:nth-of-type(3) {
  background: var(--bg-color-l-orange);
}
.inspection__tab:nth-of-type(3) .inspection__tab-icon {
  max-width: 32px;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .inspection__tab:nth-of-type(3) .inspection__tab-icon {
    max-width: 20px;
  }
}

.inspection__tab-text {
  font-size: 30px;
  line-height: 1;
}
@media not screen and (min-width: 768px) {
  .inspection__tab-text {
    font-size: 14px;
  }
}

.inspection__content {
  display: none;
  position: relative;
  z-index: 8;
  padding-top: 70px;
  padding-bottom: 100px;
}
@media not screen and (min-width: 768px) {
  .inspection__content {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.inspection__content::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
@media not screen and (min-width: 768px) {
  .inspection__content::after {
    width: 100%;
  }
}
.inspection__content:nth-of-type(1) {
  background: var(--bg-color-pink);
}
.inspection__content:nth-of-type(1)::after {
  background: url(../images/stomach-bg.webp) no-repeat top left/cover;
}
.inspection__content:nth-of-type(2) {
  background: var(--bg-color-l-yellow);
}
.inspection__content:nth-of-type(2)::after {
  background: url(../images/colon-bg.webp) no-repeat top left/cover;
}
.inspection__content:nth-of-type(3) {
  background: var(--bg-color-l-orange);
}
.inspection__content:nth-of-type(3)::after {
  background: url(../images/diseases-bg.webp) no-repeat top left/cover;
}
.inspection__content.is-visible {
  display: block;
}

.inspection__title {
  font-size: 40px;
  line-height: 1.5;
}
@media not screen and (min-width: 768px) {
  .inspection__title {
    font-size: 20px;
  }
}

.inspection__box {
  margin-top: 44px;
  padding-top: 50px;
  padding-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
  background: var(--bg-color-white);
  width: 66.6666666667%;
  border-radius: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media not screen and (min-width: 768px) {
  .inspection__box {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    border-radius: 40px;
    gap: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.inspection__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.inspection__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .inspection__list-item {
    font-size: 14px;
    gap: 4px;
    line-height: 1.7;
  }
}

.inspection__list-icon {
  color: var(--theme-color-orange);
}

.inspection__buttons {
  margin-top: 47px;
}
@media not screen and (min-width: 768px) {
  .inspection__buttons {
    text-align: center;
  }
}

/* ===========================================
内視鏡検査
=========================================== */
.endoscopy {
  --inner-width: 1200px;
  --inner-width-tb: 748px;
  --gap: 45px;
  position: relative;
  padding-top: 151px;
  padding-bottom: 300px;
  background: var(--bg-color-l-pink);
}
@media not screen and (min-width: 768px) {
  .endoscopy {
    padding-top: 60px;
    padding-bottom: 160px;
  }
}
.endoscopy::after {
  position: absolute;
  content: "";
  top: 19.3163751987%;
  left: 0;
  width: 88.5416666667%;
  height: 75.3577106518%;
  background: var(--bg-color-white);
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
}
@media not screen and (min-width: 768px) {
  .endoscopy::after {
    top: 21%;
  }
}

.endoscopy__inner {
  position: relative;
  z-index: 8;
}

.endoscopy__content {
  position: relative;
  z-index: 8;
  margin-top: 57px;
  display: grid;
  grid-template-columns: [full-start] 1fr [inner-start] calc(var(--inner-width) / 2 - var(--gap) / 2) var(--gap) calc(var(--inner-width) / 2 - var(--gap) / 2) [inner-end] 1fr [full-end];
  overflow-x: hidden;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  row-gap: 48px;
}
@media not screen and (min-width: 768px) {
  .endoscopy__content {
    grid-template-columns: [full-start] 1fr [inner-start] min(100% - 30px, 540px) [inner-end] 1fr [full-end];
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .endoscopy__content {
    grid-template-columns: [full-start] 1fr [inner-start] calc(var(--inner-width-tb) / 2 - var(--gap) / 2) var(--gap) calc(var(--inner-width-tb) / 2 - var(--gap) / 2) [inner-end] 1fr [full-end];
  }
}
.endoscopy__content.is-reverse .endoscopy__image {
  grid-column: 4/full-end;
}
@media not screen and (min-width: 768px) {
  .endoscopy__content.is-reverse .endoscopy__image {
    grid-column: inner-start/full-end;
  }
}
.endoscopy__content.is-reverse .endoscopy__about {
  grid-column: inner-start/3;
}
@media not screen and (min-width: 768px) {
  .endoscopy__content.is-reverse .endoscopy__about {
    grid-column: inner-start/inner-end;
  }
}

.endoscopy__content + .endoscopy__content {
  margin-top: 131px;
}
@media not screen and (min-width: 768px) {
  .endoscopy__content + .endoscopy__content {
    margin-top: 80px;
  }
}

.endoscopy__image {
  grid-column: full-start/3;
  grid-row: 1/2;
}
.endoscopy__image img {
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .endoscopy__image {
    grid-column: full-start/inner-end;
    grid-row: 1/2;
  }
}

.endoscopy__about {
  grid-column: 4/inner-end;
  grid-row: 1/2;
}
@media not screen and (min-width: 768px) {
  .endoscopy__about {
    grid-column: inner-start/inner-end;
    grid-row: 2/3;
  }
}

.endoscopy__title {
  margin-top: 49px;
  font-size: 40px;
  line-height: 1;
}
@media not screen and (min-width: 768px) {
  .endoscopy__title {
    margin-top: 0;
    font-size: 24px;
  }
}

.endoscopy__text {
  margin-top: 45px;
}
@media not screen and (min-width: 768px) {
  .endoscopy__text {
    margin-top: 30px;
  }
}

.endoscopy__list {
  margin-top: 37px;
  padding-left: 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.endoscopy__link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (hover: hover) and (pointer: fine) {
  .endoscopy__link {
    -webkit-transition: gap 0.3s ease-in-out;
    transition: gap 0.3s ease-in-out;
  }
  .endoscopy__link:hover {
    gap: 13px;
  }
}
.endoscopy__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--theme-color-l-orange);
}
.endoscopy__link .fa-right-long {
  color: var(--theme-color-orange);
}

.endoscopy__boxes {
  grid-column: inner-start/inner-end;
  grid-row: 2/3;
  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: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding-top: 70px;
  padding-bottom: 80px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 60px;
  background: var(--bg-color-l-yellow);
}
@media not screen and (min-width: 768px) {
  .endoscopy__boxes {
    grid-column: inner-start/inner-end;
    grid-row: 3/4;
    border-radius: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.endoscopy__box {
  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;
  gap: 7px;
  background: var(--bg-color-white);
  min-width: 240px;
  border-radius: 20px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 10px;
  padding-right: 10px;
  border: 4px solid var(--bg-color-l-orange);
}
@media (hover: hover) and (pointer: fine) {
  .endoscopy__box {
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .endoscopy__box:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

.endoscopy__box-ja {
  line-height: 1;
  color: var(--font-color-d-black);
}

.endoscopy__box-en {
  color: var(--theme-color-orange);
  font-size: 16px;
  line-height: 1;
}

/* ===========================================
生活習慣病
=========================================== */
.diseases {
  background: var(--bg-color-l-pink);
  overflow-x: hidden;
}

.diseases__wrapper {
  position: relative;
  padding-top: 144px;
  padding-bottom: 149px;
  background: url(../images/diseases-wrapper-bg.webp) no-repeat center top/cover;
}
@media not screen and (min-width: 768px) {
  .diseases__wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.diseases__wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 110%;
  aspect-ratio: 1920/50;
  background: url(../images/diseases-wrapper-top-bg.webp) no-repeat center top/contain;
}

.diseases__text {
  margin-top: 45px;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .diseases__text {
    margin-top: 30px;
  }
}

.diseases__buttons {
  margin-top: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media not screen and (min-width: 768px) {
  .diseases__buttons {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

.diseases__cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media not screen and (min-width: 768px) {
  .diseases__cards {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .diseases__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.diseases-card-link {
  border-radius: 20px;
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .diseases-card-link {
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .diseases-card-link:hover .diseases-card {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.diseases-card-link:nth-of-type(2) .diseases-card {
  background: url(../images/diseases-card1-bg.webp) no-repeat center center/cover;
}
.diseases-card-link:nth-of-type(1) .diseases-card {
  background: url(../images/diseases-card2-bg.webp) no-repeat center center/cover;
}
.diseases-card-link:nth-of-type(6) .diseases-card {
  background: url(../images/diseases-card3-bg.webp) no-repeat center center/cover;
}
.diseases-card-link:nth-of-type(3) .diseases-card {
  background: url(../images/diseases-card4-bg.webp) no-repeat center center/cover;
}
.diseases-card-link:nth-of-type(4) .diseases-card {
  background: url(../images/diseases-card5-bg.webp) no-repeat center center/cover;
}
.diseases-card-link:nth-of-type(5) .diseases-card {
  background: url(../images/diseases-card6-bg.webp) no-repeat center center/cover;
}

.diseases-card {
  padding-top: 48px;
  padding-bottom: 55px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  height: 100%;
}
@media not screen and (min-width: 768px) {
  .diseases-card {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }
}

.diseases-card__head {
  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;
  gap: 23px;
  padding-left: 4px;
  padding-right: 4px;
}
@media not screen and (min-width: 768px) {
  .diseases-card__head {
    font-size: 14px;
    gap: 12px;
  }
}

.diseases-card__icon {
  color: var(--font-color-white);
  text-align: center;
  font-size: 40px;
}
@media not screen and (min-width: 768px) {
  .diseases-card__icon {
    font-size: 32px;
  }
}

.diseases-card__title {
  color: var(--font-color-white);
}

.diseases-card__text {
  margin-top: 16px;
  padding-left: 33px;
  padding-right: 67px;
  color: var(--font-color-white);
}
@media not screen and (min-width: 768px) {
  .diseases-card__text {
    margin-top: 12px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }
}

.relation {
  position: relative;
  padding-top: 212px;
  padding-bottom: 165px;
  background: url(../images/relation-bg.webp) no-repeat center bottom/cover;
}
@media not screen and (min-width: 768px) {
  .relation {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
.relation::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1920/50;
  background: url(../images/relation-bottom-bg.webp) no-repeat center bottom/contain;
}

.relation__content {
  display: grid;
  grid-template-columns: 1fr 551px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 88px;
}
@media not screen and (min-width: 768px) {
  .relation__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .relation__content {
    grid-template-columns: 1fr;
  }
}

.relation__title {
  font-size: 40px;
}
@media not screen and (min-width: 768px) {
  .relation__title {
    font-size: 24px;
  }
}

.relation__text {
  margin-top: 40px;
}

.relation__buttons {
  margin-top: 52px;
}

.relation__links {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.relation__title-wrapper {
  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;
  padding-top: 234px;
  padding-bottom: 210px;
  width: 100%;
  background: url(../images/relation-circle.webp) no-repeat center bottom/contain;
}
@media not screen and (min-width: 768px) {
  .relation__title-wrapper {
    padding-top: 150px;
    padding-bottom: 110px;
    background: url(../images/relation-circle.webp) no-repeat center bottom/305px auto;
  }
}

.relation__links-title {
  display: inline-block;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  background-image: -webkit-gradient(linear, left top, right top, from(#e38750), to(#e6b961));
  background-image: linear-gradient(to right, #e38750, #e6b961);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media not screen and (min-width: 768px) {
  .relation__links-title {
    font-size: 28px;
  }
}

.relation__link {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 15px solid;
  background: var(--bg-color-white);
}
@media not screen and (min-width: 768px) {
  .relation__link {
    width: 120px;
    height: 120px;
    border-width: 5px;
  }
}
.relation__link:nth-of-type(1) {
  top: -66px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-color: var(--bg-color-circle-pink);
}
@media not screen and (min-width: 768px) {
  .relation__link:nth-of-type(1) {
    top: 0;
  }
}
.relation__link:nth-of-type(1) .relation__link-inner {
  border-color: var(--bg-color-circle-l-pink);
}
.relation__link:nth-of-type(1) .relation__link-icon {
  width: 30px;
}
@media not screen and (min-width: 768px) {
  .relation__link:nth-of-type(1) .relation__link-icon {
    width: 20px;
  }
}
.relation__link:nth-of-type(2) {
  bottom: 0;
  left: -30px;
  border-color: var(--bg-color-circle-orange);
}
@media not screen and (min-width: 768px) {
  .relation__link:nth-of-type(2) {
    left: calc(50% - 172px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .relation__link:nth-of-type(2) {
    left: calc(50% - 310px);
  }
}
.relation__link:nth-of-type(2) .relation__link-inner {
  border-color: var(--bg-color-circle-l-orange);
}
.relation__link:nth-of-type(2) .relation__link-icon {
  width: 32px;
}
@media not screen and (min-width: 768px) {
  .relation__link:nth-of-type(2) .relation__link-icon {
    width: 20px;
  }
}
.relation__link:nth-of-type(3) {
  bottom: 0;
  right: -30px;
  border-color: var(--bg-color-circle-yellow);
}
@media not screen and (min-width: 768px) {
  .relation__link:nth-of-type(3) {
    right: calc(50% - 172px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .relation__link:nth-of-type(3) {
    right: calc(50% - 310px);
  }
}
.relation__link:nth-of-type(3) .relation__link-inner {
  border-color: var(--bg-color-circle-l-yellow);
}
.relation__link:nth-of-type(3) .relation__link-icon {
  width: 37px;
}
@media not screen and (min-width: 768px) {
  .relation__link:nth-of-type(3) .relation__link-icon {
    width: 22px;
  }
}

.relation__link-inner {
  padding-top: 20px;
  padding-bottom: 20px;
  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;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 15px solid;
}
@media not screen and (min-width: 768px) {
  .relation__link-inner {
    border-width: 5px;
  }
}

.relation__link-text {
  margin-top: 16px;
}
@media not screen and (min-width: 768px) {
  .relation__link-text {
    margin-top: 4px;
    font-size: 14px;
    text-align: center;
    line-height: 1.2;
  }
}

.relation__link-arrow {
  margin-top: 30px;
  color: var(--relation-icon-color);
}
@media not screen and (min-width: 768px) {
  .relation__link-arrow {
    margin-top: 4px;
  }
}

/* ===========================================
選ばれる理由
=========================================== */
.feature {
  padding-top: 150px;
}
@media not screen and (min-width: 768px) {
  .feature {
    padding-top: 100px;
  }
}

.feature__inner {
  padding-inline: 40px;
  max-width: 1800px;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .feature__inner {
    padding-inline: 15px;
  }
}

.feature__area {
  position: relative;
  padding-top: 154px;
  padding-bottom: 151px;
  background: var(--bg-color-l-orange);
  border-radius: 60px;
  overflow: hidden;
}
@media not screen and (min-width: 768px) {
  .feature__area {
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 40px;
  }
}
.feature__area::after {
  position: absolute;
  content: "";
  z-index: 8;
  top: 0;
  right: 0;
  width: 58.1976744186%;
  aspect-ratio: 1001/609;
  background: url(../images/feature-bg.webp) no-repeat top right/contain;
  mix-blend-mode: color-burn;
}

.feature__content {
  position: relative;
  display: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-inline: 20px;
  max-width: 1520px;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .feature__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding-inline: 10px;
  }
}
.feature__content.is-visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.feature__image {
  position: absolute;
  z-index: 8;
  top: 56px;
  left: 20px;
}
@media not screen and (min-width: 768px) {
  .feature__image {
    position: relative;
    top: initial;
    left: initial;
    margin-top: 40px;
  }
}
.feature__image img {
  max-width: clamp(520px, 32.0vw + 223.333px, 730px);
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  .feature__image img {
    max-width: clamp(420px, 25.0vw + 223.333px, 730px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .feature__image{
    top: 15px;
  }
  .feature__image img {
    max-width: clamp(420px, 23.0vw + 223.333px, 730px);
  }
}
@media not screen and (min-width: 768px) {
  .feature__image img {
    max-width: 100%;
  }
}

.feature-box {
  position: relative;
  z-index: 7;
  margin-top: clamp(192px, -35.619vw + 914.286px, 250px);
  padding-top: 90px;
  padding-bottom: 50px;
  padding-left: clamp(20px, 5.833vw - 50px, 62px);
  padding-right: clamp(20px, 6.389vw - 56.667px, 66px);
  border-radius: 20px;
  width: clamp(600px, 63.333vw - 160px, 790px);
  background: var(--theme-color-d-orange);
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .feature-box {
    margin-top: 210px;
  }
}
@media not screen and (min-width: 768px) {
  .feature-box {
    margin-top: 20px;
    padding-top: 30px;
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
  }
}

.feature-box__num {
  position: absolute;
  top: 7px;
  right: -4px;
  font-size: clamp(120px, 11.111vw - 13.333px, 200px);
  line-height: 0.7;
  color: var(--font-color-white);
  opacity: 0.2;
}
@media not screen and (min-width: 768px) {
  .feature-box__num {
    font-size: 100px;
  }
}

.feature-box__title {
  font-size: 40px;
  color: var(--font-color-white);
}
@media not screen and (min-width: 768px) {
  .feature-box__title {
    font-size: 24px;
  }
}

.feature-box__text {
  margin-top: 38px;
  color: var(--font-color-white);
}
@media not screen and (min-width: 768px) {
  .feature-box__text {
    margin-top: 20px;
  }
}

.feature-box__buttons {
  margin-top: 18px;
  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: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media not screen and (min-width: 768px) {
  .feature-box__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}

.feature-box__button {
  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;
  min-width: 210px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: var(--bg-color-white);
  border: 4px solid var(--bg-color-l-orange);
  border-radius: 100px;
  color: var(--font-color-d-black);
}
@media (hover: hover) and (pointer: fine) {
  .feature-box__button {
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    min-width: 210px;
  }
  .feature-box__button:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
@media not screen and (min-width: 768px) {
  .feature-box__button {
    min-width: 145px;
  }
  @media (hover: hover) and (pointer: fine) {
    .feature-box__button {
      min-width: 145px;
    }
  }
}

.feature__slides {
  margin-top: 51px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-inline: 20px;
  max-width: 1520px;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .feature__slides {
    margin-top: 30px;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    padding-inline: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .feature__slides {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature__slide-link {
  
}
.feature__slide-link:nth-of-type(1) .feature__slide {
  background: url(../images/feature-slide1-bg.webp) no-repeat center center/cover;
}
.feature__slide-link:nth-of-type(2) .feature__slide {
  background: url(../images/feature-slide2-bg.webp) no-repeat center center/cover;
}
.feature__slide-link:nth-of-type(3) .feature__slide {
  background: url(../images/feature-slide3-bg.webp) no-repeat center center/cover;
}
.feature__slide-link:nth-of-type(4) .feature__slide {
  background: url(../images/feature-slide4-bg.webp) no-repeat center center/cover;
}
@media (hover: hover) and (pointer: fine) {
  .feature__slide-link:hover .feature__slide {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
            border-radius: 20px;
  }
}
.feature__slide {
  aspect-ratio: 350/270;
  padding: 10px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  border-radius: 20px;
}
@media not screen and (min-width: 768px) {
  .feature__slide {
    border-radius: 5px;
  }
}
.feature__num {
  font-size: 100px;
  line-height: 0.7;
  color: var(--font-color-white);
}
@media not screen and (min-width: 768px) {
  .feature__num {
    font-size: 40px;
    text-align: center;
  }
}

.feature__content {
  display: none;
  opacity: 0;
}

.feature__content.is-visible {
  display: flex;
  opacity: 0;
}

.feature__content.is-visible.is-fade {
  opacity: 1;
  transition: opacity 1s ease;
}

.feature__slide-link.is-active .feature__slide {
  opacity: 1;
  transform: scale(1.1);
  color: #e38650;
  border-radius: 20px;
  border: 4px solid #e38650;
}
@media not screen and (min-width: 768px) {
  .feature__slide-link.is-active .feature__slide {
    border-radius: 5px;
  }
}
.feature-num{
  display: flex;
  margin: -5rem auto 0;
  max-width: 1520px;
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .feature-num{
    margin: 1rem auto 0;
  }
}
.feature-num__item {
  cursor: pointer;
  font-size: clamp(2.2rem, 3.0vw, 4rem);
  color: var(--font-color-white);
  font-weight: 800;
  padding: 0 2rem;
}

.feature-num__item.is-active {
  opacity: 1;
  text-decoration: underline;
}

.feature-num__item:not(.is-active) {
  opacity: 0.7;
}

@media not screen and (min-width: 768px) {
  .feature-num{
    display: none;
  }
  .feature-num__item{
    line-height: 1;
    font-size: 5rem;
  }
}
/* ===========================================
ご挨拶
=========================================== */
.greeting {
  position: relative;
  padding-top: 109px;
  padding-bottom: clamp(178px, -100.909vw + 2115.455px, 400px);
  overflow-x: hidden;
}
@media not screen and (min-width: 768px) {
  .greeting {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.greeting__content {
  display: grid;
  grid-template-columns: 48.6666666667% 1fr;
  -webkit-column-gap: 44px;
     -moz-column-gap: 44px;
          column-gap: 44px;
  row-gap: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media not screen and (min-width: 768px) {
  .greeting__content {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}

@media not screen and (min-width: 768px) {
  .greeting__image {
    text-align: center;
  }
}
.greeting__image img {
  width: 100%;
  border-radius: 20px;
}
@media not screen and (min-width: 768px) {
  .greeting__image img {
    max-width: 540px;
  }
}

@media not screen and (min-width: 768px) {
  .greeting__heading.heading.heading--left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.greeting__title {
  margin-top: 41px;
  font-size: 30px;
  line-height: 1.33;
  letter-spacing: 0.06em;
}
@media not screen and (min-width: 768px) {
  .greeting__title {
    font-size: 24px;
  }
}

.greeting__text {
  margin-top: 42px;
}

.greeting__buttons {
  grid-column: 1/3;
  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: 30px;
}
@media not screen and (min-width: 768px) {
  .greeting__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    grid-column: 1/2;
  }
}

.greeting__sub-image {
  position: absolute;
  bottom: 51px;
  right: 0;
}
@media not screen and (min-width: 768px) {
  .greeting__sub-image {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
}
.greeting__sub-image img {
  max-width: 460px;
  width: 100%;
  border-radius: 20px;
}
@media not screen and (min-width: 768px) {
  .greeting__sub-image img {
    max-width: 300px;
  }
}

/* ===========================================
案内
=========================================== */
.info {
  position: relative;
  padding-top: 148px;
  padding-bottom: 138px;
  background: var(--theme-color-l-orange);
}
@media not screen and (min-width: 768px) {
  .info {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}
.info::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1920/50;
  background: url(../images/info-top-bg.webp) no-repeat center top/100% auto;
}

.info__content {
  display: grid;
  grid-template-columns: repeat(2, 48.6666666667%);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 50px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media not screen and (min-width: 768px) {
  .info__content {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .info__content {
    grid-template-columns: 680px;
  }
}

/* ===========================================
クリニック紹介
=========================================== */
.introduce {
  padding-top: 50px;
  padding-bottom: 59px;
  padding-left: clamp(20px, 6.806vw - 61.667px, 69px);
  padding-right: clamp(20px, 6.806vw - 61.667px, 69px);
  background: var(--bg-color-white);
  border-radius: 20px;
}
@media not screen and (min-width: 768px) {
  .introduce {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.introduce__address {
  margin-top: 30px;
  padding-left: 7px;
}

.introduce__tel {
  margin-top: 18px;
  padding-top: 18px;
  padding-bottom: 23px;
  padding-left: 50px;
  padding-right: 50px;
  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;
  gap: 9px;
  background: var(--bg-color-l-yellow);
  border-radius: 20px;
}
@media (hover: hover) and (pointer: fine) {
  .introduce__tel {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .introduce__tel:hover {
    opacity: 0.7;
  }
}

.introduce__tel-icon {
  font-size: 30px;
  color: var(--theme-color-l-orange);
  line-height: 1;
}

.introduce__tel-num {
  font-size: 30px;
  color: var(--theme-color-l-orange);
  line-height: 1;
}

.introduce__boxes {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  row-gap: 10px;
}
@media not screen and (min-width: 768px) {
  .introduce__boxes {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.introduce-box {
  padding-top: 17px;
  padding-bottom: 25px;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  background: var(--theme-color-l-orange);
}
@media not screen and (min-width: 768px) {
  .introduce-box {
    padding-left: 4px;
    padding-right: 4px;
  }
}

.introduce-box__icon {
  font-size: 40px;
  color: var(--font-color-white);
}
@media not screen and (min-width: 768px) {
  .introduce-box__icon {
    font-size: 30px;
  }
}

.introduce-box__text {
  text-align: center;
  font-size: 16px;
  line-height: 1.63;
  color: var(--font-color-white);
}
@media not screen and (min-width: 768px) {
  .introduce-box__text {
    font-size: 14px;
  }
}

/* ===========================================
診療案内
=========================================== */
.open-time {
  padding-top: 50px;
  padding-bottom: 47px;
  padding-left: clamp(20px, 7.639vw - 71.667px, 75px);
  padding-right: clamp(20px, 7.639vw - 71.667px, 75px);
  background: var(--bg-color-white);
  border-radius: 20px;
}
@media not screen and (min-width: 768px) {
  .open-time {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.open-time__table {
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .open-time__table {
    max-width: 360px;
  }
}

.time-table {
  border-collapse: collapse;
}

.time-table__head {
  background: var(--theme-color-l-orange);
  color: var(--font-color-white);
  font-size: 16px;
}
@media not screen and (min-width: 768px) {
  .time-table__head {
    font-size: 14px;
  }
}

.time-table__body {
  font-size: 16px;
}
@media not screen and (min-width: 768px) {
  .time-table__body {
    font-size: 14px;
  }
}
.time-table__body .time-table__symbol {
  color: var(--relation-icon-color);
  font-size: 16px;
}
@media not screen and (min-width: 768px) {
  .time-table__body .time-table__symbol {
    font-size: 14px;
  }
}

.time-table__head .time-table__time,
.time-table__head .time-table__week {
  padding-top: 20px;
  padding-bottom: 16px;
  color: #fff;
}
@media not screen and (min-width: 768px) {
  .time-table__head .time-table__time,
  .time-table__head .time-table__week {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.time-table__body .time-table__time,
.time-table__body .time-table__symbol {
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bg-color-gray);
}
@media not screen and (min-width: 768px) {
  .time-table__body .time-table__time,
  .time-table__body .time-table__symbol {
    padding-top: 10px;
    padding-bottom: 10px;
    padding: 0;
    text-align: center;
  }
}

.time-table__time {
  width: 25%;
  padding-left: 1rem;
  text-align: left;
}
@media not screen and (min-width: 768px) {
  .time-table__time {
    width: 130px;
    padding-left: 10px;
  }
}

.time-table__week,
.time-table__symbol {
  width: atuo;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .time-table__week,
  .time-table__symbol {
    width: 28px;
  }
}
.time-table__week:last-of-type,
.time-table__symbol:last-of-type {
  width: auto;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .time-table__week:last-of-type,
  .time-table__symbol:last-of-type {
    padding-left: inherit;
    width: 12%;
  }
}

.open-time__note {
  margin-top: 17px;
  font-size: 16px;
  line-height: 1.88;
}
@media not screen and (min-width: 768px) {
  .open-time__note {
    font-size: 14px;
  }
}

.open-time__symbol-list {
  margin-top: 11px;
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0px;
}

.open-time__symbol-item {
  font-size: 16px;
  line-height: 1.88;
}
@media not screen and (min-width: 768px) {
  .open-time__symbol-item {
    font-size: 14px;
  }
}

.is-orange {
  color: var(--theme-color-l-orange);
}

.open-time__text {
  font-size: 16px;
  line-height: 1.88;
  font-size: 14px;
}

.open-time__buttons {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media not screen and (min-width: 768px) {
  .open-time__buttons {
    grid-template-columns: repeat(1, 300px);
  }
}

.open-time-button {
  position: relative;
  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;
  padding-top: 26px;
  padding-bottom: 25px;
  background: var(--theme-color-d-orange);
  border: 2px solid var(--theme-color-d-orange);
  border-radius: 100px;
  color: var(--font-color-white);
  line-height: 1;
}
@media (hover: hover) and (pointer: fine) {
  .open-time-button {
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .open-time-button:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
@media not screen and (min-width: 768px) {
  .open-time-button {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.open-time-button .fa-circle-right {
  position: absolute;
  top: 50%;
  right: 1.65em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* ===========================================
地図
=========================================== */
.map {
  grid-column: 1/3;
}
@media not screen and (min-width: 768px) {
  .map {
    grid-column: initial;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .map {
    grid-column: initial;
  }
}
.map iframe {
  width: 100%;
  aspect-ratio: 1500/600;
  border-radius: 20px;
}
@media not screen and (min-width: 768px) {
  .map iframe {
    aspect-ratio: initial;
    height: 345px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .map iframe {
    height: 500px;
  }
}

/* ===========================================
コラム＆Instagram
=========================================== */
.column {
  padding-top: 149px;
  padding-bottom: 151px;
  background: var(--bg-color-l-pink);
}
@media not screen and (min-width: 768px) {
  .column {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.column__inner {
  display: grid;
  grid-template-columns: repeat(2, 48.6666666667%);
  gap: 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media not screen and (min-width: 768px) {
  .column__inner {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .column__inner {
    grid-template-columns: 680px;
  }
}

.column__wrapper {
  background: var(--bg-color-white);
  padding-top: 64px;
  padding-bottom: 59px;
  padding-left: 75px;
  padding-right: 75px;
  border-radius: 20px;
}
@media not screen and (min-width: 768px) {
  .column__wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.column__article-list {
  margin-top: 53px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.article-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid var(--font-color-black);
}
.article-item:first-of-type {
  border-top: 1px solid var(--font-color-black);
}

.article-item__link {
  display: block;
  width: 100%;
  padding-top: 26px;
  padding-bottom: 33px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (hover: hover) and (pointer: fine) {
  .article-item__link {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .article-item__link:hover {
    opacity: 0.7;
  }
}
@media not screen and (min-width: 768px) {
  .article-item__link {
    padding-top: 14px;
    padding-bottom: 18px;
  }
}

.article-item__date {
  display: block;
  line-height: 1;
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .article-item__date {
    font-size: 14px;
  }
}

.article-item__title {
  display: block;
  margin-top: 19px;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.article-item__text {
  margin-top: 13px;
  font-size: 16px;
  line-height: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media not screen and (min-width: 768px) {
  .article-item__text {
    font-size: 14px;
  }
}

.column__links {
  margin-top: 44px;
  text-align: center;
}

.column__link {
  position: relative;
  font-weight: 700;
}
@media (hover: hover) and (pointer: fine) {
  .column__link {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .column__link:hover {
    opacity: 0.7;
  }
}
.column__link::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--bg-color-gray);
}

.instagram {
  background: var(--bg-color-white);
  padding-top: 79px;
  padding-bottom: 74px;
  padding-left: 91px;
  padding-right: 91px;
  border-radius: 20px;
}
@media not screen and (min-width: 768px) {
  .instagram {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.instagram__title {
  text-align: center;
  font-size: 40px;
  line-height: 1;
}
@media not screen and (min-width: 768px) {
  .instagram__title {
    font-size: 24px;
  }
}

.instagram__images {
  margin-top: 27px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
  row-gap: 20px;
}
@media not screen and (min-width: 768px) {
  .instagram__images {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    row-gap: 12px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .instagram__link {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .instagram__link:hover {
    opacity: 0.7;
  }
}

/* ===========================================
フッター
=========================================== */
.footer {
  padding-top: 102px;
  padding-bottom: 160px;
}

.footer__title {
  line-height: 1;
}

.footer__banners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-column-gap: 28px;
     -moz-column-gap: 28px;
          column-gap: 28px;
  row-gap: 20px;
}

.footer__alignment {
  margin-top: 30px;
}

.footer__banner {
  width: 354px;
}

.footer__text {
  margin-top: 49px;
  line-height: 1;
}

.footer__links {
  margin-top: 21px;
}
}
