@charset "UTF-8";
/*---------------------
変数
-----------------------*/
/*---------------------
ヘッダー用変数
-----------------------*/
/**************************

  カラーパレット

**************************/
/*-- mixinフォルダの中の_index.scss --*/
/*------------------------------------
SP特化サイト用メディアクエリ MIXIN
---------------------------------*/
/*---------------------
 ★ 文字関連一括指定
-----------------------*/
/*---------------------
//Fontサイズ vw可変指定（SP特化サイト用）
----------------------*/
/* @include font-vw(font-size, 440px, 16px, 12px);
SP特化サイトの最大幅440pxのとき16pxの文字sizeをvw変換し、
幅を狭めるごとに比率で縮めるが、そのまま適用すると早々に小さくなりすぎるので、
最小値12pxを指定。最小値になる幅sizeを割り出し、メディアクエリにmin指定することで
16pxの比率のまま縮め、12px以下には縮まないという指定にしている。
*/
/*---------------------
 ★ リンク文字色 一括指定
-----------------------*/
/*---------------------
 ★ リンク下線復活
-----------------------*/
/*-------------------------------------
 ★ リンク下線消去 一括指定//フォーカスのみ下線
---------------------------------------*/
/*-------------------------------------
 ★ floatのあとは自動 clear: both;
 @include clearfix;
 float: left;
 のように使用する
---------------------------------------*/
/*-------------------------------------
 ★セレクトのプロパティをサイズ指定して変更
---------------------------------------*/
/*-------------------------------------

   レイアウト汎用

---------------------------------------*/
/*-----------------------------------

 上部余白

-----------------------------------*/
/*-----------------------------------

 改行制御

-----------------------------------*/
/*-----------------------------------

 中央寄せと左寄せ制御

-----------------------------------*/
/*--------------------------------------------
//文字数を指定行数で丸めて…で省略・複数行対応mixin
----------------------------------------------*/
/*-----------------------------------

 文章段落

-----------------------------------*/
/*------------------------------------
コンテナ MIXIN
---------------------------------*/
/*
使い方例：

// 最大幅1200px、パディング20px（パディングを指定する場合）
@include l-container(1200px, 20px);  

// 最大幅1000px、パディング25px（デフォルト設定値なので省略可能）
@include l-container(1000px); 

// 最大幅800px、パディングなし
@include l-container-full(800px);

関連ファイル：
- assets/scss/layout/_l-container.scss で実際のクラス定義に使用
- .l-container-1200, .l-container-1000 などのクラスで利用
*/
/*--------------------- 
  OUTPATIENT PAGE
-----------------------*/
.p-outpatient {
  /*--------------------- 
    外来受付についてセクション
  -----------------------*/
}
.p-outpatient__reception {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-outpatient__reception {
    margin-bottom: 40px;
  }
}
.p-outpatient__reception-text p {
  font-style: normal;
  font-weight: 400;
  font-size: calc(20 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-outpatient__reception-text p {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-outpatient__reception-text p {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-outpatient__reception-text p {
    font-size: 18px;
  }
}
.p-outpatient__reception-text p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 0;
}
.p-outpatient {
  /*--------------------- 
    診療科目セクション
  -----------------------*/
}
.p-outpatient__departments {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-outpatient__departments {
    margin-bottom: 40px;
  }
}
.p-outpatient__departments-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 20px 50%;
  grid-template-columns: 50% 50%;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-outpatient__departments-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
}
.p-outpatient__departments-image {
  width: 100%;
}
.p-outpatient__departments-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 768px) {
  .p-outpatient__departments-image img {
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-outpatient__departments-list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-outpatient__departments-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-outpatient__departments-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin: 0;
  }
}
.p-outpatient__departments-item {
  font-style: normal;
  font-weight: 500;
  font-size: calc(22 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-outpatient__departments-item {
    font-size: 22px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-outpatient__departments-item {
    font-size: calc(0.625vw + 17px);
  }
}
@media (max-width: 319px) {
  .p-outpatient__departments-item {
    font-size: 19px;
  }
}
.p-outpatient__departments-item {
  letter-spacing: 0.08em;
  padding: 4px 0;
  border-bottom: 1px solid rgba(44, 44, 44, 0.15);
}
.p-outpatient__departments-item:first-child {
  padding-top: 0;
}
.p-outpatient__departments-item:last-child {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .p-outpatient__departments-item {
    padding: 0;
    border-bottom: none;
    font-size: 18px;
  }
}
.p-outpatient {
  /*--------------------- 
    外来受付時間セクション
  -----------------------*/
}
.p-outpatient__hours {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-outpatient__hours {
    margin-bottom: 40px;
  }
}
.p-outpatient__hours-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.p-outpatient__hours-note {
  font-style: normal;
  font-weight: 400;
  font-size: calc(18 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-outpatient__hours-note {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-outpatient__hours-note {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-outpatient__hours-note {
    font-size: 16px;
  }
}
.p-outpatient__hours-note {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 0 0 24px 0;
  color: #2c2c2c;
}
.p-outpatient__hours-table-wrapper {
  margin: 30px 0;
  overflow-x: auto;
}
@media screen and (max-width: 768px) {
  .p-outpatient__hours-table-wrapper {
    margin: 20px 0;
  }
}
.p-outpatient__hours-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}
.p-outpatient__hours-header {
  font-style: normal;
  font-weight: 700;
  font-size: calc(20 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-outpatient__hours-header {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-outpatient__hours-header {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-outpatient__hours-header {
    font-size: 18px;
  }
}
.p-outpatient__hours-header {
  letter-spacing: 0.1em;
  padding: 20px 24px;
  background: rgba(44, 44, 44, 0.05);
  text-align: center;
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}
@media screen and (max-width: 768px) {
  .p-outpatient__hours-header {
    padding: 16px 20px;
  }
}
.p-outpatient__hours-label {
  font-style: normal;
  font-weight: 700;
  font-size: calc(18 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-outpatient__hours-label {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-outpatient__hours-label {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-outpatient__hours-label {
    font-size: 16px;
  }
}
.p-outpatient__hours-label {
  letter-spacing: 0.05em;
  padding: 20px 24px;
  background: rgba(44, 44, 44, 0.03);
  text-align: left;
  vertical-align: top;
  width: 150px;
  border-right: 1px solid rgba(44, 44, 44, 0.1);
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}
@media screen and (max-width: 768px) {
  .p-outpatient__hours-label {
    width: 120px;
    padding: 16px 20px;
  }
}
.p-outpatient__hours-time {
  font-style: normal;
  font-weight: 400;
  font-size: calc(18 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-outpatient__hours-time {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-outpatient__hours-time {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-outpatient__hours-time {
    font-size: 16px;
  }
}
.p-outpatient__hours-time {
  letter-spacing: 0.05em;
  padding: 20px 24px;
  background: rgba(44, 44, 44, 0.02);
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}
@media screen and (max-width: 768px) {
  .p-outpatient__hours-time {
    padding: 16px 20px;
  }
}
.p-outpatient__hours-time-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.p-outpatient__hours-time-row:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-outpatient__hours-time-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4px;
    margin-bottom: 16px;
  }
}
.p-outpatient__hours-time-label {
  font-style: normal;
  font-weight: 500;
  font-size: calc(18 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-outpatient__hours-time-label {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-outpatient__hours-time-label {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-outpatient__hours-time-label {
    font-size: 16px;
  }
}
.p-outpatient__hours-time-label {
  letter-spacing: 0.05em;
  min-width: 60px;
  color: #2c2c2c;
}
.p-outpatient__hours-time-value {
  font-style: normal;
  font-weight: 400;
  font-size: calc(18 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-outpatient__hours-time-value {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-outpatient__hours-time-value {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-outpatient__hours-time-value {
    font-size: 16px;
  }
}
.p-outpatient__hours-time-value {
  letter-spacing: 0.05em;
  color: #2c2c2c;
}
.p-outpatient__hours-closed {
  font-style: normal;
  font-weight: 400;
  font-size: calc(18 / 16 * 1rem);
  color: #373232;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-outpatient__hours-closed {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-outpatient__hours-closed {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-outpatient__hours-closed {
    font-size: 16px;
  }
}
.p-outpatient__hours-closed {
  letter-spacing: 0.05em;
  line-height: 2;
  padding: 20px 24px;
  background: rgba(44, 44, 44, 0.02);
}
@media screen and (max-width: 768px) {
  .p-outpatient__hours-closed {
    padding: 16px 20px;
  }
}
.p-outpatient__hours-closed-item {
  display: inline-block;
  margin-right: 16px;
}
.p-outpatient__hours-closed-item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .p-outpatient__hours-closed-item {
    display: block;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .p-outpatient__hours-closed-item:last-child {
    margin-bottom: 0;
  }
}
.p-outpatient {
  /*--------------------- 
    本文
  -----------------------*/
}
.p-outpatient__body {
  font-style: normal;
  font-weight: 400;
  font-size: calc(20 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-outpatient__body {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-outpatient__body {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-outpatient__body {
    font-size: 18px;
  }
}
.p-outpatient__body {
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.p-outpatient__body h2 {
  font-style: normal;
  font-weight: 400;
  font-size: calc(28 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-outpatient__body h2 {
    font-size: 28px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-outpatient__body h2 {
    font-size: calc(0.8333333333vw + 21.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-outpatient__body h2 {
    font-size: 24px;
  }
}
.p-outpatient__body h2 {
  letter-spacing: 0.1em;
  margin: 80px 0 40px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(44, 44, 44, 0.15);
  color: #2c2c2c;
}
.p-outpatient__body h2:first-of-type {
  margin-top: 0;
}
.p-outpatient__body h3 {
  font-style: normal;
  font-weight: 400;
  font-size: calc(24 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-outpatient__body h3 {
    font-size: 24px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-outpatient__body h3 {
    font-size: calc(0.8333333333vw + 17.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-outpatient__body h3 {
    font-size: 20px;
  }
}
.p-outpatient__body h3 {
  letter-spacing: 0.1em;
  margin: 60px 0 30px 0;
}
.p-outpatient__body p {
  margin-bottom: 40px;
  line-height: 2;
}
.p-outpatient__body p:last-child {
  margin-bottom: 0;
}
.p-outpatient__body ul,
.p-outpatient__body ol {
  margin: 40px 0;
  padding-left: 10px;
}
.p-outpatient__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .p-outpatient__body img {
    margin: 0;
  }
}