@charset "UTF-8";

body {
  font-family: "Noto Sans JP";
  color: #565956;
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
}

.header {
  background: #fff;
  width: 100%;
  height: 48px;
  z-index: 99;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
}

@media screen and (min-width: 1040px) {
  .header {
    height: 69.5px;
  }
}

.header__inner {
  width: 100%;
}

.inner {
  padding-inline: 16px;
}

@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 30px;
    max-width: 1240px;
  }
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  width: 52px;
  height: 21px;
}

@media screen and (min-width: 1040px) {
  .header__logo {
    width: 113px;
    height: 45px;
  }
}

@media screen and (min-width: 1040px) {
  .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.menu-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  margin-top: 2px;
}

@media screen and (min-width: 1040px) {
  .menu-category {
    gap: 32px;
    margin-top: inherit;
  }
}

.menu-category__link {
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 1040px) {
  .menu-category__link {
    height: 69.5px;
  }
}

.menu-category__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 1040px) {
  .menu-category__btn {
    gap: 8px;
  }
}

.menu-category__link.is-open .menu-category__btn-text {
  color: #b1b6af;
}

@media screen and (min-width: 1040px) {
  .menu-category__link.is-open .menu-category__btn-text {
    color: #565956;
  }
}

@media screen and (min-width: 1040px) {
  .menu-category__btn-text {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

.menu-category__link.is-open .menu-category__btn-path {
  fill: #b1b6af;
}

.menu-category__link.is-open .menu-category__container {
  opacity: 1;
  visibility: visible;
}

.menu-category__btn-icon {
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.menu-category__link.is-open .menu-category__btn-icon {
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

@media screen and (min-width: 1040px) {
  .menu-category__link.is-open .menu-category__btn-icon {
    -webkit-transform: initial;
    transform: initial;
  }
}

.menu-category__container {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 48px;
  background: transparent;
  width: calc(100% - 32px);
  z-index: 95;
  opacity: 0;
  visibility: hidden;
}

@media screen and (min-width: 1040px) {
  .menu-category__container {
    top: 69.5px;
    max-width: 1180px;
    width: 100%;
  }
}

.menu-category__contents {
  margin-top: 8px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 23px;
  background: #fff;
  border-radius: 8px;
  width: 100%;
  z-index: 96;
}

.category-link__head {
  font-weight: 700;
  letter-spacing: 0.64px;
}

.category-link__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
  row-gap: 29px;
  width: 100%;
}

.category-link__item {
  padding: 0px 16px 6px 0px;
  border-bottom: 2px solid #f2f4f1;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.56px;
  width: 100%;
  display: inline-block;
}

.menu-category__background {
  width: 100%;
  height: 100%;
  background: rgba(86, 89, 86, 0.56);
  position: fixed;
  z-index: 90;
  top: 48px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.menu-category__link.is-open+.menu-category__background {
  opacity: 1;
  visibility: visible;
}

.header__menu-company {
  display: none;
}

@media screen and (min-width: 1040px) {
  .header__menu-company {
    display: block;
  }

  .header__menu-company a {
    font-weight: 700;
    letter-spacing: 0.64px;
  }
}

.header__menu-login {
  display: none;
}

@media screen and (min-width: 1040px) {
  .header__menu-login {
    display: block;
  }

  .header__menu-login a {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.56px;
    padding: 8px 23px;
    border-radius: 99999px;
    border: 1px solid #565956;
    background: #fff;
    -webkit-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
  }
}

.header__menu-cart {
  display: none;
}

@media screen and (min-width: 1040px) {
  .header__menu-cart {
    display: block;
    padding-left: 8px;
  }

  .header__menu-cart svg {
    width: 32px;
    height: 32px;
    vertical-align: middle;
  }
}

.header__icon-item {
  width: 24px;
  height: 24px;
}

.header__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

@media screen and (min-width: 1040px) {
  .header__icon {
    display: none;
  }
}

.fv {
  background: url(../img/fv.jpg) no-repeat;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 742px;
  /* 高さを742pxに設定 */
  position: relative;
  /* 相対位置付け */
  overflow: hidden;
}

.fv img {
  position: absolute;
  /* 絶対位置付け */
  top: 0;
  left: -20px;
  width: calc(100% + 20px);
  height: 100%;
}

@media screen and (min-width: 768px) {
  .fv {
    width: 100%;
    height: 476px;
    /* 高さを476pxに設定 */
  }
}

.fv__text1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  left: 15px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  bottom: 312px;
}

.fv__text1 span {
  font-size: 28px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.12px;
  margin-bottom: 8px;
  background: #fff;
  padding: 4px 24px;
}

@media screen and (min-width: 768px) {
  .fv__text1 {
    bottom: 196px;
    left: 129px;
  }

  .fv__text1 span {
    font-size: 40px;
    letter-spacing: 1.6px;
  }
}

.fv__text2 {
  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;
  position: absolute;
  left: 15px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  bottom: 256px;
  gap: 10px;
}

.fv__text2 span {
  font-weight: 700;
  letter-spacing: 0.64px;
  padding: 8px 24px;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .fv__text2 {
    bottom: 129px;
    left: 129px;
  }

  .fv__text2 span {
    font-size: 24px;
    letter-spacing: 0.96px;
    line-height: 1.5;
  }
}

.sp-show {
  display: block;
}

@media screen and (min-width: 768px) {
  .sp-show {
    display: none;
  }
}

.pc-show {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc-show {
    display: block;
  }
}

.rental-section {
  background-color: #f2f4f1;
}

@media screen and (min-width: 768px) {
  .rental-section {
    background: transparent;
    position: relative;
  }
}

.rental__inner {
  padding: 57px 16px;
}

@media screen and (min-width: 768px) {
  .rental_frame {
    padding: 0px 130px;
    font-display: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
}

.rental__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  border-radius: 16px;
  background: #fff;
  position: relative;
}

@media screen and (min-width: 768px) {
  .rental__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 38px 56px 64px 64px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    max-width: 719px;
    width: 100%;
    margin-inline: auto;
  }
}

.rental__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.rental__nowonly {
  width: 82px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background-color: #565956;
}

@media screen and (min-width: 768px) {
  .rental__nowonly {
    position: absolute;
    -webkit-transform: rotate(-29.317deg);
    transform: rotate(-29.317deg);
    left: 87px;
    top: 33.98px;
  }
}

.rental__text1 {
  font-weight: 700;
  color: #565956;
  margin: 8px 0px;
  letter-spacing: 0.64px;
}

@media screen and (min-width: 768px) {
  .rental__text1 {
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0.96px;
  }
}

.rental__text2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.12px;
  line-height: 150%;
}

@media screen and (min-width: 768px) {
  .rental__text2 {
    font-size: 28px;
    letter-spacing: 1.12px;
  }
}

.rental__deco {
  width: 100%;
  margin: 24px 0px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .rental__deco {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 60px;
  }
}

.rental__deco1 {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.64px;
  padding: 16px;
  border-radius: 16px;
  background-color: #565956;
  gap: 10px;
}

@media screen and (min-width: 768px) {
  .rental__deco1 {
    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;
    padding: 16px 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
  }
}

.rental__deco1:nth-child(1) {
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  .rental__deco1:nth-child(1) {
    margin-bottom: 0px;
    margin-right: 8px;
  }
}

.rental__deco1:nth-child(2) {
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  .rental__deco1:nth-child(2) {
    margin-bottom: 0px;
    margin-right: 8px;
  }
}

@media screen and (min-width: 768px) {

  .rental__deco2 p,
  .rental__deco2 img,
  .register__button {
    display: inline-block;
    vertical-align: middle;
  }
}

.rental__deco2 {
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rental__deco2-3step {
  width: auto;
  color: #565956;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 16px 40px;
  background: #f2f4f1;
}

.rental__deco2-sp-polygon {
  width: 11px;
  height: 19px;
  margin-top: -2px;
}

.rental__deco2-pc-polygon {
  width: 25px;
  height: 20px;
}

.register__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  border-radius: 16px;
  background: linear-gradient(87deg, #698 2.32%, #689 96.4%);
  margin-top: 12px;
}

@media screen and (min-width: 768px) {
  .register__button {
    display: inline-block;
    vertical-align: middle;
    margin-top: 0px;
    margin-left: 10px;
  }
}

.register__button-text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.register__button-text img {
  width: 24px;
  height: 24px;
  margin-left: 16px;
}

.rental__content-pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .rental__content-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1440px;
    padding: 0px 214px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
  }
}

@media screen and (min-width: 768px) {
  .rental__deco2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.rental__background {
  display: none;
}

@media screen and (min-width: 768px) {
  .rental__background {
    display: block;
    background: #f2f4f1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

@media screen and (min-width: 768px) {
  .rental__background-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1180px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
}

@media screen and (min-width: 768px) {
  .rental__background-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
  }
}

@media screen and (min-width: 768px) {
  .rental__background-items:nth-child(1) {
    -webkit-transform: scale(-1);
    transform: scale(-1);
  }
}

@media screen and (min-width: 768px) {
  .rental__background-item {
    font-family: "Jost";
    font-weight: 700;
    font-size: 65px;
    letter-spacing: 2px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    opacity: 0.1;
  }
}

.rental__background-item .rental__background-item.is-small {
  font-family: "Inter", sans-serif;
  font-size: 65px;
  letter-spacing: 4px;
}

.benefit__inner {
  padding-top: 88px;
  padding-bottom: 88px;
}

@media screen and (min-width: 768px) {
  .benefit__inner {
    max-width: none;
    padding-top: 72px;
    margin-inline: 0px;
    padding-inline: 130px;
  }
}

.common__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.common__title-jp {
  color: #565956;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.96px;
}

.common__line {
  width: 160px;
  height: 1px;
  background: #565956;
  margin: 16px 16px;
}

.common__title-en {
  color: #565956;
  text-align: center;
  font-family: "Jost";
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.96px;
}

.benfit__list {
  margin-top: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.benfit__list-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  gap: 32px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .benfit__list-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.benfit__list-item {
  margin: 0;
}

.benefit__list-item-head {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 4px 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: #948260;
  margin: 0px 16px;
}

@media screen and (min-width: 768px) {
  .benefit__list-item-head {
    margin: 0px 13px;
  }
}

.benefit__list-item-head h2 {
  color: #fff;
  font-family: "Jost";
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.8px;
}

.benefit__list-item-img img {
  width: 100%;
  /* 画像を親要素に合わせる */
  max-width: 168px;
  /* 最大幅を指定 */
}

.benefit__list-item-text {
  max-width: 168px;
  color: #565956;
  text-align: center;
  letter-spacing: 0.64px;
}

.total-member-section {
  height: 132px;
  padding-block: 18px;
  background-image: url(../img/img_background.png);
  background-position: center;
  background-size: 200%;
}

@media screen and (min-width: 768px) {
  .total-member-section {
    height: 229px;
    padding-block: 0px;
    background-size: cover;
    position: relative;
  }
}

.total-member__inner {
  padding-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* 要素を横並びに配置 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* 子要素を左右に均等に配置 */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* 子要素を垂直方向に中央に配置 */
}

@media screen and (min-width: 768px) {
  .total-member__inner {
    padding-top: 18px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.total-member__text {
  color: var(--Gray01, #565956);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.64px;
}

@media screen and (min-width: 768px) {
  .total-member__text {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}

.total-member__title {
  color: var(--Gray01, #565956);
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  /* 48px */
  letter-spacing: 1.28px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .total-member__title {
    font-size: 64px;
    letter-spacing: 2.56px;
  }
}

.total-member__background-left img {
  width: 56px;
  height: 73.309px;
}

@media screen and (min-width: 768px) {
  .total-member__background-left img {
    width: 158px;
    height: 203px;
  }
}

.total-member__background-right img {
  width: 56px;
  height: 71.556px;
}

@media screen and (min-width: 768px) {
  .total-member__background-right img {
    width: 158px;
    height: 203px;
  }
}

.uservoice__inner {
  padding-top: 56px;
  padding-bottom: 56px;
}

@media screen and (min-width: 768px) {
  .uservoice__inner {
    padding-top: 95px;
    padding-bottom: 88px;
  }
}

@media screen and (min-width: 768px) {
  .inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
  }
}

.uservoice__list-items {
  margin-top: 64px;
}

@media screen and (min-width: 768px) {
  .uservoice__list-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.uservoice__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  background: var(--Gray03, #f2f4f1);
  position: relative;
}

@media screen and (min-width: 768px) {
  .uservoice__list-item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
  }
}

.uservoice__list-item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--Green, #609484);
  width: auto;
}

.uservoice__list-item-head h2 {
  color: var(--White, #fff);
  font-family: "Jost";
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.64px;
  z-index: 1;
  /* 画像よりも手前に表示 */
}

@media screen and (min-width: 768px) {
  .uservoice__list-item-head {
    padding: 4px 16px;
  }
}

.uservoice__list-item-img {
  padding: 0;
  width: 100%;
}

.uservoice__list-item-img img {
  width: 100%;
  height: 192px;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .uservoice__list-item-img img {
    height: 221px;
  }
}

.uservoice__list-text {
  padding: 24px;
}

@media screen and (min-width: 768px) {
  .uservoice__list-text {
    padding-left: 48px;
    padding-right: 48px;
  }
}

.common-list-item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 4px 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background: var(--Gold, #948260);
  margin-bottom: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.common-list-item-title h2 {
  color: var(--White, #fff);
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.8px;
}

@media screen and (min-width: 768px) {
  .common-list-item-title {
    padding: 3px 10px;
  }
}

.uservoice__list-item-text {
  margin-top: 16px;
}

.uservoice__list-item-text p {
  color: var(--Gray01, #565956);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.64px;
}

@media screen and (min-width: 768px) {
  .uservoice__list-item-text p {
    letter-spacing: 0.6px;
  }
}

.white-background {
  background: #fff;
}

.warry-section {
  background: url(../img/warry-bg.jpg) no-repeat;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 1564px;
  /* 高さを1564pxに設定 */
  position: relative;
  /* 相対位置付け */
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 56px 16px 112px 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}

.warry-section img {
  position: absolute;
  /* 絶対位置付け */
  top: 0;
  left: 0x;
  width: calc(100% + 20px);
  height: 100%;
}

@media screen and (min-width: 768px) {
  .warry-section {
    width: 100%;
    height: 904px;
    /* 高さを1752pxに設定 */
    padding: 88px 130px 112px 130px;
  }
}

.warry__inner {
  padding-inline: 0px;
}

@media screen and (min-width: 768px) {
  .warry__inner {
    width: 100%;
  }
}

.warry__list {
  margin-top: 32px;
}

@media screen and (min-width: 768px) {
  .warry__list {
    margin-top: 64px;
  }
}

.warry__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 28px 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  border-radius: 32px;
  background: var(--White, #fff);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
  margin-bottom: 24px;
}

.warry__list-item img {
  position: static;
  width: 32px;
  height: 32px;
}

.warry__list-item p {
  color: var(--Gray01, #565956);
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.8px;
}

@media screen and (min-width: 768px) {
  .warry__list-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 28px;
  }
}

@media screen and (min-width: 768px) {
  .warry__list-item-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    gap: 24px;
  }

  .warry__list-item-group .warry__list-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    /* 均等に幅を分配する */
  }
}

.warry__list-item-icon {
  margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
  .warry__list-item-icon {
    margin-bottom: 0;
    margin-right: 5px;
  }
}

.warry__solution {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 308px;
  padding: 30px 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: var(--Green, #609484);
}

.warry__solution-text {
  color: var(--White, #fff);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.8px;
}

.solution-section {
  padding-block: 240px 0px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .solution-section {
    padding-block: 143px 56px;
  }
}

.solution__header {
  position: absolute;
  top: -55px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: calc(100% - 32px);
  width: 100%;
  height: 180px;
}

@media screen and (min-width: 768px) {
  .solution__header {
    top: -10px;
    max-width: calc(100% - 289px);
  }
}

.solution__header-text {
  background: var(--Green, #609484);
  padding: 30px 24px;
  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;
  gap: 10px;
  width: calc(100% - 34px);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .solution__header-text {
    padding: 30px 46px;
  }
}

.solution__header-text p {
  color: var(--White, #fff);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.8px;
}

@media screen and (min-width: 768px) {
  .solution__header-text p {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}

.solution__header-frame {
  position: absolute;
  top: 12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
}

.solution__header-frame img {
  width: 100%;
  height: 237px;
}

@media screen and (min-width: 768px) {
  .solution__header-frame img {
    height: 121px;
  }
}

.solution__scene {
  margin-top: 38px;
  margin-bottom: 24px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .solution__scene {
    margin-top: 93px;
  }
}

.solution__scene-title {
  color: var(--Gray01, #565956);
  font-family: "Jost";
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.64px;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -12px;
  margin-left: 12px;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .solution__scene-title {
    font-size: 40px;
    letter-spacing: 1.6px;
    margin-top: -28px;
    margin-left: 40px;
  }
}

.solution__scene-img {

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}

;


.solution__scene-box-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 16px 32px 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  background: var(--White, #fff);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
  margin-bottom: 80px;
}

.solution-list-item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 4px 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--Gold, #948260);
  margin-bottom: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.solution-list-item-title h2 {
  color: var(--White, #fff);
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.96px;
}

.solution__scene-detail {
  margin-top: -20px;
}

.solution__scene-detail h3 {
  color: var(--Gray01, #565956);
  font-family: "Jost";
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}

.solution__scene-detail p {
  color: var(--Gray01, #565956);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.64px;
  margin: 16px 0px;
}

.hr-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 48px;
}

@media screen and (min-width: 768px) {
  .hr-container {
    margin-top: 54px;
  }
}

.custom-hr1 {
  width: 154px;
  height: 1px;
  background: #565956;
  border: none;
  margin-left: 24px;
}

.custom-hr2 {
  width: 85px;
  height: 1px;
  background: #565956;
  border: none;
  margin-left: 24px;
}

.custom-hr3 {
  width: 33.5px;
  height: 1px;
  background: #565956;
  border: none;
}

.solution__lineup-header {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  gap: 24px;
  z-index: 21;
}

@media screen and (min-width: 768px) {
  .solution__lineup-header {
    margin-top: 55px;
    padding-left: 81px;
    padding-right: 91px;
  }
}

.solution__lineup-header1 {
  position: relative;
  text-align: center;
  padding-inline: 24px;
  /* バーの装飾 */
}

.solution__lineup-header1 h2 {
  color: var(--Gray01, #565956);
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.solution__lineup-header1::before,
.solution__lineup-header1::after {
  content: "";
  display: inline-block;
  width: 10%;
  /* バーの幅 */
  height: 1px;
  /* バーの高さ */
  background: #565956;
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {

  .solution__lineup-header1::before,
  .solution__lineup-header1::after {
    width: 24%;
    top: 57%;
  }
}

.solution__lineup-header1::before {
  left: 0;
}

.solution__lineup-header1::after {
  right: 0;
}

.solution__lineup-header2 h2 {
  color: var(--Gray02, #b1b6af);
  font-family: "Jost";
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
  .solution__lineup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 69px;
    padding-right: 69px;
  }
}

.solution__lineup-box {
  margin: 0 21.5px 48px 21.5px;
  border-radius: 8px;
  background: #f2f4f1;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 768px) {
  .solution__lineup-box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

.solution__lineup-box-text {
  height: 150px;
  padding: 24px;
}

.solution__lineup-box-text h3 {
  color: var(--Gray01, #565956);
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.solution__lineup-box-text p {
  color: var(--Gray01, #565956);
  font-family: "Jost";
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.64px;
}

.solution__scene2 {
  margin-top: 78px;
}

@media screen and (min-width: 768px) {
  .solution__scene2 {
    margin-top: 122px;
  }
}

.solution-section::before {
  content: "";
  width: 100%;
  height: 1982px;
  background: #f2f4f1;
  position: absolute;
  top: 884px;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .solution-section::before {
    top: 488px;
  }
}

.solution-section::after {
  content: "";
  width: 100%;
  height: 1360px;
  background: #f2f4f1;
  position: absolute;
  bottom: 705px;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .solution-section::after {
    bottom: 240px;
  }
}

@media screen and (min-width: 768px) {
  .solution__scene-container {
    width: 52.3728813559%;
    padding-top: 86px;
    padding-left: 64px;
    padding-bottom: 64px;
    padding-right: 63px;
    margin-top: inherit;
    position: relative;
    background: var(--White, #fff);
  }
}

@media screen and (min-width: 768px) {
  .solution__scene-detail-box {
    width: 51.7279661017%;
    height: 451px;
    position: absolute;
    top: 39px;
    right: 0;
  }
}

@media screen and (min-width: 768px) {
  .solution__scene-detail-img {
    position: absolute;
    width: initial;
  }

  .solution__scene-detail-img img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
  }
}

@media screen and (min-width: 768px) {
  .solution__scene-detail-img:nth-child(1) {
    left: 5px;
    bottom: -864px;
  }

  .solution__scene-detail-img:nth-child(1) img {
    width: 283.46px;
  }
}

@media screen and (min-width: 768px) {
  .solution__scene-detail-img:nth-child(2) {
    position: relative;
    right: -315px;
    top: 862px;
  }

  .solution__scene-detail-img:nth-child(2) img {
    width: 299.761px;
  }
}

@media screen and (min-width: 768px) {
  .solution__scene2-container {
    width: 52.3728813559%;
    padding-top: 86px;
    padding-left: 64px;
    padding-bottom: 64px;
    padding-right: 63px;
    margin-top: inherit;
    position: relative;
    background: var(--White, #fff);
  }
}

@media screen and (min-width: 768px) {
  .solution__scene2-detail-box {
    width: 51.7279661017%;
    height: 451px;
    position: absolute;
    top: 39px;
    right: 0;
  }
}

@media screen and (min-width: 768px) {
  .solution__scene2-detail-img {
    position: absolute;
    width: initial;
  }

  .solution__scene2-detail-img img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
  }
}

@media screen and (min-width: 768px) {
  .solution__scene2-detail-img:nth-child(1) {
    left: 5px;
    bottom: -2718px;
  }

  .solution__scene2-detail-img:nth-child(1) img {
    width: 283.46px;
  }
}

@media screen and (min-width: 768px) {
  .solution__scene2-detail-img:nth-child(2) {
    position: relative;
    right: -315px;
    top: 2718px;
  }

  .solution__scene2-detail-img:nth-child(2) img {
    width: 299.761px;
  }
}

.points-section {
  background-image: url(../img/img_points-background.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.points__inner {
  padding: 63px 16px;
}

.points__boxes {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  /* align-items: flex-start;
  align-self: stretch; */
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.points__box {
  padding: 32px 16px;
  border-radius: 16px;
  background: var(--White, #fff);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 768px) {
  .points__box {
    width: 100%;
    padding: 32px 106px;
  }
}

@media screen and (min-width: 768px) {
  .points__boxwrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 971px;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.points__box-img {
  width: 311px;
  height: 192px;
  margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
  .points__box-img {
    width: 446px;
    height: 275px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 95px;
  }
}

.points__box-img,
.points__box-contents {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media screen and (min-width: 768px) {

  .points__box:nth-of-type(2) .points__boxwrapper,
  .points__box:nth-of-type(4) .points__boxwrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .points__box:nth-of-type(2) .points__box-img,
  .points__box:nth-of-type(4) .points__box-img {
    margin-right: 0px;
    margin-left: 95px;
  }
}

.points__box-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--Gold, #948260);
  margin-top: 0px;
  margin-bottom: 12px;
}

.points__box-header h2 {
  color: var(--White, #fff);
  font-family: "Jost";
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.8px;
}

.points__box-text h3 {
  color: var(--Gray01, #565956);
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.first-letter {
  color: var(--Gold, #948260);
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  /* 36px */
  letter-spacing: 0.96px;
}

.points__box-detail {
  color: var(--Gray01, #565956);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.64px;
}

.hawtouse__inner {
  padding-top: 24px;
  padding-bottom: 24px;
}

@media screen and (min-width: 768px) {
  .hawtouse__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.howtouse__img {
  width: 343px;
  height: 343px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .howtouse__img {
    width: 268px;
    height: 268px;
  }
}

.howtouse__title {
  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;
  gap: 24px;
  margin-top: 26px;
  margin-bottom: 14px;
}

.title-first {
  color: var(--Green, #609484);
  font-family: Inter;
  font-size: 24px;
  font-weight: 700;
}

.title-second {
  color: var(--Gray01, #565956);
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.8px;
}

.howtouse__text {
  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;
  text-align: center;
  margin-bottom: 32px;
  color: var(--Gray01, #565956);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.64px;
}

@media screen and (min-width: 768px) {
  .howtouse__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 64px;
  }

  .howtouse__wrapper>* {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    /* 全ての子要素の幅を均等にする */
  }
}

.faq__inner {
  padding-top: 56px;
  padding-bottom: 56px;
}

@media screen and (min-width: 768px) {
  .faq__inner {
    padding-top: 88px;
    padding-bottom: 88px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
  }
}

.faq__boxes {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

@media screen and (min-width: 768px) {
  .faq__boxes {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 32px;
  }
}

.faq__box.is-open .faq-box__head {
  border-bottom: 1px solid rgba(86, 89, 86, 0.5);
}

.faq__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.faq-box__head:before {
  content: "";
  position: absolute;
  right: 4px;
  width: 17px;
  height: 2px;
  background: #948260;
}

.faq-box__head:after {
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.faq-box__head::before,
.faq-box__head::after {
  content: "";
  position: absolute;
  right: 4px;
  width: 17px;
  height: 2px;
  background: #948260;
}

@media screen and (min-width: 768px) {

  .faq-box__head::before,
  .faq-box__head::after {
    right: 25px;
    width: 18px;
    top: 10px;
  }
}

.faq__box.is-open .faq-box__head::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.faq-box__head {
  padding-bottom: 21px;
  padding-right: 48px;
  border-bottom: 1px solid #565956;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  position: relative;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .faq-box__head {
    padding-right: 70px;
    padding-bottom: 23px;
    padding-left: 22px;
    gap: 24px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.faq-box__head-icon {
  color: var(--Gold, #948260);
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
}

.faq-box__head-text {
  color: var(--Gray01, #565956);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.64px;
}

.faq-box__a {
  border-bottom: 1px solid #565956;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-block: 24px;
  gap: 24px;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.faq-box__a-icon {
  color: var(--Gold, #948260);
  font-family: "Futura PT";
  font-size: 18px;
  font-weight: 400;
}

.faq-box__a-text {
  color: var(--Gray01, #565956);
  font-size: 18px;
  font-weight: 400;
}

.faq__buttton {
  margin-top: 32px;
  margin-inline: auto;
  max-width: 305px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .faq__buttton {
    margin-top: 64px;
  }
}

.faq__button-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 40px 20px 56px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border-radius: 99999px;
  background: var(--Green, #609484);
}

.faq__button-text {
  color: var(--White, #fff);
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.64px;
}

.faq__button-icon {
  width: 11.25px;
  height: 14.999px;
}

.footer {
  padding-block: 32px;
  background: var(--Gray01, #565956);
}

@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 56px;
  }
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 48px;
}

@media screen and (min-width: 768px) {
  .footer__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.footer__contents {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.footer__contents-title {
  font-family: Jost;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.8px;
  position: relative;
  padding-bottom: 8px;
}

.footer__contents-title::after {
  content: "";
  width: 72.028px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}

.footer__contents-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
}

.footer__contents-link {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.64px;
}

.footer__sns-items {
  margin-top: 72px;
  margin-bottom: 67px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.footer__text {
  color: var(--White, #fff);
  font-size: 12px;
  font-weight: 700;
  line-height: 150%;
  /* 18px */
  letter-spacing: 0.48px;
  margin-bottom: 16px;
}

.footer__copy-text {
  color: var(--White, #fff);
  font-size: 10px;
  font-weight: 500;
  line-height: 150%;
  /* 15px */
  letter-spacing: 0.4px;
}