@charset "utf-8";

/* スタイルシート
作成者：Hatomi Inc.
作成日：R8.3.12
-------------------------------------------------------------------------------------*/

/* =========================================================
  Responsive BR
========================================================= */

/* デフォルト無効 */
.br-701-800,
.br-801-900,
.br-901-1000{
  display:none;
}

/* 701〜800 */
@media (min-width:701px) and (max-width:800px){
  .br-701-800{
    display:inline;
  }
}

/* 801〜900 */
@media (min-width:801px) and (max-width:900px){
  .br-801-900{
    display:inline;
  }
}

/* 901〜1000 */
@media (min-width:801px) and (max-width:900px){
  .br-901-1000{
    display:inline;
  }
}

/* br-smallview */
@media (max-width:1000px){
  .br-smallview{
    display:none;
  }
}



/* =========================================================
  Section Title
========================================================= */

.sectionTitle{
  margin: 0 0 2.5rem;
}
@media (max-width: 700px){
  .sectionTitle{
    margin: 0 0 2rem;
  }
}
@media (max-width: 480px){
  .sectionTitle{
    margin: 0 0 1.5rem;
  }
}

.sectionTitle__head{
  margin: 0;
  padding: 1.4rem 1rem;
  background: #DDE9D3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 700px){
  .sectionTitle__head{
    padding: 1.3rem 1rem;
    gap: 1rem;
  }
}
/*
@media (max-width: 500px){
  .sectionTitle__head{
    align-items: flex-start;
    flex-direction: column;
  }
}
*/
@media (max-width: 480px){
  .sectionTitle__head{
    padding: 1.3rem 1rem;
  }
}

.sectionTitle__ja{
  position: relative;
  display: inline-block;
  padding-left: 1.125rem;
  color: #000;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
	 white-space: nowrap;
}
@media (max-width: 700px){
  .sectionTitle__ja{
    font-size: 1.3rem;
    padding-left: 1rem;
  }
}
@media (max-width: 480px){
  .sectionTitle__ja{
    font-size: 1rem;
    padding-left: 0.875rem;
  }
}

.sectionTitle__ja::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.3125rem;
  height: 1.875rem;
  background: #7AC943;
  transform: translateY(-50%);
}
@media (max-width: 700px){
  .sectionTitle__ja::before{
    height: 1.625rem;
  }
}
@media (max-width: 480px){
  .sectionTitle__ja::before{
    width: 0.25rem;
    height: 1.25rem;
  }
}

.sectionTitle__en{
  flex: 0 0 auto;
  color: #7AC943;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.4;
  font-style: italic;
  white-space: nowrap;
}
@media (max-width: 700px){
  .sectionTitle__en{
    font-size: .8rem;
    white-space: normal;
    align-self: flex-end;
  }
}
@media (max-width: 480px){
  .sectionTitle__en{
    font-size: 0.8rem;
  }
}

/* =========================================================
  Section Box Title
========================================================= */

.sectionBoxTitle{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 2rem;
}
@media (max-width: 700px){
  .sectionBoxTitle{
    margin-bottom: 2rem;
  }
}
@media (max-width: 480px){
  .sectionBoxTitle{
    margin-bottom: 2rem;
  }
}

.sectionBoxTitle__icon{
  flex: 0 0 auto;
  width: 0.9rem;
  height: 0.9rem;
  background: #79BE49;
}
@media (max-width: 480px){
  .sectionBoxTitle__icon{
    width: 0.75rem;
    height: 0.75rem;
  }
}

.sectionBoxTitle__text{
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media (max-width: 700px){
  .sectionBoxTitle__text{
    font-size: 1.1rem;
  }
}
@media (max-width: 480px){
  .sectionBoxTitle__text{
    font-size: 1.05rem;
  }
}


/* =========================================================
  Pill Arrow Button
========================================================= */

.pillArrowBtn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 17rem;
  min-height: 3.75rem;

  padding: 0.9rem 2.8rem 0.9rem 1.6rem;

  background: #F4EBE2;
  border-radius: 999px;
  text-decoration: none;

  transition: opacity .25s ease;
}

@media (max-width: 700px){
  .pillArrowBtn{
    min-height: 3.25rem;
    padding: 0.75rem 2.6rem 0.75rem 1.25rem;
  }
}

@media (max-width: 480px){
  .pillArrowBtn{
    width: 100%;
  }
}


/* テキスト */

.pillArrowBtn__text{
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 700px){
  .pillArrowBtn__text{
    font-size: 1rem;
  }
}

@media (max-width: 480px){
  .pillArrowBtn__text{
    font-size: .9rem;
  }
}


/* 矢印 */

.pillArrowBtn__icon{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);

  width: 1.4rem;
  height: 1.4rem;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  transition: transform .25s ease;

  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26'%3E%3Ccircle cx='13' cy='13' r='12.5' fill='%23fff' stroke='%2379be49'/%3E%3Cline x1='7.4' y1='13' x2='17.9' y2='13' stroke='%2379be49' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='18.6' y1='13' x2='14.7' y2='16.9' stroke='%2379be49' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='14.7' y1='9.1' x2='18.6' y2='13' stroke='%2379be49' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

@media (max-width: 700px){
  .pillArrowBtn__icon{
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (max-width: 480px){
  .pillArrowBtn__icon{
    width: 1.125rem;
    height: 1.125rem;
  }
}


.pillArrowBtn:hover .pillArrowBtn__icon{
  transform: translate(3px,-50%);
}


/* =========================================================
  Outpatient Nav
========================================================= */

.outpatientNavBlock{
  padding: 2.5rem 0;
}

@media (max-width: 700px){
  .outpatientNavBlock{
    padding: 2rem 0;
  }
}
@media (max-width: 480px){
  .outpatientNavBlock{
    padding: 1.5rem 0;
  }
}

.outpatientNav{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
	 max-width: 1050px;
	 margin-left: auto;
	 margin-right: auto;
}
@media (max-width: 700px){
  .outpatientNav{
    gap: 2rem;
  }
}
@media (max-width: 480px){
  .outpatientNav{
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.outpatientNav__btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem; /* 80px */
  padding: 1.5rem 4.75rem 1.5rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  transition: opacity .25s ease;
}
@media (max-width: 700px){
  .outpatientNav__btn{
    min-height: 4.5rem; /* 72px */
    padding: 1.25rem 4rem 1.25rem 1.5rem;
  }
}
@media (max-width: 480px){
  .outpatientNav__btn{
    min-height: 4rem; /* 64px */
    padding: 1rem 3.5rem 1rem 1rem;
    border-radius: 0.875rem;
  }
}

.outpatientNav__btn:hover{
  opacity: .96;
}

.outpatientNav__btn--green{
  background: #7AC943;
}

.outpatientNav__btn--blue{
  background: #43A5E8;
}

.outpatientNav__label{
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (max-width: 700px){
  .outpatientNav__label{
    font-size: 1rem;
  }
}
@media (max-width: 480px){
  .outpatientNav__label{
    font-size: 1rem;
  }
}

.outpatientNav__icon{
  position: absolute;
  top: 50%;
  right: 1.75rem;
  width: 1.9125rem;
  height: 1.9125rem;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform .25s ease;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30.6 30.6'%3E%3Cg%3E%3Cg%3E%3Crect x='12.6' y='11.8' transform='matrix(0.7071 -0.7071 0.7071 0.7071 -6.9188 13.8792)' fill='%23FFFFFF' width='1.4' height='7.1'/%3E%3Crect x='16.6' y='11.8' transform='matrix(-0.7071 -0.7071 0.7071 -0.7071 18.7006 38.3288)' fill='%23FFFFFF' width='1.4' height='7.1'/%3E%3C/g%3E%3Ccircle fill='none' stroke='%23FFFFFF' stroke-width='0.5828' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' cx='15.3' cy='15.3' r='15'/%3E%3C/g%3E%3C/svg%3E");
}
@media (max-width: 700px){
  .outpatientNav__icon{
    right: 1.25rem;
    width: 1.75rem;
    height: 1.75rem;
  }
}
@media (max-width: 480px){
  .outpatientNav__icon{
    right: 1rem;
    width: 1.625rem;
    height: 1.625rem;
  }
}

.outpatientNav__btn:hover .outpatientNav__icon{
  transform: translateY(calc(-50% + 4px));
}

.outpatientNav__btn:focus-visible .outpatientNav__icon{
  transform: translateY(calc(-50% + 4px));
}


/* =========================================================
  Outpatient Notice
========================================================= */

.outpatientNotice{
  margin: 0 0 3rem;
  padding: 2rem;
  background: #ECECEC;
  border-radius: .75rem;/*12px*/
}
@media (max-width: 700px){
  .outpatientNotice{
    margin: 0 0 2.5rem;
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
@media (max-width: 480px){
  .outpatientNotice{
    margin: 0 0 2rem;
    padding: 1rem;
    border-radius: 0.75rem;
  }
}

.outpatientNotice__body{
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 700px){
  .outpatientNotice__body{
    font-size: 0.9375rem;
    line-height: 1.9;
  }
}
@media (max-width: 480px){
  .outpatientNotice__body{
    font-size: 0.875rem;
    line-height: 1.8;
  }
}


/* =========================================================
  clinicSection
========================================================= */

.clinicSection{
  padding: 0 0 3rem;
}
@media (max-width: 700px){
  .clinicSection{
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 480px){
  .clinicSection{
    padding-bottom: 2rem;
  }
}


/* =========================================================
  layout
========================================================= */

.clinicSection__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 17rem;
  grid-template-areas:
    "main side"
    "notes notes";
  column-gap: 1rem;
  row-gap: 1.75rem;
  align-items: start;
}
@media (max-width: 700px){
  .clinicSection__grid{
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "notes"
      "side";
    column-gap: 0;
    row-gap: 1.5rem;
  }
}
@media (max-width: 480px){
  .clinicSection__grid{
    row-gap: 1.25rem;
  }
}

.clinicSection__main{
  grid-area: main;
  min-width: 0;
}

.clinicSection__side{
  grid-area: side;
  display: flex;
  justify-content: flex-end;
  padding-top: 3rem;
}
@media (max-width: 700px){
  .clinicSection__side{
    justify-content: flex-start;
    padding-top: 0;
  }
}
@media (max-width: 480px){
  .clinicSection__side{
    width: 100%;
  }
}

.clinicSection__notes{
  grid-area: notes;
  width: 100%;
  font-size: 0.9rem;
  line-height: 1.9;
}
@media (max-width: 700px){
  .clinicSection__notes{
    font-size: 0.85rem;
  }
}
@media (max-width: 480px){
  .clinicSection__notes{
    font-size: 0.8rem;
    line-height: 1.8;
  }
}


/* =========================================================
  time list
========================================================= */

.clinicSection__timeList{
  display: grid;
  gap: 0.9rem;
  margin: 0 0 1.75rem;
}
@media (max-width: 700px){
  .clinicSection__timeList{
    gap: 0.75rem;
  }
}
@media (max-width: 480px){
  .clinicSection__timeList{
    gap: 0.65rem;
    margin-bottom: 1.5rem;
  }
}

.clinicSection__timeRow{
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 700px){
  .clinicSection__timeRow{
    gap: 0.6rem;
  }
}
@media (max-width: 480px){
  .clinicSection__timeRow{
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}

.clinicSection__timeLabel{
  flex: 0 0 auto;
  min-width: 5.5rem;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  background: #E3E3E3;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}
@media (max-width: 700px){
  .clinicSection__timeLabel{
    min-width: 5rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 480px){
  .clinicSection__timeLabel{
    min-width: auto;
    font-size: 0.8rem;
  }
}

.clinicSection__timeText{
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 700px){
  .clinicSection__timeText{
    font-size: 1rem;
  }
}
@media (max-width: 480px){
  .clinicSection__timeText{
    font-size: 0.95rem;
  }
}

.clinicSection__timeText small{
  font-size: 0.75em;
  font-weight: 500;
	 display: block;
}


/* =========================================================
  holiday
========================================================= */

.clinicSection__holiday{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.25rem;
  margin: 0;
  border-radius: 0.75rem;
  background: #F2BDD1;
  font-size: 0.95rem;
  font-weight: 700;
}
@media (max-width: 700px){
  .clinicSection__holiday{
    font-size: 0.9rem;
  }
}
@media (max-width: 480px){
  .clinicSection__holiday{
    font-size: 0.85rem;
  }
}


/* =========================================================
  notes
========================================================= */

.clinicSection__notes{
  grid-area: notes;
  width: 100%;
  font-size: 0.9rem;
  line-height: 1.9;
}
@media (max-width:700px){
  .clinicSection__notes{
    font-size:0.85rem;
  }
}
@media (max-width:480px){
  .clinicSection__notes{
    font-size:0.8rem;
    line-height:1.8;
  }
}

.clinicSection__notesList{
  margin:0;
  padding:0;
  list-style:none;
}

.clinicSection__notesList li{
  position:relative;
  padding-left:1em;
  margin-bottom:0.35em;
	 font-size: 90%;
}

.clinicSection__notesList li::before{
  content:"・";
  position:absolute;
  left:0;
}


/* =========================================================
  outpatientGuide section
========================================================= */

.outpatientGuide__section{
  padding: 0 0 4.5rem;
}
@media (max-width: 700px){
  .outpatientGuide__section{
    padding-bottom: 3.5rem;
  }
}
@media (max-width: 480px){
  .outpatientGuide__section{
    padding-bottom: 2.75rem;
  }
}

.outpatientGuide__lead{
  margin: 0 0 1.5rem;
}
@media (max-width: 700px){
  .outpatientGuide__lead{
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 480px){
  .outpatientGuide__lead{
    margin-bottom: 1rem;
  }
}

.outpatientGuide__lead p{
  margin: 0;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
}
@media (max-width: 700px){
  .outpatientGuide__lead p{
    font-size: 1rem;
    line-height: 1.85;
  }
}
@media (max-width: 480px){
  .outpatientGuide__lead p{
    font-size: 0.9rem;
    line-height: 1.8;
  }
}

.outpatientGuide__listWrap{
  margin: 0 0 2rem;
}
@media (max-width: 700px){
  .outpatientGuide__listWrap{
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 480px){
  .outpatientGuide__listWrap{
    margin-bottom: 1.25rem;
  }
}

.outpatientGuide__list{
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 480px){
  .outpatientGuide__list{
    padding-left: 0;
  }
}

.outpatientGuide__list li{
  position: relative;
  margin: 0 0;
  padding-left: 1em;
  color: #000;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.9;
}
@media (max-width: 700px){
  .outpatientGuide__list li{
    font-size: 1rem;
    line-height: 1.85;
  }
}
@media (max-width: 480px){
  .outpatientGuide__list li{
    font-size: 0.95rem;
    line-height: 1.8;
  }
}

.outpatientGuide__list li::before{
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.outpatientGuide__list li:last-child{
  margin-bottom: 0;
}

.outpatientGuide__btnWrap{
  margin: 0;
}
@media (max-width: 480px){
  .outpatientGuide__btnWrap{
    width: 100%;
  }
}

/* セクションごとの差だけ必要ならここに追加 */
.outpatientGuide__section--echoDock{
}
@media (max-width: 700px){
  .outpatientGuide__section--echoDock{
  }
}
@media (max-width: 480px){
  .outpatientGuide__section--echoDock{
  }
}

.outpatientGuide__section--prp{
}
@media (max-width: 700px){
  .outpatientGuide__section--prp{
  }
}
@media (max-width: 480px){
  .outpatientGuide__section--prp{
  }
}

/* =========================================================
  outpatientRehab
========================================================= */

.outpatientRehab{
  padding: 0 0 4rem;
}
@media (max-width: 700px){
  .outpatientRehab{
    padding-bottom: 3rem;
  }
}
@media (max-width: 480px){
  .outpatientRehab{
    padding-bottom: 2.5rem;
  }
}

.outpatientRehab__lead{
  margin: 0 0 1.75rem;
}
@media (max-width: 700px){
  .outpatientRehab__lead{
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 480px){
  .outpatientRehab__lead{
    margin-bottom: 1.25rem;
  }
}

.outpatientRehab__lead p{
  margin: 0;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (max-width: 700px){
  .outpatientRehab__lead p{
    font-size: 0.95rem;
  }
}
@media (max-width: 480px){
  .outpatientRehab__lead p{
    font-size: 0.9rem;
    line-height: 1.7;
  }
}

.outpatientRehab__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
@media (max-width: 900px){
  .outpatientRehab__grid{
    gap: 1rem;
  }
}
@media (max-width: 700px){
  .outpatientRehab__grid{
    gap: 1rem;
  }
}
@media (max-width: 600px){
  .outpatientRehab__grid{
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
}


/* =========================================================
  outpatientRehabBtn
========================================================= */

.outpatientRehabBtn{
  --btn-min-h: 8rem;
  --btn-pad-top: 1.5rem;
  --btn-pad-right: 2rem;
  --btn-pad-bottom: 1.5rem;
  --btn-pad-left: 11rem;

  --img-left: 0.5rem;
  --img-bottom: 50%;
  --img-shift-y: 50%;
  --img-w: 8rem;
  --img-h: calc(100% - 2.5rem);
  --img-url: none;

  --label-size: 1rem;
  --label-lh: 1.5;

  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--btn-min-h);
  padding: var(--btn-pad-top) var(--btn-pad-right) var(--btn-pad-bottom) var(--btn-pad-left);
  border: 1px solid #78C544;
  border-radius: 1rem;
  text-decoration: none;
  overflow: hidden;

  background-color: #FFFFFF;
  background-image:
    linear-gradient(#EEEEEE 1px, transparent 1px),
    linear-gradient(90deg, #EEEEEE 1px, transparent 1px);
  background-size: 10px 10px;
  background-position: 0 0;
}
@media (max-width: 1000px){
  .outpatientRehabBtn{
    --btn-min-h: 8rem;
    --btn-pad-top: 1.25rem;
    --btn-pad-right: 2.5rem;
    --btn-pad-bottom: 1.25rem;
    --btn-pad-left: 10rem;

    border-radius: 0.875rem;
  }
}
@media (max-width: 700px){
  .outpatientRehabBtn{
    --btn-min-h: 9rem;
    --btn-pad-top: 1.25rem;
    --btn-pad-right: 2.5rem;
    --btn-pad-bottom: 1.25rem;
    --btn-pad-left: 9.5rem;

    border-radius: 0.875rem;
  }
}
@media (max-width: 600px){
  .outpatientRehabBtn{
    --btn-min-h: 6rem;
    --btn-pad-top: 1.25rem;
    --btn-pad-right: 3.25rem;
    --btn-pad-bottom: 1.25rem;
    --btn-pad-left: 9rem;
  }
}

.outpatientRehabBtn::before{
  content: "";
  position: absolute;
  left: var(--img-left);
  bottom: var(--img-bottom);
  transform: translateY(var(--img-shift-y));
  width: var(--img-w);
  height: var(--img-h);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  background-image: var(--img-url);
  pointer-events: none;
}
@media (max-width: 1000px){
  .outpatientRehabBtn::before{
    bottom: var(--img-bottom, 56%);
  }
}
@media (max-width: 700px){
  .outpatientRehabBtn::before{
    left: var(--img-left-tb, var(--img-left));
    bottom: var(--img-bottom-tb, var(--img-bottom));
    width: var(--img-w-tb, var(--img-w));
    height: var(--img-h-tb, var(--img-h));
    transform: translateY(var(--img-shift-y-tb, var(--img-shift-y)));
  }
}
@media (max-width: 600px){
  .outpatientRehabBtn::before{
    left: var(--img-left-sp, var(--img-left-tb, var(--img-left)));
    bottom: var(--img-bottom-sp, var(--img-bottom-tb, var(--img-bottom)));
    width: var(--img-w-sp, var(--img-w-tb, var(--img-w)));
    height: var(--img-h-sp, var(--img-h-tb, var(--img-h)));
    transform: translateY(var(--img-shift-y-sp, var(--img-shift-y-tb, var(--img-shift-y))));
  }
}

.outpatientRehabBtn__label{
  display: block;
  color: #78C544;
  font-size: var(--label-size);
  font-weight: 700;
  line-height: var(--label-lh);
  letter-spacing: 0.02em;
}
@media (max-width: 700px){
  .outpatientRehabBtn__label{
    font-size: var(--label-size-tb, var(--label-size));
    line-height: var(--label-lh-tb, var(--label-lh));
  }
}
@media (max-width: 600px){
  .outpatientRehabBtn__label{
    font-size: var(--label-size-sp, var(--label-size-tb, var(--label-size)));
    line-height: var(--label-lh-sp, var(--label-lh-tb, var(--label-lh)));
  }
}

.outpatientRehabBtn__arrow{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform .25s ease;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26'%3E%3Ccircle cx='13' cy='13' r='12.5' fill='%23fff' stroke='%2379be49'/%3E%3Cline x1='7.4' y1='13' x2='17.9' y2='13' stroke='%2379be49' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='18.6' y1='13' x2='14.7' y2='16.9' stroke='%2379be49' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='14.7' y1='9.1' x2='18.6' y2='13' stroke='%2379be49' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
@media (max-width: 700px){
  .outpatientRehabBtn__arrow{
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media (max-width: 600px){
  .outpatientRehabBtn__arrow{
    width: 1.125rem;
    height: 1.125rem;
  }
}

.outpatientRehabBtn:hover .outpatientRehabBtn__arrow{
  transform: translate(3px, -50%);
}

.outpatientRehabBtn--rehab{
  --btn-pad-left: 11rem;

  --img-left: 0.5rem;
  --img-bottom: 50%;
  --img-shift-y: 50%;
  --img-w: 8rem;
  --img-h: calc(100% - 2.5rem);
  --img-url: url("../images/outpatient_btn_bg01.png");

  --label-size: 1.1rem;
  --label-lh: 1.5;
}
@media (max-width: 1000px){
  .outpatientRehabBtn--rehab{
    --btn-pad-left: 10rem;
			 --img-bottom: 57%;
			 --img-left: 0.6rem;
    --label-size: 1rem;
  }
}
@media (max-width: 700px){
  .outpatientRehabBtn--rehab{
    --btn-pad-left: 9.5rem;

    --img-left-tb: 0.75rem;
    --img-bottom-tb: 50%;
    --img-shift-y-tb: 50%;
    --img-w-tb: 8rem;
    --img-h-tb: calc(100% - 3.5rem);

    --label-size-tb: 0.95rem;
  }
}
@media (max-width: 600px){
  .outpatientRehabBtn--rehab{
    --btn-pad-left: 9rem;

    --img-left-sp: 0.625rem;
    --img-bottom-sp: 50%;
    --img-shift-y-sp: 50%;
    --img-w-sp: 7.5rem;
    --img-h-sp: calc(100% - 0.625rem);

    --label-size-sp: 1rem;
  }
}
@media (max-width: 400px){
  .outpatientRehabBtn--rehab{
    --btn-pad-left: 7.5rem;

    --img-left-sp: 0.625rem;
    --img-bottom-sp: 60%;
    --img-shift-y-sp: 50%;
    --img-w-sp: 6rem;
    --img-h-sp: calc(100% - 0.625rem);

    --label-size-sp: 1rem;
  }
}

.outpatientRehabBtn--day{
  --btn-pad-left: 12rem;

  --img-left: 0.75rem;
  --img-bottom: 50%;
  --img-shift-y: 50%;
  --img-w: 11rem;
  --img-h: calc(100% - 2rem);
  --img-url: url("../images/outpatient_btn_bg02.png");

  --label-size: 1.1rem;
  --label-lh: 1.5;
}
@media (max-width: 1000px){
  .outpatientRehabBtn--day{
    --btn-pad-left: 10.5rem;
    --img-left: 0.3rem;
    --img-bottom: 50%;
			 --label-size: 1rem;
  }
}
@media (max-width: 700px){
  .outpatientRehabBtn--day{
    --btn-pad-left: 8.5rem;

    --img-left-tb: -0.8rem;
    --img-bottom-tb: 60%;
    --img-shift-y-tb: 50%;
    --img-w-tb: 10rem;
    --img-h-tb: calc(100% - 0.75rem);

    --label-size-tb: 0.95rem;
  }
}
@media (max-width: 600px){
  .outpatientRehabBtn--day{
    --btn-pad-left: 9rem;

    --img-left-sp: 0.2rem;
    --img-bottom-sp: 53%;
    --img-shift-y-sp: 50%;
    --img-w-sp: 8.5rem;
    --img-h-sp: calc(100% - 0.625rem);

    --label-size-sp: 1rem;
  }
}

@media (max-width: 400px){
  .outpatientRehabBtn--day{
    --btn-pad-left: 7.5rem;

    --img-left-sp: -0.2rem;
    --img-bottom-sp: 46%;
    --img-shift-y-sp: 43%;
    --img-h-sp: calc(100% - 0.625rem);

  }
}

/* =========================================================
  outpatientNutrition
========================================================= */

.outpatientNutrition{
  padding: 0 0 4rem;
}
@media (max-width: 700px){
  .outpatientNutrition{
    padding-bottom: 3rem;
  }
}
@media (max-width: 480px){
  .outpatientNutrition{
    padding-bottom: 2.5rem;
  }
}

.outpatientNutrition__head{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
  margin: 0 0 2.5rem;
}
@media (max-width: 900px){
  .outpatientNutrition__head{
    gap: 1.5rem;
  }
}
@media (max-width: 800px){
  .outpatientNutrition__head{
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 480px){
  .outpatientNutrition__head{
    gap: 1rem;
    margin-bottom: 1.25rem;
  }
}

.outpatientNutrition__body{
  min-width: 0;
}
@media (max-width: 700px){
  .outpatientNutrition__body{
    order: 1;
  }
}

.outpatientNutrition__body p{
  margin: 0;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 700px){
  .outpatientNutrition__body p{
    font-size: 0.95rem;
    line-height: 1.9;
  }
}
@media (max-width: 480px){
  .outpatientNutrition__body p{
    font-size: 0.9rem;
    line-height: 1.85;
  }
}

.outpatientNutrition__photo{
  overflow: hidden;
  border-radius: 1rem;
}
@media (max-width: 700px){
  .outpatientNutrition__photo{
    border-radius: 0.875rem;
  }
}
@media (max-width: 480px){
  .outpatientNutrition__photo{
    border-radius: 0.75rem;
  }
}

.outpatientNutrition__photo img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outpatientNutrition__photo--main{
  aspect-ratio: 550 / 320;
}
@media (max-width: 700px){
  .outpatientNutrition__photo--main{
    order: 2;
  }
}

.outpatientNutrition__gallery{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
@media (max-width: 900px){
  .outpatientNutrition__gallery{
    gap: 1.5rem;
  }
}
@media (max-width: 800px){
  .outpatientNutrition__gallery{
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (max-width: 480px){
  .outpatientNutrition__gallery{
    gap: 1rem;
  }
}

.outpatientNutrition__photo--sub{
  aspect-ratio: 550 / 320;
}

/*************************************************************************************
**************************************************************************************

lightbox

**************************************************************************************
**************************************************************************************/

.outpatientNutrition__photo{
  display: block;
  text-decoration: none;
}

.outpatientNutrition__photo img{
  transition: opacity .25s ease, transform .25s ease;
}

.outpatientNutrition__photo:hover img{
  opacity: .92;
}


/* =========================================================
  outpatientSchedule
========================================================= */

.outpatientSchedule{
  padding: 0 0 4rem;
}
@media (max-width: 700px){
  .outpatientSchedule{
    padding-bottom: 3rem;
  }
}
@media (max-width: 480px){
  .outpatientSchedule{
    padding-bottom: 2.5rem;
  }
}

.outpatientSchedule__date{
  margin: 0 0 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 700px){
  .outpatientSchedule__date{
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px){
  .outpatientSchedule__date{
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
  }
}

.outpatientSchedule__section{
  padding: 0 0 3rem;
}
@media (max-width: 700px){
  .outpatientSchedule__section{
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 480px){
  .outpatientSchedule__section{
    padding-bottom: 2rem;
  }
}

.outpatientSchedule__tableWrap{
  overflow-x: auto;
}

.outpatientSchedule__table{
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}

.outpatientSchedule__table th,
.outpatientSchedule__table td{
  border: 1px solid #9D9D9D;
  padding: 1rem 0.5rem;
  text-align: center;
  vertical-align: middle;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.outpatientSchedule__table thead th{
  background: #F4EBE2;
  font-weight: 700;
}

.outpatientSchedule__table tbody th{
  background: #F4EBE2;
  font-weight: 700;
}

.outpatientSchedule__table td.is-closed{
  color: #E60012;
  font-weight: 700;
}

.outpatientSchedule__links{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 26rem;
  margin: 1rem auto 0;
}
@media (max-width: 480px){
  .outpatientSchedule__links{
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 100%;
  }
}

.outpatientSchedule__linkBtn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 2rem 0.75rem 1rem;
  border-radius: 0.5rem;
  background: #7AC943;
  text-decoration: none;
}

.outpatientSchedule__linkText{
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

.outpatientSchedule__linkIcon{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform .25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cg%3E%3Cg%3E%3Cline x1='7' y1='14' x2='20' y2='14' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cline x1='21' y1='14' x2='16.1' y2='18.9' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cline x1='16.1' y1='9.1' x2='21' y2='14' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Ccircle cx='14' cy='14' r='13.5' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
}

.outpatientSchedule__linkBtn:hover .outpatientSchedule__linkIcon{
  transform: translate(3px, -50%);
}


/* =========================================================
  outpatientSchedule
========================================================= */

.outpatientSchedule{
  padding: 0 0 4rem;
}
@media (max-width: 700px){
  .outpatientSchedule{
    padding-bottom: 3rem;
  }
}
@media (max-width: 480px){
  .outpatientSchedule{
    padding-bottom: 2.5rem;
  }
}

.outpatientSchedule__date{
  margin: 0 0 2rem;
  color: #000;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 700px){
  .outpatientSchedule__date{
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
}
@media (max-width: 480px){
  .outpatientSchedule__date{
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }
}

.outpatientSchedule__section{
  padding: 0 0 3rem;
}
@media (max-width: 700px){
  .outpatientSchedule__section{
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 480px){
  .outpatientSchedule__section{
    padding-bottom: 2rem;
  }
}

.outpatientSchedule__tableWrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 480px){
  .outpatientSchedule__tableWrap{
    margin-right: -1rem;
    padding-right: 1rem;
  }
}

.outpatientSchedule__table{
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  table-layout: fixed;
  background: transparent;
}

.outpatientSchedule__head,
.outpatientSchedule__sideHead,
.outpatientSchedule__cell{
  border: 1px solid #9D9D9D;
  padding: 0.9rem 0.4rem;
  text-align: center;
  vertical-align: middle;
  color: #000;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  background: #fff;
}
@media (max-width: 700px){
  .outpatientSchedule__head,
  .outpatientSchedule__sideHead,
  .outpatientSchedule__cell{
    font-size: 0.9rem;
    padding: 0.8rem 0.35rem;
  }
}
@media (max-width: 480px){
  .outpatientSchedule__head,
  .outpatientSchedule__sideHead,
  .outpatientSchedule__cell{
    font-size: 0.85rem;
    padding: 0.75rem 0.3rem;
  }
}

.outpatientSchedule__head{
  background: #F4EBE2;
  font-weight: 700;
}

.outpatientSchedule__head--stub{
  width: 5.5rem;
}
@media (max-width: 480px){
  .outpatientSchedule__head--stub{
    width: 4.5rem;
  }
}

.outpatientSchedule__sideHead{
  background: #F4EBE2;
  font-weight: 700;
  white-space: nowrap;
  width: 5.5rem;
}
@media (max-width: 480px){
  .outpatientSchedule__sideHead{
    width: 4.5rem;
  }
}

.outpatientSchedule__cell{
  background: #fff;
}

.outpatientSchedule__cell--time{
  font-size: 0.9em;
}

.outpatientSchedule__cell.is-closed{
  color: #E60012;
  font-weight: 700;
}

.outpatientSchedule__links{
  display: grid;
  grid-template-columns: repeat(2, 17rem);
  justify-content: center;
  gap: 3rem;
  margin: 1rem auto 0;
}
@media (max-width: 700px){
  .outpatientSchedule__links{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 28rem;
			 gap: 1rem;
  }
}
@media (max-width: 480px){
  .outpatientSchedule__links{
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 100%;
  }
}

.outpatientSchedule__linkBtn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 17rem;
  min-height: 4.5rem;
  padding: 0.75rem 2.25rem 0.75rem 1rem;
  border-radius: 0.5rem;
  background: #7AC943;
  text-decoration: none;
  transition: opacity .25s ease;
}
@media (max-width: 700px){
  .outpatientSchedule__linkBtn{
    min-width: 0;
    min-height: 3.5rem;
  }
}
@media (max-width: 480px){
  .outpatientSchedule__linkBtn{
    min-height: 3.25rem;
    padding: 0.7rem 2rem 0.7rem 0.75rem;
  }
}

.outpatientSchedule__linkBtn:hover{
  opacity: .96;
}

.outpatientSchedule__linkText{
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 700px){
  .outpatientSchedule__linkText{
    font-size: 0.9rem;
  }
}
@media (max-width: 480px){
  .outpatientSchedule__linkText{
    font-size: 0.8rem;
  }
}

.outpatientSchedule__linkIcon{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform .25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cg%3E%3Cg%3E%3Cline x1='7' y1='14' x2='20' y2='14' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cline x1='21' y1='14' x2='16.1' y2='18.9' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cline x1='16.1' y1='9.1' x2='21' y2='14' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Ccircle cx='14' cy='14' r='13.5' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
}

.outpatientSchedule__linkBtn:hover .outpatientSchedule__linkIcon{
  transform: translate(3px, -50%);
}


/* =========================================================
  outpatientSchedule table scrollbar
========================================================= */

.outpatientSchedule__tableWrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #9FCF78 #EDE7DF;
}

/* Chrome / Edge / Safari */
.outpatientSchedule__tableWrap::-webkit-scrollbar{
  height: 10px;
}

.outpatientSchedule__tableWrap::-webkit-scrollbar-track{
  background: #EDE7DF;
  border-radius: 999px;
}

.outpatientSchedule__tableWrap::-webkit-scrollbar-thumb{
  background: #9FCF78;
  border-radius: 999px;
  border: 2px solid #EDE7DF;
}

.outpatientSchedule__tableWrap::-webkit-scrollbar-thumb:hover{
  background: #7AC943;
}

.outpatientSchedule__tableWrap::-webkit-scrollbar-corner{
  background: transparent;
}



