/* --------------------
   /19-1/
   PC
----------------------- */

/* ---- header ---- */
header{
  width: 100%;
  padding: 20px 0;

  .header__wrap{
    width: 1282px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    background: #ffffff;
  }

  /* header__logo */
  .header__logo{
    width: 258px;
    height: auto;
    margin-top: 6px;
  }
  .header__logo img{
    width: 100%;
    height: auto;
  }

  /* .header__cont */
  .header__cont{
    text-align: right;
  }

  /* .header__nav */
  .header__nav{
    margin-bottom: 4px;
  }
    .header__nav li{
      font-size: 14px;
      line-height: 1.4;
      font-weight: 600;
    }
    .header__nav li a{
      text-decoration: underline;
    }
    .header__nav li a:hover{
      text-decoration: none;
    }

  .header__ge{
    /* padding-left: 3em;
    text-indent: -3em; */
    font-size: 14px;
    line-height: 1.4;
    color: #333333;
    text-align: left;
  }
}


/* ---- footer ---- */
footer{
  width: 1280px;
  margin: 0 auto;
  padding: 38px 0 80px;
}

footer sup{
  font-size: 100%;
}

.footer__nav{
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;

    li{
      padding-right: 16px;
      font-size: 13px;
    }

    li::after{
      content: '｜';
      margin-left: 16px;
    }
    li:last-child:after{
      content: none;
    }

    a{
      text-decoration: none;
    }
    a:hover{
      opacity: 0.7;
    }
}

.footer__txt{
  margin-bottom: 66px;
  font-size: 12px;
  color: var(--color-gray01);
  line-height: 1.8;
}

.footer__wrap{
  width: 100%;
  height: 1rem;
  margin-bottom: 20px;
  font-size: 12px;
  position: relative;
}

.footer__jp{
  position: absolute;
  top: calc(50% - 4px);
  left: 0;
  font-size: 11px;
  line-height: 1;
}

.copyright{
  position: absolute;
  top: 0;
  left: 174px;
  font-size: 12px;
  color: var(--color-gray01);
}

.footer__update{
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  color: var(--color-gray01);
}


.footer__logo{
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #d4d4d4;
  align-items: center;
}


/* ---- main__menu ---- */



/* --------------------
   modal parts
----------------------- */
.overlay {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}


/* ---- modalArea ---- */
.modalArea{
  /* width: 840px; */
  /* padding: 36px 40px; */
  background-color: #fff;
  border-radius: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  .modal__wrap{
    position: relative;
  }

  .modal__btn--close{
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
    .modal__btn--close img{
      margin-bottom: 4px;
    }
    .modal__btn--close a{
      color: var(--color-green01);
    }
    .modal__btn--close a:hover{
      opacity: 0.7;
    }
    .modal__btn--close span{
      font-size: 12px;
      color: var(--color-green02);
    }
}



.modal-block {
  display: none;
}


/* ---- disclaimer ---- */
.modalArea .disclaimer {
  width: 840px;
  padding: 36px 40px;
  background-color: #fff;
  border-radius: 12px;

    dl.disclaimer__cont{
      margin-bottom: 30px;

      dt{
        font-size: 22px;
        text-align: center;
        color: var(--color-orange01);
      }
      dd{
        margin-top: 36px;
        padding-top: 30px;
        border-top: 1px solid var(--color-orange01);
        font-size: 18px;
        line-height: 1.78;
      }
      dd:last-child{
        border-top: none;
        padding-top: 0;
        margin-top: 30px;
      }
    }

    ul.disclaimer__btn{
      width: 455px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;

      li a,
      li span{
        display: block;
        width: 210px;
        padding: 27px 0;
        border-radius: 12px;
        background: var(--color-green01);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
        color: #ffffff;
        font-size: 20px;
        line-height: 1;
        font-weight: 600;
        text-align: center;
        cursor: pointer;
      }
      li a:hover,
      li span:hover{
        opacity: 0.8;
      }
    }
}


/* ---- modal-movie ---- */
.modal-movie {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;

  .modal__bg {
    background: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    padding: 60px 90px;
  }
  
  .modal__btn--close{
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;

    .modal__btn--close img{
      margin-bottom: 4px;
    }
    .modal__btn--close a{
      color: var(--color-green01);
    }
    .modal__btn--close a:hover{
      opacity: 0.7;
    }
    .modal__btn--close span{
      font-size: 12px;
      color: var(--color-green02);
    }
  }
}


/* ---- modal-download ---- */
.modal-download {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  overflow-y: auto;

  .modal__bg {
    width: 1140px;
    background: #ffffff;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 12px;
  }
  
  .modal__wrap{
    width: 100%;
    height: 100%;
    padding: 60px 50px;
    position: relative;
  }

  .modal__btn--close{
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
    .modal__btn--close img{
      margin-bottom: 4px;
    }
    .modal__btn--close a{
      color: var(--color-green01);
    }
    .modal__btn--close a:hover{
      opacity: 0.7;
    }
    .modal__btn--close span{
      font-size: 12px;
      color: var(--color-green02);
    }


  dl.modal__cont dt{
    padding: 12px 0 12px 50px;
    color: var(--color-orange01);
    font-size: 22px;
    line-height: 1.45;
    font-weight: 600;
    background: url(/image/parts/icon_tool_dl.png) 0 6px no-repeat;
    background-size: 33px auto;
  }

  dl.modal__cont dd{
    width: 100%;
    margin-top: 15px;
    padding-top: 25px;
    border-top: 1px solid var(--color-orange01);
  }

  .modal__scroll{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* height: 500px; */
    /* overflow-y: auto;   */
  }

  .modal__box{
    width: 510px;
    height: 198px;
    margin-bottom: 40px;
    position: relative;

    .modal__box--img{
      width: 140px;
      position: absolute;
      top: 0;
      left: 0;
    }

    .modal__box--cont{
      width: 350px;
      position: absolute;
      top: 0;
      left: 160px;
    }
    .ttl{
      margin-bottom: 8px;
      font-size: 18px;
      line-height: 1.4;
      font-weight: 600;
    }

    .txt{
      width: 330px;
      font-size: 14px;
      line-height: 1.43;
    }

    .modal__box--btn{
      ul{
        width: 330px;
        position: absolute;
        bottom: 1em;
        left: 160px;
      }
      li a{
        display: block;
        width: 165px;
        padding: 14px 0;
        border-radius: 12px;
        background: var(--color-orange01);
        color: #ffffff;
        font-size: 16px;
        line-height: 1.5;
        font-weight: 600;
        text-align: center;
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
      }
      li a::after{
        display: inline-block;
        content: '';
        width: 13px;
        height: 15px;
        margin-left: 20px;
        background: url(/image/parts/icon_dl.png) 0 0 no-repeat;
        background-size: 100% auto;
      }
      li a:hover{
        opacity: 0.8;
      }

      p{
        position: absolute;
        bottom: 0;
        left: 180px;
        font-size: 12px;
        line-height: 1;
      }
    }

  } /* /.modal__box */

  .modal__box.box2{
    height: 264px;
  }
}/* /.modall-download */


/* ---- modal-outlink ---- */
.modal-outlink {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;

  .modal_bg {
    background-color: #000000;
    opacity: 0.7;
    height: 100vh;
    width: 100%;
    position: absolute;
  }

  .modal__content {
    width: 520px;
    padding: 40px;
    background: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    line-height: 1.78;
    border-radius: 12px;
  }

  ul.btn{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    li a{
      display: block;
      width: 210px;
      padding: 27px 0;
      border-radius: 12px;
      font-size: 20px;
      line-height: 1.6;
      font-weight: 600;
      text-align: center;
      text-decoration: none;
    }
    li.ok a{
      background: var(--color-green01);
      color: #ffffff;
    }
    li.back a{
      background: #ffffff;
      color: var(--color-green01);
      border: 1px solid #C7C7C7;
      box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
    }
    li a:hover{
      opacity: 0.8;
    }
  }
}

/* --------------------
   keyframes
----------------------- */
@keyframes fadeInMotion{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeUpMotion{
  from {
    opacity: 0;
    transform: translateY(12vw);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* --------------------
   /ex19-1/index.html
----------------------- */

/* wrap */
.wrap-all{
  background: #ffffff;
  /* padding: 26px 0; */
}

.wrap-main{
  width: 100%;
  padding-top: calc(20px + 8px);
  background: url(/image/parts/wrap_main_bg.png) 0 0 repeat-x;
  background-size: auto 8px;
}

/* mvArea */
.mvArea{
  width: 1280px;
  height: 430px;
  background: url(/ex19-1/image/top/mv_bg_19-1.png) 0 0 no-repeat;
  margin: 0 auto 45px;
  padding: 60px 0 0 20px;

  .mv__lead{
    padding: 0 14px 0 10px;
    margin-bottom: 8px;
    display: table;
    background: rgba(255 255 255 / 0.9);
    font-size: 32px;
    color: var(--color-orange03);
    font-weight: 600;
    line-height: 2.0;
  }

  .mv__lead--small{
    font-size: 24px;
  }
}

/* navArea */
.navArea{
  width: 1280px;
  margin: 0 auto;

  .nav__list{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
    .nav__list li{
      position: relative;
    }

    .nav__list li a{
      display: block;
      width: 300px;
      height: 131px;
      padding: 60px 0 15px;
      background: var(--color-orange01);
      border-radius: 12px;
      color: #ffffff;
      font-size: 20px;
      line-height: 1.4;
      font-weight: 600;
      text-align: center;
      margin-bottom: 24px;
      box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
    }
    .nav__list li.nav__list--egfr a{
      font-size: 18px;
    }
    .nav__list li.nav__list--support-dl a{
      color: #ffffff;
      background: var(--color-orange01);
    }
      .nav__list li.nav__list--egfr a::before,
      .nav__list li.nav__list--about a::before,
      .nav__list li.nav__list--flow a::before,
      .nav__list li.nav__list--side-effect a::before,
      .nav__list li.nav__list--attention a::before,
      .nav__list li.nav__list--selfcare a::before,
      .nav__list li.nav__list--aboselfcareut a::before,
      .nav__list li.nav__list--med-expenses a::before,
      .nav__list li.nav__list--support-dl a::before{
        display: block;
        content: "";
        position: absolute;
        width: 300px;
        height: 65px;
        top: 0;
        left: calc(50% - 150px);
      }
      .nav__list li.nav__list--egfr a::before{
        background: url(/ex19-2/image/top/icon_egfr.png) 0 0 no-repeat;
        background-size: 300px auto;
      }
      .nav__list li.nav__list--about a::before{
        background: url(/ex19-2/image/top/icon_about.png) 0 0 no-repeat;
        background-size: 300px auto;
      }
      .nav__list li.nav__list--flow a::before{
        background: url(/ex19-2/image/top/icon_flow.png) 0 0 no-repeat;
        background-size: 300px auto;
      }
      .nav__list li.nav__list--side-effect a::before{
        background: url(/ex19-2/image/top/icon_side_effect.png) 0 0 no-repeat;
        background-size: 300px auto;
      }
      .nav__list li.nav__list--attention a::before{
        background: url(/ex19-2/image/top/icon_attention.png) 0 0 no-repeat;
        background-size: 300px auto;
      }
      .nav__list li.nav__list--selfcare a::before{
        background: url(/ex19-2/image/top/icon_selfcare.png) 0 0 no-repeat;
        background-size: 300px auto;
      }
      .nav__list li.nav__list--med-expenses a::before{
        background: url(/ex19-2/image/top/icon_med_expenses.png) 0 0 no-repeat;
        background-size: 300px auto;
      }
      .nav__list li.nav__list--support-dl a::before{
        background: url(/ex19-2/image/top/icon_support_dl.png) 0 0 no-repeat;
        background-size: 300px auto;
      }

      .nav__list li a:hover{  
        opacity: 0.8;
      }
      .nav__list li.nav__list--egfr:hover:before,
      .nav__list li.nav__list--about:hover:before,
      .nav__list li.nav__list--flow:hover:before,
      .nav__list li.nav__list--side-effect:hover:before,
      .nav__list li.nav__list--attention:hover:before,
      .nav__list li.nav__list--selfcare:hover:before,
      .nav__list li.nav__list--aboselfcareut:hover:before,
      .nav__list li.nav__list--med-expenses:hover:before,
      .nav__list li.nav__list--support-dl:hover:before{
        opacity: 0.8;
      }

      /* comingsoon */
      li.comingsoon a{
        padding-top: 52px;
        padding-bottom: 7px;
        background: #A2A2A2;
        color: #ffffff;
        line-height: 1.2;
      }
      li.comingsoon a:hover{
        opacity: 1;
      }
      li.comingsoon a span{
        font-size: 16px;
      }

      .nav__list li.nav__list--support-dl a{
        color: #ffffff;
        background: var(--color-ex19-1_01);
      }

      .nav__list li.nav__list--med-expenses.comingsoon a::before{
        background: url(/ex19-2/image/top/icon_med_expenses_cs.png) 0 0 no-repeat;
        background-size: 300px auto;
      }
      .nav__list li.nav__list--support-dl.comingsoon a::before{
        background: url(/ex19-2/image/top/icon_support_dl_cs.png) 0 0 no-repeat;
        background-size: 300px auto;
      }
      /* comingsoon */
}


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

}


/* --------------------
  tabletのみ
----------------------- */
@media (min-width:769px) and (max-width:1280px){

header{
  width: 1280px;
  padding: 20px 5px;

  .header__wrap{
    width: 1270px;
  }
}

.wrap-main{
  width: 1280px;
  padding-left: 5px;
  padding-right: 5px;
}

footer{
  padding: 28px 5px 60px;
}

}