@charset "UTF-8";

/*-------------------------------------------
common
-------------------------------------------*/
:root {
  --green: #129459;
  --red: #FF3301;
}
body {
  line-height: 1.5;
}
.container {
  max-width: 1000px;
  padding-inline: 20px;
  margin-inline: auto;
}
.user-text {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 600;
  line-height: 1.8;
  text-align: justify;
}

/*-------------------------------------------
mv
-------------------------------------------*/
.page-mv {
  background-image: url(../img/user/user-mv.jpg);
}

/*-------------------------------------------
ユーザー数無制限について
-------------------------------------------*/
.user {
  margin-bottom: 80px;
}
.user-lead {
  margin-bottom: 120px;
}
.user .page-section-title {
  margin-bottom: 50px;
}

.user-comparing .user-comparing-title {
  font-size: clamp(20px, 3.2vw, 24px);
  font-weight: bold;
  line-height: 1.5;
  color: #129459;
  margin-bottom: 30px;
  text-align: center;
}

.user-comparing {
  background-color: #EDFFF2;
  padding: 40px 0 80px;
  margin-bottom: 100px;
}
.user-comparing .comparing-table {
  border-collapse: collapse;
  width: 100%;
}
.user-comparing .comparing-table th {
  font-size: min(20px, 2vw);
  font-weight: 500;
  text-align: center;
  background-color: #fff;
  padding: 1em 1.2em;
  border: 1px solid #000;
}
.user-comparing .comparing-table td {
  font-size: min(18px, 2vw);
  text-align: center;
  background-color: #fff;
  padding: 1em 1.2em;
  border: 1px solid #000;
}
.user-comparing .comparing-table tr th:first-child,
.user-comparing .comparing-table tr td:first-child {
  width: 26%;
  background-color: #FFFEE2;
}
.user-comparing .comparing-table tr th:nth-child(2) {
  width: 37%;
  background-color: #E5E5E5;
}
.user-comparing .comparing-table tr td:nth-child(2) {
  text-align: left;
}
.user-comparing .comparing-table tr th:last-child {
  width: 37%;
  color: #fff;
  background-color: var(--green);
}
.user-comparing .comparing-table tr td:last-child {
  color: var(--green);
  text-align: left;
}

.user-merit {
  margin-bottom: 120px;
}
.user-merit .user-merit-title {
  font-size: clamp(26px, 3.6vw, 32px);
  font-weight: bold;
  line-height: 1.5;
  color: #129459;
  margin-bottom: 50px;
  text-align: center;
}
.user-merit .merit-item {
  display: flex;
  margin-bottom: 60px;
}
.user-merit .merit-item .user-text {
  width: 61%;
  margin-right: 4%;
}
.user-merit .merit-item .user-text .user-heading {
  font-size: 24px;
  line-height: 1.5;
  color: #129459;
  margin-bottom: 25px;
}
.user-merit .merit-item .user-text .user-detail {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  text-align: justify;
}
.user-merit .merit-item .user-img {
  width: 35%;
  max-width: 318px;
}

.user-text-btm {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 120px;
  text-align: center;
}



/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 767px) {
  /* common
  -------------------------------------------*/
  .user-text {
    font-size: clamp(16px, 2.9vw, 18px);
    line-height: 1.8;
  }

  /* mv
  -------------------------------------------*/
  .page-mv {
    background-image: url(../img/user/user-mv-sp.jpg);
  }

    /* スマートフォン
  -------------------------------------------*/
  .user {
    margin-bottom: 20px;
  }
  .user-lead {
    margin-bottom: 60px;
  }
  .user .page-section-title {
    margin-bottom: 40px;
  }

  .user-comparing {
    padding: 40px 0 60px;
    margin-bottom: 60px;
  }
  .user-comparing .comparing-table th,
  .user-comparing .comparing-table td {
    font-size: max(12px, 2.9vw);
    padding: 0.5em;
  }

  .user-merit {
    margin-bottom: 50px;
  }
  .user-merit .user-merit-title {
    margin-bottom: 30px;
  }
  .user-merit .merit-item {
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }
  .user-merit .merit-item .user-text {
    width: 100%;
    margin-right: 0;
  }
  .user-merit .merit-item .user-text .user-heading {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .user-merit .merit-item .user-text .user-detail {
    font-size: 16px;
  }
  .user-merit .merit-item .user-img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .user-text-btm {
    font-size: 22px;
    margin-bottom: 60px;
  }
}