@charset "UTF-8";
/* タブ
---------------------------------------------*/
.content_tabUnit {
  margin: 0 auto;
  width:100%;
  margin-top:60px;
}
input[name="tab_item"] {
  display: none;
}
.content_tabUnit_item {
  display:flex;
  justify-content: center;
  padding:20px;
  text-align: center;
  width:calc(99.999999% / 3);
  position:relative;
  border-top:1px solid rgba(0,0,0,1);
  border-bottom:1px solid rgba(0,0,0,1);
  border-left:1px solid rgba(0,0,0,1);
  font-weight: bold;
  float:left;
}
.content_tabUnit_item:last-of-type {
  border-right:1px solid rgba(0,0,0,1);
}
.content_tabUnit_cont {
  display: none;
  padding: 60px 0;
  clear: both;
}
#tab_01:checked ~ #tab_01_cont,
#tab_02:checked ~ #tab_02_cont,
#tab_03:checked ~ #tab_03_cont{
  display: block;
}
.content_tabUnit input:checked + .content_tabUnit_item {
  color: rgba(255,255,255,1.00);
  background-color:rgba(0,0,0,1.00);
}
.content_tabUnit_inner {
  width:100%;
  text-align:center;
  position: relative;
}
.content_tabUnit_inner h4 {
  font-size:1.8rem;
  padding-bottom:10px;
}
.content_tabUnit_cost {
  width:100%;
  background-color:rgba(20,91,171,1);
  color:rgba(255,255,255,1.00);
  padding:20px;
  border-radius:50px;
  position:absolute;
  margin-top:25px;
  z-index:10;
}
.content_tabUnit_cost span {
  font-size:2rem;
  font-weight: bold;
}
.content_tabUnit_cost .content_tabUnit_cost__unitText {
  position:absolute;
  top:50%;
  right:20px;
  transform:translateY(-50%);
  font-size:1.6rem;
  font-weight: normal;
}
.content_costUnit__heading {
  font-size:1.28rem;
  color:rgba(124,124,124,1);
  font-weight: bold;
}
.content_costList {
  border-bottom:1px solid rgba(212,212,212,1);
}
.content_costList dl {
  display:flex;
  border-top:1px solid rgba(212,212,212,1);
  margin:0;
}
.content_costList dl dt{
  display:flex;
  width:20%;
  padding:15px;
  border-left:1px solid rgba(212,212,212,1);
  background-color:rgba(246,250,250,1);
}
.content_costList dl dd {
  display:flex;
  justify-content: space-between;
  align-items:center;
  width:80%;
  padding:15px;
  border-left:1px solid rgba(212,212,212,1);
  border-right:1px solid rgba(212,212,212,1);
  background-color:rgba(252,252,252,1.00);
}
.content_costList dl dd a {
  font-size:90%;
  color:rgba(20,91,171,1);
  text-decoration:underline;
}

.content_costUnit__otherItems{
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  border:2px solid rgba(206,206,206,1);
  margin-top:20px;
}
.content_costUnit__otherItems__img {
  width:20%;
  padding:20px;
}
.content_costUnit__otherDtail {
  width:80%;
  position:relative;
  padding:20px;
}
.content_costUnit__otherDtail h3 {
  margin-bottom:10px;
}
.content_costUnit__otherDtail .bl_product_label {
  position:absolute;
  right:20px;
}


@media screen and (max-width:768px) {
  .content_costUnit__otherItems{
    flex-direction: column-reverse;
  }
  .content_costUnit__otherItems__img {
    width:100%;
    padding:0 20%;
  }
  .content_costUnit__otherDtail {
    width:100%;
  }
}


@media screen and (max-width:480px) {
  .content_costUnit__otherItems__img {
    padding:0 5%;
  }
  .content_costUnit__otherDtail {
    width:100%;
  }
}