@charset "UTF-8";
body {
  font-size: 16px;
  color: #565956;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  background: #FFF;
  overflow-x: visible !important;
}
body.is-checked {
  overflow: hidden;
}

@media screen and (max-width: 767.9px) {
  .sm {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .sm {
    display: none;
  }
}

@media screen and (max-width: 767.9px) {
  .md {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .md {
    display: inline;
  }
}

@media screen and (max-width: 767.9px) {
  .lg {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .lg {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .lg {
    display: inline;
  }
}

@media screen and (max-width: 767.9px) {
  .xl {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .xl {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .xl {
    display: none;
  }
}
@media screen and (min-width: 1300px) {
  .xl {
    display: inline;
  }
}

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

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

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

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

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

.header {
  height: 48px;
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .header {
    height: 70px;
  }
}

.header__inner {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo a {
  transition: opacity 0.3s;
}
.header__logo a img {
  width: 52px;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__logo a img {
    width: 113px;
  }
}
.header__logo a:hover {
  opacity: 0.7;
}

.header__nav {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1300px) {
  .header__nav {
    gap: 32px;
  }
}

.header__nav-sm {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .header__nav-sm {
    display: none;
  }
}

.header__nav-center {
  display: flex;
  gap: 14px;
}
@media screen and (min-width: 1300px) {
  .header__nav-center {
    gap: 32px;
  }
}

.header__link {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.56px;
  transition: all 0.3s;
  cursor: pointer;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .header__link {
    font-size: 16px;
    gap: 8px;
  }
}
.header__link .header__link-svg {
  transition: all 0.3s;
  width: 16px;
  vertical-align: baseline;
}
.header__link:hover, .header__link.is-active {
  color: #B1B6AF;
}
.header__link:hover .header__link-svg, .header__link.is-active .header__link-svg {
  transform: rotate(180deg);
}
.header__link:hover .header__link-svg path, .header__link.is-active .header__link-svg path {
  fill: #B1B6AF;
}
.header__link:hover .header__link-cart svg, .header__link.is-active .header__link-cart svg {
  color: #565956;
  opacity: 0.7;
}

.header__link-text {
  font-weight: 700;
  letter-spacing: 0.56px;
}

.header__nav-right {
  display: none;
}
@media screen and (min-width: 900px) {
  .header__nav-right {
    gap: 32px;
    display: flex;
  }
}

.header__nav-right-sm {
  display: flex;
  gap: 16px;
}
@media screen and (min-width: 900px) {
  .header__nav-right-sm {
    display: none;
  }
}

.header__link-button {
  transition: all 0.3s;
}
@media screen and (min-width: 900px) {
  .header__link-button {
    padding: 8px 23px;
    border-radius: 99999px;
    border: 1px solid #565956;
    background: #FFF;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.56px;
    margin-right: 8px;
  }
}
.header__link-button:hover {
  background: #565956;
  color: #FFF;
}

.header__link-login img {
  width: 24px;
  height: 24px;
}

.header__link-cart svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s;
}
.header__link-cart svg path {
  fill: #565956;
}
@media screen and (min-width: 768px) {
  .header__link-cart svg {
    width: 32px;
    height: 32px;
  }
}

.modal-header1 {
  position: fixed;
  z-index: 100;
  width: 900px;
  max-width: calc(100% - 32px);
  background: #FFF;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  padding: 16px;
  border-radius: 8px;
  display: none;
}
.modal-header1.is-active {
  display: block;
}
@media screen and (min-width: 768px) {
  .modal-header1 {
    top: 87px;
    padding: 24px 40px;
  }
}
@media screen and (min-width: 900px) {
  .modal-header1 {
    width: 1180px;
    max-width: calc(100% - 260px);
  }
}
.modal-header2 {
  position: fixed;
  z-index: 100;
  width: 900px;
  max-width: calc(100% - 32px);
  background: #FFF;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  padding: 16px;
  border-radius: 8px;
  display: none;
}
.modal-header2.is-active {
  display: block;
}
@media screen and (min-width: 768px) {
  .modal-header2 {
    top: 87px;
    padding: 24px 40px;
  }
}
@media screen and (min-width: 900px) {
  .modal-header2 {
    width: 1180px;
    max-width: calc(100% - 260px);
  }
}
.modal-header__head {
  font-weight: 700;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 768px) {
  .modal-header__head {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}

.modal-header__content {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  gap: 7.69%;
  flex-wrap: wrap;
}
@media screen and (min-width: 900px) {
  .modal-header__content {
    gap: 2.9%;
  }
}

.modal-header__category {
  padding-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.56px;
  width: 46.15%;
  border-bottom: 2px solid #F2F4F1;
  transition: all 0.3s;
  position: relative;
}
.modal-header__category:nth-of-type(1) {
  border-bottom: 2px solid #609484;
}
.modal-header__category:nth-child(n+3) {
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .modal-header__category:nth-child(n+3) {
    margin-top: 0;
  }
}
.modal-header__category::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #609484;
  bottom: -1px; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}
.modal-header__category:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
@media screen and (min-width: 900px) {
  .modal-header__category {
    width: 17.45%;
    font-size: 16px;
    letter-spacing: 0.64px;
  }
  .modal-header__category:nth-child(n+6) {
    margin-top: 48px;
  }
}
.modal-contact__head {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 24px;
  position: relative;
}
.modal-contact__head::after {
  content: "";
  width: 100px;
  height: 2px;
  background: #565956;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.modal-contact__content {
  margin-top: 40px;
  height: calc(100% - 84px - 108px);
  overflow: auto;
}
.modal-contact__content > :first-child {
  margin-top: 0;
}

.modal-contact__sub-head {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
  padding-left: 20px;
  position: relative;
}
.modal-contact__sub-head::before {
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: #565956;
  position: absolute;
}

.modal-contact__text {
  margin-top: 16px;
  line-height: 1.5;
  padding-left: 20px;
}

.modal-contact__button {
  margin-top: 60px;
  text-align: center;
}
.modal-contact__button a {
  text-decoration: none;
  display: inline-block;
  width: 176px;
  padding: 12px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  height: 48px;
  background: #565956;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.modal-contact__icon {
  position: absolute;
  width: 40px;
  height: 40px;
  right: -20px;
  top: -20px;
}
.modal-contact__icon a {
  text-decoration: none;
}
.modal-contact-background1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 40;
  display: none;
}
.modal-contact-background1.is-active {
  display: block;
}

.modal-contact-background2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 40;
  display: none;
}
.modal-contact-background2.is-active {
  display: block;
}

.fv {
  background: url(../img/img_main_visual.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: -1027px center;
  height: 742px;
  padding-top: 256px;
}
@media screen and (min-width: 768px) {
  .fv {
    height: 476px;
    padding-top: 128px;
    padding-bottom: 128px;
    background-position: center center;
  }
}

.fv__lead {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fv__lead-text {
  background: #FFF;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.12px;
  padding: 4px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 900px) {
  .fv__lead-text {
    font-size: 40px;
    letter-spacing: 1.6px;
  }
}

.fv__lead-subtext {
  font-weight: 700;
  letter-spacing: 0.64px;
  background: #FFF;
  display: inline-block;
  margin-top: 24px;
  padding: 8px 24px;
}
@media screen and (min-width: 900px) {
  .fv__lead-subtext {
    font-size: 24px;
    letter-spacing: 0.96px;
    padding: 8px 24px;
  }
}

.cta {
  background: #F2F4F1;
  padding-top: 56px;
  padding-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .cta {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.cta__content {
  border-radius: 16px;
  background: #FFF;
  padding: 32px 16px;
}
@media screen and (min-width: 900px) {
  .cta__content {
    padding: 56px 64px;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
  }
}

.cta__bg-left {
  display: none;
}
@media screen and (min-width: 1300px) {
  .cta__bg-left {
    position: absolute; /* 親要素からの相対位置 */
    display: inline-block; /* インラインブロック化 */
    white-space: nowrap; /* 折り返ししない       */
    font-size: 58px;
    letter-spacing: 5px;
    font-family: "Jost", sans-serif;
    font-weight: bold;
    top: 50%;
    left: -405px;
    transform: translateY(-50%) rotate(270deg);
    text-align: center;
    opacity: 0.1;
  }
}

.cta__bg-left-small {
  display: none;
}
@media screen and (min-width: 1300px) {
  .cta__bg-left-small {
    position: absolute; /* 親要素からの相対位置 */
    display: inline-block; /* インラインブロック化 */
    white-space: nowrap; /* 折り返ししない       */
    font-size: 64px;
    letter-spacing: 5px;
    font-family: "Jost", sans-serif;
    font-weight: bold;
    top: 48%;
    left: -262px;
    transform: translateY(-50%) rotate(270deg);
    text-align: center;
    opacity: 0.1;
  }
}

.cta__bg-right {
  display: none;
}
@media screen and (min-width: 1300px) {
  .cta__bg-right {
    position: absolute; /* 親要素からの相対位置 */
    display: inline-block; /* インラインブロック化 */
    white-space: nowrap; /* 折り返ししない       */
    font-size: 58px;
    letter-spacing: 5px;
    font-family: "Jost", sans-serif;
    font-weight: bold;
    top: 50%;
    right: -405px;
    transform: translateY(-50%) rotate(90deg);
    text-align: center;
    opacity: 0.1;
  }
}

.cta__bg-right-small {
  display: none;
}
@media screen and (min-width: 1300px) {
  .cta__bg-right-small {
    position: absolute; /* 親要素からの相対位置 */
    display: inline-block; /* インラインブロック化 */
    white-space: nowrap; /* 折り返ししない       */
    font-size: 64px;
    letter-spacing: 5px;
    font-family: "Jost", sans-serif;
    font-weight: bold;
    top: 52%;
    right: -262px;
    transform: translateY(-50%) rotate(90deg);
    text-align: center;
    opacity: 0.1;
  }
}

.cta__header {
  text-align: center;
}

.cta__tag {
  font-weight: 700;
  letter-spacing: 0.64px;
  padding: 0px 16px;
  background: #565956;
  color: #FFF;
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .cta__tag {
    display: none;
  }
}

.cta__text {
  font-weight: 700;
  letter-spacing: 0.64px;
  text-align: center;
  margin-top: 8px;
}
@media screen and (min-width: 900px) {
  .cta__text {
    margin-top: 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.96px;
    position: relative;
  }
  .cta__text::before {
    content: "今だけ";
    position: absolute;
    top: -12px;
    left: 24px;
    width: 82px;
    height: 24px;
    font-weight: 700;
    letter-spacing: 0.64px;
    font-size: 16px;
    padding: 0px 16px;
    background: #565956;
    color: #FFF;
    transform: rotate(-29.317deg);
  }
}
.cta__text span {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.12px;
  display: block;
  margin-top: 8px;
}

.cta__types {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 23px;
}
@media screen and (min-width: 768px) {
  .cta__types {
    flex-direction: row;
    margin-top: 24px;
    justify-content: center;
  }
}

.cta__type {
  background: #565956;
  border-radius: 16px;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.64px;
  text-align: center;
  padding: 16px;
  max-width: 312px;
  width: 100%;
  height: 56px;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .cta__type {
    max-width: 199px;
    padding: 12px;
    line-height: 34px;
  }
}

.cta__footer {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .cta__footer {
    flex-direction: row;
    justify-content: center;
    gap: 36px;
    margin-top: 55px;
  }
}

.cta__label {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 15px 40px;
  background: #F2F4F1;
  display: inline-block;
  text-align: center;
  width: 261px;
}
@media screen and (min-width: 768px) {
  .cta__label {
    position: relative;
  }
  .cta__label::after {
    position: absolute;
    content: "";
    background: url(../img/Polygon\ 1.png) no-repeat center center/contain;
    width: 18px;
    height: 29px;
    top: 50%;
    transform: translateY(-50%);
    right: -17px;
  }
}

.cta__button {
  padding: 20px 20px 20px 0px;
  color: #FFF;
  border-radius: 16px;
  background: linear-gradient(87deg, #698 2.32%, #689 96.4%);
  max-width: 312px;
  width: 100%;
  text-align: center;
  padding-right: 40px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  position: relative;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .cta__button {
    max-width: 233px;
    width: 100%;
    padding: 20px;
    text-align: left;
  }
}
.cta__button:hover {
  opacity: 0.56;
  background: linear-gradient(87deg, #698 2.32%, #689 96.4%);
}
.cta__button::after {
  position: absolute;
  content: "";
  background: url(../img/akar-icons_arrow-right.png) no-repeat center center/contain;
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767.9px) {
  .cta__button::after {
    left: 225px;
  }
}
@media screen and (min-width: 768px) {
  .cta__button::after {
    right: 25px;
  }
}

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

.heading {
  text-align: center;
}

.title-ja {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.96px;
}

.title-en {
  margin-top: 32px;
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.96px;
  position: relative;
}
.title-en::before {
  position: absolute;
  content: "";
  background: #565956;
  width: 160px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: -16px;
}

.reason__items {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .reason__items {
    gap: 5px;
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (min-width: 1300px) {
  .reason__items {
    gap: 85px;
  }
}

.reason__item {
  text-align: center;
}

.reason__item-tag {
  padding: 4px 24px;
  background: #948260;
  color: #FFF;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Jost", sans-serif;
}
.reason__item-img img {
  width: 168px;
}
@media screen and (min-width: 768px) {
  .reason__item-img img {
    width: 260px;
  }
}
@media screen and (min-width: 900px) {
  .reason__item-img img {
    width: 168px;
  }
}

.reason__item-text {
  width: 168px;
}
@media screen and (min-width: 768px) {
  .reason__item-text {
    width: 260px;
  }
}
@media screen and (min-width: 900px) {
  .reason__item-text {
    width: 168px;
  }
}

.authority {
  height: 132px;
  padding: 18px 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 70%, #fff 100%), url(../img/authority.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 330px;
}
@media screen and (min-width: 768px) {
  .authority {
    background-size: auto 530px;
    height: 230px;
  }
}
@media screen and (min-width: 1300px) {
  .authority {
    background-size: 100% 230%;
  }
}

.authority__content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .authority__content {
    gap: 0;
  }
}

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

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

.authority__lead {
  flex-shrink: 0;
}

.authority__text {
  font-weight: 700;
  letter-spacing: 0.64px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .authority__text {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}

.authority__number {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.28px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .authority__number {
    font-size: 64px;
    letter-spacing: 2.56px;
  }
}

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

.voice__cards {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1300px) {
  .voice__cards {
    flex-direction: row;
  }
}

.voice__card:nth-of-type(1) {
  background: #F2F4F1;
}
.voice__card:nth-of-type(3) {
  background: #F2F4F1;
}
@media screen and (min-width: 768px) {
  .voice__card {
    max-width: 550px;
  }
}
@media screen and (min-width: 1300px) {
  .voice__card {
    width: 33.33%;
  }
}

.voice__img {
  position: relative;
}
@media screen and (min-width: 900px) {
  .voice__img img {
    height: 220px;
    width: 100%;
  }
}

.voice__img-tag {
  padding: 8px 16px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  letter-spacing: 0.64px;
  color: #FFF;
  background: #609484;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 0;
  left: 0;
}

.voice__card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}
@media screen and (min-width: 900px) {
  .voice__card-content {
    padding: 26px 48px;
  }
}

.card-content__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content__title-text {
  padding: 4px 10px;
  background: #948260;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
}

.card-content__text {
  font-weight: 500;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 1300px) {
  .card-content__text {
    min-height: 240px;
  }
}

.card-content__voice {
  letter-spacing: 0.64px;
}

.solution {
  background: url(../img/solution-bg.jpg) no-repeat center center/cover;
  padding-top: 56px;
  padding-bottom: 112px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .solution {
    padding-top: 86px;
  }
}

.solution__items {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .solution__items {
    margin-top: 64px;
  }
}

.solution__item {
  padding: 28px 50px;
  border-radius: 32px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .solution__item {
    flex-direction: row;
    gap: 32px;
  }
}

.solution__img {
  flex-shrink: 0;
}
.solution__img img {
  width: 32px;
  height: 32px;
}

.solution__text {
  font-size: 20px;
  letter-spacing: 0.8px;
}

.solution__item-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .solution__item-box {
    flex-direction: row;
    gap: 24px;
    justify-content: center;
  }
}

.solution__accent {
  position: relative;
}

.solution__accent-text {
  padding: 30px 22px;
  background: #609484;
  width: 82.13%;
  max-width: 390px;
  color: #FFF;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -56px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .solution__accent-text {
    max-width: 850px;
    width: 100%;
  }
}
@media screen and (min-width: 1300px) {
  .solution__accent-text {
    padding: 28px 46px;
    max-width: 1115px;
    top: -14px;
    font-size: 24px;
  }
}

.solution__accent-img {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 91.46%;
  max-width: 800px;
  height: 238px;
}
@media screen and (min-width: 900px) {
  .solution__accent-img {
    max-width: 880px;
    width: 100%;
    top: -112px;
  }
}
@media screen and (min-width: 1300px) {
  .solution__accent-img {
    max-width: 1180px;
    width: 100%;
    top: -8px;
  }
}
.solution__accent-img img {
  width: 100%;
  height: 237px;
}
@media screen and (min-width: 1300px) {
  .solution__accent-img img {
    height: 123px;
  }
}

.realization {
  padding-top: 240px;
  padding-bottom: 53px;
  background: #FFF;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .realization {
    padding-top: 138px;
    padding-bottom: 109px;
  }
}
.realization::before {
  content: "";
  position: absolute;
  background: #F2F4F1;
  width: 100%;
  height: 1981px;
  top: 885px;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .realization::before {
    height: 1368px;
    top: 484px;
  }
}
.realization::after {
  content: "";
  position: absolute;
  background: #F2F4F1;
  width: 100%;
  height: 1362px;
  bottom: 657px;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .realization::after {
    height: 1370px;
    bottom: 280px;
  }
}

.realization__items {
  margin-top: 43px;
  display: flex;
  flex-direction: column;
  gap: 73px;
}
@media screen and (min-width: 768px) {
  .realization__items {
    margin-top: 94px;
    gap: 163px;
  }
}

.realization__item-img {
  position: relative;
}

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

.realization__content {
  margin-top: 24px;
}
@media screen and (min-width: 1300px) {
  .realization__content {
    margin-top: 48px;
    display: flex;
    position: relative;
  }
}

.realization__content-second {
  margin-top: 24px;
}
@media screen and (min-width: 1300px) {
  .realization__content-second {
    margin-top: 48px;
    display: flex;
    flex-direction: row-reverse;
    position: relative;
  }
}

.realization__content-mix {
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
  padding: 0 16px 32px;
}
@media screen and (min-width: 1300px) {
  .realization__content-mix {
    max-width: 618px;
    padding: 64px;
  }
}

.realization__content-mix2 {
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
  padding: 0 16px 32px;
}
@media screen and (min-width: 1300px) {
  .realization__content-mix2 {
    max-width: 588px;
    padding: 64px;
  }
}

.realization__content-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.realization__content-title span {
  background: #948260;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.96px;
  color: #FFF;
}
.realization__content-title p {
  padding: 4px 8px;
  background: #948260;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.96px;
  color: #FFF;
}
@media screen and (min-width: 1300px) {
  .realization__content-title p {
    padding: 4px 7px;
  }
}

.realization__content-boxes {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 1300px) {
  .realization__content-boxes {
    padding-right: 30px;
  }
}

.realization__content-boxes2 {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.realization__content-tag {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.realization__content-tag p {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
  flex-shrink: 0;
}

.realization__content-line {
  width: 100%;
  height: 1px;
  background: #565956;
}

.realization__content-text {
  letter-spacing: 0.64px;
  margin-top: 16px;
}

.realization__content-img {
  margin-top: 16px;
  text-align: center;
}
.realization__content-img img {
  aspect-ratio: 16/9;
}

.realization__content-picture {
  display: none;
}
@media screen and (min-width: 1300px) {
  .realization__content-picture {
    display: flex;
    gap: 27px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 568px;
    height: 466px;
    align-items: flex-start;
  }
}

.realization__content-picture-second {
  display: none;
}
@media screen and (min-width: 1300px) {
  .realization__content-picture-second {
    display: flex;
    gap: 27px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 568px;
    height: 466px;
    align-items: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .content-picture__img-left {
    padding-top: 85px;
  }
}
.content-picture__img-left img {
  width: 284px;
  height: 366px;
}

.content-picture__img-right img {
  width: 299px;
  height: 365px;
}

.realization__lineup {
  margin-top: 80px;
}

.realization__lineup-title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .realization__lineup-title {
    max-width: 998px;
    margin: 0 auto;
  }
}

.lineup-title-ja {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  position: relative;
}
.lineup-title-ja::before {
  position: absolute;
  content: "";
  background: #565956;
  width: 33.5px;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (min-width: 900px) {
  .lineup-title-ja::before {
    width: 140px;
  }
}
@media screen and (min-width: 1300px) {
  .lineup-title-ja::before {
    width: 240px;
  }
}
.lineup-title-ja::after {
  position: absolute;
  content: "";
  background: #565956;
  width: 33.5px;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (min-width: 900px) {
  .lineup-title-ja::after {
    width: 140px;
  }
}
@media screen and (min-width: 1300px) {
  .lineup-title-ja::after {
    width: 240px;
  }
}

.lineup-title-en {
  color: #B1B6AF;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .lineup-title-en {
    margin-top: 9px;
  }
}

.realization__goods {
  padding: 0 20px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
@media screen and (min-width: 1300px) {
  .realization__goods {
    flex-direction: row;
    justify-content: center;
    gap: 48px;
  }
}

.realization__good {
  transition: all 0.3s;
}
.realization__good:hover {
  cursor: pointer;
  opacity: 0.7;
}

.realization__good-img img {
  width: 300px;
  height: 300px;
}
@media screen and (min-width: 768px) {
  .realization__good-img img {
    width: 500px;
    height: 500px;
  }
}
@media screen and (min-width: 900px) {
  .realization__good-img img {
    width: 600px;
    height: 600px;
  }
}
@media screen and (min-width: 1300px) {
  .realization__good-img img {
    width: 300px;
    height: 300px;
  }
}

.realization__good-content {
  border-radius: 8px;
  background: #F2F4F1;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
  padding: 24px 24px 64px;
  width: 300px;
}
@media screen and (min-width: 768px) {
  .realization__good-content {
    width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .realization__good-content {
    width: 600px;
  }
}
@media screen and (min-width: 1300px) {
  .realization__good-content {
    width: 300px;
  }
}

.realization__good-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.realization__good-type {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  letter-spacing: 0.64px;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .realization__good-type {
    margin-top: 8px;
  }
}

.feature {
  padding-top: 56px;
  padding-bottom: 56px;
  background: url(../img/feature-bg.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .feature {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.feature__items {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .feature__items {
    gap: 34px;
  }
}

.feature__item {
  padding: 32px 16px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .feature__item {
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  .feature__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1300px) {
  .feature__item {
    padding: 32px 106px;
    gap: 80px;
  }
}

@media screen and (min-width: 900px) {
  .feature__img {
    width: 50%;
  }
}
.feature__img img {
  width: 446px;
}

.feature__item-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .feature__item-content {
    width: 50%;
  }
}

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

.feature-item__lead {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.feature-item__lead span {
  color: #948260;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.96px;
}

.feature-item__text {
  letter-spacing: 0.64px;
}

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

.how__cards {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .how__cards {
    flex-direction: row;
    gap: 100px;
    margin-top: 64px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (min-width: 1300px) {
  .how__cards {
    gap: 36px;
  }
}

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

.how__card-tag {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 23px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .how__card-tag {
    margin-top: 26px;
  }
}

.card-tag__number {
  font-size: 24px;
  font-weight: 700;
  font-family: "Jost", sans-serif;
  color: #609484;
}

.card-tag__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.how__card-text {
  margin-top: 12px;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 768px) {
  .how__card-text {
    margin-top: 14px;
  }
}

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

.qa__boxes {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 1300px) {
  .qa__boxes {
    flex-direction: row;
    gap: 2.02%;
    flex-wrap: wrap;
    margin-top: 62px;
  }
}

.qa__box {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 767.9px) {
  .qa__box:nth-of-type(3) {
    margin-top: 8px;
  }
  .qa__box:nth-of-type(5) {
    margin-top: 8px;
  }
}
@media screen and (min-width: 1300px) {
  .qa__box {
    width: 48.98%;
  }
  .qa__box:nth-child(n+3) {
    margin-top: 53px;
  }
}

.qa-box.is-open .qa-box__plus::after {
  transform: translateY(-50%) rotate(0deg);
}

.qa-box__head {
  display: flex;
  align-items: center;
  gap: 26px;
  width: 100%;
  position: relative;
}
.qa-box__head::after {
  content: "";
  position: absolute;
  background: #565956;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
}
@media screen and (min-width: 768px) {
  .qa-box__head {
    padding-left: 22px;
    padding-right: 22px;
    gap: 22px;
  }
}

.qa-box__icon {
  color: #948260;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .qa-box__icon {
    font-size: 18px;
  }
}

.qa-box__text {
  letter-spacing: 0.64px;
  max-width: 930px;
  width: 100%;
  text-align: left;
}

.qa-box__plus {
  width: 16px;
  height: 16px;
  position: relative;
}
.qa-box__plus::before {
  content: "";
  position: absolute;
  background: url(../img/minus.svg) no-repeat center center/contain;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .qa-box__plus::before {
    right: 4px;
  }
}
.qa-box__plus::after {
  content: "";
  position: absolute;
  background: url(../img/minus.svg) no-repeat center center/contain;
  top: 50%;
  right: 5px;
  transform: translateY(-50%) rotate(90deg);
  width: 16px;
  height: 16px;
  z-index: 1;
  transition: transform 0.3s linear;
}
@media screen and (min-width: 768px) {
  .qa-box__plus::after {
    right: 4px;
  }
}

.qa-box__body {
  display: none;
}

.qa-box__a {
  display: flex;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .qa-box__a {
    padding-left: 22px;
    padding-right: 22px;
  }
}

.qa-box__a-icon {
  color: #948260;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.qa-box__a-text {
  font-size: 18px;
  font-weight: 400;
  display: block;
}

.qa__footer {
  margin-top: 56px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .qa__footer {
    margin-top: 23px;
  }
}

.qa__button {
  padding: 20px 42px 20px 0px;
  color: #FFF;
  border-radius: 99999px;
  background: #609484;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.64px;
  position: relative;
  transition: all 0.3s;
  display: inline-block;
  width: 100%;
  max-width: 306px;
}
@media screen and (min-width: 768px) {
  .qa__button {
    margin-top: 64px;
  }
}
.qa__button:hover {
  opacity: 0.56;
  background: #609484;
}
.qa__button::after {
  position: absolute;
  content: "";
  background: url(../img/button-arrow.svg) no-repeat center center/contain;
  width: 11.25px;
  height: 14.999px;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.footer {
  background: #565956;
  padding-top: 31px;
  padding-bottom: 32px;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 56px;
  }
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.footer__items {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .footer__items {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__item-title {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
  position: relative;
}
.footer__item-title::after {
  position: absolute;
  content: "";
  background: #FFF;
  width: 72.028px;
  height: 1px;
  left: 0;
  bottom: -8px;
}

.footer__item-links {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__item-link {
  letter-spacing: 0.64px;
  transition: all 0.3s;
}
.footer__item-link:hover {
  opacity: 0.7;
}

.footer__sns-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__sns-links {
    gap: 30px;
  }
}

.footer__sns-link {
  transition: all 0.3s;
}
.footer__sns-link:hover {
  opacity: 0.7;
}

.fa-brands {
  font-size: 30px;
}

@media screen and (min-width: 768px) {
  .fa-instagram {
    font-size: 30px;
  }
}

@media screen and (min-width: 768px) {
  .fa-twitter {
    font-size: 28px;
  }
}

.fa-facebook-f {
  font-size: 20px;
}

.footer__text-small {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
}

.footer__text-copyright {
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.4px;
}