/*Benefits*/
#corporate,
#individual {
  scroll-margin-top: 80px;
}

#benefits {
  padding-top: 80px;
  background: url("../images/bg_img_upcycle.jpg") repeat top center;
}

#benefits p,
#benefits span,
#benefits dd {
  color: var(--sec01-color);
}

@media screen and (max-width: 768px) {
  #benefits {
    padding-top: 40px;
  }
}

.benefits_title {
  text-align: center;
}

.benefits_box_wrap {
  display: flex;
  justify-content: space-around;
  margin-top: 48px;
  gap: 24px;
}

@media screen and (max-width: 768px) {
  .benefits_box_wrap {
    flex-direction: column;
    margin-top: 30px;
  }
}

.benefits_box {
  width: 100%;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
}

.benefits_box.half {
  max-width: 480px;
}

@media screen and (max-width: 768px) {
  .benefits_box.half {
    max-width: none;
  }
}

.benefits_box_title {
  padding: 0.5em 0;
  background-color: var(--sec03-color);
  color: #fff;
  font-weight: bold;
  font-size: 28px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .benefits_box_title {
    font-size: 22px;
  }
}

.benefits_box_inner {
  padding: 16px 32px;
  background: #fff;
}

@media screen and (max-width: 1024px) {
  .benefits_box_inner {
    padding: 12px 16px 20px;
  }
}

p.benefits_box_text {
  margin: 1em 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
}

p.benefits_box_text.indivisual {
  text-align: center;
}

@media screen and (max-width: 1024px) {
  p.benefits_box_text {
    font-size: 16px;
  }

  p.benefits_box_text.indivisual {
    text-align: left;
    margin: 1em;
  }
}

.benefits_box_dl {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 90%;
  margin: 0.5rem auto;
  font-feature-settings: "palt";
}

@media screen and (max-width: 1024px) {
  .benefits_box_dl {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .benefits_box_dl {
    flex-direction: column;
    gap: 5px;
    width: 100%;
    margin: 14px auto;
  }
}

.benefits_box_dl dt {
  flex-shrink: 0;
  width: 9em;
  margin-bottom: 0.5em;
  padding: 0.5em;
  font-size: 16px;
  font-weight: bold;
  background-color: var(--sec03-color);
  color: #fff;
  text-align: center;
  border-radius: 100px;
}
.benefits_box_dl dd {
  flex-shrink: 1;
  font-weight: bold;
  font-size: 16px;
}

.benefits_box_dl dd .small {
  display: block;
  line-height: 1.3;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .benefits_box_dl dt {
    font-size: 14px;
  }
  .benefits_box_dl dd {
    font-size: 16px;
  }
  .benefits_box_dl dd .small {
    font-size: 100%;
    display: inline;
  }
}

@media screen and (max-width: 768px) {
  .benefits_box_dl dt {
    width: 12em;
    margin-bottom: 0;
  }
}

.benefits_box.green {
  .benefits_box_title {
    background-color: var(--main-color);
  }
  .benefits_box_dl dt {
    background-color: var(--main-color);
  }
}

.benefits_box.beige {
  .benefits_box_title {
    background-color: var(--sec05-color);
  }
  .benefits_box_dl dt {
    background-color: var(--sec05-color);
  }

  .benefits_box_inner {
    padding: 12px 20px 40px;
  }

  @media screen and (min-width: 769px) {
    border-radius: 80px 0 80px 0;

    .benefits_box_title {
      padding: 1em;
    }

    .benefits_box_inner {
      padding: 20px 20px 50px;
    }

    .benefits_box_lists {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 24px;
    }

    .benefits_box_dl {
      flex-direction: column;
      gap: 0;
      width: 25%;
      margin: 2rem 0;
    }
  }

  @media screen and (min-width: 1025px) {
    .benefits_box_inner {
      padding: 30px 40px 80px;
    }
  }
}

.benefits_box.beige {
  .benefits_box_title {
    background-color: var(--sec05-color);
  }
  .benefits_box_dl dt {
    background-color: var(--sec05-color);
  }
}

#benefits_table_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  #benefits_table_sp {
    display: block;
  }
  .benefits_table_pc {
    display: none;
  }
}

.benefits_table {
  margin: 6rem 0;
}

@media screen and (max-width: 768px) {
  .benefits_table {
    margin: 60px 0;
  }
}

.benefits_table h2 {
  margin-bottom: 1em;
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  color: var(--sec04-color);
}

@media screen and (max-width: 768px) {
  .benefits_table h2 {
    font-size: 20px;
  }
}

.benefits_table tbody td {
  background-color: #fff;
}

.benefits_table tbody td.ng {
  background-color: #ddd;
}

.benefits_table tbody td.limit {
  background-color: #fbf1e0;
}

.benefits_table_pc {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.benefits_table_pc tr {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
  width: 100%;
}

.benefits_table_pc th {
  width: 60%;
  line-height: 1.3;
}

.benefits_table_pc td {
  width: calc((40% - 10px) / 2);
}

.benefits_table_pc thead th span {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

.benefits_table_pc thead td {
  padding: 0.5em;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
}

.benefits_table_pc thead td[data-type="corporate"] {
  background-color: var(--sec03-color);
}

.benefits_table_pc thead td[data-type="supporting"] {
  background-color: var(--main-color);
}

.benefits_table_pc tbody th {
  padding: 1em 0;
  background-color: #767676;
  color: #fff;
  font-weight: bold;
}

.benefits_table_pc tbody td {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1em 0;
  font-weight: bold;
  text-align: center;
}

.benefits_table_pc tbody td span {
  font-size: 80%;
  margin-top: 0.5em;
}

.benefits_table_sp .tab-buttons {
  display: flex;
  gap: 5px;
}
.benefits_table_sp .tab-btn {
  flex: 1;
  padding: 1em;
  border: none;
  background: #bebebe;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
  color: #fff;
  cursor: pointer;
}
.benefits_table_sp .tab-btn.active[data-tab="corporate"] {
  background: var(--sec03-color);
  color: #fff;
}
.benefits_table_sp .tab-btn.active[data-tab="support"] {
  background: var(--main-color);
  color: #fff;
}
.benefits_table_sp .member-benefits li {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 5px;
  border-bottom: 1px solid #4a64a4;
}

.benefits_table_sp .member-benefits li span:first-child {
  width: calc(100% - 70px);
  font-size: 14px;
  padding: 0.75em;
  background-color: #f4f6f9;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
}
.benefits_table_sp .label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  padding: 0.5em 0.25em;
  font-size: 14px;
  background-color: #fff;
  font-weight: bold;
  text-align: center;
}

.benefits_table_sp .label span {
  margin-top: 5px;
  font-size: 9px;
  letter-spacing: 0;
}

.benefits_table_sp .label.ng {
  background-color: #ddd;
}

.benefits_table_sp .label.limit {
  background-color: #fbf1e0;
}

.tab-support {
  .member-benefits li {
    border-color: var(--main-color);
  }
  .member-benefits li span:first-child {
    background-color: #eef7f0;
  }
}

.benefits_individual .ttl_mod {
  color: var(--sec05-color);
  margin-top: 50px;
}

.benefits_service_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  padding: 0 20px;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .benefits_service_list {
    flex-direction: column;
    margin-top: 20px;
  }
}

.benefits_service_item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 30%;
}

.benefits_service_item:first-child {
  margin-left: 2rem;
}

.benefits_service_item:nth-child(2) {
  margin-right: 2rem;
}

@media screen and (max-width: 1024px) {
  .benefits_service_item,
  .benefits_service_item:first-child,
  .benefits_service_item:nth-child(2) {
    width: 45%;
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .benefits_service_item,
  .benefits_service_item:first-child,
  .benefits_service_item:nth-child(2) {
    width: 100%;
  }
}

.benefits_service_title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: -1em;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  height: 3em;
  line-height: 1.5;
}

.benefits_service_img {
  height: 200px;
}

.benefits_service_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefits_service_caption {
  font-size: 15px;
  line-height: 1.5;
}

.service_moreBtn {
  position: relative;
  width: 15em;
  padding: 0.5em 1em;
  text-align: center;
  border: 1px solid var(--sec03-color);
  color: var(--sec03-color);
  background-color: transparent;
  margin: 0 auto;
  border-radius: 100px;
  font-size: 16px;
  font-weight: bold;
  display: none;
}

.service_moreBtn::before,
.service_moreBtn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 12px;
  height: 2px;
  margin: auto;
  background-color: var(--sec03-color);
}

.service_moreBtn::after {
  transform: rotate(90deg);
}

.benefits_voice {
  padding: 120px 0 60px;
}

@media (max-width: 767px) {
  .benefits_voice {
    padding: 60px 0 30px;
  }
}

.voice.corporate {
  margin-bottom: 6rem;
}

.voice.indivisual {
  margin-top: 6rem;
}

.voice h2 {
  font-size: 32px;
  color: var(--sec01-color);
  font-weight: bold;
}

@media (max-width: 767px) {
  .voice.corporate {
    margin-bottom: 80px;
  }

  .voice.indivisual {
    margin-top: 80px;
  }

  .voice h2 {
    font-size: 20px;
  }
}

.voice_list {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 2rem;
}

.voice_item {
  position: relative;
  width: 40%;
  padding: 20px;
  padding-top: 60px;
  margin-top: 60px;
  background-color: #fff;
  border-radius: 24px;
}

@media (max-width: 767px) {
  .service_moreBtn {
    display: block;
  }

  .voice_list {
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }
  .voice_item {
    width: 100%;
  }
}

.voice_img {
  position: absolute;
  width: 120px;
  top: -60px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.voice_comment {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.4;
}

.voice_category {
  margin-top: 16px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}

@media (max-width: 767px) {
  .benefits_service_caption {
    display: none;
  }
  .benefits_service_caption.open {
    display: block;
  }
  .service_moreBtn.open::after {
    transform: rotate(0deg);
  }
}

.voice_list + .txt_enroll_note {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .benefits_endline {
    margin-top: 40px;
  }
}

.benefits_endline span {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
}

.sec_bnr {
  padding: 60px 0 90px;
}

@media (max-width: 767px) {
  .sec_bnr {
    padding: 30px 0 50px;
  }
}
