@charset "UTF-8";

/* --------------------------------------------------------------- */
/* Custom Property */
/* --------------------------------------------------------------- */
:root {
  /* 黒・グレー系 */
  --black: #191412;
  --dimgray: #666;
  --warmgray: #ECE8DB;
  --ivorygray: #F5F1EB;

  /* 赤・茶系 */
  --red: #E24310;
  --brickred: #A03C30;
  --chestnut: #8F4A2D;

  /* 黄・ベージュ系 */
  --lighttan: #E1BE9C;
  --beige: #F3EFE3;
  --ivory: #F6F6F0;
  --creamyellow: #FFF8BB;
  --lightcream: #FFF7DA;
  --lemonyellow: #FFE925;
}

/* --------------------------------------------------------------- */
/* Reset */
/* --------------------------------------------------------------- */
* {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
  position: relative;
  box-sizing: border-box;
  font-weight: 400;
  font-style: normal;
}
ul, ol {
  list-style: none;
}
img {
  display: block;
}
table {
  border-collapse:collapse;
  border-spacing:0;
}
input, select {
  vertical-align:middle;
}
select {
  -webkit-appearance: none;
}
figure {
  margin: 0;
}
main {
  display: block;
  overflow-x: hidden;
}
html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
}
@media (max-width: 768px) {
  html {
    font-size: clamp(1rem, 0.046rem + 4.07vw, 2rem);
  }
}
body {
  font-feature-settings: "palt";
}
a {
  text-decoration: none;
  color: var(--black);
}

/* --------------------------------------------------------------- */
/* Common */
/* --------------------------------------------------------------- */
.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.container {
  width: 100%;
}
.img_responsive {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.text_center {
  text-align: center;
}
.display_none {
  display: none;
}
.annotation {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--dimgray);
}
@media (min-width: 769px) {
  .sp {display: none !important;}
  .container {
    max-width: 1048px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .pc {display: none !important;}
}
.font_zkgn {font-family: "Zen Kaku Gothic New", sans-serif;}
.font_zom {font-family: "Zen Old Mincho", serif;}

@media (min-width: 769px) {
  .tel_link {
    pointer-events: none;
  }
}

/* campaignBanner
---------------------------------------------------- */
.campaignBanner {
  background-color: var(--lemonyellow);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

/* CTA
---------------------------------------------------- */
.cta {
  background-color: var(--lighttan);
  padding: 40px 16px;
}
.cta_tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  hr {
    background-color: var(--black);
    width: 100%;
    height: 2px;
    margin-top: 8px;
  }
}
.cta_tel_text {
  display: flex;
  gap: 11px;
  align-items: center;
  div {
    font-size: 1.75rem;
    font-weight: 700;
    &::before,
    &::after {
      content: "";
      display: block;
      width: 1.788px;
      height: 28.444px;
      background-color: var(--black);
      position: absolute;
      top: calc(50% - 13px);
    }
    &::before {
      transform: rotate(156deg);
      left: -20px;
    }
    &::after {
      transform: rotate(-156deg);
      right: -20px;
    }
    strong {
      color: var(--red);
      font-weight: 700;
    }
  }
}
.cta_tel_text div strong {
  color: var(--red);
  font-weight: 700;
}
.cta_tel_text_sub {
  font-size: 1.5rem;
  font-weight: 700;
  span {
    font-size: 1rem;
    font-weight: 400;
  }
}
.cta_tel_link {
  display: flex;
  align-items: baseline;
}
.cta_tel_link_icon {
  fill: var(--black);
}
.cta_tel_num {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}
.cta_button {
  position: relative;
}
.cta_button svg {
  position: absolute;
  top: calc(50% - 7px);
  right: 6.28px;
}
.cta_web {
  display: flex;
}
.cta_web_button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(img/arrow_right_white.svg);
  background-repeat: no-repeat;
  background-position: center right 8px;
  background-color: var(--red);
  background-size: 24px;
  color: white;
  fill: white;
  font-weight: 700;
  transition: all 0.5s;
  letter-spacing: 0.03em;
}
@media (min-width: 769px) {
  .cta_inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background-color: white;
    border-radius: 16px;
    padding: 32px 0;
  }
  .cta_tel_text_sub {
    margin-top: 8px;
  }
  .cta_tel_link_icon {
    width: 96px;
  }
  .cta_web {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
  }
  .cta_web_button {
    width: 320px;
    height: 120px;
    border-radius: 5px;
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: center;
    padding: 16px 0;
  }
  .cta_web_button:hover {
    background-image: url(img/arrow_right_black.svg);
    background-color: var(--creamyellow);
    color: var(--black);
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .cta {
    padding: 16px;
  }
  .cta_inner {
    padding: 16px;
    gap: 16px;
    flex-direction: column;
  }
  .cta_web {
    width: 100%;
  }
  .cta_web_button {
    width: 100%;
    max-width: 560px;
    height: 72px;
    font-size: 1.2rem;
  }
  .cta_tel_num {
    font-size: 5rem;
  }
  .cta_tel_link_icon {
    width: 96px;
  }
  .cta_tel_text_sub {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .cta {
    padding: 16px;
    z-index: 5;
  }
  .cta_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .cta_tel {
    background-color: white;
    padding: 16px 0;
    border-radius: 10px;
    width: 100%;
    gap: 8px;
  }
  .cta_tel_link {
    order: 3;
    background-image: url(img/arrow_right_beige.svg);
    background-repeat: no-repeat;
    background-position: center right 8px;
    background-size: 16px;
    background-color: var(--brickred);
    align-items: center;
    width: calc(100% - 32px);
    justify-content: center;
    height: 16vw;
    border-radius: 4px;
  }
  .cta_tel_text {
    order: 2;
  }
  .cta_tel_text div {
    font-size: 1rem;
  }
  .cta_tel_link_icon {
    width: 9.6vw;
    fill: var(--creamyellow);
  }
  .cta_tel_num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--creamyellow);
  }
  .cta_tel_text_sub {
    font-size: 0.75rem;
    font-weight: 400;
    text-align: center;
    order: 3;
  }
  .cta_web {
    width: 100%;
  }
  .cta_web_button {
    width: 100%;
    height: 16vw;
    border-radius: 4px;
    font-size: 1.25rem;
  }
  .mv + .campaignBanner + .cta {display: none;}
}

/* CTA version2
---------------------------------------------------- */
.cta_v2 {
  background-color: var(--lightcream);
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 24px 16px;
}
@media (min-width: 769px) {
  .cta_v2 {
    background-image: url(img/cta_bg_pc.webp);
    background-position: center left calc(50% - 16px);
  }
  .cta_v2 .cta_inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background-color: transparent;
    padding-right: 160px;
  }
  .cta_v2 .cta_web {
    width: 100%;
    align-items: center;
  }
  .cta_v2 .cta_web_button {
    width: 100%;
    max-width: 480px;
    height: 72px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .cta_v2 .cta_tel_text div {
    font-size: 1.5rem;
  }
  .cta_v2 .cta_tel_num {}
  .cta .cta_tel_text_sub {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .cta_v2 {
    background-image: url(img/cta_bg_sp.webp);
    background-color: white;
    background-size: cover;
    background-position: top center;
    padding-top: 40vw;
  }
  .cta_v2 .cta_tel {
    margin-top: 0;
  }
}

/* Slick
---------------------------------------------------- */
.slick-prev, .slick-next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  top: 50%;
  z-index: 2;
}
.slick-prev:before, .slick-next:before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.slick-prev:before {
  background-image: url(img/arrow_left_circle_beige.svg);
}
.slick-next:before {
  background-image: url(img/arrow_right_circle_beige.svg);
}
@media (max-width: 768px) {
  .slick-prev {
    left: 2vw;
    z-index: 3;
  }
  .slick-next {
    right: 2vw;
    z-index: 3;
  }
  .slick-prev:before, .slick-next:before {
    opacity: 1;
    width: 100%;
  }
  .slick-slide {
    opacity: 0.7;
  }
  .slick-slide.slick-active {
    opacity: 1;
  }
}

/* --------------------------------------------------------------- */
/* Style */
/* --------------------------------------------------------------- */
/* Header
---------------------------------------------------- */
.header {
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  z-index: 2;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding-left: 16px;
  padding-right: 16px;
}
.header_logo {
  width: 120px;
}
.header_cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.header_cta_tel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.header_cta_tel_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  .top {
    font-weight: 600;
  }
  hr {
    background-color: var(--black);
    width: 100%;
    height: 1px;
  }
  .bottom {
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    span {
      font-size: 0.75rem;
    }
  }
}
.header_cta_tel_link {
  display: flex;
  align-items: baseline;
}
.header_cta_tel_link_icon {
  width: 72px;
  fill: var(--black);
}
.header_cta_tel_num {
  font-size: 3.5rem;
  font-weight: 800;
}
.header_cta_web {
  display: flex;
  gap: 8px;
}
.header_cta .cta_web_button {
  display: flex;
  width: 240px;
  height: 56px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  font-size: 1.25rem;

}
@media (min-width: 769px) and (max-width: 1024px) {
  .header_inner {
    padding-left: 16px;
    padding-right: 16px;
    height: 50px;
  }
  .header_logo {
    width: 80px;
  }
  .header_cta_text {
    font-size: 1.1875rem;
    font-weight: 500;
  }
  .header_cta_tel_link_icon {
    width: 48px;
  }  
  .header_cta_tel_text {
    font-size: 0.75rem;
    .top {}
    .bottom {
      font-size: 0.75rem;
      span {
        font-size: 0.625rem;
      }
    }
  }
  .header_cta_tel_num {
    font-size: 2.5rem;
    line-height: 1;
  }  
  .header_cta .cta_web_button {
    width: 200px;
    height: 32px;
    font-size: 0.75rem;
    background-size: 8px;
  }
}
@media (max-width: 768px) {
  .header_inner {
    height: 13.335vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .header_logo {
    width: 15.2vw;
  }
  .header_cta {
    gap: 4px;
  }
  .header_cta_text {
    font-size: 0.625rem;
    font-weight: 500;
  }
  .header_cta_tel_text {
    display: none;
  }
  .header_cta_tel_link {
    background-image: url(img/arrow_right_beige.svg);
    background-size: 2.4vw;
    background-repeat: no-repeat;
    background-position: center right 2px;
    background-color: var(--brickred);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 9.335vw;
    padding-left: 4vw;
    padding-right: 4vw;
    border-radius: 4px;
  }
  .header_cta_tel_link_icon {
    width: 6.4vw;
    fill: var(--creamyellow);
  }
  .header_cta_tel_num {
    color: var(--creamyellow);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    padding-bottom: 0;
  }
  .header_cta .cta_web_button {
    background-size: 2.4vw;
    background-position: center right 2px;
    width: 24vw;
    height: 9.335vw;
    font-size: 0.625rem;
    line-height: 1.25;
    text-align: center;
  }
}

/* MV
---------------------------------------------------- */
.mv {
  display: flex;
  background-image: url(img/00_versatile/mv_pc.webp);
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  height: 760px;
  justify-content: center;
  align-items: flex-end;
}
.mv_cta {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}
.mv_cta::after {
  content: "";
  display: block;
  background: linear-gradient(90deg, #FF9D16 0%, #E24310 100%);
  width: 100%;
  max-width: 398px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.40);
  z-index: 1;
  position: absolute;
  bottom: 0;
}
.mv_cta_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, #E24310 0%, #FF9D16 100%);
  color: white;
  font-weight: 500;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.40);
  font-size: 1.5rem;
  width: 100%;
  max-width: 400px;
  height: 72px;
  z-index: 2;
  top: -12px;
  .icon {
    fill: white;
    stroke: white;
    width: 16px;
  }
}
.mv_cta_button:hover {
  top: -8px;
  color: var(--creamyellow);
  .icon {
    fill: var(--creamyellow);
    stroke: var(--creamyellow);
  }
}
.mv_cta_button:active {
  top: -4px;
}
@media (max-width: 1024px) {
  .mv_cta::after {
    max-width: calc(320px - 2px);
    height: 56px;
  }
  .mv_cta_button {
    max-width: 320px;
    height: 56px;
    font-size: 1.25rem;
    top: -1.6vw;
  }
  .mv_cta_button:hover {
    top: -0.8vw;
  }
  .mv_cta_button:active {
    top: -0.4vw;
  }  
}
@media (min-width: 769px) and (max-width: 1024px) {
  .mv {
    background-image: url(img/00_versatile/mv_tb.webp);
    height: 600px;
  }
}
@media (max-width: 768px) {
  .mv {
    background-image: url(img/00_versatile/mv_sp.webp);
    background-size: cover;
    height: 160vw;
  }
  .mv_cta {
    margin-bottom: 8vw;
  }
  .mv_cta::after {
    max-width: calc(90vw - 2px);
    height: 12vw;
  }
  .mv_cta_button {
    height: 12vw;
    max-width: 90vw;
  }
}

/* sectionResult
---------------------------------------------------- */
.sectionResult {
  padding: 80px 0;
  @media (max-width: 768px) {
    padding: 40px 0;
  }
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    @media (min-width: 768px) and (max-width: 1024px) {
      align-items: center;
    }
    @media (max-width: 768px) {
      gap: 24px;
    }
    .title {
      font-size: 2.875rem;
      font-weight: 400;
      text-align: center;
      @media (max-width: 768px) {
        font-size: 1.5rem;
      }
    }
  }
}
.resultList {
  display: flex;
  justify-content: flex-start;
  gap: 16px 8px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 928px;
  @media (min-width: 768px) and (max-width: 1024px) {
    width: 100%;
    max-width: 616px;
    justify-content: flex-start;
  }
  .item {
    border: 1px solid var(--lighttan);
    width: 32%;
    min-width: 304px;
    @media (max-width: 768px) {
      margin-left: 32px;
      margin-right: 32px;
    }
    .img {
      .type {
        display: flex;
        align-items: center;
        gap: 8px;
        position: absolute;
        top: 16px;
        left: 16px;
        li {
          display: flex;
          width: 55px;
          height: 55px;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          border-radius: 50%;
          border: 1px solid var(--lighttan);
          background-color: white;
          color: var(--lighttan);
          font-size: 0.875rem;
          font-weight: 700;
          @media (max-width: 768px) {
            width: 16vw;
            height: 16vw;
          }
        }
      }
    }
    .detail {
      display: flex;
      flex-direction: column;
      .brand {
        background-color: var(--lighttan);
        color: white;
        font-weight: 700;
        display: inline-block;
        position: absolute;
        right: 0;
        padding: 8px;
        top: -20px;
        z-index: 2;
      }
      .name {
        font-size: 1.25rem;
        font-weight: 700;
        border-top: 1px solid var(--lighttan);
        text-align: center;
        line-height: 1.25;
        height: 96px;
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        padding-top: 16px;
        @media (max-width: 768px) {
          height: 32vw;
        }
      }
      .row {
        display: flex;
        border-top: 1px solid var(--lighttan);
        > div {
          flex: 1;
          text-align: center;
          padding: 8px 0;
        }
        .location {
          border-right: 1px solid var(--lighttan);
        }
        .date {}
      }
      .price {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--red);
        border-top: 1px solid var(--lighttan);
        height: 64px;
        @media (max-width: 768px) {
          height: 16vw;
        }
        .icon {
          width: 40px;
        }
        .num {
          color: white;
          font-size: 2.5rem;
          font-weight: 900;
        }
      }
    } 
  }
}

/* sectionAboutPurchase
---------------------------------------------------- */
.sectionAboutPurchase {
  background: none;
  padding: 80px 0;
}
.sectionAboutPurchase:after {
  content: "";
  position: absolute;
  display: block;
  background-image: url(img/sectionAboutPurchase_model_b.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 423.5px;
  height: 695px;
  bottom: 0;
  left: calc(50% - 520px);
}
.sectionAboutPurchase_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sectionAboutPurchase_title {
  font-size: 2.8125rem;
  font-weight: 900;
}
.sectionAboutPurchase_title strong {
  font-size: 4.375rem;
  font-weight: 900;
  color: var(--chestnut);
}
.sectionAboutPurchase_desc {
  font-size: 1.8125rem;
}
.sectionAboutPurchase_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sectionAboutPurchase_list_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.4375rem;
  border-bottom: 5px solid var(--lighttan);
  padding-bottom: 24px;
}
.sectionAboutPurchase_list_item strong {
  font-size: 2.6875rem;
  font-weight: 700;
}
@media (min-width: 769px) {
  .sectionAboutPurchase_list {
    margin-top: 56px;
    width: 640px;
    margin-left: 360px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .sectionAboutPurchase:after {
    width: 320px;
    height: 524px;
    left: calc(50% - 380px);
  }
  .sectionAboutPurchase_title {
    font-size: 2rem;
  }
  .sectionAboutPurchase_title strong {
    font-size: 3rem;
  }
  .sectionAboutPurchase_desc {
    font-size: 1rem;
  }
  .sectionAboutPurchase_list {
    margin-top: 48px;
    width: 440px;
    margin-left: 240px;
  }
  .sectionAboutPurchase_list_item {
    font-size: 1rem;
  }
  .sectionAboutPurchase_list_item strong {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .sectionAboutPurchase {
    overflow: hidden;
    padding-top: 24px;
    padding-bottom: 88vw;
  }
  .sectionAboutPurchase_inner {
    gap: 24px;
  }
  .sectionAboutPurchase_title {
    flex-direction: column;
    font-size: 2.1875rem;
    display: block;
    text-align: center;
  }
  .sectionAboutPurchase_title strong {
    font-size: 3.25rem;
    line-height: 1;
  }
  .sectionAboutPurchase_desc {
    font-size: 1.0625rem;
    text-align: center;
  }
  .sectionAboutPurchase_list_item {
    font-size: 0.875rem;
    border-bottom-width: 3px;
    padding-bottom: 16px;
  }
  .sectionAboutPurchase_list_item strong {
    font-size: 1.375rem;
  }
  .sectionAboutPurchase:before {
    left: 3%;
    bottom: -7%;
    top: auto;
    width: 50%;
    padding-top: 100%;
    height: auto;
  }
  .sectionAboutPurchase:after {
    width: 100%;
    left: auto;
    bottom: -36vw;
    right: 0;
    height: 0;
    background-position: center;
    padding-top: 120%;
  }
}

/* sectionPurchaseFlow
---------------------------------------------------- */
.sectionPurchaseFlow {
  background: linear-gradient(180deg, #F9F7F1 0%, #FFF 100%);
  padding: 80px 0;
}
.sectionPurchaseFlow_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
}
.sectionPurchaseFlow_img {}
.sectionPurchaseFlow_img:before {
  content: "";
  display: block;
  background-image: url(img/sectionPurchaseFlow_img_badge.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 264px;
  height: 282px;
  position: absolute;
  left: -80px;
  top: -70px;
  z-index: 2;
}
@media (max-width: 768px) {
  .sectionPurchaseFlow {
    padding: 24vw 0 40px;
  }
  .sectionPurchaseFlow_img {
    width: 72%;
  }
  .sectionPurchaseFlow_img:before {
    width: 63.534174%;
    height: auto;
    padding-top: 100%;
    left: -24%;
    top: -9%;
  }
}

/* sectionReputation
---------------------------------------------------- */
.sectionReputation {
  gap: 16px;
  background-image: url(img/sectionReputation_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom 10%;
  background-color: rgba(0, 0, 0, 0.65);
  background-blend-mode: darken;
  padding: 40px 0;
}
.sectionReputation_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  align-self: stretch;
}
.sectionReputation_title {
  color: white;
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 800;
}
.sectionReputation_img {
  width: 100%;
  max-width: 751px;
}
.sectionReputation_annotation {
  color: white;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 350;
  line-height: 25px;
}
@media (max-width: 768px) {
  .sectionReputation {
    gap: 16px;
  }
  .sectionReputation_inner {
    gap: 16px;
    padding-top: 0;
  }
  .sectionReputation_title {
    font-size: 1.125rem;
    line-height: 32px;
    font-weight: 400;
  }
  .sectionReputation_img {
    padding: 0 16px;
  }
  .sectionReputation_annotation {
    font-size: 0.6875rem;
    line-height: 1.7;
  }
}

/* sectionWorries
---------------------------------------------------- */
.sectionWorries {
  background-color: var(--ivorygray);
  padding-top: 40px;
  position: relative;
}
.sectionWorries::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 120px solid transparent;
  border-left: 120px solid transparent;
  border-top: 40px solid var(--ivorygray);
  border-bottom: 0;
  position: absolute;
  bottom: -40px;
  left: 48%;
  z-index: 1;
}
.sectionWorries_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;  
}
.sectionWorries_title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .sectionWorries {
    padding-bottom: 40px;
  }
  .sectionWorries::after {
    left: calc(50% - 120px);
  }
  .sectionWorries_inner {
    gap: 8px;
  }
  .sectionWorries_title {
    font-size: 2rem;
  }
}

/* sectionSolution
---------------------------------------------------- */
.sectionSolution {
  background-color: var(--lighttan);
  padding-top: 80px;
  padding-bottom: 40px;
}
.sectionSolution_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.sectionSolution_title {
  width: 100%;
  max-width: 800px;
}
.sectionSolutionList {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
}
.sectionSolutionListItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background-color: white;
  width: 100%;
  max-width: 296px;
  padding: 24px;
}
.sectionSolutionListItem_title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.sectionSolutionListItem_text {}
.sectionSolutionListItem_text strong {
  color: var(--brickred);
  font-weight: 700;
}
@media (max-width: 768px) {
  .sectionSolution_inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .sectionSolutionList {
    flex-direction: column;
    align-items: center;
  }
  .sectionSolutionListItem {
    max-width: 100%;
  }
}

/* sectionHighPriceReason
---------------------------------------------------- */
.sectionHighPriceReason {
  padding: 80px 0;
  display: flex;
}
.sectionHighPriceReason_inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
.sectionHighPriceReason_contents {
  order: 2;
  width: 100%;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sectionHighPriceReason_title {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}
.sectionHighPriceReason_title strong {
  font-size: 4rem;
  font-weight: 900;
  color: var(--chestnut);
  line-height: 1;
}
.sectionHighPriceReason_list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
}
.sectionHighPriceReason_list_item {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  background-image: url(img/sectionHighPriceReason_check_brown.svg);
  background-size: 67px;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-left: 70px;
}
.sectionHighPriceReason_list_item_text {
  display: flex;
  flex-direction: column;
  font-size: 1.375rem;
  padding-bottom: 10px;
}
.sectionHighPriceReason_list_item_text strong {
  display: flex;
  align-items: center;
  font-size: 2.5rem;
  color: var(--brickred);
  font-weight: 700;
  line-height: 1;
}
.sectionHighPriceReason_list_item_text strong span {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  font-size: 2.0625rem;
  font-weight: 600;
  color: white;
  background-color: var(--brickred);
  border-radius: 54px;
}
.sectionHighPriceReason_img {
  order: 1;
  max-width: 520px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .sectionHighPriceReason_inner {
    gap: 32px;
    justify-content: center;
  }
  .sectionHighPriceReason_contents {
    width: auto;
  }
  .sectionHighPriceReason_title {
    font-size: 1.5rem;
  }
  .sectionHighPriceReason_title strong {
    font-size: 3rem;
  }
  .sectionHighPriceReason_list_item_text {
    font-size: 1rem;
  }
  .sectionHighPriceReason_list_item_text strong {
    font-size: 2rem;
  }
  .sectionHighPriceReason_img {
    max-width: 40vw;
  }
}
@media (max-width: 768px) {
  .sectionHighPriceReason {
    padding: 30px 0;
  }
  .sectionHighPriceReason_inner {
    flex-direction: column-reverse;
    align-items: center;
    padding: 0 16px;
    gap: 16px;
  }
  .sectionHighPriceReason_contents {
    max-width: 100%;
    gap: 24px;
    display: flex;
    flex-direction: column;
  }
  .sectionHighPriceReason_title {
    font-size: 1.625rem;
    align-items: center;
  }
  .sectionHighPriceReason_title strong {
    font-size: 2.5625rem;
  }
  .sectionHighPriceReason_list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .sectionHighPriceReason_list_item {
    background-size: 9vw;
    padding-left: 11vw;
    width: 80vw;
  }
  .sectionHighPriceReason_list_item_text {
    font-size: 0.9375rem;
    padding-bottom: 6px;
  }
  .sectionHighPriceReason_list_item_text strong {
    font-size: 2rem;
  }
  .sectionHighPriceReason_list_item_text strong span {
    width: 9vw;
    height: 9vw;
    font-size: 1.25rem;
  }
}

/* sectionCustomersVoices
---------------------------------------------------- */
.sectionCustomersVoices {
  padding-bottom: 80px;
}
.sectionCustomersVoices_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
.sectionCustomersVoices_title {
  border-bottom: 2px solid black;
  padding: 0 8px 32px;
}
.sectionCustomersVoices_title:before,
.sectionCustomersVoices_title:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  border-top: 24px solid black;
  border-bottom: 0;
  position: absolute;
  left: calc(50% - 40px);
}
.sectionCustomersVoices_title:before {
  border-top: 24px solid black;
  bottom: -24px;
}
.sectionCustomersVoices_title:after {
  border-top: 24px solid white;
  bottom: -21.5px;
}
.sectionCustomersVoices_title span {
  font-size: 2.875rem;
}
.sectionCustomersVoices_list {
  width: 100%;
  .slick-prev {
    width: 48px;
    height: 48px;
    &::before {
      background-image: url(img/arrow_left_circle_beige.svg);
    }
  }
  .slick-next {
    width: 48px;
    height: 48px;
    &::before {
      background-image: url(img/arrow_right_circle_beige.svg);
    }
  }
}
.sectionCustomersVoices_list_item {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: var(--beige);
  padding: 40px;
  margin: 0 8px;
}
.sectionCustomersVoices_list_item_customer {
  display: flex;
  align-items: flex-end;
  flex-direction: row-reverse;
}
.sectionCustomersVoices_list_item_customer:before {
  content: "";
  width: 240px;
  height: 240px;
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.sectionCustomersVoices_list_item_customer.person_01::before {
  background-image: url(img/sectionCustomersVoices_person_01.svg);
}
.sectionCustomersVoices_list_item_customer.person_02::before {
  background-image: url(img/sectionCustomersVoices_person_02.svg);
}
.sectionCustomersVoices_list_item_customer.person_03::before {
  background-image: url(img/sectionCustomersVoices_person_03.svg);
}
.sectionCustomersVoices_list_item_customer.person_04::before {
  background-image: url(img/sectionCustomersVoices_person_04.svg);
}
.sectionCustomersVoices_list_item_customer.person_05::before {
  background-image: url(img/sectionCustomersVoices_person_05.svg);
}
.sectionCustomersVoices_list_item_customer.person_06::before {
  background-image: url(img/sectionCustomersVoices_person_06.svg);
}
.sectionCustomersVoices_list_item_customer.person_07::before {
  background-image: url(img/sectionCustomersVoices_person_07.svg);
}
.sectionCustomersVoices_list_item_customer.person_08::before {
  background-image: url(img/sectionCustomersVoices_person_08.svg);
}
.sectionCustomersVoices_list_item_customer.person_09::before {
  background-image: url(img/sectionCustomersVoices_person_09.svg);
}
.sectionCustomersVoices_list_item_customer.person_10::before {
  background-image: url(img/sectionCustomersVoices_person_10.svg);
}
.sectionCustomersVoices_list_item_customer .img {
  flex-shrink: 0;
}
.sectionCustomersVoices_list_item_customer .comment {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background-color: var(--warmgray);
  padding: 16px 40px;
  min-height: 320px;
}
.sectionCustomersVoices_list_item_customer .comment:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 32px solid var(--warmgray);
  border-right: 0;
  position: absolute;
  right: -30px;
  bottom: 32px;
}
.sectionCustomersVoices_list_item_customer .profile {
  position: absolute;
  background-color: white;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--black);
  border-radius: 50%;
  bottom: 208px;
  right: 48px;
  z-index: -1;
}
.sectionCustomersVoices_list_item_customer .profile_address {
  text-align: center;
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
  margin-bottom: 4px;
}
.sectionCustomersVoices_list_item_customer .profile_agesex {
  text-align: center;
}
.sectionCustomersVoices_list_item_customer .comment .title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--black);
}
.sectionCustomersVoices_list_item_customer .comment .text {
  color: var(--black);
}
.sectionCustomersVoices_list_item_appraiser .comment {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.sectionCustomersVoices_list_item_appraiser .comment .title {
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
  color: var(--black);
}
@media (min-width: 1201px) {
  .sectionCustomersVoices_list .slick-prev {
    left: calc(24vw - 24px);
  }
  .sectionCustomersVoices_list .slick-next {
    right: calc(24vw - 24px);
  }
}
@media (min-width: 1001px) and (max-width: 1200px) {
  .sectionCustomersVoices_list .slick-prev {
    left: calc(16vw - 24px);
  }
  .sectionCustomersVoices_list .slick-next {
    right: calc(16vw - 24px);
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .sectionCustomersVoices_list .slick-prev {
    left: calc(8vw - 24px);
  }
  .sectionCustomersVoices_list .slick-next {
    right: calc(8vw - 24px);
  }
}
@media (max-width: 768px) {
  .sectionCustomersVoices {
    padding: 40px 0;
  }
  .sectionCustomersVoices_inner {
    gap: 40px;
  }
  .sectionCustomersVoices_title span {
    font-size: 1.8125rem;
    text-align: center;
    display: inline-block;
  }  
  .sectionCustomersVoices_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .sectionCustomersVoices_list_item {
    padding: 0 16px 16px;
    margin: 0 16px;
    background-image: none;
  }  
  .sectionCustomersVoices_list_item_customer {
    flex-direction: column;
    align-items: flex-end;
  }
  .sectionCustomersVoices_list_item_customer::before {
    width: 64vw;
    height: 64vw;
    background-position: center right -8vw;
  }
  .sectionCustomersVoices_list_item_customer .comment {
    min-height: auto;
    padding: 24px;
  }
  .sectionCustomersVoices_list_item_customer .comment:before {
    top: -40px;
    transform: rotate(270deg);
    right: 24vw;
  }
  .sectionCustomersVoices_list_item_customer .profile {
    left: 4vw;
    top: 16vw;
    right: auto;
    width: 32vw;
    height: 32vw;
  }
  .sectionCustomersVoices_list_item_customer .comment .title {
    font-size: 1.25rem;
  }
}

/* sectionPeaceOfMind
---------------------------------------------------- */
.sectionPeaceOfMind {
  padding-bottom: 80px;
  overflow: hidden;
}
.sectionPeaceOfMind:before {
  content: "";
  background-image: url(img/sectionPeaceOfMind_img.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 599.789px;
  height: 872.984px;
  position: absolute;
  bottom: -40px;
  right: calc(50% - 760px);
}
.sectionPeaceOfMind_inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.sectionPeaceOfMind_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3.75rem;
}
.sectionPeaceOfMind_title small {
  font-size: 2.1875rem;
}
.sectionPeaceOfMind_title strong {
  color: var(--lighttan);
}
.sectionPeaceOfMind_list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sectionPeaceOfMind_list_item {
  flex-shrink: 0;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10.5px;
  border-radius: 205px;
  box-shadow: 10px 10px 30px 0px #F5E5CE;
  width: 400px;
  height: 400px;
}
.sectionPeaceOfMind_list_item_title {
  display: flex;
  color: var(--lighttan);
  flex-direction: column;
  align-items: center;
  font-size: 2.625rem;
}
.sectionPeaceOfMind_list_item_title span {
  border-bottom: 2px solid var(--lighttan);
  font-weight: 900;
}
.sectionPeaceOfMind_list_item_text {
  font-size: 1.5rem;
  text-align: center;
}
@media (min-width: 769px) {
  .sectionPeaceOfMind_list_item:nth-of-type(n + 3) {
    margin-top: -32px;
  }
  .sectionPeaceOfMind_list_item:nth-of-type(2n) {
    margin-left: -32px;
  }
  .sectionPeaceOfMind_list_item:nth-of-type(3) {
    margin-left: 60px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .sectionPeaceOfMind:before {
    width: 440px;
    height: 640px;
    right: calc(50% - 560px);
  }
  .sectionPeaceOfMind_title {
    font-size: 3rem;
  }
  .sectionPeaceOfMind_list_item_title {
    font-size: 2rem;
  }
  .sectionPeaceOfMind_list_item_text {
    font-size: 1rem;
  }
  .sectionPeaceOfMind_list_item {
    width: 320px;
    height: 320px;
  }
}
@media (max-width: 768px) {
  .sectionPeaceOfMind {
    padding-bottom: 40vw;
  }
  .sectionPeaceOfMind_inner {
    gap: 80px;
  }
  .sectionPeaceOfMind_title {
    font-size: 1.4375rem;
  }
  .sectionPeaceOfMind_title small {
    font-size: 1.4375rem;
  }
  .sectionPeaceOfMind_title span {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sectionPeaceOfMind_title strong {
    font-size: 2.625rem;
  }
  .sectionPeaceOfMind_list {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .sectionPeaceOfMind_list:before {
    content: "";
    display: block;
    width: 2px;
    height: 74.5px;
    background-color: var(--lighttan);
    position: absolute;
    top: -40px;
    left: calc(50% - 1px);
    z-index: 2;
  }
  .sectionPeaceOfMind_list_item {
    display: flex;
    width: 72vw;
    height: 72vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-top: -7vw;
  }
  .sectionPeaceOfMind_list_item:first-child {
    margin-top: 0;
  }
  .sectionPeaceOfMind_list_item:nth-of-type(even) {
    left: -8%;
  }
  .sectionPeaceOfMind_list_item:nth-of-type(odd) {
    right: -8%;
  }
  .sectionPeaceOfMind_list_item_title {
    font-size: 1.6875rem;
  }
  .sectionPeaceOfMind_list_item_text {
    font-size: 0.875rem;
  }
  .sectionPeaceOfMind:before {
    background-position: bottom center;
    padding-top: 125.548387%;
    width: 64%;
    height: auto;
    bottom: -32vw;
    right: 0vw;
    transform: rotate(0deg);
    z-index: 2;
  }
  .sectionPeaceOfMind:after {
    content: "";
    background-image: url(img/cta_decoration_beige.svg);
    background-size: cover;
    width: 100%;
    padding-top: 30.666667%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
  }
}

/* sectionCategory
---------------------------------------------------- */
.sectionCategory {
  background-color: var(--ivorygray);
  padding: 80px 0;
  gap: 32px;
}
.sectionCategory_title {
  font-size: 2.875rem;
}
.sectionCategory_list {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  max-width: 864px;
}
.sectionCategory_list_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 160px;
}
.sectionCategory_list_item figcaption {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 72px;
  text-align: center;
  background-color: white;
  gap: 8px;
  padding: 8px;
  span {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--black);
    padding-bottom: 8px;
    &:last-child {
      padding-bottom: 0;
      border-bottom: none;
    }
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .sectionCategory_list {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .sectionCategory {
    padding: 40px 16px;
  }
  .sectionCategory_title {
    font-size: 1.8125rem;
    text-align: center;
  }
  .sectionCategory_list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
  }
  .sectionCategory_list_item {
    width: calc((100% - 8px) / 2);
    max-width: 100%;
  }
  .sectionCategory_list_item figcaption {
    padding: 16px;
  }
}

/* sectionBuyable
---------------------------------------------------- */
.sectionBuyable {
  padding: 80px 0 0;
  gap: 24px;
  @media (max-width: 768px) {
    padding: 40px 0 0;
  }
  .inner {
    display: flex;
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
    gap: 24px;
  }
}
.sectionBuyable_list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  @media (max-width: 768px) {
    gap: 8px;
  }
  .item {
    width: 100%;
    max-width: 160px;
    @media (max-width: 768px) {
      max-width: calc((100% - 8px) / 2);
    }
    .img {
      figcaption {
        background-color: var(--beige);
        display: flex;
        height: 100%;
        min-height: 72px;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 16px;
        @media (max-width: 768px) {
          height: 16vw;
        }
      }
    }
  }
}
.sectionBuyable_contents {
  background-image: url(img/sectionAssessable_model.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  padding: 40px 0 40px 240px;
  @media (max-width: 768px) {
    background-size: 62vw;
    background-position: left -4vw top;
    padding: 16px 16px 24px 36vw;
    margin: 0 -16px;
  }
}

/* sectionBrand
---------------------------------------------------- */
.sectionBrand {
  padding: 80px 0;
  background: linear-gradient(180deg, #FCFAF7 0%, #FAF8F3 100%);
  gap: 24px;
  @media (max-width: 768px) {
    padding: 40px 0;
  }
  .title {
    font-size: 3rem;
    @media (max-width: 768px) {
      font-size: 2rem;
    }
  }
  .note {
    font-size: 1.5rem;
    text-align: center;
    @media (max-width: 768px) {
      font-size: 1.25rem;
    }
  }
}
.sectionBrand_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  max-width: 784px;
  @media (max-width: 768px) {
    padding-left: 16px;
    padding-right: 16px;
  }
  .item {
    width: 100%;
    max-width: 256px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid var(--lighttan);
    text-align: center;
    padding: 16px;
    @media (max-width: 768px) {
      max-width: calc((100% - 8px) / 2);
    }
    .main {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--lighttan);
    }
  }
}

/* sectionMarketPrice
---------------------------------------------------- */
.sectionMarketPrice {
  background-color: var(--beige);
  padding: 80px 0;
}
.sectionMarketPrice_inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
}
.sectionMarketPrice_title {
  font-size: 2.875rem;
}
.sectionMarketPrice_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  max-width: 980px;
}
.sectionMarketPrice_list_item {
  width: 100%;
}
.sectionMarketPrice_list_item_title {
  display: flex;
  flex-direction: column;
  background-image: url(img/arrow_down_black.svg);
  background-repeat: no-repeat;
  background-position: center right 8px;
  align-items: flex-start;
  background-color: white;
  color: var(--black);
  font-size: 1.5rem;
  line-height: 1;
  gap: 8px;
  font-weight: 700;
  height: 96px;
  padding-left: 24px;
  cursor: pointer;
  justify-content: center;
}
.sectionMarketPrice_list_item_title small {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--lighttan);
}
.sectionMarketPrice_list_item_title.active {
  background-color: var(--lighttan);
  color: white;
  background-image: url(img/arrow_top_white.svg);
  small {
    color: rgba(243, 239, 227, 0.50);
  }
}
.sectionMarketPrice_list_item_data {
  display: none;
}
.sectionMarketPrice_list_item_data_inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sectionMarketPrice_brand_item {
  display: flex;
  flex-direction: column;
  background-color: white;
}
.sectionMarketPrice_brand_item_title {
  background-color: #E2DED0;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  padding: 8px 0;
}
.sectionMarketPrice_brand_item_list {
  display: flex;
  flex-direction: column;
}
.sectionMarketPrice_brand_item_list dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.sectionMarketPrice_brand_item_list dl dt {
  display: flex;
  background-color: var(--beige);
  font-weight: 500;
  width: 100%;
  padding: 7px 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.sectionMarketPrice_brand_item_list dl dd {
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
  color: #A03C30;
  font-size: 2rem;
  font-weight: 900;
}
.sectionMarketPrice_annotation {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 742px;
}
.sectionMarketPrice_annotation_title {
  font-size: 1.75rem;
  flex-shrink: 0;
}
.sectionMarketPrice_annotation_contents li {
  font-weight: 350;
}
@media (min-width: 769px) {
  .sectionMarketPrice_list_item {
    max-width: calc((100% - 16px) / 2);
  }
}
@media (max-width: 768px) {
  .sectionMarketPrice {
    padding: 40px 0;
  }
  .sectionMarketPrice_inner {
    gap: 24px;
  }
  .sectionMarketPrice_title {
    font-size: 1.8125rem;
  }
  .sectionMarketPrice_list {
    gap: 8px;
  }
  .sectionMarketPrice_list_item_title {
    height: 24vw;
    font-size: 1.5rem;
    background-size: 40px;
    padding-left: 16px;
  }
  .sectionMarketPrice_brand_item {}
  .sectionMarketPrice_brand_item_list dl dt {}
  .sectionMarketPrice_brand_item_list dl dd {
    width: auto;
  }
  .sectionMarketPrice_annotation {
    flex-direction: column;
    gap: 8px;
  }
  .sectionMarketPrice_annotation_title {
    font-size: 1.125rem;
  }
  .sectionMarketPrice_annotation_contents li {
    font-size: 0.75rem;
  }
}

/* sectionFAQ
---------------------------------------------------- */
.sectionFAQ {
  background-color: var(--beige);
  padding: 80px 0;
  gap: 40px;
}
.sectionFAQ_title {
  font-size: 2.875rem;
}
.sectionFAQ_title strong {}
.sectionFAQ_list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}
.sectionFAQ_list_item {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 24px 48px;
  background-color: white;
  font-size: 1rem;
}
.sectionFAQ_list_item .question {
  display: flex;
  border-bottom: 3px solid var(--ivory);
  align-items: center;
  gap: 16px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.sectionFAQ_list_item .answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.sectionFAQ_list_item .question .icon {
  font-size: 3.125rem;
  font-weight: 900;
  line-height: 1;
  color: var(--lighttan);
}
.sectionFAQ_list_item .answer .icon {
  font-size: 3.125rem;
  font-weight: 900;
  line-height: 1;
  color: var(--brickred);
}
.sectionFAQ_list_item .answer ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.sectionFAQ_list_item .answer ul li {
  border-left: 5px solid var(--lighttan);
  padding-left: 8px;
}
.sectionFAQ_list_item .answer ul li small {
  font-size: 0.875rem;
}
@media (min-width: 769px) {
  .sectionFAQ_list_item {
    width: calc((100% - 16px) / 2);
  }
}
@media (max-width: 768px) {
  .sectionFAQ {
    padding: 40px 0;
    gap: 24px;
  }
  .sectionFAQ_title {
    font-size: 1.8125rem;
  }
  .sectionFAQ_title strong {
    font-size: 3.75rem;
  }
  .sectionFAQ_list {
    padding: 0 16px;
    gap: 16px;
  }
  .sectionFAQ_list_item {
  }
}

/* sectionForm
---------------------------------------------------- */
.sectionForm {
  padding: 80px 0;
}
.sectionForm_title {
  background-color: var(--beige);
  color: var(--black);
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  padding: 30px 0;
}
.sectionForm_contents {
  background-color: var(--ivory);
}
.sectionForm_contents_item {
  width: 100%;
}
.sectionForm_contents_item_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 16px;
}
.wpcf7 {
  width: 100%;
  max-width: 640px;
}
.contactform {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.contactform_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contactform_item.agree label {
  text-align: center;
}
.contactform_item.agree label a {}
.contactform_item.agree label a .material-icons-outlined {
  font-size: 1rem;
}
.contactform_item_title {
  display: flex;
  gap: 8px;
  font-weight: 500;
}
.contactform_item_data {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.contactform_item_data span {
  display: block;
  width: 100%;
}
.contactform_item_data .annotation {
  font-size: 0.875rem;
}
.contactform_item_data input {
  background-color: white;
  padding: 16px;
  width: 100%;
}
.contactform_item_data input::placeholder,
.contactform_item_data textarea::placeholder {
  color: #ddd;
}
.contactform_item_data select {
  background-color: white;
  padding: 16px;
  width: 100%;
  color: var(--black);
}
.contactform_item_data textarea {
  background-color: white;
  padding: 16px;
  width: 100%;
  resize: vertical;
  height: 150px;
}
.contactform_item_title .require {
  background-color: var(--red);
  color: white;
  font-size: 0.875rem;
  padding: 4px 8px;
  display: inline-block;
  line-height: 1;
}
.contactform_item_data_file {
  width: 100%;
}
.btnarea {
  width: 100%;
  max-width: 560px;
}
.btnarea input {
  background-color: var(--red);
  color: white;
  width: 100%;
  padding: 16px;
  font-weight: 700;
}
.btnarea input:disabled {
  opacity: 0.7;
}
.sectionForm_contents_annotation {
  width: 100%;
  max-width: 640px;
  font-size: 0.875rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  strong {
    font-size: 1.25rem;
    font-weight: 700;
    @media (max-width: 768px) {
      display: block;
    }
  }
}
.clearbtn {
  display: none;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 16px;
}
.wpcf7-list-item input[type=checkbox] {
  transform: scale(1.5);
  margin-right: 10px;
  vertical-align: initial;
}
@media (max-width: 768px) {
  .sectionForm {
    padding: 40px 16px;
  }
  .sectionForm_title {
    font-size: 1.5625rem;
  }
  .sectionForm_contents {}
  .sectionForm_contents_item {}
  .sectionForm_contents_item_inner {
    padding-top: 40px;
  }
}

/* Footer
---------------------------------------------------- */
.footer {
  background-color: white;
  box-shadow: 0px -4px 10px 0px rgba(0, 0, 0, 0.10);
  padding: 40px 0 160px;
}
.footer_inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}
.footer_logo {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
.footer_logo img {
  width: 164px;
}
.footer_info {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.footer_info_item {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}
.footer_info_item_title {
  font-weight: 500;
}
.footer_info_item_contents {
  display: flex;
  gap: 9px;
  font-size: 0.875rem;
  color: #9FA0A0;
}
.copyright {
  font-size: 0.875rem;
}
@media (min-width: 769px) {
  .footer_info_item {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 8vw 0 40vw;
  }
  .footer_inner {
    flex-direction: column;
    align-items: center;
  }
  .footer_logo {
    align-items: end;
  }
  .footer_logo img {
    width: 139px;
  }
  .footer_info_item {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer_info_item_title {
    width: 100%;
    text-align: center;
  }
  .footer_info_item_contents {
    flex-direction: column;
    font-size: 0.875rem;
    text-align: center;
  }
}

/* stalking_cta
---------------------------------------------------- */
.stalking_cta {
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: 0.5s ease-out;
  z-index: -1;
}
.stalking_cta.fixed {
  opacity: 1;
  z-index: 10;
}
.stalking_cta_container {
  display: flex;
  background-color: var(--beige);
}
.stalking_cta_inner {}
.stalking_cta_tel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--black);
}
.stalking_cta_tel_inner {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.stalking_cta_tel_link {
  display: flex;
  align-items: baseline;
  .icon {
    fill: var(--black);
    width: 56px;
  }
  .num {
    font-size: 2.8125rem;
    font-weight: 900;
    line-height: 1;
    color: var(--black);
  }
}
.stalking_cta_tel .text {
  font-size: 0.75rem;
  font-weight: 900;
  text-align: right;
}
.stalking_cta_tel_copy {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--black);
  border-top: 1px solid var(--black);
}
.stalking_cta_tel_copy .strong {
  color: var(--red);
  font-size: 0.875rem;
  font-weight: 900;
}
.stalking_cta_button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 8px;
}
@media (min-width: 769px) {
  .stalking_cta {
    height: 100px;
    align-items: stretch;
    justify-content: flex-end;  
  }
  .stalking_cta_container {
    display: flex;
    align-items: stretch;
    background-color: var(--beige);
    border-radius: 15px 0 0 0;
  }
  .active .stalking_cta_container {
    background-color: #F1E8CE;
  }  
  .stalking_cta_inner {
    display: flex;
    align-items: center;
    padding: 8px 32px;
    gap: 16px;
  }  
  .stalking_cta_button {
    width: 280px;
    height: 70px;
  }
  .stalking_cta_text_sub {
    font-size: 1.125rem;
    text-align: center;
    width: 300px;
    color: var(--black);
    font-weight: 500;
  }
  .stalking_cta_text_sub .strong {
    font-weight: 700;
    color: var(--red);
  }
}
@media (max-width: 768px) {
  .stalking_cta_title {
    font-size: 1.125rem;
    font-weight: 900;
  }
  .stalking_cta_title .strong {
    color: var(--brickred);
    font-weight: 900;
  }
  .stalking_cta_title:before, .stalking_cta_title:after {
    content: "";
    display: block;
    width: 2px;
    height: 24px;
    background-color: var(--black);
    position: absolute;
    top: calc(50% - 10px);
  }
  .stalking_cta_title:before {
    transform: rotate(156deg);
    left: -16px;
  }
  .stalking_cta_title:after {
    transform: rotate(-156deg);
    right: -16px;
  }
  .stalking_cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--beige);
    padding: 8px;
    gap: 4px;
  }
  .stalking_cta.active {
    background-color: #F1E8CE;
  }
  .stalking_cta_container {
    width: 100%;
    flex-direction: row;
    align-items: stretch;
    gap: 4px;
  }
  .stalking_cta_inner {
    display: flex;
    width: 100%;
    gap: 4px;
  }
  .stalking_cta_button_wrapper {
    display: flex;
    width: 100%;
    gap: 4px;
  }
  .stalking_cta_button {
    font-size: 1rem;
    line-height: 1.2;
    height: 12vw;
    text-align: center;
    background-size: 3.2vw;
    background-repeat: no-repeat;
    background-position: right 1.6vw center;
    padding-right: 2.4vw;
    border-radius: 4px;
  }
  .stalking_cta_button_tel {
    width: 100%;
    background-color: var(--brickred);
    background-image: url(img/arrow_right_beige.svg);
    color: var(--creamyellow);
    gap: 4px;
    .icon {
      fill: var(--creamyellow);
      width: 7.2vw;
    }
    span {
      font-weight: 700;
    }
  }
  .stalking_cta_button_web {
    width: 100%;
    background-color: var(--red);
    background-image: url(img/arrow_right_white.svg);
    color: white;
  }
}

/* Animation
---------------------------------------------------- */
.fadein.scrollin {
  transform: translate(0, 0);
}
.fadein--up {
  transform: translate(0,50px);
  transition: all 1s;
}
.fadein--right {
  transform: translate(100px,0);
  transition: all 1s;
}
.fadein--left {
  transform: translate(-100px,0);
  transition: all 1s;
}


/* sectionThanks
---------------------------------------------------- */
.sectionThanks {
  padding: 80px 0;
  margin-top: 100px;
  @media (max-width: 1024px) {
    margin-top: 50px;
  }
  @media (max-width: 768px) {
    margin-top: 13.335vw;
    padding: 40px 0;
  }
}
.sectionThanks_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.sectionThanks_inner.container {
  max-width: 800px;
  @media (max-width: 768px) {
    padding: 0 32px;
  }
}
.sectionThanks_title {
  font-size: 2.5rem;
  text-align: center;
  @media (max-width: 768px) {
  }
}
.sectionThanks_title span {
  border-bottom: 3px solid #f3910A;
  font-weight: 900;
}
.sectionThanks_text_strong {
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  @media (max-width: 768px) {
  }
}
.sectionThanks_text {
  font-size: 1.125rem;
  text-align: center;
  @media (max-width: 768px) {
    text-align: left;
  }
}
.sectionThanks_annotation {
  max-width: 560px;
  color: #9FA0A0;
  font-size: 0.75rem;
  line-height: 2;
  @media (max-width: 768px) {
    max-width: 100%;
  }
}

/* sectionMailForm
---------------------------------------------------- */
.sectionMailForm {
  display: flex;
  background-color: var(--beige);
  justify-content: center;
  padding-top: 100px;
  @media (max-width: 1024px) {
    padding-top: 50px;
  }
  @media (max-width: 768px) {
    padding-top: 13.335vw;
  }
}
.sectionMailForm_img {
  max-width: 1300px;
}
.sectionForm_desc {
  font-size: 1.375rem;
  margin: -40px 0 32px;
}
@media (max-width: 890px) {
  .sectionForm_desc {
    margin-top: 0;
  }  
}
