@charset "UTF-8";
/*!
Foundation > basis
------------------------------
*/
*,
*::after,
*::before {
  box-sizing: border-box;
}

ul:where(:not(.wp-block-list)) {
  padding-inline-start: 0;
  margin-block: 0;
  list-style: none;
}

/* =====================
Layout
====================== */
.l-header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 13.5px 16px;
}

.l-header__logo {
  width: 52px;
}
.l-header__logo > img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.l-header__nav {
  display: flex;
  gap: 16px;
}

.l-header__icon {
  display: flex;
  gap: 16px;
}

/* =====================
PC表示の時
====================== */
.l-header-pc__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--wp--custom--max-width);
  padding-block: 12px;
  margin-inline: auto;
}

.l-header-pc__nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.l-header-pc__nav-item:nth-of-type(3) a {
  font-weight: 700;
  color: var(--wp--preset--color--gray-01);
}

/* =====================
スマホメニュー
====================== */
.l-header-drawer-content {
  position: fixed;
  top: 75px;
  left: 0;
  z-index: 99;
  visibility: hidden;
  width: 100%;
  height: calc(100dvh - 75px);
  background-color: rgba(86, 89, 86, 0.56);
  /* フェードアニメーションの設定 */
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.l-header-drawer-content.is-open {
  visibility: visible;
  opacity: 1;
}

.l-header-drawer-inner {
  padding: 16px;
  margin: 8px 16px 0;
  background-color: var(--wp--preset--color--white);
  border-radius: 8px;
}
@media screen and (min-width: 1024px) {
  .l-header-drawer-inner {
    max-width: 1180px;
    margin: 8px auto 0;
  }
}

.l-header-drawer-title {
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .l-header-drawer-title {
    font-size: 20px;
  }
}

.l-header-drawer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .l-header-drawer-list {
    grid-template-columns: repeat(5, 1fr);
    gap: 48px 32px;
  }
}

.l-header-drawer-item > a {
  display: block;
  padding-bottom: 8px;
  font-weight: 700;
  color: var(--wp--preset--color--gray-01);
  border-bottom: 2px solid var(--wp--preset--color--gray-02);
  transition: border-color 0.7s;
}
.l-header-drawer-item > a:hover {
  border-color: var(--wp--preset--color--green);
}

/* =====================
footer
====================== */
.l-footer {
  background-color: var(--wp--preset--color--gray-01);
}

.l-footer__inner {
  max-width: 1180px;
  padding: 32px 16px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .l-footer__inner {
    padding: 56px 0 32px;
  }
}

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

.l-footer__menu-title {
  font-family: var(--wp--preset--font-family--jost);
  font-size: 20px;
  font-weight: 600;
  color: var(--wp--preset--color--white);
}
.l-footer__menu-title::after {
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 8px;
  content: "";
  background-color: currentcolor;
}

.l-footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.l-footer__menu-item > a {
  color: var(--wp--preset--color--white);
}

.l-footer__sns {
  margin-top: 72px;
}

.l-footer__sns-list {
  display: flex;
  gap: 20px;
}

.l-footer__copy {
  margin-top: 72px;
  color: var(--wp--preset--color--white);
}

.l-footer__disclaimer {
  font-size: 12px;
}

.l-footer__copyright {
  margin-top: 16px;
  font-size: 10px;
}

/* =====================
Utility
====================== */
.u-visible-sp {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .u-visible-sp {
    display: none !important;
  }
}

.u-visible-tab {
  display: none !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-visible-tab {
    display: block !important;
  }
}

.u-visible-pc {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .u-visible-pc {
    display: block !important;
  }
}

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

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-hidden-tab {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-hidden-pc {
    display: none !important;
  }
}

.u-space-1 {
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .u-space-1 {
    margin-top: 48px;
  }
}

.u-margin-top-1 {
  margin-top: 67px;
}
@media screen and (min-width: 1024px) {
  .u-margin-top-1 {
    margin-top: 163px;
  }
}

.u-space-mt-1 {
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .u-space-mt-1 {
    margin-top: 64px;
  }
}

/* =====================
Component
====================== */
.is-style-button-arrow {
  width: 100%;
}
@media screen and (min-width: 767px) {
  .is-style-button-arrow {
    width: auto;
  }
}
.is-style-button-arrow > .wp-block-button__link {
  position: relative;
  padding: 20px 64px 20px 24px;
  border-radius: 16px;
  transition: background-color 0.3s;
}
.is-style-button-arrow > .wp-block-button__link:hover {
  background-color: rgba(102, 153, 136, 0.56) !important;
}
.is-style-button-arrow > .wp-block-button__link::after {
  position: absolute;
  top: 50%;
  right: 24px;
  display: block;
  width: 24px;
  height: 24px;
  content: "";
  background-image: url("../img/icon-arrow-1.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}

.is-style-button-outline > .wp-block-button__link {
  display: inline-block;
  padding: 8px 24px;
  color: var(--wp--preset--color--gray-01);
  background-color: var(--wp--preset--color--white);
  border: 1px solid currentcolor;
  border-radius: 50vh;
  transition: color 0.3s, background-color 0.3s;
}
.is-style-button-outline > .wp-block-button__link:hover {
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--gray-01);
}

/* =====================
左矢印ボタン
====================== */
.c-button-right[class] > .wp-block-button__link {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 20px 40px 20px 56px;
  border-radius: 50vw;
}
.c-button-right[class] > .wp-block-button__link::after {
  display: block;
  width: 11px;
  height: 15px;
  content: "";
  background-image: url("../img/icon-arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.c-list-triangle {
  position: relative;
  display: block;
  width: 49px;
  font-size: 14px;
  font-weight: 700;
  color: var(--wp--preset--color--gray-01);
}
@media screen and (min-width: 1024px) {
  .c-list-triangle {
    width: 57px;
    font-size: 16px;
  }
}
.c-list-triangle::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 10.4px;
  height: 8.8px;
  content: "";
  background-image: url("../img/icon-triangle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s;
}
.c-list-triangle.is-active::after {
  transform: translateY(-50%) rotate(180deg);
}

.is-style-stack-border-header__ttl::after {
  position: relative;
  left: 50%;
  display: block;
  width: 160px;
  height: 1px;
  margin-top: 16px;
  content: "";
  background-color: var(--wp--preset--color--gray-01);
  transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .is-style-stack-border-header__ttl br {
    display: none;
  }
}

.is-style-stack-border-header__text[class] {
  margin-top: 16px;
}
.is-style-left-border {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: var(--wp--preset--font-family--jost);
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
}
.is-style-left-border::after {
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background-color: var(--wp--preset--color--gray-01);
}

.c-header-rect {
  padding: 30px 24px;
  font-size: 20px;
}
@media screen and (min-width: 1024px) {
  .c-header-rect {
    padding: 30px 46px;
    font-size: 24px;
  }
}

/* =====================
矩形見出し(改行あり）
====================== */
.c-header-rect-br {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .c-header-rect-br {
    display: inline-flex;
    flex-direction: row;
    gap: 0;
    font-size: 24px;
  }
}
.c-header-rect-br span {
  display: block;
  width: fit-content;
  padding: 4px 8px;
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--gold);
}
@media screen and (min-width: 1024px) {
  .c-header-rect-br span {
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .c-header-rect-br span:first-of-type {
    padding: 4px 0 4px 8px;
  }
}
@media screen and (min-width: 1024px) {
  .c-header-rect-br span:nth-of-type(2) {
    padding: 4px 8px 4px 0;
  }
}

.c-content {
  padding: 56px 18px;
}
@media screen and (min-width: 1024px) {
  .c-content {
    padding: 88px 0;
  }
}

.is-style-rect-bg-text {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .is-style-rect-bg-text {
    flex-direction: row;
    gap: 0;
  }
}
.is-style-rect-bg-text span {
  display: block;
  width: fit-content;
  padding: 4px 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--gold);
}
@media screen and (min-width: 1024px) {
  .is-style-rect-bg-text span {
    display: inline-block;
  }
}
@media screen and (min-width: 1024px) {
  .is-style-rect-bg-text span:first-of-type {
    padding-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .is-style-rect-bg-text span:nth-of-type(2) {
    padding-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .c-faq {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.c-faq__button {
  /* --- 2. 基本スタイル --- */
  position: relative;
  display: flex;
  gap: 24px; /* 「Q」と「テキスト」の間の隙間 */
  align-items: center; /* これで「Q」と「テキスト」が縦中央に並びます */
  width: 100%;
  padding: 20px 60px 20px 0; /* 右側にアイコン用の余白(60px)を確保 */
  font-size: 16px;
  color: var(--wp--preset--color--gray-01);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px solid var(--wp--preset--color--gray-01);
  transition: color 0.3s;
}
@media screen and (min-width: 1024px) {
  .c-faq__button {
    padding: 0 22px 24px;
    font-size: 18px;
  }
}
.c-faq__button:hover {
  background: skyblue;
}
.c-faq__button::before, .c-faq__button::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 2px;
  content: "";
  background-color: var(--wp--preset--color--gold);
  transform: translateY(-50%);
  transition: transform 0.3s ease, background-color 0.3s;
}
@media screen and (min-width: 1024px) {
  .c-faq__button::before, .c-faq__button::after {
    top: 16px;
  }
}
.c-faq__button::after {
  transform: translateY(-50%) rotate(90deg);
}
.c-faq__button.is-active::after {
  transform: translateY(-50%) rotate(0deg);
}

.c-faq__content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-top: 24px;
  font-size: 16px;
}
.c-faq__content::before {
  color: var(--wp--preset--color--gold);
  content: "A";
}
@media screen and (min-width: 1024px) {
  .c-faq__content {
    font-size: 18px;
  }
}

.c-faq__before-txt {
  display: inline-block;
  font-size: 18px;
  color: var(--wp--preset--color--gold);
}

.c-faq__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

/* =====================
Page
====================== */
.p-kv .wp-block-cover__inner-container {
  padding-left: 4.2666666667%;
}
@media screen and (min-width: 1024px) {
  .p-kv .wp-block-cover__inner-container {
    max-width: var(--wp--custom--max-width);
    padding-left: 0;
    margin-inline: auto;
  }
}

.p-kv__text span {
  display: inline-block;
  padding: 0 24px;
  margin-top: 8px;
  font-size: 28px;
  font-weight: 700;
  background-color: var(--wp--preset--color--white);
}
@media screen and (min-width: 1024px) {
  .p-kv__text span {
    padding: 4px 24px;
    font-size: 40px;
  }
}
.p-kv__text--small span {
  margin-top: 16px;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .p-kv__text--small span {
    font-size: 24px;
  }
}

.p-cta {
  padding: 56px 4.2666666667%;
}
@media screen and (min-width: 1024px) {
  .p-cta {
    padding: 48px 0;
  }
}

.p-cta__inner {
  padding: 32px 16px;
}
@media screen and (min-width: 1024px) {
  .p-cta__inner {
    padding: 56px 64px;
  }
}

.p-cta__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .p-cta__text {
    position: relative;
  }
}
.p-cta__text span {
  display: block;
}
.p-cta__text span:nth-of-type(1) {
  width: fit-content;
  padding: 0 16px;
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--gray-01);
}
@media screen and (min-width: 1024px) {
  .p-cta__text span:nth-of-type(1) {
    position: absolute;
    top: 0;
    left: 23px;
    rotate: -30deg;
  }
}
@media screen and (min-width: 1024px) {
  .p-cta__text span:nth-of-type(2) {
    font-size: 24px;
  }
}
.p-cta__text span:nth-of-type(3) {
  font-size: 28px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-cta__text span:nth-of-type(3) br {
    display: none;
  }
}

.p-cta__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-cta__list {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .p-cta__list > li {
    flex: 0 1 191px;
  }
}

.p-cta__group {
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .p-cta__group {
    display: flex;
    gap: 37px;
    align-items: center;
    justify-content: center;
    margin-top: 56px;
  }
}

.p-cta__group-text {
  position: relative;
  display: block;
  width: 260px;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-cta__group-text {
    margin-inline: 0;
  }
}
.p-cta__group-text::after {
  position: absolute;
  bottom: -19px;
  left: 50%;
  width: 11px;
  height: 19px;
  content: "";
  background-color: var(--wp--preset--color--gray-02);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .p-cta__group-text::after {
    inset: 50% -29px auto auto;
    width: 29px;
    height: 18px;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    transform: translateY(-50%);
  }
}

.p-cta__button {
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .p-cta__button {
    margin-top: auto;
  }
}

.p-benefit {
  padding: 88px 16px;
  overflow-x: hidden;
}
@media screen and (min-width: 1024px) {
  .p-benefit {
    padding: 88px 0;
  }
}

.p-benefit-column[class] {
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .p-benefit-column[class] {
    gap: 0;
    justify-content: space-between;
  }
}
.p-benefit-column[class] > .wp-block-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 87px;
}
@media screen and (min-width: 1024px) {
  .p-benefit-column[class] > .wp-block-column {
    padding: 0;
  }
}

.p-benefit-column__ttl[class] {
  display: block;
  padding: 4px 24px;
  margin-inline: 11px;
}
@media screen and (min-width: 1024px) {
  .p-benefit-column__ttl[class] {
    margin-inline: 12px;
  }
}

.p-member {
  padding: 18px;
}
@media screen and (min-width: 1024px) {
  .p-member {
    padding: 18px 0;
  }
}

.p-member__row-group {
  column-gap: 16px;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .p-member__row-group {
    column-gap: 0;
  }
}

.p-member__img-1 {
  flex: 0 0 56px;
}
@media screen and (min-width: 1024px) {
  .p-member__img-1 {
    flex: 0 0 158px;
  }
}

.p-member__txt {
  letter-spacing: -0.005em;
}
@media screen and (min-width: 1024px) {
  .p-member__txt {
    letter-spacing: normal;
  }
}
.p-member__txt span {
  display: block;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-member__txt span:nth-of-type(1) {
    display: inline-block;
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-member__txt span:nth-of-type(2) {
    display: inline-block;
    font-size: 24px;
  }
}
.p-member__txt span:nth-of-type(3) {
  font-size: 32px;
}
@media screen and (min-width: 1024px) {
  .p-member__txt span:nth-of-type(3) {
    font-size: 64px;
  }
}

.p-member__img-2 {
  flex: 0 0 56px;
}
@media screen and (min-width: 1024px) {
  .p-member__img-2 {
    flex: 0 0 158px;
  }
}

.p-voice-card {
  display: flex;
  flex-direction: column;
}
.p-voice-card__img-group {
  position: relative;
}
.p-voice-card__title {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}
.p-voice-card__text-group {
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  padding: 24px;
}
@media screen and (min-width: 1024px) {
  .p-voice-card__text-group {
    padding: 24px 48px;
  }
}

.p-voice-card__main-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-voice-card__main-title span {
  display: block;
  width: fit-content;
  padding: 4px 10px;
  background-color: var(--wp--preset--color--gold);
}
.p-voice-card__main-text {
  padding-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .p-voice-card__main-text {
    padding-bottom: 32px;
  }
}

.p-voice-card__name {
  margin-top: auto;
}
.p-solution {
  padding: 56px 16px 112px;
}
@media screen and (min-width: 1024px) {
  .p-solution {
    padding: 88px 0 112px;
  }
}

.p-solution-text-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .p-solution-text-group {
    margin-top: 64px;
  }
}

.p-solution-text-group__row-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .p-solution-text-group__row-group {
    flex-direction: row;
    gap: 24px;
  }
}
.p-solution-text-group__row-group > .wp-block-group {
  flex: 1;
}

.p-solution-container {
  container-name: card-check;
  container-type: inline-size;
}

.p-solution-check {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 56px;
}

@container card-check (min-width:768px) {
  .p-solution-check {
    flex-direction: row;
    gap: 32px;
    align-items: center;
    padding: 28px 50px;
  }
}
.p-realization {
  position: relative;
  top: -30px;
}

.p-realization__title-group {
  max-width: 1180px;
  padding: 0 16px;
  margin: 0 auto;
}

.p-realization__rect-title {
  padding: 0 16px;
}

.p-realization__title {
  margin-top: 100px;
}

.p-realization__content-group {
  position: relative;
  z-index: 0;
}
.p-realization__content-group::before {
  position: absolute;
  inset: 325px 0 331px;
  z-index: -1;
  content: "";
  background-color: var(--wp--preset--color--gray-02);
}
@media screen and (min-width: 1024px) {
  .p-realization__content-group::before {
    inset: 179px 0 301px;
  }
}

.p-realization__content-group__inner {
  padding-inline: 16px;
}
@media screen and (min-width: 1024px) {
  .p-realization__content-group__inner {
    max-width: 1180px;
    margin: 0 auto;
  }
}

/* =====================
// コンテンツ部分
====================== */
.p-realization-content__title-group[class] {
  position: relative;
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .p-realization-content__title-group[class] {
    margin-top: 63px;
  }
}

.p-realization-content__title-en {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .p-realization-content__title-en {
    font-size: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .p-realization-content-row {
    display: grid;
    grid-template-columns: 578px 40px 243px 299px;
  }
}

@media screen and (min-width: 1024px) {
  .p-realization-content-row__text-group {
    grid-row: 1;
    grid-column: 1/3;
  }
}

.p-realization-content-row__image-pc-1 {
  display: none;
}
@media screen and (min-width: 1200px) {
  .p-realization-content-row__image-pc-1 {
    display: block;
    grid-row: 1;
    grid-column: 2/4;
    align-self: end;
    padding-bottom: 52px;
    margin-right: 10px;
  }
}

.p-realization-content-row__image-pc-2 {
  display: none;
}
@media screen and (min-width: 1200px) {
  .p-realization-content-row__image-pc-2 {
    display: block;
    grid-row: 1;
    grid-column: 4/-1;
    padding-top: 39px;
    margin-left: 10px;
  }
}

.p-realization-card {
  padding: 0 16px;
  background-color: var(--wp--preset--color--white);
}
@media screen and (min-width: 1024px) {
  .p-realization-card {
    padding: 64px;
  }
}

.p-realization-card__grup {
  margin-top: 36px;
}

.p-realization-card__text {
  margin-top: 16px;
}

.p-realization-card__img {
  margin-top: 16px;
}

/* =====================
使用している家具・家電 縦積み
====================== */
.p-realization-sec-2-row {
  gap: 8px;
}
.p-realization-sec-2-row__title[class] {
  display: grid;
  grid-template-columns: 1fr 11em 1fr;
  gap: 24px;
  align-items: center;
  width: 100%;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .p-realization-sec-2-row__title[class] {
    gap: 140px;
  }
}
.p-realization-sec-2-row__title[class]::before, .p-realization-sec-2-row__title[class]::after {
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background-color: var(--wp--preset--color--gray-01);
}

/* =====================
scene02
====================== */
.p-scene02 {
  position: relative;
  z-index: 0;
  padding-inline: 16px;
}
@media screen and (min-width: 1024px) {
  .p-scene02 {
    padding-inline: 0;
  }
}
.p-scene02::before {
  position: absolute;
  inset: 806px 0 654px;
  z-index: -1;
  content: "";
  background-color: var(--wp--preset--color--gray-02);
}
@media screen and (min-width: 1024px) {
  .p-scene02::before {
    inset: 179px 0 208px;
  }
}

.p-scene02__content-inner {
  padding-inline: 16px;
}
@media screen and (min-width: 1024px) {
  .p-scene02__content-inner {
    padding-inline: 0;
  }
}

/* =====================
KV
====================== */
.p-scene02-kv__ttl {
  transform: translateY(50%);
}
@media screen and (min-width: 1024px) {
  .p-scene02-kv__ttl {
    font-size: 40px;
  }
}

/* =====================
コンテンツグループと画像2枚
====================== */
@media screen and (min-width: 1024px) {
  .p-scene02-group {
    --width: 20px;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: calc(610px - var(--width)) var(--width) calc(588px - var(--width));
  }
}

@media screen and (min-width: 1024px) {
  .p-scene02-group__txt-content {
    grid-row: 1;
    grid-column: 2/-1;
    padding: 64px;
  }
}

@media screen and (min-width: 1024px) {
  .p-scene02-group__img-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 284fr 299fr;
    grid-row: 1;
    grid-column: 1/3;
    gap: 27px;
    padding: 39px 0 52px;
  }
}

@media screen and (min-width: 1024px) {
  .p-scene02-group__img-1 {
    grid-row: 1;
    grid-column: 1;
    align-self: end;
  }
}

@media screen and (min-width: 1024px) {
  .p-scene02-group__img-2 {
    grid-row: 1;
    grid-column: 2;
    align-self: start;
  }
}

.p-feature {
  padding: 56px 16px;
}
@media screen and (min-width: 1024px) {
  .p-feature {
    padding: 80px 0;
  }
}

/* =====================
画像とテキストグループ
====================== */
.p-feature-cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 16px;
}
@media screen and (min-width: 1024px) {
  .p-feature-cont {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .p-feature-cont--reverse {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 1024px) {
  .p-feature-cont__img {
    flex: 0 1 415px;
  }
}
@media screen and (min-width: 1024px) {
  .p-feature-cont__img--other {
    flex: 0 1 445px;
  }
}
@media screen and (min-width: 1024px) {
  .p-feature-cont__img--other-2 {
    flex: 0 1 446px;
  }
}

@media screen and (min-width: 1024px) {
  .p-feature-cont__txt-group {
    flex: 0 1 415px;
  }
}
@media screen and (min-width: 1024px) {
  .p-feature-cont__txt-group--other {
    flex: 0 1 452px;
  }
}
@media screen and (min-width: 1024px) {
  .p-feature-cont__txt-group--other-2 {
    flex: 0 1 445px;
  }
}

.p-feature-cont__ttl-1 {
  display: inline-block;
}
.p-feature-cont__ttl-2 {
  font-size: 20px;
}
.p-feature-cont__ttl-2 span {
  font-size: 24px;
  color: var(--wp--preset--color--gold);
}

.p-use {
  padding: 56px 16px;
}
@media screen and (min-width: 1024px) {
  .p-use {
    padding: 88px 0;
  }
}

/* =====================
カラム
====================== */
.p-use-column {
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .p-use-column {
    gap: 36px;
  }
}

/* =====================
カラムアイテム内カード
====================== */
.p-use-card__ttl > span {
  display: inline-block;
  margin-right: 24px;
  font-family: var(--wp--preset--font-family--inter);
  font-size: 24px;
  color: var(--wp--preset--color--green);
}
/* =====================
よくある質問FAQ
====================== */
.p-faq {
  padding: 56px 16px;
}
@media screen and (min-width: 1024px) {
  .p-faq {
    padding: 88px 0;
  }
}

.p-faq__btn {
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .p-faq__btn {
    margin-top: 64px;
  }
}

/*# sourceMappingURL=style.css.map */
