/* 2タブ切り替え全体のスタイル*/
.tabs{
  margin-top: 30px;
  padding-bottom: 0px;
  background-color: #fff;
  max-width: 770px;
  margin: 0 auto;
  /* ★追加：タブ行をflexで作る */
  display: flex;
  flex-wrap: wrap;
  gap: 10px;          /* タブ間の余白（お好みで調整） */
}
/*タブのスタイル（均等割り）*/
.tab_item{
  flex: 1 1 0;        /* 2つを均等幅に */
  height: 40px;
  border-bottom: 0px solid #1450aa;
  background-color: #f2f2f2;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
  color: #4682b4;
  display: block;
  font-weight: bold;
  transition: all 0.2s ease;
  cursor: pointer;
  border-radius: 5px;
  box-sizing: border-box;
  /* ★削除：余白/float/widthは不要 */
  width: auto;
  margin: 0;
  float: none;
}
.tab_item:hover{
  opacity: 0.75;
}
/*ラジオボタンを全て消す*/
input[name="tab_item"]{
  display: none;
}
/*タブ切り替えの中身のスタイル（必ず下段・全幅）*/
.tab_content{
  width: 100%;
  flex-basis: 100%;
  display: none;
  padding: 30px 5px 0;
  clear: both;
  overflow: hidden;
}
/*選択されているタブのコンテンツのみを表示*/
#normal:checked ~ #normal_content,
#counseling:checked ~ #counseling_content{
  display: block;
}
/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item{
  background-color: #3450a3;
  color: #fff;
}
.tabs input:checked + .tab_item .setumei::after{
  color: #fff;
}

.c-txtsp  {margin-bottom: 25px; }
.price-note {
  font-size: 90%;
  line-height: 22px;
  margin-bottom: 14px;
  color: #555;
}
.price-note p {
  margin: 0 0 6px 0;
}
@media print, screen and (min-width: 960px) {
  .entry-content .button_solid019 [type="submit"] {
    min-width: 38%;
  }
}
.woocommerce div.product .summary.entry-summary .variations_form,
.woocommerce-review-link {
    display: none;
}
.ino-side a:where(:not(.wp-element-button)) {
  text-decoration: none;
}

/* ===== ミニCTA（スマホ用・ページ内アンカー） ===== */

.mini-cta {
  text-align: center;
  margin: 15px 0 20px;
}

/* ボタン本体 */
.entry-content p .mini-btn {
  display: inline-block;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: normal;
  color: #039be6 !important;
  background: #eef7fd;
  border: 1px solid #bcdff3 !important;
  border-radius: 30px;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

/* hover（PCではほぼ出ないが保険） */
.mini-btn:hover {
  background: #e1f2fb;
  border-color: #9fd1ef;
  color: #0277bd;
}

/* スマホのみ表示 */
@media print, screen and (min-width: 960px) {
  .mini-cta {
    display: none;
  }
}