@charset "UTF-8";
:root {
  --main-color: #FFCC00;
  --en-font: "Jost",
      sans-serif;
}

/*=========
基本設定
===========*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.683125;
  color: #000000;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

.inner {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

h2 {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: clamp(20px, 5.33vw, 24px);
  }
}

/*=========
header
===========*/
.header {
  height: 100px;
  background: #fff;
}
@media (max-width: 1200px) {
  .header {
    height: 60px;
  }
}

.header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  .header__contents {
    height: 60px;
  }
}

.header__logo {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--en-font);
}

.drawer-nav {
  margin-left: auto;
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  font-size: 20px;
}
@media (max-width: 1200px) {
  .header__lists {
    display: block;
  }
}

.list__item {
  padding: 0 20px;
}
@media (max-width: 1200px) {
  .list__item {
    margin-top: 20px;
  }
}
.list__item a {
  color: #000000;
}
.list__item a:hover {
  opacity: 0.8;
}

.header__button {
  margin-left: 45px;
}
@media (max-width: 1200px) {
  .header__button {
    margin-left: 0;
    margin-top: 20px;
    text-align: center;
  }
}
.header__button a {
  color: #000000;
  padding: 17px 60px;
  border: 1px solid #000000;
  border-radius: 15px;
}
@media (max-width: 1200px) {
  .header__button a {
    padding: 10px 15px;
  }
}
.header__button a:hover {
  opacity: 0.8;
}

/*=========================================
mv
===========================================*/
.mv {
  background: #F2F2F2;
  height: 600px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv {
    height: 500px;
  }
}

.mv__title {
  padding-top: 121px;
  font-size: clamp(28px, 2.08333333vw, 40px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .mv__title {
    padding-top: 60px;
    font-size: clamp(18px, 4.8vw, 30px);
  }
}

.mv__title2 {
  font-size: clamp(52px, 4.1666666vw, 80px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .mv__title2 {
    font-size: clamp(24px, 6.4vw, 60px);
  }
}

.mv__title-time {
  font-size: clamp(28px, 2.03125vw, 36px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .mv__title-time {
    font-size: clamp(16px, 4.2666vw, 24px);
  }
}

.mv__button {
  margin-top: 17px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.mv__button a {
  font-size: 24px;
  font-weight: 400;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #000000;
  padding: 23px 46px;
  border-radius: 2px;
  width: 400px;
  background-color: var(--main-color);
  position: relative;
}
.mv__button a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .mv__button a {
    padding: 15px 25px;
    width: 250px;
    font-size: 16px;
  }
}
.mv__button a::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 10px;
  background: url(../img/Vector.webp);
  background-size: contain;
  background-repeat: no-repeat;
  right: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mv__img {
  position: absolute;
  bottom: -14px;
  right: 0;
  width: clamp(440px, 35.0520833vw, 673px);
}
@media screen and (max-width: 767px) {
  .mv__img {
    width: 300px;
    bottom: -9px;
  }
}
.mv__img img {
  width: 100%;
}

/*=========
about
===========*/
.about {
  padding-top: 104px;
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 80px;
  }
}

.about__inner {
  margin: 0 auto;
}

.about__subtitle {
  display: block;
  max-width: 924px;
  margin: 0 auto;
  margin-top: 21px;
  font-size: 24px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .about__subtitle {
    font-size: 16px;
  }
}

.about__cards {
  max-width: 924px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 23px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .about__cards {
    display: block;
    margin-top: 40px;
  }
}

.about__card {
  padding: 22px 12px;
  border: 1px solid #000;
  border-radius: 15px;
  max-width: 292px;
}
@media screen and (max-width: 767px) {
  .about__card {
    display: block;
    margin: 30px auto 0;
  }
}

.about__card-title {
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  font-family: var(--en-font);
}
@media screen and (max-width: 767px) {
  .about__card-title {
    font-size: 24px;
  }
}

.about__card-img {
  margin: 0 auto;
  display: block;
}
.about__card-img img {
  display: block;
  margin: 0 auto;
}

.about__p {
  display: block;
  max-width: 924px;
  margin: 80px auto 0;
  font-size: 32px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .about__p {
    font-size: clamp(16px, 4.2666vw, 20px);
    margin: 20px auto 0;
  }
}

.about__card-p2 {
  margin-top: 18px;
}

.about__card-p3 {
  margin-top: 15px;
}

.about-contact {
  background-color: var(--main-color);
}

.about-contact__inner {
  text-align: center;
}

.about-contact__p1 {
  display: block;
  padding-top: 54px;
  font-size: 20px;
}

.about-contact__p2 {
  display: block;
  font-size: 27px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .about-contact__p2 {
    font-size: clamp(20px, 5.33vw, 24px);
  }
}

.about-contact__button {
  margin-top: 55px;
  padding-bottom: 64px;
}
.about-contact__button a {
  font-weight: 700;
  font-size: 24px;
  padding: 23px 100px;
  background: #fff;
  color: #000;
}
.about-contact__button a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .about-contact__button a {
    padding: 20px 30px;
    font-size: 16px;
  }
}

/*=========================================
feature
===========================================*/
.feature {
  padding-top: 180px;
}
@media screen and (max-width: 767px) {
  .feature {
    padding-top: 80px;
  }
}

.feature__title {
  text-align: center;
  position: relative;
  padding-bottom: 16px;
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .feature__title {
    font-size: clamp(24px, 6.4vw, 28px);
  }
}
.feature__title::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 4px;
  background: #000;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.feature__contents {
  margin-top: 80px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .feature__contents {
    margin-top: 40px;
    padding-bottom: 10px;
  }
}

.feature__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .feature__item {
    display: block;
    margin-top: 40px;
  }
}

.feature__item-left {
  width: 43%;
}
@media screen and (max-width: 767px) {
  .feature__item-left {
    width: 100%;
  }
}

.feature__item-number {
  font-size: 64px;
  font-weight: 700;
  font-family: var(--en-font);
}
@media screen and (max-width: 767px) {
  .feature__item-number {
    font-size: 40px;
    line-height: 1;
  }
}

.feature__item-title {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .feature__item-title {
    font-size: 20px;
  }
}

.feature__item-p {
  display: block;
  margin-top: 23px;
  max-width: 460px;
}
@media screen and (max-width: 767px) {
  .feature__item-p {
    margin-top: 10px;
  }
}

.feature__item-right {
  width: 57%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .feature__item-right {
    width: 100%;
  }
}

.feature__item-img1 {
  max-width: 664px;
}

.feature__item-img2 {
  max-width: 483px;
}

.feature__item-img3 {
  max-width: 613px;
}

.feature__item-img {
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .feature__item-img {
    margin-top: 10px;
  }
}
.feature__item-img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .feature__item-img img {
    width: 80%;
  }
}

.feature__item2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/*=========================================
function
===========================================*/
.function {
  padding-top: 180px;
}
@media screen and (max-width: 767px) {
  .function {
    padding-top: 80px;
  }
}

.function__title {
  text-align: center;
  position: relative;
  padding-bottom: 16px;
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .function__title {
    font-size: clamp(24px, 6.4vw, 28px);
  }
}
.function__title::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 4px;
  background: #000;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.function__contents {
  margin-top: 80px;
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .function__contents {
    padding-bottom: 40px;
  }
}

.function__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 40px 24px;
}
@media screen and (max-width: 767px) {
  .function__items {
    grid-template-columns: 1fr 1fr;
  }
}

.function__item-img {
  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;
  width: 122px;
  height: 122px;
  margin: auto;
  position: relative;
}
.function__item-img::after {
  position: absolute;
  content: "";
  width: 122px;
  height: 122px;
  background: rgba(217, 217, 217, 0.2);
  border-radius: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.function__item-title {
  font-weight: 700;
  font-size: 15px;
  margin-top: 26px;
  text-align: center;
  line-height: 1.448;
}

.function__item-p {
  font-size: 13px;
  font-weight: 400;
  margin-top: 14px;
  line-height: 1.4476923077;
}

.function__contents-p {
  display: block;
  margin-top: 40px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .function__contents-p {
    text-align: center;
  }
}

/*=========================================
function-contact
===========================================*/
.function-contact {
  background-color: var(--main-color);
}

.function-contact__p1 {
  display: block;
  text-align: center;
  padding-top: 75px;
  font-size: 26px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .function-contact__p1 {
    font-size: 16px;
  }
}

.function-contact__p2 {
  display: block;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 700;
  font-size: 30px;
  margin-top: 7px;
  padding: 0 57px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .function-contact__p2 {
    font-size: clamp(20px, 5.33vw, 24px);
    padding: 0 50px;
  }
}
.function-contact__p2::before {
  position: absolute;
  content: "";
  background: url(../img/function-before.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 47px;
  height: 56px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .function-contact__p2::before {
    width: 35px;
  }
}
.function-contact__p2::after {
  position: absolute;
  content: "";
  background: url(../img/function-after.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 47px;
  height: 56px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .function-contact__p2::after {
    width: 35px;
  }
}
.function-contact__p3 {
  display: block;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .function-contact__p3 {
    font-size: 14px;
  }
}

.function-contact__bold {
  font-size: 48px;
}
@media screen and (max-width: 767px) {
  .function-contact__bold {
    font-size: clamp(20px, 7.46666vw, 30px);
  }
}

.function-contact__img {
  text-align: center;
}

.function-contact__button {
  text-align: center;
  padding-top: 27px;
  padding-bottom: 104px;
}
@media screen and (max-width: 767px) {
  .function-contact__button {
    padding-bottom: 64px;
  }
}
.function-contact__button a {
  color: #fff;
  background: #000;
  font-size: 27px;
  padding: 24px 191px;
  border-radius: 15px;
}
.function-contact__button a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .function-contact__button a {
    font-size: 16px;
    padding: 20px 30px;
  }
}

/*=========================================
price
===========================================*/
.price {
  padding-top: 180px;
}
@media screen and (max-width: 767px) {
  .price {
    padding-top: 80px;
  }
}

.price__title {
  text-align: center;
  position: relative;
  padding-bottom: 16px;
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .price__title {
    font-size: clamp(24px, 6.4vw, 28px);
  }
}
.price__title::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 4px;
  background: #000;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.price__contents {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .price__contents {
    margin-top: 40px;
  }
}

.price__cards {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1050px) {
  .price__cards {
    display: block;
    padding-bottom: 40px;
    margin: 0 auto;
  }
}

.price__card {
  width: 504px;
  text-align: center;
  border: solid 1px #8F8F8F;
  border-radius: 15px;
  padding-top: 25px;
  max-width: 100%;
}
@media (max-width: 1050px) {
  .price__card {
    width: 450px;
    margin: 20px auto 0;
  }
}

.price__card-title {
  font-size: 26px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .price__card-title {
    font-size: clamp(16px, 4.2666vw, 20px);
  }
}

.price__card-free {
  font-weight: 600;
  font-size: 64px;
  background: #FF626F;
  color: #fff;
  font-family: var(--en-font);
}
@media screen and (max-width: 767px) {
  .price__card-free {
    font-size: 40px;
  }
}

.price__card-pro {
  font-weight: 600;
  font-size: 64px;
  background: #D9D9D9;
  color: #000;
  font-family: var(--en-font);
}
@media screen and (max-width: 767px) {
  .price__card-pro {
    font-size: 40px;
  }
}

.price__card-p {
  margin-top: 21px;
  font-weight: 500;
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .price__card-p {
    font-size: clamp(16px, 4.2666vw, 20px);
  }
}

.price__card-price1 {
  font-size: 27px;
  font-weight: 500;
}

.price__card-price2 {
  font-size: 27px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .price__card-price2 {
    font-size: clamp(16px, 4.2666vw, 20px);
  }
}

.price__card-link {
  padding-bottom: 35px;
}
.price__card-link a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #000;
  margin: 0 auto;
  border-radius: 15px;
  border: 1px solid #000;
  padding: 28px 73px;
  font-size: 27px;
  font-weight: 700;
  margin-top: 16px;
}
.price__card-link a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .price__card-link a {
    padding: 15px 50px;
    font-size: 20px;
  }
}

.price-0 {
  font-weight: 600;
  font-size: 128px;
  line-height: 1;
  font-family: var(--en-font);
}
@media screen and (max-width: 767px) {
  .price-0 {
    font-size: 100px;
  }
}

.price-9800 {
  font-weight: 700;
  font-size: 85px;
  line-height: 122px;
  font-family: var(--en-font);
}
@media screen and (max-width: 767px) {
  .price-9800 {
    font-size: 68px;
  }
}

.card-price-9800 {
  margin-top: 6px;
}

.price__img {
  position: absolute;
  bottom: 170px;
  width: 299px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1050px) {
  .price__img {
    display: none;
  }
}

/*=========================================
qa
===========================================*/
.qa {
  padding-top: 113px;
  background: #F8F8F8;
}
@media screen and (max-width: 767px) {
  .qa {
    padding-top: 80px;
  }
}

.qa__title {
  text-align: center;
  position: relative;
  padding-bottom: 16px;
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .qa__title {
    font-size: clamp(24px, 6.4vw, 28px);
  }
}
.qa__title::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 4px;
  background: #000;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.qa__contents {
  margin-top: 80px;
  max-width: 1250px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .qa__contents {
    margin-top: 40px;
    padding-bottom: 40px;
  }
}

.qa__item {
  margin-top: 21px;
}

.qa__q {
  background-color: var(--main-color);
  font-weight: 700;
  font-size: 20px;
  padding: 25px 10px 25px 160px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .qa__q {
    padding: 10px 10px 10px 50px;
    font-size: 14px;
  }
}
.qa__q::before {
  position: absolute;
  content: "Q";
  font-family: var(--en-font);
  font-size: 32px;
  font-weight: 600;
  color: #000;
  background: #fff;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  top: 50%;
  margin-left: -80px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .qa__q::before {
    width: 30px;
    height: 30px;
    font-size: 20px;
    margin-left: -35px;
  }
}

.qa__a {
  padding: 25px 10px 25px 160px;
}
@media screen and (max-width: 767px) {
  .qa__a {
    padding: 10px 10px 10px 10px;
  }
}

/*=======================================================
# news
=======================================================*/
.news {
  padding-top: 180px;
}
@media screen and (max-width: 767px) {
  .news {
    padding-top: 80px;
  }
}

.news__title {
  text-align: center;
  position: relative;
  padding-bottom: 16px;
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .news__title {
    font-size: clamp(24px, 6.4vw, 28px);
  }
}
.news__title::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 4px;
  background: #000;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.news__contents {
  padding-top: 80px;
  padding-bottom: 180px;
}
@media screen and (max-width: 767px) {
  .news__contents {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.news__item {
  padding: 40px 0;
  border-top: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .news__item {
    padding: 20px 0;
  }
}
.news__item:last-child {
  border-bottom: 1px solid #CCCCCC;
}

.news__item-day {
  display: block;
  font-weight: 500;
  position: relative;
}
.news__item-day::after {
  position: absolute;
  content: "お知らせ";
  font-size: 12px;
  font-weight: 500;
  color: #000;
  background-color: var(--main-color);
  padding: 2px 16px;
  margin-left: 30px;
}

.news__item-title {
  font-weight: 500;
  font-size: 24px;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    font-size: 16px;
    margin-top: 10px;
  }
}

.news__item-text {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .news__item-text {
    margin-top: 20px;
  }
}

/*=========================================
contact
===========================================*/
.contact {
  background: #F8F8F8;
  padding-top: 80px;
  padding-bottom: 82px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.contact__title {
  text-align: center;
  position: relative;
  padding-bottom: 16px;
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .contact__title {
    font-size: clamp(24px, 6.4vw, 28px);
  }
}
.contact__title::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 4px;
  background: #000;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.form {
  max-width: 924px;
  width: 100%;
  margin: 50px auto 0;
}

.contact__p {
  display: block;
  font-weight: 400;
}

.contact-form__row {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .contact-form__row {
    margin-top: 20px;
  }
}

.contact-form__label {
  font-weight: 700;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .contact-form__label {
    font-size: 14px;
  }
}

.contact-form__label-p {
  font-size: 12px;
  font-weight: 400;
  margin-left: 60px;
}
@media screen and (max-width: 767px) {
  .contact-form__label-p {
    margin-left: 0px;
  }
}

.is-required {
  position: relative;
}
.is-required::after {
  position: absolute;
  content: "必須";
  background: #FF626F;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  width: 40px;
  height: 20px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 20px;
  margin-top: 2px;
}
@media screen and (max-width: 767px) {
  .is-required::after {
    margin-left: 10px;
    font-size: 10px;
    width: 30px;
    height: 15px;
  }
}

.contact-form__input {
  margin-top: 8px;
  font-size: 16px;
}
.contact-form__input [type=text],
.contact-form__input [type=email] {
  width: 100%;
  padding: 15px 32px;
  font-weight: 400;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .contact-form__input [type=text],
  .contact-form__input [type=email] {
    padding: 12px 15px;
    font-size: 14px;
  }
}
.contact-form__input textarea {
  width: 100%;
  padding: 15px 32px;
  font-weight: 400;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .contact-form__input textarea {
    padding: 12px 15px;
    font-size: 14px;
  }
}

.contact-footer-text {
  display: block;
  text-align: center;
  margin-top: 30px;
}
.contact-footer-text a {
  color: #1571DA;
}

.contact-privacy {
  display: block;
}

.contact-form__submit {
  text-align: center;
  margin-top: 17px;
}
.contact-form__submit .util-link {
  font-weight: 700;
  font-size: 24px;
  padding: 23px 148px;
  border: 1px solid #000;
  border-radius: 5px;
  color: #8F8F8F;
}
@media screen and (max-width: 767px) {
  .contact-form__submit .util-link {
    font-size: 20px;
    padding: 15px 50px;
  }
}
.contact-form__submit .util-link.-active {
  color: #000;
  cursor: pointer;
}

.-active {
  color: #000;
}

/*=========================================
company
===========================================*/
.company {
  padding-top: 180px;
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .company {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.company__title {
  text-align: center;
  position: relative;
  padding-bottom: 16px;
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .company__title {
    font-size: clamp(24px, 6.4vw, 28px);
  }
}
.company__title::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 4px;
  background: #000;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.company__contents {
  max-width: 1041px;
  width: 100%;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .company__contents {
    margin-top: 40px;
  }
}

.company__table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .company__table-row {
    padding: 20px 0;
  }
}

.company__table-dt {
  width: 25%;
  padding-left: 40px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .company__table-dt {
    padding-left: 0;
    width: 30%;
  }
}

.company__table-dd {
  width: 85%;
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .company__table-dd {
    font-size: 14px;
    width: 70%;
  }
}

.footer__logo {
  font-family: var(--en-font);
  text-align: center;
  background: #F2F2F2;
  padding: 70px 0 70px;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    padding: 30px 0;
    font-size: 24px;
  }
}

.footer__p {
  font-family: var(--en-font);
  text-align: center;
  background-color: var(--main-color);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .footer__p {
    padding: 10px 0;
    font-size: 12px;
  }
}

/*=========================================
topへ戻る
===========================================*/
.to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 70px;
}
@media screen and (max-width: 767px) {
  .to-top {
    right: 10px;
    bottom: 50px;
  }
}
.to-top a {
  display: block;
  width: 60px;
  height: 60px;
  background: url(../img/to-top.webp);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .to-top a {
    width: 30px;
    height: 30px;
  }
}
.to-top a:hover {
  opacity: 0.8;
}

#commerce_law table{
  border-bottom: solid 1px #ddd;
  margin:30px 0;
}

#commerce_law table td{
  border-top: solid 1px #ddd;
  padding: 30px 30px;
}