body{
  overflow-x: hidden;
}
.price-dl{
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 1.5;
}
.price-dl dt{
      background-color: #1a2872;
    color: #fff;
    font-weight: bold;
    width: 40%;
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 2px;
}


.price-dl dd{
    width: 60%;
    padding: 12px;
    margin-bottom: 2px;
    background-color: #f7f7f7;
  }
  .price-dl ol{
    list-style: decimal;
    padding-left: 1.5em;
  }


.price-table{
   width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  font-size: 14px;
  box-sizing: border-box;
}


@media only screen and (max-width:960px) {
 .price-table{
  width: 100%;
}

}


.price-table.price-table-inner.fz_s{
   font-size: 12px;
}

.price-table th{
  background-color: #1a2872;
    color: #fff;
    font-weight: bold;
    padding: 15px;
    margin-bottom: 1px;
    width: auto;
}
.price-table td{
    padding: 15px;
    margin-bottom: 1px;
    background-color: #f7f7f7;
    width: auto;
}

.price-table.price-table4 th{
  background-color: #1a2872;
    color: #fff;
    font-weight: bold;
    padding: 15px;
    margin-bottom: 1px;
    font-size: 14px;
}
.price-table.price-table4 td{
  width: calc(100%/4);
}
.price-table.price-table-num{
  line-height: 1.5;
}
.price-table.price-table-num th:first-of-type{
  width: 10%;
}
.price-table.price-table-num td:first-of-type{
  width: 10%;
}

.table-num-title td{
    background-color: #e9e9e9;
    font-weight: bold;
}
.table-num-total td{
  font-weight: bold;
}
.table-num-all-total td{
  background-color: #d5d2d2;
}
.price-ol {
  list-style-type: decimal;
    padding-left: 2em;
}

.price-ol li{
  font-size: 14px;
  line-height: 1.5;

}

.price-table-wrap{
  width: 100%;
  margin-bottom: 10px;
}

@media only screen and (max-width:960px) {
.price-table-wrap{
overflow-x: scroll;
padding-bottom: 10px;
margin-bottom: 10px;
}

.price-table-inner{
  width: 100%;
  white-space: nowrap;
}

}

.price-ul{
  font-size: 14px;
  line-height: 2;
  list-style-type: disc;
  margin-left: 15px;
}

.price-table-num-wrap{
margin-bottom: 10px;
}


@media only screen and (max-width:960px) {

.price-table-num-wrap{
overflow-x: scroll;
padding-bottom: 10px;
margin-bottom: 10px;
}

.price-table-num-inner{
  width: 100%;
  white-space: nowrap;
}

}
.price-subtitle{
  font-size: 14px;
  line-height: 2;
  font-weight: bold;
  color: #1a2872;
}


/* ▼▼▼▼▼▼アコーディオン機能CSSここから▼▼▼▼▼ */
/* アコーディオン */
.accordion-title {
  position: relative;
  cursor: pointer;
  display: block;
}

/* 矢印 */
.accordion-title::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg); /* 下向き */
  border: solid #333;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transition: transform 0.3s ease;
}

.accordion-title.active::after {
  transform: translateY(-50%) rotate(-135deg); /* 上向き */
}

/* 非表示時 */
.accordion-contents {
  display: none;
  margin-bottom: 50px;
} 

/* 表示時 */
.accordion-contents.active {
  display: block;

}
/* チェックボックスを隠す */
.accordion-toggle {
  display: none;
}

/* チェックされたら矢印回転 */
.accordion-toggle:checked + .accordion-title::after {
  transform: translateY(-50%) rotate(-135deg);
}

/* チェックされたら中身表示 */
.accordion-toggle:checked + .accordion-title + .accordion-contents {
  display: block;
}

/* ▲▲▲▲▲▲アコーディオン機能CSSここまで▲▲▲▲▲ */




.price-cta{
  text-decoration: none;
    max-width: 500px;
    padding: 10px;
    display: block;
    background: #e2991d;
    color: #fff;
    transition: all 0.3s ease;
    line-height: 50px;
    text-align: center;
    margin: 60px auto 0;
    font-size: 18px;
    position: relative;
    transition: 0.3s;

}


.price-cta:hover{
  opacity: 0.5;
  text-decoration: none;
  color: #fff;
}
.price-cta::after{
    content: "";
    display: block;
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 0;
    height: 0;
    border-width: 6px;
    border-color: transparent #fff #fff transparent;
    border-style: solid;
}

#research-menulist{
  max-width: 1100px !important;
  margin: auto;
}
@media only screen and (max-width:960px) {
  #research-menulist{
  width: 100% !important;
}
}

.research-menulist-wrap{
    margin: 0 calc(50% - 50vw);
  width: 100vw; 

}


.price-inquiry{
  display: flex;
  justify-content: center;
  gap:50px;
}

.price-inquiry-each{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.price-inquiry-text{
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}


.price-btn{
  display: block;
  width: 400px;
    font-size: 16px;
    line-height: 60px;
    background: #1a2872;
    color: #fff;
    text-align: center;
    position: relative;
    margin-top: 30px;
    transition: 0.3s;
}
.price-btn:hover{
  opacity: 0.5;
  text-decoration: none;
  color: #fff;
}
.price-btn::after{
      content: "";
    display: block;
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 0;
    height: 0;
    border-width: 4px;
    border-color: transparent #fff #fff transparent;
    border-style: solid;
}

@media only screen and (max-width:960px) {

  .price-inquiry{
    flex-direction: column;
  }
  .price-btn{
    width: 100%;
  }
}