.pc_only {
  display: inline;
}

.sp_only {
  display: none !important;
}

/*マージン*/
.m10b {
  margin-bottom: 10px;
}

.tab1 {
  display: inline-block;
  width: 100px;
}

/*TOPイメージ設定*/
div.box_topimg {
  overflow: hidden;
  border-radius: 10px;
}

/*リンク設定*/
a.a_style1 {
  color: var(--blue1);
  border-bottom: 1px dotted var(--blue1);
  padding-bottom: 1px;
  transition: 0.3s;
}

a.a_style1:hover {
  color: var(--orange);
  border-bottom: 1px dotted var(--orange);
}

/*リスト設定
ol li,
ul li {
    text-align: justify;
}*/

ol.number {
  list-style-type: decimal;
  margin-left: 30px;
}

ul.disc {
  list-style-type: disc;
  margin-left: 20px;
}

/*経済産業省*/
nav.borderbox.METI {
  margin-top: 50px;
}

nav.borderbox.METI > p {
  font-weight: bold;
  color: var(--JBAblue);
}

nav.borderbox.METI ul {
  line-height: 1.8;
}

/*BOX設定*/
.borderbox {
  border: 1px solid var(--blue1);
  padding: 5%;
  border-radius: 10px;
}

/*ボタン*/
.btn_blue,
.btn_gray,
.btn_gray_border {
  display: block;
  font-weight: bold;
  width: 150px;
  padding: 15px 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  transition: 0.5s;
}

.btn_blue {
  color: #fff;
  background-color: var(--blue1);
  border: none;
}

.btn_blue:hover {
  background-color: var(--blue2);
}

.btn_gray {
  color: #fff;
  background-color: var(--gray4);
  border: none;
}

.btn_gray:hover {
  background-color: var(--gray3);
}

.btn_gray_border {
  color: var(--gray4);
  border: 1px solid var(--gray4);
  background-color: #fff;
}

.btn_gray_border:hover {
  color: var(--blue2);
  border: 1px solid var(--blue2);
  background-color: #fff;
}

.btn_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

@media only screen and (max-width: 600px) {
  .sp_only {
    display: inline !important;
  }

  .pc_only {
    display: none;
  }

  .tab1 {
    display: block;
    color: var(--JBAblue);
  }
}
