@charset "UTF-8";

/*---アンカーリンクボタンのレイアウト調整---*/
.contents_btn01 .content_wrapper {
  display: flex;
  justify-content: center;
}
.contents_btn01 .content_wrapper > a {
  width: 244px !important;
}

@media screen and (max-width: 1023px) {
  .contents_btn01 .content_wrapper {
    display: flex;
    justify-content: center;
  }
  .contents_btn01 .content_wrapper > a {
    min-width: initial;
  }
}
@media screen and (max-width: 700px) {
  .contents_btn01 .content_wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .contents_btn01 .content_wrapper > a{
    width: auto !important;
  }
}
/*サポート内容*/
a[id^="saport"] + section .heading.block_header_4 .h {
    color: var(--i_txt_color);
}
.saport_wrapper{
  display: flex;
  justify-content: space-between;
}
.saport_box{
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  width: 48%;
  padding: 30px;
  background: #fff;
}
.saport_ttl{
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 1rem;
  text-align: center;
  letter-spacing: 3px;
  font-size: 18px;
  font-weight: bold;
  color: var(--i_main_color);
}
.saport_ttl::after{
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #7ac3b7;
}
.saport_list{
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.block_html ul li.saport_list_item{
  display: flex;
  padding: 10px;
  line-height: 1.25;
  list-style: none;
  background: rgb(122 195 183 / 0.1);
}
#saport + section .inner_item_txt ul li{
  display: flex;
  padding: 10px;
  list-style: none;
  background: rgb(122 195 183 / 0.1);
}
.c_blue{
  display: inline-block;
  margin-right: 1rem;
  color: #7ac3b7;
  font-weight: bold;
}
@media screen and (min-width: 701px) and (max-width: 800px){
  .contents_btn01 a span{
    font-size: 12px;
  }
}
@media screen and (max-width: 700px){
  .saport_wrapper{
    flex-direction: column;
    row-gap: 20px;
  }
  .saport_box{
    width: 100%;
  }
}
/*料金表*/
table{
  margin-bottom: 20px;
  table-layout: fixed;
  width: 100%
}
table , td, th {
  border-collapse: collapse;
}
tr{
  border-bottom: solid 1px #7ac3b7;
}
tr:first-child{
  border-top: solid 1px #7ac3b7;
}
tr.first_tr{
  border-top: none;
  background: #7ac3b7;
  color: #fff;
}
td, th {
  padding: 10px;
}
th {
  background: rgb(122 195 183 / 30%);
  line-height: 1.25;
  font-weight: 500;
}
td{
  text-align: center;
  background: #fff;
  color: #7ac3b7;
  font-weight: bold;
}
.inline_block{
  display: inline-block;
}
.price_bottom_text,
.caution{
  font-size: 10px;
  text-align: right;
}
.c_red{
  color: red;
}
a[id^="ttl_f"] + section .heading.block_header_4 .h{
  color: var(--i_txt_color);
}
#campaign + section .content_wrapper{
  width: calc(100% - 40px);
  background: #fff;
  padding: 2rem;
}
#campaign + section .f_l_price{
  font-size: 1.5em;
  color: #7ac3b7;
  font-weight: bold;
}
#campaign + section .under_line{
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgb(122 195 183 / 30%);
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}
@media screen and (max-width: 500px){
  .price_bottom_text,
  .caution{
    text-align: left;
  }
}