<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* =========== */
/* ご挨拶一覧 */
/* =========== */
#greeting {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3em;
}

/* ご挨拶見出し部分 */
.g_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

/* ご挨拶画像部分 */
.director_img {
  width: 32%;
  height: 100%;
  z-index: -10;
}
.director_img img {
  width: 100%;
  height: auto;
}

/* ご挨拶画像部分スマホ版レスポンシブ */
@media screen and (max-width: 480px) {
  .director_img {
    width: 80%;
  }
}

/* ご挨拶テキスト全体 */
.director_txt {
  width: 50%;
  color: #222;
  font-weight: 600;
  line-height: 2em;
}

/* ご挨拶テキスト中身 */
.director_txt h3 {
  font-weight: bold;
  font-size: 26px;
  color: #67E1BC;
  margin-bottom: 1.5em;
}

.director_txt p {
  margin: 1em 0;
}

.director_txt h4 {
  display: flex;
  justify-content: end;
  font-weight: normal;
}
.director_txt h4 span {
  margin: 0 1em 0 0;
}
/* テキスト要素 レスポンシブ */
@media screen and (max-width: 1080px) {
  .director_txt h3 {
    font-size: 24px;
    margin-bottom: 1em;
  }
  .director_txt p {
    margin: 0.5em 0;
  }
}

@media screen and (max-width: 780px) {
  .director_txt {
    width: 60%;
  }
  .director_txt h3 {
    font-size: 20px;
  }
  .director_txt p {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .director_txt {
    margin-top: 2em;
    width: 90%;
  }
}

/* ============== */
/* 院内紹介用CSS */
/* ============== */
#hos {
  width: 1200px;
  margin: 0 auto;
}


/* 上部二つのメイン部分 */
.tc ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.tc ul li {
  width: 46%;
  margin: 0 0 24px;
}

/* レスポンシブ */
@media screen and (max-width: 480px) {
  .tc ul li {
    width: 90%;
    margin: 1em 0;
  }
}

/* 院内紹介画像 */
.tc_img {
  width: 100%;
  height: auto;
}
.tc_img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}

/* レスポンシヴ部分 画像 */
@media screen and (max-width: 780px) {
  .tc_img img {
    height: 200px;
  }
}

/* 上部二つのテキスト要素位置調整 */
.top_txt {
  text-align: center;
  line-height: 1.7em;
}
.top_txt h3 {
  margin: 0.5em 0 0 0;
  color: #E0BA67;
}
.top_txt p {
  font-size: 12px;
}

/* ======================= */
/* 下部部分の院内紹介部分 */
/* ======================= */
.bc {
  margin: 3em 0;
}
.bc ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.bc ul li {
  width: 20%;
  margin: 2em 0;
}

/* 下部部分レスポンシヴ 全体 */
@media screen and (max-width: 780px) {
  .bc {
    margin: 0;
  }
  .bc ul li {
    width: 46%;
  }
}

@media screen and (max-width: 480px) {
  .bc ul li {
    width: 90%;
  }
}

/* 院内画像要素 */
.bc ul li .bc_img {
  width: 100%;
  height: auto;
}
.bc ul li .bc_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}

/* 画像レスポンシヴ少し小さめに */
@media screen and (max-width: 780px) {
  .bc ul li .bc_img {
    width: 80%;
    margin: 0 auto;
  }
}

/* 共通テキスト部分 */
.cm_txt {
  line-height: 1.7em;
}
.cm_txt h3 {
  margin: 0.5em 0 0 0;
  text-align: center;
  color: #E0BA67;
}
.cm_txt p {
  font-size: 12px;
 object-fit: cover;
}
@media screen and (max-width: 780px) {
  .cm_txt p {
    text-align: center;
  }
}</pre></body></html>