/***  color ***/
/***  border ***/
/*** font ***/
/*** sp size ***/
#pageItems {
  padding: 100px 0 100px;
}
#pageItems .pageList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 1%;
}
#pageItems .pageList li {
  width: 24%;
}
#pageItems .pageList li a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 80px;
  font-size: 18px;
  font-weight: bold;
  color: #003C87;
  text-align: center;
  border: 2px solid #003C87;
  border-radius: 1000px;
}
#pageItems .pageList li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 20px;
  height: 20px;
  margin: auto;
  background: url("../img/icon_arrow.svg") no-repeat center;
  background-size: 100% 100%;
  transform: rotate(90deg);
}
@media screen and (max-width: 1300px) {
  #pageItems .pageList {
    gap: 1%;
  }
  #pageItems .pageList li {
    margin-bottom: 10px;
  }
  #pageItems .pageList li a {
    height: 60px;
    font-size: 14px;
  }
  #pageItems .pageList li a::after {
    right: 10px;
  }
}
@media screen and (max-width: 1024px) {
  #pageItems .pageList {
    flex-wrap: wrap;
  }
  #pageItems .pageList li {
    width: 32.6666666667%;
  }
  #pageItems .pageList li a {
    height: 60px;
    font-size: 14px;
  }
  #pageItems .pageList li a::after {
    right: 10px;
  }
}
@media screen and (max-width: 750px) {
  #pageItems {
    padding: 8vw 0;
  }
  #pageItems .pageList li {
    width: 49%;
    margin-bottom: 2.67vw;
  }
  #pageItems .pageList li a {
    height: 13.33vw;
    font-size: 3.73vw;
    text-indent: -3.73vw;
  }
  #pageItems .pageList li a::after {
    right: 1.37vw;
    width: 3.73vw;
    height: 3.73vw;
  }
}

#overview {
  padding-bottom: 100px;
}
#overview .layout {
  position: relative;
  display: flex;
  align-items: center;
}
#overview .layout img {
  margin-left: 100px;
}
#overview .txt {
  text-align: left;
}
@media screen and (max-width: 1024px) {
  #overview .layout img {
    max-width: 50%;
    margin-left: 50px;
  }
}
@media screen and (max-width: 750px) {
  #overview {
    padding-bottom: 13.33vw;
  }
  #overview .layout {
    flex-direction: column;
  }
  #overview .layout img {
    margin: 0;
    max-width: 100%;
  }
  #overview .layout .txt {
    margin-bottom: 20px;
  }
  #overview .layout .txt p {
    font-size: 3.73vw;
  }
}

.treatmentDetails {
  padding: 100px 0;
  background-color: #f6f6f6;
}
.treatmentDetails .layout .treatmentBox {
  margin-bottom: 40px;
}
.treatmentDetails .layout .treatmentBox h3 {
  font-size: 30px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 20px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1;
}
.treatmentDetails .layout .treatmentBox h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 5px;
  height: 30px;
  margin: 0 auto 0 0;
  border-radius: 100px;
  background: linear-gradient(to bottom, #003C87 0%, #003C87 50%, #FDDB0A 50%, #FDDB0A 100%);
}
.treatmentDetails .layout .treatmentBox h4 {
  max-width: 100%;
  position: relative;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
}
.treatmentDetails .layout .treatmentBox h4::before, .treatmentDetails .layout .treatmentBox h4::after {
  content: "";
  display: block;
  position: absolute;
  top: 40px;
  bottom: 0;
  left: 0;
  height: 5px;
  margin: auto;
  border-radius: 100px;
}
.treatmentDetails .layout .treatmentBox h4::before {
  width: 100%;
  background: linear-gradient(to right, #fff 100%);
}
.treatmentDetails .layout .treatmentBox h4::after {
  width: 40px;
  background: linear-gradient(to right, #003C87 0%, #003C87 50%, #FDDB0A 50%, #FDDB0A 100%);
}
.treatmentDetails .layout .treatmentBox p {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 20px;
}
.treatmentDetails .layout .treatmentBox p a {
  color: #065FD4;
  font-weight: bold;
  text-decoration: underline;
}
.treatmentDetails .layout .treatmentBox p a:hover {
  text-decoration: none;
}
.treatmentDetails .layout .treatmentBox .type {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.treatmentDetails .layout .treatmentBox .type .box {
  width: 16%;
  background-color: #fff;
  border: solid 2px #ccc;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.treatmentDetails .layout .treatmentBox .type .box:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1290px) {
  .treatmentDetails .layout .treatmentBox .type .box {
    width: 19.2%;
    padding: 20px;
  }
}
@media screen and (max-width: 1040px) {
  .treatmentDetails .layout .treatmentBox .type .box {
    width: 24%;
  }
}
@media screen and (max-width: 790px) {
  .treatmentDetails .layout .treatmentBox .type .box {
    width: 32%;
  }
}
@media screen and (max-width: 750px) {
  .treatmentDetails {
    padding: 13.33vw 0;
  }
  .treatmentDetails .layout .treatmentBox {
    border-radius: 20px;
    margin-bottom: 8vw;
  }
  .treatmentDetails .layout .treatmentBox:last-child {
    margin-bottom: 0;
  }
  .treatmentDetails .layout .treatmentBox h3 {
    font-size: 5.33vw;
    margin: 0 auto 4vw 0;
    padding-left: 2.67vw;
  }
  .treatmentDetails .layout .treatmentBox h3::before {
    height: 6.93vw;
  }
  .treatmentDetails .layout .treatmentBox h4 {
    margin-bottom: 5.33vw;
    font-size: 4.8vw;
  }
  .treatmentDetails .layout .treatmentBox h4::before, .treatmentDetails .layout .treatmentBox h4::after {
    top: 8vw;
    height: 4px;
  }
  .treatmentDetails .layout .treatmentBox p {
    display: block;
    margin-bottom: 4vw;
    font-size: 3.73vw;
  }
  .treatmentDetails .layout .treatmentBox .type {
    gap: 10px;
  }
  .treatmentDetails .layout .treatmentBox .type .box {
    height: 16vw;
    margin-right: 0;
    padding: 2.67vw;
    font-size: 3.73vw;
  }
  .treatmentDetails .layout .treatmentBox .type .box:nth-child(2n) {
    margin-right: 0;
  }
  .treatmentDetails .layout .note {
    font-size: 3.73vw;
  }
}

.comparison {
  padding-top: 100px;
}
.comparison .titleBox p {
  text-align: center;
  margin-bottom: 50px;
}
.comparison .layout .comparisonTable {
  margin-bottom: 50px;
}
.comparison .layout .comparisonTable h3 {
  font-size: 30px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 20px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1;
}
.comparison .layout .comparisonTable h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 5px;
  height: 30px;
  margin: 0 auto 0 0;
  border-radius: 100px;
  background: linear-gradient(to bottom, #003C87 0%, #003C87 50%, #FDDB0A 50%, #FDDB0A 100%);
}
.comparison .layout .comparisonTable .timeWrap {
  margin: 0 auto;
}
.comparison .layout .comparisonTable .timeWrap table {
  width: 100%;
  border-color: #ccc;
  table-layout: fixed;
}
.comparison .layout .comparisonTable .timeWrap table .tableheader {
  background-color: #003C87;
  color: #fff;
  text-align: center;
}
.comparison .layout .comparisonTable .timeWrap table .tableheader td {
  font-weight: bold;
}
.comparison .layout .comparisonTable .timeWrap table .tableSideHeader th {
  background-color: #4C76AA;
  color: #fff;
}
.comparison .layout .comparisonTable .timeWrap table tr {
  padding: 10px;
  background-color: #fff;
}
.comparison .layout .comparisonTable .timeWrap table tr th, .comparison .layout .comparisonTable .timeWrap table tr td {
  padding: 20px;
  font-size: 16px;
}
.comparison .layout .comparisonTable .timeWrap table tr th {
  text-align: center;
}
.comparison .layout .comparisonTable .timeWrap table tr td {
  vertical-align: top;
}
@media screen and (max-width: 750px) {
  .comparison {
    padding-top: 13.33vw;
  }
  .comparison .titleBox p {
    text-align: left;
    margin-bottom: 5.33vw;
    padding: 0 20px;
  }
  .comparison .layout .comparisonTable {
    margin-bottom: 8vw;
  }
  .comparison .layout .comparisonTable h3 {
    font-size: 5.33vw;
    margin: 0 auto 4vw 0;
    padding-left: 2.67vw;
  }
  .comparison .layout .comparisonTable h3::before {
    height: 6.93vw;
  }
  .comparison .layout .comparisonTable .timeWrap .sp .table {
    font-size: 3.73vw;
    margin-bottom: 2.67vw;
  }
  .comparison .layout .comparisonTable .timeWrap .sp .table .tableheader {
    padding: 2.67vw;
    background-color: #003C87;
    font-weight: bold;
    color: #fff;
  }
  .comparison .layout .comparisonTable .timeWrap .sp .table .datawrap .data {
    border: 1px solid #ccc;
  }
  .comparison .layout .comparisonTable .timeWrap .sp .table .datawrap .data .title {
    padding: 2.67vw;
    font-weight: bold;
    color: #fff;
    background-color: #4C76AA;
  }
  .comparison .layout .comparisonTable .timeWrap .sp .table .datawrap .data p {
    padding: 2.67vw;
  }
}

.time {
  margin: 100px 0 120px 0;
}
.time .layout .timeWrap {
  max-width: 1072px;
  margin: 0 auto;
}
.time .layout .timeWrap table {
  width: 100%;
  border-color: #ccc;
}
.time .layout .timeWrap table tr.tableheader {
  background-color: #003C87;
  color: #fff;
  text-align: center;
}
.time .layout .timeWrap table tr.tableheader td {
  font-weight: bold;
}
.time .layout .timeWrap table tr {
  padding: 10px;
  background-color: #fff;
}
.time .layout .timeWrap table tr th, .time .layout .timeWrap table tr td {
  text-align: center;
  padding: 20px;
  font-size: 24px;
}
.time .layout .timeWrap .note {
  margin-top: 20px;
  font-size: 18px;
}
@media screen and (max-width: 750px) {
  .time {
    margin: 13.33vw 0 18.67vw;
  }
  .time .layout .timeWrap {
    max-width: 100%;
  }
  .time .layout .timeWrap table tr th, .time .layout .timeWrap table tr td {
    padding: 2.67vw 1.33vw;
    font-size: 3.2vw;
  }
  .time .layout .timeWrap .note {
    margin-top: 2.67vw;
    font-size: 3.2vw;
  }
}

/*# sourceMappingURL=biyou.css.map */
