@charset "utf-8";
#main_price {
  margin-bottom: 2rem;
}
/*******タブ********/
.tab_container.price {
  display: flex;
  padding: 0;
}
.tab_container .price {
  font-size: 20px;
  border-bottom: #c2c2c2 1px solid;
}
#main_price .tab.price.active {
  color: #fff;
  background-color: #0b4387;
}
.tab.price {
  color: #696e75;
  flex: 1;
  padding: 10px 0;
  cursor: pointer;
  border-right: none;
  background-color: #e9e9e9;
}
.tab.price:hover {
  color: #5b7ca5;
  background-color: #d8d8d8;
}
/******アコーディオン**********/
.accordion_contents:not(.first) {
  display: none;
}
.accordion_title {
  cursor: pointer;
}
.tab_contents {
  display: none;
}
.tab_contents.show {
  display: block;
}
.accordion_title {
  border-top: #c2c2c2 1px solid;
  color: #0e468b;
  font-size: 20px;
  font-weight: bold;
  padding: 1.5rem 1rem;
  position: relative;
}
.accordion_title.first {
  border-top: none;
}
.accordion_title::before,
.accordion_title::after{
  position:absolute;
  content:'';
  top:1px;
  right:20px;
  bottom:0;
  width:12px;
  height:2px;
  margin:auto;
  background:#0e468b;
}
.accordion_title.first::after {
  transform:rotate(0deg);
  transition:transform 0.3s;
}
.accordion_title.first.active::after{
  transform:rotate(-90deg);
}
.accordion_title::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.accordion_title.active::after{
  transform:rotate(0deg);
}

.tab_contents.price_list {
  padding: 0;
  border: none;
}
.accordion_contents {
  padding: 0 1rem 1.5rem;
}


/*********テーブル*********/
.accordion_contents table {
  width: 100%;
  font-family: "Open Sans";
}
.th_01,.th_02 {
  background-color: #b0a193;
  font-size: 18px;
  text-align: center;
  padding: 8px 0;
}
.th_01,.td_title {
  border-right: #fff 3px solid;
}
tbody tr td {
  padding: 8px;
}
thead,tr:not(:last-child) {
  border-bottom: #fff 3px solid;
}
tbody tr:nth-child(odd) .td_title:not(.rowspan) {/****奇数*****/
  background-color: #c4ddf8;
}
tbody tr .td_title {/****偶数*****/
  background-color: #d1e8ff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
tbody tr .td_title.even {/****偶数*****/
  background-color: #c4ddf8;
}

tbody tr:nth-child(odd) .td_price {/****奇数*****/
  background-color: #f4f4f4;
}
tbody tr .td_price {/****偶数*****/
  background-color: #e9e9e9;
  text-align: center;
  color: #052b59;
  font-weight: 700;
  font-size: 22px;
}
.td_price .yen {
  font-size: 18px;
}
.td_price .small {
  font-size: 14px;
  font-weight: 700;
}
.td_price .tax {
  color: #333;
  font-size: 14px;
  font-weight: normal;
}
.madein {
  font-size: 16px;
  font-weight: normal;
}

/*SPレスポンシブ*/
@media screen and (max-width: 660px) {
  .th_01,.th_02{
    font-size: 16px;
  }
  tbody tr .td_title {
    font-size: 16px;
  }
  tbody tr .td_price {
  font-size: 20px;
  }
  .td_price .yen {
  font-size: 16px;
  }
  .td_price .small {
  font-size: 14px;
  }
  .madein {
  font-size: 14px;
  }
  .tab.price {
  font-size: 18px;
  padding: 10px 0;
  }
  .tab_container.price {
    margin: 1rem 0;
  }
}
@media screen and (max-width: 500px) {
  .accordion_title {
    font-size: 16px;
  }
  thead {
    display: none;
  }
  tbody tr,tbody td  {
    display: block;
  }
  tbody td {
    white-space: normal;
  }
  thead,tr:not(:last-child) {
    border: none;
  }
  .th_01,.td_title {
    border-right: none;
  }
  tbody tr .td_title {
    padding: 5px 0;
  }
  tbody tr .td_price {
    padding: 8px 0; 
  }
}




