@charset "utf-8";



/* ------- MESSAGE ---------------------------------------------- */
.page-info .bg{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
}

@media print, screen and (min-width:781px) {
  .page-info .bg{
    background-image: url("../img/main_pc.jpg");
  }
  .page-info .inner{
    margin-bottom: 200px;
  }
}
@media screen and (max-width: 780px) {
  .page-info .bg{
    background-image: url("../img/main_sp.jpg");
  }
  .page-info .inner{
    margin-bottom: 100px;
  }
}




.tabs{
  display: flex;
  justify-content: space-between;
}
.tabs > li{
  background-color: #100F63;
  color: #FFF;
  cursor: pointer;
  display: flex;
  justify-content: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.68;
  text-align: center;
  width: 50%;
  transition: .3s;
}
.tabs > li.active{
  background-color: #FFF !important;
  color: #100F63;
}
.tab-content {
  display: none;
}
.tab-content.active {
  background-color: #FFF;
  display: block;
}
.tabs > li > span{
  display: flex;
  align-items: center;
}
.tabs > li > span:after {
  background-color: #FFF;
  mask-image: url("../img/icon_arrow.svg");
  mask-repeat: no-repeat;
  mask-size: 100%;
  content: "";
  display: block;
  margin-left: 20px;
  transition: .3s;
}
.tabs > li.active > span:after {
  background-color: #100F63;
}
@media (hover: hover) and (pointer: fine){
  .tabs > li:hover{
    background-color: #FFF;
    color: #100F63;
  }
  .tabs > li:hover > span:after{
    background-color: #100F63;
  }
}
@media print, screen and (min-width:781px) {
  .tabs{
    margin-top: 90px;
    overflow: hidden;
  }
  .tabs > li{
    font-size: 2.8rem;
    padding: 30px 15px;
    width: 49.218%;
  }
  .tabs > li > span:after{
    height: 23px;
    width: 18px;
  }
}
@media screen and (max-width: 780px) {
  .tabs{
    margin: 40px 20px 0;
  }
  .tabs > li{
    font-size: 2.4rem;
    padding: 25px 0;
  }
  .tabs > li > span:after{
    margin-left: 10px;
    height: 20px;
    width: 15px;
  }
}



.info-sec{
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.info-sec .ttl{
  display: flex;
  justify-content: center;
}
.info-sec .ttl h2{
  border-bottom: 1px solid #E3141B;
  line-height: 1.35;
  padding-bottom: 20px;
}
.info-list > div:last-child{
  border-bottom: none;
}
.info-list > div > dt{
  font-weight: 400;
}
.info-list > div > dd .num-list{
  counter-reset: number 0;
}
.info-list > div > dd .num-list > li{
  display: flex;
  align-items: flex-start;
}
.info-list > div > dd .num-list > li:before{
  counter-increment: number 1;
  content: counter(number) "）";
}
.info-list > div > dd > dl > div > dt{
  font-weight: 900;
}
@media print, screen and (min-width:781px) {
  .info-sec{
    padding: 80px 60px;
  }
  .info-sec .ttl h2{
    font-size: 2.8rem;
  }
  .info-list > div{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #DBDBDB;
    padding: 40px 0;
  }
  .info-list > div > dt{
    font-size: 2.0rem;
    width: 200px;
  }
  .info-list > div > dd{
    width: calc(100% - 210px);
  }
  .info-list > div > dd > dl > div:nth-child(n + 2){
    margin-top: 20px;
  }
  .info-list > div > dd .note-list{
    margin-top: 15px;
  }
  .info-list > div > dd .note-list > li{
    margin-top: 5px;
  }
}
@media screen and (max-width: 780px) {
  .info-sec{
    padding: 40px 20px;
  }
  .info-sec .ttl h2{
    font-size: 2.8rem;
  }
  .info-list > div{
    border-bottom: 1px solid #DBDBDB;
    padding: 30px 0;
  }
  .info-list > div > dt{
    font-size: 2.0rem;
  }
  .info-list > div > dd{
    font-size: 1.6rem;
    margin-top: 10px;
  }
  .info-list > div > dd > dl > div:nth-child(n + 2){
    margin-top: 15px;
  }
  .info-list > div > dd .note-list{
    margin-top: 10px;
  }
  .info-list > div > dd .note-list > li{
    margin-top: 5px;
  }
}