button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  color: #565956;
}

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

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

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

@media screen and (min-width: 1100px) {
  .hidden-pc {
    display: none;
  }
}

.inline-block {
  font-weight: inherit;
  display: inline-block;
}

body {
  color: #565956;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}

a {
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.56;
}

.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: 1100px) {
  .header {
    height: 69.5px;
  }
}

.header__inner {
  width: 100%;
}

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

.header__logo {
  width: 52px;
  height: 21px;
}
.header__logo img {
  vertical-align: baseline;
}
@media screen and (min-width: 1100px) {
  .header__logo {
    width: 113px;
    height: 45.5px;
  }
}

@media screen and (min-width: 1100px) {
  .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: 1100px) {
  .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;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.menu-category__link.is-open .menu-category__container {
  opacity: 1;
  visibility: visible;
}
.menu-category__link.is-open .menu-category__btn-icon {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.menu-category__link.is-open .menu-category__btn-text {
  color: #b1b6af;
}
.menu-category__link.is-open .menu-category__btn-path {
  fill: #b1b6af;
}
.menu-category__link.is-open + .menu-category__background {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1100px) {
  .menu-category__link {
    height: 69.5px;
  }
  .menu-category__link.is-open .menu-category__container {
    opacity: 0;
    visibility: hidden;
  }
  .menu-category__link.is-open .menu-category__btn-icon {
    -webkit-transform: initial;
            transform: initial;
  }
  .menu-category__link.is-open .menu-category__btn-text {
    color: #565956;
  }
  .menu-category__link.is-open .menu-category__btn-path {
    fill: #565956;
  }
  .menu-category__link.is-open + .menu-category__background {
    opacity: 0;
    visibility: hidden;
  }
  .menu-category__link:hover .menu-category__container {
    opacity: 1;
    visibility: visible;
  }
  .menu-category__link:hover .menu-category__btn-icon {
    -webkit-transform: scale(1, -1);
            transform: scale(1, -1);
  }
  .menu-category__link:hover .menu-category__btn-text {
    color: #b1b6af;
  }
  .menu-category__link:hover .menu-category__btn-path {
    fill: #b1b6af;
  }
  .menu-category__link:hover + .menu-category__background {
    opacity: 1;
    visibility: visible;
  }
}

.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: 1100px) {
  .menu-category__btn {
    gap: 8px;
  }
}

.menu-category__btn-text {
  font-size: 14px;
  font-weight: 700;
  display: block;
  letter-spacing: 0.56px;
  -webkit-transition: color 0.6s ease;
  transition: color 0.6s ease;
  color: #565956;
}
@media screen and (min-width: 1100px) {
  .menu-category__btn-text {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

.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__btn-path {
  -webkit-transition: fill 0.6s ease;
  transition: fill 0.6s ease;
}

.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;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
@media screen and (min-width: 1100px) {
  .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;
}
@media screen and (min-width: 1100px) {
  .menu-category__contents {
    margin-top: 17px;
    padding: 24px 40px;
    gap: 24px;
  }
}

.category-link__head {
  font-weight: 700;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 1100px) {
  .category-link__head {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}

.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%;
}
@media screen and (min-width: 1100px) {
  .category-link__body {
    grid-template-columns: repeat(5, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 48px;
  }
}

.category-link__item {
  padding: 0px 16px 6px 0px;
  border-bottom: 2px solid #f2f4f1;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  letter-spacing: 0.56px;
  width: 100%;
  display: inline-block;
}
@media screen and (min-width: 1100px) {
  .category-link__item {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
.category-link__item:hover {
  opacity: 1;
  border-bottom: 2px solid #609484;
}

.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;
}
@media screen and (min-width: 1100px) {
  .menu-category__background {
    top: 69.5px;
  }
}

.header__menu-company {
  display: none;
}
@media screen and (min-width: 1100px) {
  .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: 1100px) {
  .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-login a:hover {
    opacity: 1;
    background: #565956;
    color: #fff;
  }
}

.header__menu-cart {
  display: none;
}
@media screen and (min-width: 1100px) {
  .header__menu-cart {
    display: block;
    padding-left: 8px;
  }
  .header__menu-cart svg {
    width: 32px;
    height: 32px;
    vertical-align: middle;
  }
}

.header__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (min-width: 1100px) {
  .header__icon {
    display: none;
  }
}

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

.fv {
  background: url("../img/img_main_visual.png"), no-repeat;
  height: 742px;
  background-position: 55.6%;
  background-size: cover;
  position: relative;
  margin-top: 48px;
}
@media screen and (min-width: 1100px) {
  .fv {
    height: 476px;
    margin-top: 69.5px;
  }
}

.fv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.fv__title-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.fv__title-head-text {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.12px;
  padding-inline: 24px;
  padding-block: 4px;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 330px) {
  .fv__title-head-text {
    font-size: 22px;
  }
}
@media screen and (min-width: 1100px) {
  .fv__title-head-text {
    font-size: 40px;
    letter-spacing: 1.6px;
  }
}

.fv__title-body {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.64px;
  padding-inline: 24px;
  padding-block: 8px;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 330px) {
  .fv__title-body {
    font-size: 12px;
  }
}
@media screen and (min-width: 1100px) {
  .fv__title-body {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}

.cta {
  background: #f2f4f1;
  padding-block: 56px;
}
@media screen and (min-width: 1100px) {
  .cta {
    background: transparent;
    padding-block: 48px;
    position: relative;
  }
}

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

@media screen and (min-width: 1100px) {
  .cta__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: 1100px) {
  .cta__background-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .cta__background-items:nth-child(1) {
    -webkit-transform: scale(-1);
            transform: scale(-1);
  }
}

@media screen and (min-width: 1100px) {
  .cta__background-item {
    font-family: "Jost", sans-serif;
    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;
  }
  .cta__background-item.is-small {
    font-family: "Inter", sans-serif;
    font-size: 65px;
    letter-spacing: 4px;
  }
}

.cta__container {
  padding-inline: 16px;
  padding-block: 32px;
  background: #fff;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1100px) {
  .cta__container {
    padding: 56px 64px;
    gap: 24px;
    max-width: 719px;
    width: 100%;
    margin-inline: auto;
  }
}

.cta__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;
  gap: 8px;
  text-align: center;
  position: relative;
}

.cta__title-tag {
  padding-inline: 16px;
  background: #565956;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 1100px) {
  .cta__title-tag {
    -webkit-transform: rotate(-29.317deg);
            transform: rotate(-29.317deg);
    position: absolute;
    left: -41px;
    top: -11px;
  }
}

.cta__title-head {
  font-weight: 700;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 1100px) {
  .cta__title-head {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}

.cta__title-body {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.12px;
}

.cta__label {
  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: 8px;
  width: 100%;
  max-width: 360px;
}
@media screen and (min-width: 1100px) {
  .cta__label {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: inherit;
  }
}

.cta__label-item {
  display: inline-block;
  width: 100%;
  padding: 16px 10px;
  border-radius: 16px;
  background: #565956;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.64px;
  text-align: center;
}

.cta__btn {
  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: 30px;
  width: 100%;
  max-width: 360px;
}
@media screen and (min-width: 768px) {
  .cta__btn {
    max-width: initial;
    margin-top: 34px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 37px;
  }
}

.cta__btn-label {
  background: #f2f4f1;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  position: relative;
}
@media screen and (max-width: 330px) {
  .cta__btn-label {
    font-size: 16px;
  }
}
.cta__btn-label::after {
  content: "";
  width: 11px;
  height: 19px;
  background: #f2f4f1;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  bottom: -14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .cta__btn-label::after {
    width: 18px;
    height: 29px;
    -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
            clip-path: polygon(100% 0, 0 0, 50% 100%);
    right: -18px;
    left: inherit;
    top: 47%;
    -webkit-transform: translateY(-50%) rotate(-89.832deg);
            transform: translateY(-50%) rotate(-89.832deg);
  }
}

.cta__btn-link {
  border-radius: 16px;
  background: linear-gradient(87deg, #698 2.32%, #689 96.4%);
  padding: 20px 24px;
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .cta__btn-link {
    width: initial;
  }
}
.cta__btn-link:hover {
  opacity: 0.56;
}

.cta__btn-link__text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 330px) {
  .cta__btn-link__text {
    font-size: 16px;
  }
}

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  -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;
}

.heading__sub {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.96px;
  position: relative;
}
.voice__heading .heading__sub {
  padding-right: 5px;
}
.heading__sub::after {
  content: "";
  width: 160px;
  height: 1px;
  background: #565956;
  position: absolute;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.heading__main {
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.96px;
}

.reason {
  padding-block: 88px;
}
@media screen and (min-width: 1100px) {
  .reason {
    padding-block: 86px 88px;
  }
}

.reason__container {
  margin-top: 64px;
}

.reason__contants {
  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;
  gap: 33px;
}
@media screen and (min-width: 768px) {
  .reason__contants {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1100px) {
  .reason__contants {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.reason__contants-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;
}

.reason-box__title {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 4px 24px;
  background: #948260;
}

.reason-box__img img {
  width: 168px;
}

.reason-box__text {
  width: 168px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.64px;
}

.user {
  height: 132px;
  padding-block: 18px;
  background-image: url(../img/user/user_background.png);
  background-position: center;
  background-size: 200%;
}
@media screen and (min-width: 768px) {
  .user {
    height: 239px;
    position: relative;
  }
}
@media screen and (min-width: 1100px) {
  .user {
    height: 239px;
    background-size: cover;
    position: relative;
  }
}

.user__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 1px;
}
@media screen and (min-width: 768px) {
  .user__contents {
    max-width: 762px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
}
.user__contents .user__img:nth-child(3) {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.user__img img {
  width: 56px;
  height: 73.309px;
}
@media screen and (min-width: 768px) {
  .user__img img {
    width: 158px;
    height: 203px;
  }
}
.user__img img:nth-child(2) {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.user__text {
  text-align: center;
}

.user__text-head {
  font-weight: 700;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 330px) {
  .user__text-head {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .user__text-head {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}

.user__text-main {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.28px;
}
@media screen and (max-width: 330px) {
  .user__text-main {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .user__text-main {
    font-size: 64px;
    letter-spacing: 2.56px;
  }
}

.voice {
  padding-block: 55px;
}
@media screen and (min-width: 768px) {
  .voice {
    padding-block: 88px;
  }
}

.voice__container {
  margin-top: 64px;
}

.voice__boxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .voice__boxs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1100px) {
  .voice__boxs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.voice__box {
  background: #f2f4f1;
}
.voice__box.is-color-change {
  background: #fff;
}
@media screen and (min-width: 1100px) {
  .voice__box {
    max-width: 393px;
    width: 100%;
  }
}

.voice__box-head {
  position: relative;
  width: 100%;
}

.voice__box-head__img img {
  width: 100%;
  height: 192px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .voice__box-head__img img {
    height: 221px;
  }
}

.voice__box-head__lable {
  position: absolute;
  top: 0;
  left: 0;
  background: #609484;
  padding: 8px 16px;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  letter-spacing: 0.64px;
}

.voice__box-body {
  padding: 24px;
  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;
  gap: 16px;
}
@media screen and (max-width: 330px) {
  .voice__box-body {
    padding: 24px 16px;
  }
}
@media screen and (min-width: 768px) {
  .voice__box-body {
    padding: 24px;
  }
}
@media screen and (min-width: 1100px) {
  .voice__box-body {
    padding: 24px 12.213740458%;
  }
}

.voice-body__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.voice-body__head-text {
  padding: 4px 10px;
  background: #948260;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 330px) {
  .voice-body__head-text {
    font-size: 17px;
  }
}

.voice-body__text {
  font-weight: 500;
  letter-spacing: 0.63px;
}
@media screen and (min-width: 768px) {
  .voice-body__text {
    min-height: 240px;
    letter-spacing: 0.6px;
  }
}

.voice-body__buttom {
  font-weight: 500;
  letter-spacing: 0.64px;
}

.solution {
  padding-block: 56px 112px;
  background-image: url(../img/other/solution_background.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
@media screen and (min-width: 768px) {
  .solution {
    padding-block: 88px 112px;
    background-position: center;
  }
}

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

.solution__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .solution__contents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.solution__content {
  width: 100%;
  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;
  padding: 28px 50px;
  border-radius: 32px;
  background: #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);
}
@media screen and (min-width: 768px) {
  .solution__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
  .solution__content:not(:nth-child(4)):not(:nth-child(5)) {
    grid-column: 1/3;
  }
}

.solution__content-icon {
  width: 32px;
  height: 32px;
}

.solution__content-text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.stylepoint {
  padding-bottom: 56px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .stylepoint {
    padding-bottom: 108px;
  }
}
.stylepoint::before {
  content: "";
  width: 100%;
  height: 1982px;
  background: #f2f4f1;
  position: absolute;
  top: 884px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .stylepoint::before {
    height: 1369px;
    top: 484px;
  }
}
.stylepoint::after {
  content: "";
  width: 100%;
  height: 1363px;
  background: #f2f4f1;
  position: absolute;
  bottom: 654px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .stylepoint::after {
    bottom: 280px;
    height: 1369px;
  }
}

.stylepoint__message {
  position: relative;
  top: -55.5px;
  padding-inline: 17px;
  padding-bottom: 60px;
  margin-inline: 16px;
}
@media screen and (min-width: 768px) {
  .stylepoint__message {
    top: 16px;
    max-width: 1180px;
    margin-inline: auto;
    margin-bottom: 18px;
    padding-inline: 32px;
    padding-bottom: 28px;
  }
}
.stylepoint__message::before {
  content: "";
  background: url(../img/realization/message_sp.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .stylepoint__message::before {
    background: url(../img/realization/message_pc.svg);
    top: 8px;
  }
}
@media screen and (min-width: 768px) {
  .stylepoint__message {
    top: -15.5px;
  }
}

.stylepoint__message-text {
  background: #609484;
  padding: 30px 23px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .stylepoint__message-text {
    font-size: 21px;
    letter-spacing: 0.96px;
  }
}
@media screen and (min-width: 1100px) {
  .stylepoint__message-text {
    font-size: 24px;
  }
}

.stylepoint__container {
  margin-top: 42px;
  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;
  gap: 75px;
  max-width: 600px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .stylepoint__container {
    margin-top: 93px;
    gap: 165px;
    max-width: initial;
  }
}

@media screen and (min-width: 768px) {
  .stylepoint__contants {
    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;
  }
}

@media screen and (min-width: 768px) {
  .stylepoint__scene {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 47px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.scene__heading {
  position: relative;
}

.scene__heading-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.scene__heading-label {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  letter-spacing: 0.64px;
  position: absolute;
  top: -12.3px;
  left: 12px;
}
@media screen and (min-width: 768px) {
  .scene__heading-label {
    font-size: 40px;
    letter-spacing: 1.6px;
    top: -30px;
    left: 39px;
  }
}

@media screen and (min-width: 768px) {
  .scene-pc__wrapper {
    width: 100%;
    position: relative;
  }
}

.scene__container {
  padding: 0 16px 32px;
  margin-top: 24px;
  background: #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);
}
@media screen and (min-width: 768px) {
  .scene__container {
    width: 52.3728813559%;
    padding-top: 64px;
    padding-left: 64px;
    padding-bottom: 64px;
    padding-right: 63px;
    margin-top: inherit;
    position: relative;
  }
  .scene-02 .scene__container {
    width: 49.8305084746%;
    margin-left: auto;
  }
}

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

.scene__title-text {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.96px;
  padding: 4px 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #948260;
}
@media screen and (max-width: 330px) {
  .scene__title-text {
    font-size: 20px;
  }
}

.scene__boxs {
  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;
  margin-top: 36px;
}

.scene__box {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .scene__box {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.scene__box-head {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .scene__box-head {
    max-width: 460px;
  }
}
.scene__box-head::after {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #565956;
  height: 1px;
  z-index: 20;
}

.scene__box-head__text {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding-right: 24px;
  background: #fff;
  position: relative;
  z-index: 21;
}

.scene__box-text {
  font-weight: 500;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 768px) {
  .scene__box-text {
    max-width: 460px;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .scene__imgboxs {
    width: 51.7279661017%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }
  .scene-02 .scene__imgboxs {
    left: 0;
  }
}
@media screen and (min-width: 1100px) {
  .scene__imgboxs {
    width: 51.7279661017%;
    height: 451px;
    position: absolute;
    top: 39px;
    right: 0;
  }
  .scene-02 .scene__imgboxs {
    left: 0;
  }
}

.scene__box-img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .scene__box-img {
    position: absolute;
    width: initial;
  }
  .scene__box-img:nth-child(1) {
    left: 0;
    bottom: 0;
  }
  .scene__box-img:nth-child(1) img {
    width: 283.46px;
  }
  .scene__box-img:nth-child(2) {
    right: 0;
    top: 0;
  }
  .scene__box-img:nth-child(2) img {
    width: 299.761px;
  }
}
.scene__box-img img {
  width: 100%;
  height: 176px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .scene__box-img img {
    height: 365.871px;
  }
  .scene-02 .scene__box-img img {
    height: 366px;
  }
}
.scene2 .scene__box-img img {
  -o-object-position: 7px -137px;
     object-position: 7px -137px;
}

.stylepoint__lineup {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .stylepoint__lineup {
    margin-top: 82px;
  }
}

.lineup__head {
  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;
  gap: 8px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .lineup__head {
    max-width: 988px;
    width: 100%;
  }
}
.lineup__head::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #565956;
  height: 1px;
  z-index: 20;
}

.lineup__head-main {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding-inline: 24px;
  z-index: 21;
  background: #f2f4f1;
}
@media screen and (min-width: 768px) {
  .lineup__head-main {
    display: inline-block;
    padding-inline: 140px;
  }
}

.lineup__head-sub {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #b1b6af;
}

.lineup__cards {
  margin-top: 24px;
  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;
  gap: 49px;
}
@media screen and (min-width: 768px) {
  .lineup__cards {
    margin-top: 23px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.lineup__card {
  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;
  max-width: 300px;
  width: 100%;
  cursor: pointer;
}
.lineup__card:hover {
  opacity: 0.8;
}
.lineup__card:hover .lineup__card-img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.lineup__card-img {
  overflow: hidden;
}
.lineup__card-img img {
  -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;
  width: 300px;
  height: 300px;
}

.lineup__card-text {
  padding: 24px;
  border-radius: 0 0 8px 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);
  width: 100%;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .lineup__card-text {
    gap: 8px;
  }
}

.lineup__card-text--title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.lineup__card-text--colorname {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  letter-spacing: 0.64px;
}

.features {
  padding-block: 56px;
  background-image: url(../img/features/img_background.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .features {
    padding-block: 78px 80px;
  }
}

.features__boxs {
  margin-top: 52px;
  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;
  gap: 32px;
}

.features__box {
  border-radius: 16px;
  background: #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);
  padding: 32px 16px;
}
@media screen and (min-width: 1100px) {
  .features__box {
    width: 100%;
  }
  .features__box:nth-child(even) .features__boxwrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.features__boxwrapper {
  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;
  gap: 24px;
}
@media screen and (min-width: 1100px) {
  .features__boxwrapper {
    margin-inline: auto;
    max-width: 971px;
    width: 100%;
    -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;
  }
}

.features__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .features__img {
    width: auto;
  }
  .features__img img {
    width: 446px;
    height: 275px;
  }
}
.features__img.is-subscription img {
  height: 35.4430379747%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .features__img.is-subscription img {
    width: 452px;
    height: 244px;
    padding-left: 16px;
  }
}

.features__contents {
  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;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .features__contents {
    max-width: 445px;
    width: 100%;
  }
}

.features__contents-label {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 16px;
  background: #948260;
}

.features__contents-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.features__contents-title::first-letter {
  color: #948260;
  font-size: 24px;
  letter-spacing: 0.96px;
}

.features__contents-text {
  font-weight: 500;
  letter-spacing: 0.64px;
}

.howtouse {
  padding-block: 56px 55px;
}
@media screen and (min-width: 768px) {
  .howtouse {
    padding-block: 88px;
  }
}

.howtouse__cards {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 31px;
}
@media screen and (min-width: 768px) {
  .howtouse__cards {
    margin-top: 64px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1100px) {
  .howtouse__cards {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.howtouse__card {
  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;
  gap: 23px;
}
@media screen and (min-width: 768px) {
  .howtouse__card {
    width: 268px;
    gap: 26px;
  }
}

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

.howtouse__card-contents {
  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;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .howtouse__card-contents {
    gap: 14px;
  }
}

.howtouse-contents__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;
}

.howtouse-contents__title-num {
  color: #609484;
  font-size: 24px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
@media screen and (min-width: 768px) {
  .howtouse-contents__title-num {
    font-weight: 600;
    letter-spacing: 0.96px;
  }
}

.howtouse-contents__title-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.howtouse-contents__text {
  font-weight: 500;
  letter-spacing: 0.64px;
}

.faq {
  padding-block: 56px;
}
@media screen and (min-width: 1100px) {
  .faq {
    padding-block: 88px;
  }
}

@media screen and (min-width: 1100px) {
  .faq__wrapper {
    margin-top: 63px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.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: 23px;
}
@media screen and (min-width: 1100px) {
  .faq__boxes {
    margin-top: initial;
    gap: 33px;
  }
}

.faq__box:nth-of-type(3) {
  margin-top: 10px;
}
@media screen and (min-width: 1100px) {
  .faq__box:nth-of-type(3) {
    margin-top: initial;
  }
}
.faq__box:nth-of-type(5) {
  margin-top: 7px;
}
@media screen and (min-width: 1100px) {
  .faq__box:nth-of-type(5) {
    margin-top: initial;
  }
}
.faq__box.is-open .faq-box__head {
  border-bottom: 1px solid rgba(86, 89, 86, 0.5);
}
.faq__box.is-open .faq-box__head::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.faq-box__head {
  padding-bottom: 22px;
  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;
  -webkit-transition: border 0.6s ease;
  transition: border 0.6s ease;
}
@media screen and (min-width: 1100px) {
  .faq-box__head {
    padding-right: 70px;
    padding-bottom: 19px;
    padding-left: 22px;
    gap: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.faq-box__head::before, .faq-box__head::after {
  content: "";
  position: absolute;
  right: 4px;
  width: 17px;
  height: 2px;
  background: #948260;
}
@media screen and (min-width: 1100px) {
  .faq-box__head::before, .faq-box__head::after {
    right: 25px;
    width: 18px;
    top: 10px;
  }
}
.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-icon {
  color: #948260;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.faq-box__head-text {
  font-weight: 500;
  letter-spacing: 0.64px;
}

.faq-box__body {
  display: none;
}

.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;
  width: 100%;
  padding-block: 24px;
  gap: 24px;
}
.faq-box__a ol {
  list-style: auto;
  padding-left: 24px;
}
@media screen and (min-width: 1100px) {
  .faq-box__a {
    padding: 22px;
  }
}

.faq-box__a-icon {
  color: #948260;
  font-size: 18px;
  font-weight: 400;
}

.faq-box__a-text {
  font-size: 18px;
  font-weight: 400;
}

.faq__button {
  margin-top: 32px;
  margin-inline: auto;
  max-width: 305px;
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .faq__button {
    margin-top: 67px;
  }
}

.faq__button-link {
  padding: 20px 40px 20px 56px;
  border-radius: 99999px;
  background: #609484;
  display: inline-block;
  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;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1100px) {
  .faq__button-link {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.faq__button-link:hover {
  opacity: 0.56;
}

.faq__button-text {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.64px;
}

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

.footer {
  padding-block: 32px;
  background: #565956;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-block: 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 {
  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__cotnents-title {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding-bottom: 8px;
  position: relative;
}
.footer__cotnents-title::after {
  content: "";
  width: 72.028px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}

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

.footer__contents-list__link {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.64px;
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin: 72px 0;
}

.footer__sns-link {
  width: 32px;
  height: 32px;
}

.footer__text {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  display: block;
}

.footer__copyright {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}