@charset "UTF-8";

#option-mv{
  background-image: url(../img/page-mv.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 46px 0;
  text-align: center;
}
#option-mv h1{
  font-size: 36px;
  color: #fff;
  font-weight: 700;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width:768px) {
  #option-mv h1{
    font-size: 26px;
  }
}

/* ページ内リンク */
.page-link-wrap{
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
  padding: 0 20px;
}
.page-link{
  width: 330px;
  border-width: 2px;
  border-style: solid;
  border-image-source: linear-gradient(to right, #3799BA 0%, #237EAF 40%, #13549F 80%);
  border-image-slice: 1;
  transition: .8s;
}
.page-link a{
  color: #13549F;
  font-weight: 800;
  font-size: 16px;
  display: block;
  padding: 18px 0;
  position: relative;
  text-align: center;
  transition: .8s;
}
.page-link a::after{
  content: "";
  background-image: url(../img/arrow-blue.svg);
  width: 24px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.page-link:hover{
  background: linear-gradient(to right, #3799BA 0%, #237EAF 40%, #13549F 80%);
}
.page-link:hover a{
  color: #fff;
}
.page-link:hover a::after{
  background-image: url(../img/arrow-white.svg);
  height: 24px;
  width: 12px;
  transform: translateY(-50%)rotate(90deg);
  right: 22px;
}

@media screen and (max-width:768px) {
  .page-link-wrap{
    flex-direction: column;
    gap: 14px;
  }
  .page-link{
    width: 100%;
  }
  .page-link a{
    padding: 14px 0;
  }
}
/* /ページ内リンク */

#option,
#supply{
  margin-top: -80px;
  /* padding-top: 80px; */
  padding: 80px 20px 0;
}
.option-wrap{
  max-width: 1200px;
  margin: auto;
  margin: 60px auto 0;
  /* padding: 0 20px; */
}
.option-ttl{
  text-align: center;
  margin-bottom: 42px;
}
.option-ttl h2 span{
  display: block;
}
.option-ttl h2 span.en{
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  background: linear-gradient(90deg, #3799BA 0%, #237EAF 40%, #13549F 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.option-ttl h2 span.jp{
  font-size: 40px;
  font-weight: 700;
}
.option-content h3{
  padding: 11px 18px;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(to right, #3799BA 0%, #237EAF 40%, #13549F 80%);
  line-height: 1;
  margin-bottom: 26px;
}
.option-content h4{
  font-size: 28px;
  font-weight: 800;
  padding-bottom: 8px;
  margin-bottom: 22px;
  border-bottom: 3px solid;
  border-image-source: linear-gradient(to right, #3799BA 0%, #237EAF 40%, #13549F 80%);
  border-image-slice: 1;
}
.option-item{
  margin-bottom: 50px;
}
.option-item-img{
  margin: 30px auto 0;
  width: fit-content;
}
.option-item-img img{
  margin: auto;
}
.option-item-img p{
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.option-item-txt-wrap:not(:last-of-type){
  margin-bottom: 24px;
}
.option-item-txt p.bold{
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.option-item-txt p.bold::before{
  content: "";
  background-image: url(../img/polygon-icon.svg);
  height: 20px;
  width: 9px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 5px;
  /* top: 50%;
  transform: translateY(-50%); */
}
.option-item-txt-lead{
  margin-bottom: 20px;
}

@media screen and (max-width:768px) {
  #option,
  #supply{
    margin-top: -50px;
    padding-top: 50px;
  }
  .option-wrap{
    margin: 40px auto 0;
  }
  .option-ttl{
    margin-bottom: 24px;
  }
  .option-ttl h2 span.en{
    font-size: 13px;
  }
  .option-ttl h2 span.jp{
    font-size: 24px;
  }
  .option-content h3{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .option-content h4{
    font-size: 18px;
    padding-bottom: 4px;
    margin-bottom: 14px;
  }
  .option-item-txt p.bold{
    font-size: 16px;
    margin-bottom: 8px;
  }
  .option-item-txt p.bold::before{
    width: 6px;
    height: 15px;
  }
  .option-item-img{
    margin-top: 20px;
    width: 80%;
  }
  .option-item{
    margin-bottom: 36px;
  }
}

/* table */
table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
}
.option-item-table thead{
  background: linear-gradient(90deg, #3799BA 0%, #237EAF 40%, #13549F 80%);
  color: #fff;
}
.option-item-table thead th{
  vertical-align: middle;
  padding: 14px 0;
}
.option-item-table td{
  background-color: #F1F1F1;
  text-align: center;
  padding: 14px 0;
  line-height: 1;
}
.option-item-table:not(.supply-item-table) tbody td:first-of-type{
  width: 14%;
}
.option-item-table:not(.supply-item-table) tbody td:last-of-type{
  width: 16%;
}
.option-item-table:not(.supply-item-table) tbody td:nth-of-type(2),
.option-item-table:not(.supply-item-table) tbody td:nth-of-type(3){
  width: 15%;
}
.option-item-table:not(.supply-item-table) tbody td:nth-of-type(4){
  width: 23%;
}
.supply-item-table td{
  padding: 6px 0;
  line-height: 1.2;
}
.supply-item-table thead tr:first-of-type{
  font-weight: 700;
}
.supply-item-table thead tr:not(:first-of-type) th{
  background-color: #3799BA;
  font-weight: 400;
}
.supply-item-table tbody tr th{
  background-color: #2BB4B7;
  color: #fff;
  padding: 6px 0;
  vertical-align: middle;
  font-weight: 500;
  line-height: 1.2;
}
.supply-item-table tbody tr td{
  vertical-align: middle;
  font-weight: 500;
}
.supply-item-table thead th{
  line-height: 1.2;
  padding: 8px 3px;
}
.supply-item-table thead tr:not(:first-of-type) th{
  width: 7%;
  height: 62px;
}
.supply-item-table thead th:first-of-type,
.supply-item-table thead th:nth-of-type(2),
.supply-item-table thead th:nth-of-type(3),
.supply-item-table thead th:nth-of-type(4){
  width: 10%;
}
.supply-item-table thead th:last-of-type{
  width: 10.8%;
}
.option-table-note{
  margin-top: 16px;
}

@media screen and (max-width:768px) {
  .option-item-table{
    display: block;
    overflow-x: auto;
    width: 100%;
  }
  .option-item-table th,
  .option-item-table td{
    white-space: nowrap;
    font-size: 14px;
    padding: 12px 10px;
  }
  .supply-item-table tr th,
  .supply-item-table tr td{
    padding: 5px 9px;
    line-height: 1.2;
  }
  .option-table-note{
    font-size: 15px;
  }
}