@charset "utf-8";
/*----- 
01.特定商取引法に基づく表記
----- */
#law {
padding: 80px 0 100px;
background: #FCF8F4;
}
#law dl dt{
font-size: 28px;
font-weight: 700;
padding-bottom: 5px;
border-bottom: 1px solid #ccc;
color: #005C92;
letter-spacing: 0.07em;
margin-bottom: 10px;
}
#law dl dd{
margin-bottom: 20px;
display: grid;
gap: 5px;
}
#law ul{
list-style-position: inside;
}
#law dl dd div{
    font-weight: 700;
}
#law .caution{
list-style-type: none;
font-size: 14px;
}
#law .bold{
font-weight: 700;
}
#law .price-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin-bottom: 20px;
}

#law .price-table th,
#law .price-table td {
  padding: 10px;
  border: 1px solid #999;
  vertical-align: middle;
  text-align: center;
}

#law .price-table thead th {
  text-align: center;
  font-weight: bold;
  background-color: #f5f5f5;
}

#law .price-table tbody th:first-of-type {
  width: 20%;
  text-align: center;
  font-weight: normal;
  background: #fff;
}

#law .price-table th:nth-child(2) {
  width: 55%;
}

#law .price-table th:nth-child(3),
#law .price-table td:nth-child(3) {
  width: 25%;
  text-align: center;
}
#law .shipping-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

#law .shipping-table th,
#law .shipping-table td {
  padding: 10px;
  border: 1px solid #999;
  vertical-align: middle;
}
#law .shipping-table td,#law .price-table td{
    background: #fff;
}

#law .shipping-table thead th {
  background-color: #f5f5f5;
  text-align: center;
  font-weight: bold;
}

#law .shipping-table th:first-child {
  width: 12%;
  text-align: center;
  background: #E3F6FC;
}

#law .shipping-table th:nth-child(2) {
  width: 38%;
}

#law .shipping-table th:nth-child(n + 3) {
  width: 12.5%;
}

#law .shipping-table td:nth-child(n + 3) {
  text-align: center;
  white-space: nowrap;
  font-weight: 400;
}

#law .shipping-table tbody th {
  font-weight: normal;
}
#law .scroll-guide {
  display: none;
  margin: 0 0 8px;
  font-size: 13px;
  color: #666;
}

#law .shipping-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#law .shipping-table {
  min-width: 700px;
}
@media screen and (max-width: 768px){
/*----- 
01.特定商取引法に基づく表記 768px
----- */
#law {
padding: 50px 0 100px;
}
#law dl dt{
font-size: 24px;
padding-bottom: 0px;
}
#law dl dd{
margin-bottom: 10px;
}
#law .shipping-table-area{
width: 100%;
overflow: hidden;
}
  #law .scroll-guide {
display: block;
  }
#law .shipping-table th:first-child,
  #law .shipping-table td:first-child {
position: sticky;
left: 0;
z-index: 1;
border-left: none;
border-right: none;
  }
#law .shipping-table th:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
background: #999;
}
#law .shipping-table th:first-child::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0.5px;
  height: 100%;
background: #999;
}
  #law .shipping-table thead th:first-child {
z-index: 2;
background: #f5f5f5;
  }
}