/* Scss Document */
.product_tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.product_tag span {
  padding: 3px 6px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background: #33518e;
  color: #FFF;
  border-radius: 8px;
}

.makers_text_list {
  display: grid;
  gap: 12px 3%;
  grid-template-columns: repeat(2, minmax(auto, 50%));
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .makers_text_list {
    gap: 20px 3%;
    gap: 16px;
    grid-template-columns: repeat(6, minmax(auto, 20%));
  }
}
.makers_text_list li {
  padding: 10px;
  background: #3F64AF;
  color: #FFF;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
}
@media screen and (min-width: 769px) {
  .makers_text_list li {
    font-size: 1.4375rem;
  }
}

.client_cat_list_wrap {
  background: #FFF;
  padding: 20px 10px;
  border-radius: 12px;
  max-width: 94%;
  margin: 0 auto 30px;
}
@media screen and (min-width: 769px) {
  .client_cat_list_wrap {
    padding: 50px 15px;
    max-width: 1200px;
  }
}

.client_cat_text {
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
}
@media screen and (min-width: 769px) {
  .client_cat_text {
    font-size: 1.5rem;
  }
}
.client_cat_text .copy {
  font-weight: bold;
  color: #3F64AF;
  margin-bottom: 16px;
  font-size: 1.75rem;
}
@media screen and (min-width: 769px) {
  .client_cat_text .copy {
    font-size: 2.5rem;
  }
}

.client_cat_list {
  max-width: 860px;
  margin: auto;
  display: grid;
  gap: 16px 2%;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  padding-left: 0;
}
@media screen and (min-width: 769px) {
  .client_cat_list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.client_cat_list li {
  text-align: center;
}
.client_cat_list .img {
  max-width: 181px;
  margin-bottom: 6px;
}
.client_cat_list .title {
  text-align: center;
  font-weight: bold;
  font-size: 0.9375rem;
}
@media screen and (min-width: 769px) {
  .client_cat_list .title {
    font-size: 1.5rem;
  }
}

.subscription_area01 .title01 .under {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.subscription_area01 .title01 img {
  max-width: 240px;
}

.reason_area .title01 img {
  max-width: 240px !important;
}
@media screen and (min-width: 769px) {
  .reason_area .title01 img {
    max-width: 100% !important;
  }
}
.products_box .price_box .price {
  text-align: center;
}


.header_area .header_news_label {
  padding: 5px 5px;
  line-height: 1.2;
  font-size: 10px;
  text-align: center;
  background: #3f64af;
  color: #fff;
  margin-bottom: 4px;
  margin-top: -10px;
}
@media screen and (min-width: 769px) {
  .header_area .header_news_label {
    margin: 0;
    font-size: 12px;
  }
}
.header_area.active .header_news_label {
  margin-top: -10px;
  margin-bottom: 4px;
}
@media screen and (min-width: 769px) {
  .header_area.active .header_news_label {
    margin-bottom: 10px;
  }
}


.quote_title {
  padding-inline: 15px;
  overflow: hidden;
}
.quote_title .quote {
  position: relative;
  padding-bottom: 10px;
  line-height: 1.2;
}
.quote_title .quote::after, .quote_title .quote::before {
  content: "";
  display: block;
  width: 2px;
  height: 70%;
  background-color: #3F64AF;
  position: absolute;
  bottom: 10px;
}
.quote_title .quote::after {
  right: -14px;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
.quote_title .quote::before {
  left: -14px;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
@media screen and (min-width: 769px) {
  .quote_title .quote::after {
    right: -20px;
  }
  .quote_title .quote::before {
    left: -20px;
  }