/* -------------------- PC ----------------------- */

/* --------------------
   common
----------------------- */

/* --- scroll_rock --- */
.scroll_rock.active{
  overflow: hidden;
}


/* ---------- header ---------- */
header{
  width: 100%;
  min-width: calc(1340px + 20px);
  padding: 36px 10px;
  background: #ffffff;
  box-shadow: 0 5px 8px rgba(41, 63, 188, 0.3);
}
.header__wrap{
  width: 1340px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.header__logo img{
  width: 207px;
  height: auto;
}

.header__ge{
  font-size: 18px;
  line-height: 1;
}


/* ---------- main ---------- */
.main__wrap{
  width: 100%;
}

.main__cont{
  width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
}


/* ---------- list ---------- */
/* --- パンくず --- */
.breadcrumbs__list{
  margin-bottom: 40px;

  li{
    display: inline;
    font-size: 18px;
    line-height: 1;
  }
    li.is-active{ text-decoration: underline;}

  li a{
    text-decoration: none;
    color: var(--color-b03);
  }  

  li::after{
    content: '>';
    display: inline-block;
    width: 0.5em;
    height: 22px;
    margin: 0 0.5em;
  }
  li:last-child:after{
    display: none;
  }
}

/* --- ※リスト --- */
.list__note1{
  font-size: 14px;
  list-style: 1.6;
  text-indent: -1em;
  padding-left: 1em;
}
.list__note2{
  font-size: 14px;
  line-height: 1.6;
  text-indent: -2em;
  padding-left: 2em;
}

/* --- ulリスト --- */
.list__ul1{ /* disc19px */
  list-style: none;
}
.list__ul1 li{
  margin-bottom: 14px;
  padding-left: 24px;
  line-height: 1.6;
  position: relative;
}
.list__ul1 li::before{/* 基本はgreen2 */
  display: inline-block;
  content: "";
  width: 19px;
  height: 19px;
  background: url(/common/image/parts/list_mark_g2.png) 0 0 no-repeat;
  background-size: 19px auto;
  position: absolute;
  top: 8px;
  left: 0;
}

  .list__ul1 li.mark_p1{/* pink */
    color: #EF6E6A;
  }
  .list__ul1 li.mark_p1::before{
    background: url(/common/image/parts/list_mark_p1.png) 0 0 no-repeat;
    background-size: 19px auto;
  }

  .list__ul1 li.mark_b3::before{/* blue3 */
    background: url(/common/image/parts/list_mark_b3.png) 0 0 no-repeat;
    background-size: 19px auto;
  }

  .list__ul1.mark_b4 li::before{/* blue4 */
    background: url(/common/image/parts/list_mark_b4.png) 0 0 no-repeat;
    background-size: 19px auto;
  }

/* --- ul__caution --- */
.ul__caution li{
  margin-top: 50px;
  padding: 14px 20px 12px 120px;
  border: 2px solid #EF6E6A;
  border-radius: 6px;
  color: #EF6E6A;
  font-weight: 600;
  line-height: 1;
  position: relative;
}
.ul__caution li::before{
  display: inline-block;
  content: "";
  width: 70px;
  height: 70px;
  background: url(/common/image/parts/caution_icon.png) 0 0 no-repeat;
  background-size: 70px auto;
  position: absolute;
  top: -0.5em;
  left: 26px;
}


/* --- olリスト --- */
.list__ol1{ /* 括弧付き 1) 2) */
  list-style: none;
  font-size: 14px;
  line-height: 1.6;
  text-indent: -1.5em;
  padding-left: 1.5em;
}



/* ---------- heading ---------- */
h1{
  margin-bottom: 36px;
  padding-bottom: 6px;
  font-size: 36px;
  font-weight: 600;
  color: var(--color-b03);
  line-height: 1;
  border-bottom: 3px solid var(--color-g02);
}
  .h1_noborder{
    padding-bottom: 0;
    border-bottom: none;
  }

h2{
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 600;
  color: var(--color-b02);
}

h2.h2_02{
  display: inline-block;
  margin-bottom: 35px;
  padding: 12px 24px 8px;
  background: var(--color-b04);
  border-radius: 8px;
  color: #ffffff;
  line-height: 1;
}
h2.h2_02 span{
  font-size: 23px;
  font-weight: normal;
}

h3.h3_01{
  margin-bottom: 24px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-b03);
  display: flex;
  align-items: center;
}
h3.h3_01::before{
  display: inline-block;
  content: "";
  width: 23px;
  height: 1em;
  margin-right: 8px;
  background: url(/common/image/parts/list_mark_b1.png) 0 0 no-repeat;
  background-size: 23px 23px;
}


/* ---------- box 小規模コンテンツ ---------- */
/* --- box__grid --- */
.box__grid--varL{
  width: 100%;
  display: grid;
  grid-template-rows: auto;
	grid-template-columns: 1fr min-content;
  gap: 40px;
}

.box__grid--varR{
  width: 100%;
  display: grid;
  grid-template-rows: auto;
	grid-template-columns: min-content 1fr;
  gap: 40px;
}


/* --- box__reference --- */
.box__reference{
  margin-top: 50px;
}
.box__reference dl{
  display: flex;
  justify-content: start;
  align-items: center;
}
.box__reference dl dt{
  width: 74px;
  height: 72px;
  margin-right: 13px;
  padding-left: 0.3em;
  background: var(--color-g02);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box__reference dl dd{
  width: 1113px;
  
}
.box__reference dl dd ul li{
  padding-left: 14px;
  text-indent: -14px;
  font-size: 14px;
  line-height: 1.2;
  color: #000000;
}
.box__reference dl dd ul li::before{
  display: inline-block;
  content: "";
  width: 14px;
  height: 14px;
  background: url(/common/image/parts/box_reference_list.png) 0 2px no-repeat;
  background-size: 10px 10px;
}


/* ---------- Area 中規模コンテンツ ---------- */
/* --- pointArea --- */
.pointArea{
  width: 100%;
  padding: 50px 80px;
  border: 6px solid var(--color-g02);
  border-radius: 12px;
}
.pointArea h3{
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-b03);
  text-align: center;
}

.pointArea .point__cont dt{
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 30px 4px;
  background: var(--color-b01);
  border-radius: 6px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
}
.pointArea .point__cont dd{
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 3px solid var(--color-g02);
}
.pointArea .point__cont dd:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}


/* --- sublinkArea --- */
.sublinkArea{
  width: 1200px;
  margin-bottom: 80px;
  padding: 30px 40px;
  background: #E5E5EA;
  border-radius: 6px;
}

.sublinkArea .sublink__list{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sublinkArea .sublink__list li{
  font-size: 20px;
  font-weight: 600;
}

.sublinkArea .sublink__list li a{
  padding: 13px 33px;
  background: #ffffff;
  border: 2px solid var(--color-b02);
  border-radius: 6px;
  color: var(--color-b02);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sublinkArea .sublink__list li a::after{
  display: inline-block;
  content: "";
  width: 24px;
  height: 24px;
  margin-left: 20px;
  background: url(/common/image/parts/sublink_arrow1.png) 0 0 no-repeat;
  background-size: 24px auto;
}
  .sublinkArea .sublink__list li a.is-active{
    background: var(--color-b02);
    border: none;
    color: #ffffff;
  }
  .sublinkArea .sublink__list li a.is-active::after{
    background: url(/common/image/parts/sublink_arrow2.png) 0 0 no-repeat;
    background-size: 24px auto;
  }

.sublinkArea .sublink__list li a:hover{
  background: var(--color-b02);
  border: none;
  color: #ffffff;
  opacity: 1;
}
.sublinkArea .sublink__list li a:hover:after{
  background: url(/common/image/parts/sublink_arrow2.png) 0 0 no-repeat;
  background-size: 24px auto;
}

/* sublinkArea__consultation */
.sublinkArea__consultation li:nth-of-type(1) a{ width: 465px;}
.sublinkArea__consultation li:nth-of-type(2) a{ width: 385px;}
.sublinkArea__consultation li:nth-of-type(3) a{ width: 206px;}

/* sublinkArea__about */
.sublinkArea__about li:nth-of-type(1) a{ width: 308px;}
.sublinkArea__about li:nth-of-type(2) a{ width: 447px;}
.sublinkArea__about li:nth-of-type(3) a{ width: 301px;}

/* sublinkArea__sideeffect */
.sublinkArea__sideeffect .sublink__list li a{
  padding: 13px 18px;
}
.sublinkArea .sublink__list li a::after{
  margin-left: 6px;
}
.sublinkArea__sideeffect .sideeffect1 li a{ width: 267px;}
.sublinkArea__sideeffect .sideeffect2 li:nth-of-type(1) a{ width: 300px;}
.sublinkArea__sideeffect .sideeffect2 li:nth-of-type(2) a{ width: 160px;}
.sublinkArea__sideeffect .sideeffect2 li:nth-of-type(3) a{ width: 372px;}
.sublinkArea__sideeffect .sideeffect2 li:nth-of-type(4) a{ width: 200px;}
.sublinkArea__sideeffect .sideeffect3 li a{ width: 572px;}


/* ttl */
.sublinkArea .ttl{
  margin: 30px 0 5px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-b03);
  display: flex;
  align-items: center;
}
.sublinkArea .ttl::before{
  display: inline-block;
  content: "";
  width: 20px;
  height: 22px;
  margin-right: 6px;
  background: url(/common/image/parts/list_mark_b1_3.png) 0 0 no-repeat;
  background-size: 20px auto;
}


/* --- guideArea --- */
.guideArea{
  width: 1200px;
  height: 80px;
  margin: 75px 0 0;
}

.guide__link{
  width: 100%;
  position: relative;
}
.guide__link li a{
  display: block;
  height: 80px;
  color: var(--color-b03);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  border: 3px solid var(--color-g02);
  border-radius: 12px;
  display: flex;
  align-items: center;
}

/* .before */
.guide__link li.before{
  width: auto;
  height: 80px;
  background: #ffffff url(/common/image/parts/guide_link_arrow.png) 18px center no-repeat;
  background-size: 34px auto;
  position: absolute;
  top: 0;
  left: 0;
}
.guide__link li.before a{
  padding: 0 50px 0 72px;
}
  
/* .next */
.guide__link li.next{
  width: auto;
  height: 80px;
  background: #ffffff url(/common/image/parts/guide_link_arrow.png) no-repeat;
  background-position: left 18px center;
  background-size: 34px auto;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(180deg);
}
.guide__link li.next a{
  padding: 0 72px 0 50px;
  transform: rotate(-180deg);
}



/* ---------- section ---------- */
.section + .section{ margin-top: 70px;}

.section p{
  margin-bottom: 30px;
}

.section p:last-of-type,
.section div:last-of-type{
  margin-bottom: 0;
}

.section p:last-of-type + ul,
.section p:last-of-type + div{
  margin-top: 30px;
}



/* --------------------
   modalArea
----------------------- */
/* --- common --- */
.modalArea{
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow-y: auto;
}
.modal__overlay{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(000, 000, 000, 0.8);
}

/* --- 外部リンク --- */
.modalArea .external_link{
  width: 820px;
  padding: 60px;
  background: #ffffff;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modalArea .external_link p{
  margin-bottom: 40px;
}
.modalArea .external_link .btn{
  width: 386px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.modalArea .external_link .btn li{
  width: 174px;
  text-align: center;
}
.modalArea .external_link .btn li a{
  display: block;
  width: 100%;
  padding: 8px 0;
  border-radius: 25px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
}
.modalArea .external_link .btn li:nth-of-type(1) a{
  background: var(--color-g02);
}
.modalArea .external_link .btn li:nth-of-type(2) a{
  background: #BFC0CC;
}


/* ---- pagetop --- */
#scroll-top{
  display: none;
  width: 55px;
  height: 55px;
  position: fixed;
  bottom: 24px;
  right: 24px;
  cursor: pointer;
  z-index: 999;
}
#scroll-top:hover{
  opacity: 0.8;
}
  .is-stop{
    position: absolute !important;
    bottom: 1200px !important;
  }

  


/* --------------------
   個別parts
----------------------- */
/* ---------- /index.html ---------- */
.tec_index h1{
  margin: 4px 0 0 0;
  padding: 0;
  border: none;
}

.tec_index .lead{
  width: 1200px;
  margin: 70px auto 24px;
}

.tec_index .comfirmArea{
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.tec_index .comfirm__box{
  width: 560px;
  padding: 58px 0;
  border: 1.5px solid #BFBFBF;
  border-radius: 25px;
  text-align: center;
}

.tec_index .comfirm__box h2{
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 40px;
}
.tec_index .comfirm__box p{
  margin-bottom: 40px;
  font-size: 20px;
}

.tec_index .comfirm__box .btn01{
  width: 386px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.tec_index .comfirm__box .btn01 li{
  width: 174px;
}
.tec_index .comfirm__box .btn01 li a{
  display: block;
  width: 100%;
  padding: 8px 0;
  border-radius: 25px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
}
.tec_index .comfirm__box .btn01 li:nth-of-type(1) a{
  background: var(--color-g02);
}
.tec_index .comfirm__box .btn01 li:nth-of-type(2) a{
  background: #BFC0CC;
}



/* ---------- /top.html ---------- */
/* kvArea */
.kvArea{
  width: 1340px;
  height: 394px;
  margin: 0 auto 60px;
  background: url(/common/image/top/kv_img.png) right 29px no-repeat;
  background-size: 742px auto;
  position: relative;
}
.kv__lead{
  font-size: 38px;
  color: var(--color-b02);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -2px;
  text-align: center;
  position: absolute;
  top: 60px;
  left: 86px;
}

/* tabArea */
.tabArea{
  width: 1340px;
  margin: 0 auto 50px;
  margin-top: -160px; /* bg調整 */
  padding-top: 160px; /* bg調整 */
  padding-bottom: 40px;
  background: url(/common/image/top/main_bg.png) 0 0 repeat-y;
}

/* tab__menu */
.tab__menu{
  width: 1260px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
  .tab__menu li{
    width: 370px;
    height: 80px;
    background: #ffffff;
    border-radius: 24px 24px 0 0;
    color: var(--color-b03);
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
  }

  /* tab__menu active */
  .tab__menu li.active  { background: var(--color-b01);}
  .tab__menu li.active a{ color: #ffffff;}

  .tab__menu li + li{
    margin-left: 20px;
  }

  .tab__menu li a{
    display: block;
    width: 100%;
    height: 80px;
    padding-top: 26px;
  }


/* tab__box */
.tab__box{
  width: 1260px;
  margin: 0 auto;
  padding: 40px 24px;
  background: #D6DAEE;
  border: 4px solid var(--color-b01);
  border-radius: 24px;
}

/* tab__cont */
.tab__cont{
  width: 1260px;

  display: none;
  opacity: 0;
}

/* tab__cont 表示切り替え */
.tab__cont.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


/* tab__link */
.tab__cont .tab__link{
  display: flex;
  flex-wrap: wrap;
}

.tab__cont .tab__link li{
  width: 590px;
  height: 160px;
  position: relative;
}

.tab__cont .tab__link li:nth-of-type(1),
.tab__cont .tab__link li:nth-of-type(2),
.tab__cont#tab02 .tab__link li:nth-of-type(3),
.tab__cont#tab02 .tab__link li:nth-of-type(4){
  margin-bottom: 20px;
}
.tab__cont .tab__link li:nth-of-type(even){
  margin-left: 20px;
}

.tab__cont .tab__link li a{
  display: inline-block;
  width: 590px;
  height: 160px;
  padding-left: 110px;
  background-color: #ffffff;
  border-radius: 24px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  left: 110px;
  bottom: 32px;
}
  .tab__cont .tab__link li a:hover{
    background-color: var(--color-b02);
    color: #ffffff;
  }

.tab__cont .tab__link li a span.link{
  display: inline-block;
  position: absolute;
  bottom: 33px;
  left: 110px;
}
.tab__cont .tab__link li a span.link_line1{
  display: inline-block;
  position: absolute;
  bottom: 51px;
  left: 110px;
}

/* tab__link icon設定 */
#tab01 .tab__link li:nth-of-type(1) a{
  background-image: url(/common/image/top/tab_icon01_01.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 110px auto;
}
#tab01 .tab__link li:nth-of-type(2) a{
  background-image: url(/common/image/top/tab_icon01_02.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 110px auto;
}
#tab01 .tab__link li:nth-of-type(3) a{
  background-image: url(/common/image/top/tab_icon01_03.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 110px auto;
}
#tab01 .tab__link li:nth-of-type(4) a{
  background-image: url(/common/image/top/tab_icon01_04.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 110px auto;
}

#tab02 .tab__link li:nth-of-type(1) a{
  background-image: url(/common/image/top/tab_icon02_01.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 110px auto;
}

#tab02 .tab__link li:nth-of-type(2) a{
  background-image: url(/common/image/top/tab_icon02_02.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 110px auto;
}
#tab02 .tab__link li:nth-of-type(3) a{
  background-image: url(/common/image/top/tab_icon02_03.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 110px auto;
}
#tab02 .tab__link li:nth-of-type(4) a{
  background-image: url(/common/image/top/tab_icon02_04.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 110px auto;
}
#tab02 .tab__link li:nth-of-type(5) a{
  background-image: url(/common/image/top/tab_icon02_05.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 110px auto;
}
#tab02 .tab__link li:nth-of-type(6) a{
  background-image: url(/common/image/top/tab_icon02_06.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 110px auto;
}

#tab03 .tab__link li:nth-of-type(1) a{
  background-image: url(/common/image/top/tab_icon03_01.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 110px auto;
}
#tab03 .tab__link li:nth-of-type(2) a{
  background-image: url(/common/image/top/tab_icon03_02.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 110px auto;
}
#tab03 .tab__link li:nth-of-type(3) a{
  background-image: url(/common/image/top/tab_icon03_03.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 110px auto;
}

/* tab__link 強調文字 */
.tab__cont .tab__link li a span.emp{
  font-size: 34px;
  text-decoration: underline;
  text-decoration-color: #F9F93D;
  text-underline-offset:-5px;
  text-decoration-thickness: 12px;
}
  .tab__cont#tab02 .tab__link li:nth-of-type(2) a span.emp{
    font-size: 30px;
  }

  .tab__cont .tab__link li a:hover span.emp{
    color: #F9F93D;
    text-decoration: none;
  }

/* tab__link arrow */
.tab__cont .tab__link li a::after{
  display: inline-block;
  content: "";
  width: 50px;
  height: 50px;
  background: url(/common/image/top/tab_arrow01.png) 0 0 no-repeat;
  background-size: 50px auto;
  position: absolute;
  top: calc(50% - 25px);
  right: 20px;
}
  .tab__cont .tab__link li a:hover:after{
    background: url(/common/image/top/tab_arrow02.png) 0 0 no-repeat;
    background-size: 50px auto;
  }



/* ---------- /myeloma.html ---------- */
.myeloma .sec01 .list__note2{
  margin: 18px 0 0 54px;
}


/* ---------- /about.html ---------- */
.about .box__sec02{
  width: 100%;
  margin-bottom: 70px;
  display: flex;
  justify-content: space-between;
}
.about .box__sec02 .contL{ width: 520px;}
.about .box__sec02 .contR{
  width: 640px;
  padding-left: 120px;
  background: url(/common/image/about/img02_arrow.png) 0 76px no-repeat;
  background-size: 90px 45px;
}

.about .box__sec02 .img{
  display: flex;
  justify-content: center;
}

.about .box__sec02 .img{
  display: flex;
  justify-content: center;
}

.about .pointArea .point__img01{
  display: flex;
  justify-content: center;
}

.about .pointArea .img_ajust{
  margin-top: -80px;
}


/* ---------- /treatment.html ---------- */
.treatment .lead{
  display: inline-block;
  margin-bottom: 40px;
  padding: 8px 20px 6px;
  background: var(--color-g02);
  border-radius: 6px;
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
}
.treatment .lead span{
  font-weight: normal;
}

/* sec01 */
.treatment .sec01 dl{
  width: 642px;
  margin: 30px 0;
  padding: 30px;
  background: #DFE2F5;
  border-radius: 10px;
}
.treatment .sec01 dt{
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--color-b02);
}
.treatment .sec01 dd li{
  padding-left: 24px;
  font-size: 22px;
  background: url(/common/image/parts/list_mark_b1_2.png) 0 10px no-repeat;
  background-size: 16px 16px;
}

/* sec02 */
.treatment .sec02 dl{
  width: 100%;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.treatment .sec02 dt{
  width: 162px;
  margin-right: 15px;
  padding: 8px 0 6px 0;
  border-radius: 6px;
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  text-align: center;
}
  .treatment .sec02 .sec02__dl02{ margin-bottom: 46px;}

  .treatment .sec02 .sec02__dl01 dt{ background: var(--color-g02);}
  .treatment .sec02 .sec02__dl02 dt{ background: #3B9579;}

.treatment .sec02 dd{
  line-height: 1;
}

/* sec03 */
.treatment .sec03 .box__grid--varL{
  gap: 25px;
}
.treatment .sec03 .box__emphasis{
  width: 100%;
  margin-top: 20px;
  padding: 24px;
  border: 4px solid var(--color-g02);
  border-radius: 10px;
  font-weight: 600;
}


/* ---------- /flow.html ---------- */
.flow .box__flow{
  width: 1200px;
  height: 973px;
  margin-top: 40px;
  background: url(/common/image/flow/img01.png) right top no-repeat;
  background-size: 1200px 973px;
  position: relative;
}

.flow .flow_cont{
  width: 660px;
  position: absolute;
  left: 0
}

.flow .flow01{ top: 150px;}
.flow .flow02{ top: 514px;}
.flow .flow03{ top: 702px;}


/* ---------- /sideeffect_treatment.html ---------- */
.sideeffect_treatment .list__ul1{
  margin-bottom: 70px;
}

/* pointArea */
.sideeffect_treatment .pointArea{
  padding: 30px 40px;
}

/* box__caution */
.sideeffect_treatment .box__caution{
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.sideeffect_treatment .box__caution .cont{
  width: 540px;
  padding: 30px 10px 30px 20px;
  background: #EEF9F6;
  border-radius: 12px;
}

.sideeffect_treatment .box__caution dt{
  margin-bottom: 14px;
}

.sideeffect_treatment .box__caution ul{
  margin-bottom: 0;
}
.sideeffect_treatment .box__caution li{
  margin-bottom: 12px;
  padding-left: 24px;
  font-size: 20px;
  line-height: 1.4;
  position: relative;
}
.sideeffect_treatment .box__caution li::before{
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 4px;
  background: url(/common/image/parts/list_mark_g2.png) 0 0 no-repeat;
  background-size: 18px auto;
  position: absolute;
  top: 4px;
  left: 0;
}
.sideeffect_treatment .box__caution li:last-child{
  margin-bottom: 0;
}

/* box__comment */
.sideeffect_treatment .box__comment{
  width: 694px;
  min-height: 222px;
  margin: 80px auto  0;
  background: url(/common/image/sideeffect/treatment_img01.png) right 0 no-repeat;
  background-size: 162px auto;
}
.sideeffect_treatment .box__comment p{
  width: 506px;
  font-weight: 600;
}

/* box__recommend */
.sideeffect_treatment .box__recommend{
  margin-top: 60px;
  padding-bottom: 30px;
  background: url(/common/image/sideeffect/treatment_img02.png) right bottom no-repeat;
  background-size: 224px auto;
}
.sideeffect_treatment .box__recommend h3{
  margin-bottom: 40px;
  padding-left: 10px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-b02);
  text-align: center;
  background: url(/common/image/sideeffect/treatment_line01.png) 0 50% no-repeat;
  background-size: 1200px auto;
}

.sideeffect_treatment .box__recommend ol li{
  padding-left: 44px;
  margin-bottom: 20px;

}
.sideeffect_treatment .box__recommend ol li:nth-of-type(1){
  background: url(/common/image/sideeffect/treatment_ol_li1.png) 0 0 no-repeat;
  background-size: 36px auto;
}
.sideeffect_treatment .box__recommend ol li:nth-of-type(2){
  background: url(/common/image/sideeffect/treatment_ol_li2.png) 0 0 no-repeat;
  background-size: 36px auto;
}
.sideeffect_treatment .box__recommend ol li:nth-of-type(3){
  margin-bottom: 0;
  background: url(/common/image/sideeffect/treatment_ol_li3.png) 0 0 no-repeat;
  background-size: 36px auto;
}


/* ---------- /sideeffect/crs.html ---------- */
/* .sideeffect_crs{
} */


/* ---------- /sideeffect/cytopenia.html ---------- */
/* box__symptoms */
.sideeffect_cytopenia .box__symptoms{
  margin-top: 32px;
  padding: 30px 40px;
  background: #E9EBF8;
  border-radius: 12px;
}
.sideeffect_cytopenia .box__symptoms h3{
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 600;
  color: var(--color-b02);
  line-height: 1;
}
.sideeffect_cytopenia .symptoms__wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.sideeffect_cytopenia .symptoms__cont{
  width: 530px;
}

.sideeffect_cytopenia .symptoms__cont dl{
  margin-bottom: 14px;
}
.sideeffect_cytopenia .symptoms__cont dl:last-child{
  margin-bottom: 0;
}
.sideeffect_cytopenia .symptoms__cont dt{
  font-size: 24px;
  font-weight: 600;
  color: var(--color-b03);
  line-height: 1.6;
}
.sideeffect_cytopenia .symptoms__cont dt::before{
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 6px;
  background: url(/common/image/parts/list_mark_s_b4.png) 0 0 no-repeat;
  background-size: 18px auto;
}
.sideeffect_cytopenia .symptoms__cont dd{
  padding-left: 24px;
  line-height: 1.6;
}


/* ---------- /sideeffect/icans.html ---------- */
.sideeffect_icans .list__ol1{
  margin-top: 24px;
  text-align: right;
}


/* ---------- /consultation/pml_tls_ild.html ---------- */
.sideeffect_pml_tls_ild .box__symptoms{
  margin-top: 32px;
  padding: 30px 40px;
  background: #E9EBF8;
  border-radius: 12px;
  display: flex;
  align-items: center;
}
.sideeffect_pml_tls_ild .box__symptoms h3{
  margin-right: 24px;
  font-size: 26px;
  font-weight: 600;
  color: var(--color-b02);
}


/* ---------- /dailylife.html ---------- */
.dailylife .section{
  padding-bottom: 40px;
  border-bottom: 2px solid #CCCDD6;
}

.dailylife .section + .section{
  margin-top: 50px;
}

.dailylife .section p{
  width: 820px;
}

.dailylife .sec01{
  background: url(/common/image/dailylife/img01.png) right 0 no-repeat;
  background-size: 343px auto;
}
.dailylife .sec02{
  background: url(/common/image/dailylife/img02.png) right 50% no-repeat;
  background-size: 343px auto;
}
.dailylife .sec02 dl{
  width: 820px;
  margin-top: 20px;
  padding: 20px 30px;
  border: 3px solid var(--color-g02);
  border-radius: 12px;
}
.dailylife .sec02 dt{
  font-size: 21px;
}
.dailylife .sec02 dd{
  font-size: 18px;
  line-height: 1.6;
}

.dailylife .sec03{
  background: url(/common/image/dailylife/img03.png) right 0 no-repeat;
  background-size: 343px auto;
}
.dailylife .sec04{
  padding-bottom: 60px;
  background: url(/common/image/dailylife/img04.png) right 0 no-repeat;
  background-size: 343px auto;
}
.dailylife .sec05{
  border-bottom: none;
}
.dailylife .sec05 p{
  width: 100%;
}


/* ---------- /family.html ---------- */
.family .dl__point{
  margin-bottom: 50px;
  padding-bottom: 40px;
  padding-left: 260px;
  border-bottom: 1px solid #707070;
}
.family .dl__point.dl01{
  padding-top: 40px;
  border-top: 1px solid #707070;
}

.family .dl__point dt{
  margin-bottom: 14px;
  padding-left: 24px;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.6;
  position: relative;
}
.family .dl__point dt::before{
  display: inline-block;
  content: "";
  width: 19px;
  height: 19px;
  background: url(/common/image/parts/list_mark_b4.png) 0 0 no-repeat;
  background-size: 19px auto;
  position: absolute;
  top: 8px;
  left: 0;
}
.family .dl__point dd{
  font-size: 23px;
}

.family .dl01{
  background: url(/common/image/family/img01.png) 0 40px no-repeat;
  background-size: 230px auto;
}
.family .dl02{
  background: url(/common/image/family/img02.png) 0 0 no-repeat;
  background-size: 230px auto;
}
.family .dl03{
  margin-bottom: 30px;
  background: url(/common/image/family/img03.png) 0 50% no-repeat;
  background-size: 230px auto;
}
.family .dl04{
  padding-top: 20px;
  background: url(/common/image/family/img04.png) 0 0 no-repeat;
  background-size: 230px auto;
}
.family .dl05{
  margin-bottom: 20px;
}


/* ---------- /consultation/discuss.html ---------- */
.consultation_discuss .pointArea{
  padding: 50px 64px;
}

.consultation_discuss .lead{
  margin-bottom: 40px;
  padding: 12px 20px 8px;
  background: var(--color-g02);
  border-radius: 6px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  text-align: center;
}

.consultation_discuss .box__img01{
  width: 1060px;
  margin: 0 auto 34px !important;
  padding: 0;
  display: flex;
  justify-content: center;
}

.consultation_discuss .box__img02{
  width: 1200px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

/* ---------- /consultation/team.html ---------- */
.consultation_team .pointArea{
  min-height: 1390px;
  padding: 50px 0 0;
  position: relative;
}

.consultation_team .pointArea .team__cont{
  width: 328px;
  position: absolute;
}

.consultation_team .pointArea .team__cont.team1{
  top: 224px;
  left: 62px;
}
.consultation_team .pointArea .team__cont.team2{
  top: 114px;
  left: calc(50% - 164px);
}
.consultation_team .pointArea .team__cont.team3{
  top: 224px;
  right: 62px;
}
.consultation_team .pointArea .team__cont.team4{
  top: 714px;
  left: 62px;
}
.consultation_team .pointArea .team__cont.team5{
  bottom: 40px;
  left: calc(50% - 164px);
}
.consultation_team .pointArea .team__cont.team6{
  top: 714px;
  right: 62px;
}
.consultation_team .pointArea .team__cont.team7{
  top: 560px;
  right: calc(50% - 155px);
}


.consultation_team .pointArea .team__cont .team_img{
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.consultation_team .pointArea .team__cont .team_txt dt{
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-b02);
  text-align: center;
}
.consultation_team .pointArea .team__cont .team_txt dd.lead{
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-b02);
  text-align: center;
}
.consultation_team .pointArea .team__cont .team_txt dd{
  font-size: 20px;
}


/* ---------- /consultation/method.html ---------- */
.consultation_method .boxArea{
  display: grid;
  grid-template-rows: auto;
	grid-template-columns: 850px 1fr;
}
.consultation_method .boxArea .txt01{
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}
.consultation_method .boxArea .txt02{
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}
.consultation_method .boxArea .txt03{
  grid-row: 3 / 4;
  grid-column: 1 / 2;
}
.consultation_method .boxArea .img01{
  padding-left: 30px;
  grid-row: 1 / 4;
  grid-column: 2 / 3;
}


/* ---------- /sitemap.html ---------- */
.sitemap h1{
  margin-bottom: 46px;
}
.sitemap .section{
  width: 1200px;
  display: flex;
  justify-content: space-between;
}

.sitemap .sitemap__cont{
  width: 580px;
}

.sitemap .sitemap__cont li.ttl,
.sitemap .sitemap__cont li a{
  display: inline-block;
  padding-left: 36px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-b02);
  background: url(/common/image/sitemap/mark_arrow1.png) 0 2px no-repeat;
  background-size: 30px auto;
}

.sitemap .sitemap__cont li + li{
  margin-top: 40px;
}
.sitemap .sitemap__cont li li + li{
  margin-top: 12px;
}

.sitemap .sitemap__cont li.list_wrap{
  margin-top: 12px;
  padding-left: 34px;
}

.sitemap .sitemap__cont li li a{
  padding-left: 16px;
  font-size: 22px;
  font-weight: normal;
  line-height: 1;
  color: var(--color-b03);
  background: url(/common/image/sitemap/mark_arrow2.png) 0 1px no-repeat;
  background-size: 10px auto;
}


/* ---------- /404.html ---------- */
.notfoud .notfoudArea{
  width: 864px;
  margin: calc(70px - 8px) auto;
  padding: 76px 50px 76px 40px;
  border: 2px solid #BFBFBF;
  border-radius: 25px;
}

.notfoud .notfoudArea h1{
  margin-bottom: 40px;
  padding-bottom: 0;
  font-size: 36px;
  font-weight: 600;
  color: var(--color-b02);
  line-height: 1;
  border-bottom: none;
}

.notfoud .notfoudArea p{
  font-size: 22px;
}
.notfoud .notfoudArea p + p{
  margin-top: 30px;
}

.notfoud .notfoudArea p a{
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.notfoud .notfoudArea p a:hover{
  text-decoration: none;
  opacity: 1;
}


/* --------------------
   pcのみ 
----------------------- */
@media screen and (min-width:769px) {

}


/* --------------------
  pc調整
----------------------- */
@media (min-width:769px) and (max-width:1280px){

.main__wrap{
  padding: 0 10px;  
}

}


