@charset "UTF-8";
/* ==========================================================

	デザインを等倍で再現するための倍率
    デザイン値 × var(--design-px)

========================================================== */
/* ================ 基準幅指定 ================*/
/* PC・タブレット：430px幅基準(過去に別サイズだったため残している) */
:root {
    --design-base-width: 430;
}
 /* スマホ：430px幅基準 */
@media (max-width: 768px) {
    :root {
        --design-base-width: 430;
    }
}

/* ================ px計算用関数 ================*/
 /* PC・タブレット：cqw(現行仕様では必要ないが別サイズになった場合に対応するため残している) */
:root {
    --design-px: calc(100cqw / var(--design-base-width));
}
 /* スマホ：vw */
@media (max-width: 768px) {
    :root {
        --design-px: calc(100vw / var(--design-base-width));
    }
}



/* ==========================================================

	メインコンテンツ

========================================================== */
.l-con {
  font-family: "Noto Sans JP", "Open Sans", "Inter", sans-serif;
  color: #333;
}

main { container-type: inline-size;}

main p { margin-bottom: 0;}

a:focus {
  outline: none;
  color: inherit;
}


/* -------------------------------------
        PC/SP非表示
-----------------------------------------*/
@media screen and (min-width: 768px) {
  .pc_non { display: none;}
}
@media screen and (max-width: 767px) {
  .sp_non { display: none;}
}


/* -------------------------------------
        bg
-----------------------------------------*/
.bg_beige { background: #F5F2E9;}


/* -------------------------------------
        オーバーレイのスタイル
-----------------------------------------*/
.overlay {
  position: fixed; /* 画面全体を覆う */
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px); /* ナビ部分を除外 */
  background-color: rgba(0, 0, 0, 0.5); /* 半透明のグレー */
  z-index: 94; /* 他の要素の上に表示 */
  display: flex;
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center; /* 垂直方向の中央揃え */
}
/* スマホ対応 */
@media (max-width: 768px) {
  .overlay {
    top: 50px; /* スマホ時のナビの高さに合わせる */
    height: calc(100vh - 50px); /* ナビの高さを引いたオーバーレイ */
  }
}
/* 画像のスタイル */
.overlay img {
  max-width: 80%;  /* 画面の80%までの幅に調整 */
  max-height: 80%; /* 画面の80%までの高さに調整 */
}


/* -------------------------------------
        l-section
-----------------------------------------*/
.l-section {
  font-size: calc(16 * var(--design-px));
  line-height: 1.8;
}

.l-section img { width: 100%;}

@media screen and (min-width: 768px) {
  .l-section img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* -------------------------------------
        l-bg
-----------------------------------------*/
.l-bgwrap {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 959px) {
  .l-bgwrap {
    position: absolute;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-bgwrap {
    display: none;
  }
}

.l-bg {
  position: relative;
  background: #f2f3f0;
  background-size: cover;
  height: 100vh;
  width: 100%;
}
.l-bg.fixed {
  position: fixed;
}

.l-bg_sideL,
.l-bg_sideR {
  display: flex; align-items: center; justify-content: center;
  width: calc((100% - 430px) / 2);
  position: fixed; bottom: 0;
}

.l-bg_sideL {
  background-image: url(../images/mv_pc_left.jpg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
}

.l-bg_sideR {
    left: calc(((100% - 430px) / 2) + 430px);
    background-image: url(../images/mv_pc_right.jpg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
  }

.l-bg_sideL .-_lp_name { display: none;}

@media (min-width: 1400px) {
  .l-bg_sideL,
  .l-bg_sideR {
    height: calc(100% - 70px);
  }
}

@media screen and (min-width: 1280px) {
  .l-bg {
    height: calc(100vh - 70px);
  }

  .l-bg_sideL .-_lp_name {
    display: block;
    width: 90%;
    max-width: 358px;
    transform: translateY(-51px);
  }
}

@media screen and (min-width: 1080px) and (max-width: 1279.98px) {
  .l-bg {
    height: calc(100vh - 60px);
  }

  .l-bg_sideL { width: 13%;}

  .l-bg_sideR {
    width: calc(100% - 430px - 13%);
    left: calc(13% + 430px);
  }
}

@media screen and (min-width: 860px) and (max-width: 1079.98px) {
  .l-bg_sideL { width: 8%;}

  .l-bg_sideR {
    width: calc(100% - 430px - 8%);
    left: calc(8% + 430px);
  }
}

@media screen and (max-width: 859.98px) {
  .l-bg_sideR .bl_menu { display: none;}
}

@media (min-width: 768px) and (max-width: 1399.98px) {
  .l-bg_sideL,
  .l-bg_sideR {
    height: calc(100% - 60px);
  }
}

@media screen and (max-width: 767.98px) {
  .l-bg_sideL,
  .l-bg_sideR { display: none;}
}


/* -------------------------------------
        l-content
-----------------------------------------*/
@media screen and (max-width: 860px) {
  .l-content-wrap {
    position: relative;
    width: 100%;
    z-index: 10;
  }
}

.l-content {
  position: relative;
  width: 430px;
  background-color: #fff;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.20);
  margin: 0 auto;
  z-index: 90;
}

@media screen and (max-width: 1279.98px) {
  .l-content {
    margin-left: 13%;
  }
}
@media screen and (max-width: 1080.98px){
  .l-content {
    margin-left: 8%;
  }
}
@media screen and (max-width: 859.98px){
  .l-content {
    margin-left: auto;
  }
}
@media screen and (max-width: 767.98px) {
  .l-content {
    width: 100%;
    border: none;
  }
}

/* -------------------------------------
        l-footer
-----------------------------------------*/
.l-footer {
  position: relative;
  background-color: #fff;
  z-index: 10;
}
.l-footer .container {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}


/* -------------------------------------
        btn
-----------------------------------------*/
.btn_base {
  width: 100%;
  max-width: calc(342 * var(--design-px));
  height: calc(70 * var(--design-px));
  padding-right: calc(40 * var(--design-px)); padding-left: calc(40 * var(--design-px));
  display: flex;
  justify-content: center; align-items: center;
  border-radius: calc(4 * var(--design-px));
  background: linear-gradient(192deg, #F8334A 16.34%, #A63341 95.78%);
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  transition: all 0.3s;
  font-size: calc(15 * var(--design-px));
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  text-align: center;
}

.btn_base:hover {
  color: #fff;
  text-decoration: none;
  background: linear-gradient(192deg, #F95C6E 16.34%, #B85C67 95.78%);
  box-shadow: none;
  transform: scale(1.04, 1.04);
}

.btn_base::after {
  content: '';
  display: block;
  width: 8px; height: 13px;
  background: url(../images/ico_arrow_white.svg) no-repeat;
  background-size: cover;
  position: absolute; right: 5.4%; top: 50%;
  transform: translateY(-50%);
}

.btn_base:focus { color: #fff;}




/* -------------------------------------
        bl_menu
-----------------------------------------*/
.bl_menu {
  width: 90%; max-width: 342px;
  border-radius: 10px;
  transform: translateY(-100px);
}

.bl_menu .btn_base {
  max-width: 342px; height: 70px;
  font-size: 15px;
  padding-right: 40px; padding-left: 40px;
  margin-top: 14px;
  border-radius: 4px;
}



/* -------------------------------------
        cta_modelhouse
-----------------------------------------*/
.cta_modelhouse {
  background: #EB3A3A;
  display: flex;
  padding-top: 24px;
  flex-direction: column;
  align-items: center;
}

.cta_modelhouse .__contens {
  margin-top: 10px;
}



/* -------------------------------------
        p-autumn
-----------------------------------------*/
.p-autumn {
  font-family: "Notosans_subset", sans-serif;
  font-weight: 400;
  color: #333;
}
.p-autumn a {
  color: inherit;
}
.p-autumn img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}
.p-autumn .l-inner {
  max-width: 560px;
  padding: 0 12px;
  margin: 0 auto;
}
.p-autumn button {
  border: none;
}
.p-autumn button:focus {
  outline: none;
}






/* ==========================================================

	各section

========================================================== */
.sec-inr_contents {
  width: calc(366 * var(--design-px));
  margin-right: auto; margin-left: auto;
}


/* -------------------------------------
        p-benefit
-----------------------------------------*/
.p-benefit {
  padding-top: calc(22 * var(--design-px)); padding-bottom: calc(15 * var(--design-px));
  background: url(../images/bg_benefit.jpg) no-repeat center top;
  background-size: cover;
  display: flex;
  flex-direction: column; justify-content: flex-start; align-items: center;
  color: #804200;
}

.p-benefit .btn_base {
  margin-top: calc(16 * var(--design-px));
}

.p-benefit .__note {
  width: calc(382 * var(--design-px));
  font-size: calc(12 * var(--design-px));
  font-weight: 400;
  line-height: 1.4;
  margin-top: calc(8 * var(--design-px));
}

.p-benefit .__note p { margin-bottom: 0;}


/* ===== .p-benefit_note =====*/
.p-benefit_note {
  padding: calc(24 * var(--design-px)) calc(32 * var(--design-px)) calc(40 * var(--design-px));
  font-size: calc(12 * var(--design-px));
  line-height: 2.0;
}



/* -------------------------------------
        p-plan
-----------------------------------------*/
.p-plan .-_block {
  margin-bottom: calc(24 * var(--design-px));
}

.p-plan .-__ttl_plan {
  margin-bottom: calc(38 * var(--design-px));
}

.p-plan .-__ttl_price {
  background: #D6BA66;
  color: #fff;
  display: flex;
  justify-content: center; align-items: center;
  width: calc(350 * var(--design-px)); height: calc(32 * var(--design-px));
  margin-right: auto; margin-left: auto;
  border-radius: calc(1px / 0);
  font-size: calc(16 * var(--design-px));
  font-weight: 700;
  margin-top: calc(26 * var(--design-px)); margin-bottom: calc(16 * var(--design-px));
}

.p-plan .__image-note {
  font-size: calc(12 * var(--design-px));
  text-align: center;
}

.p-plan .__value {
  margin-top: calc(8 * var(--design-px)); margin-bottom: calc(24 * var(--design-px));
}

.p-plan .__note {
  font-size: calc(12 * var(--design-px));
  line-height: 1.8;
}

.p-plan .__contact {
  width: calc(397 * var(--design-px));
  margin-top: calc(24 * var(--design-px)); margin-right: auto; margin-left: auto;
}



/* -------------------------------------
        p-appeal
-----------------------------------------*/
/* ===== .p-performance =====*/
.p-performance { padding-top: calc(26 * var(--design-px));}

.p-performance .__ttl {
  width: calc(343 * var(--design-px));
  margin: calc(24 * var(--design-px)) auto;
}

.p-performance .-_block {
  margin-bottom: calc(40 * var(--design-px));
}

.p-performance .-_block img {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}

.p-performance .-__text {
  width: calc(350 * var(--design-px));
  margin-top: calc(16 * var(--design-px)); margin-right: auto; margin-left: auto;
  font-size: calc(15 * var(--design-px));
}


/* ===== .p-warranty =====*/
.p-warranty {
  padding-top: calc(16 * var(--design-px)); padding-bottom: calc(40 * var(--design-px));
}

.p-warranty .__ttl {
  width: calc(343 * var(--design-px));
  margin-right: auto; margin-left: auto; margin-bottom: calc(24 * var(--design-px));
}



/* -------------------------------------
        p-choice
-----------------------------------------*/
.p-choice {
  padding-top: calc(40 * var(--design-px)); padding-bottom: calc(40 * var(--design-px));
}

.p-choice .__ttl {
  margin-bottom: calc(24 * var(--design-px));
}


/* -------------------------------------
        p-customize
-----------------------------------------*/
.p-customize {
  padding-top: calc(40 * var(--design-px));
}

.p-customize .-_box {
  padding: calc(24 * var(--design-px));
  border-radius: 4px;
  background: #FFF;
  margin-top: calc(24 * var(--design-px)); margin-bottom: calc(24 * var(--design-px));
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.p-customize .-_box .-__ttl {
  margin-top: calc(8 * var(--design-px));
  color: #C90017;
  font-size: calc(23 * var(--design-px));
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.15px;
  text-align: center;
}

.p-customize .-_box p {
  font-size: calc(15 * var(--design-px));
}

.p-customize .-_contact {
  color: #804200;
  text-align: center;
  font-size: calc(18 * var(--design-px));
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.44px;
  margin-top: calc(24 * var(--design-px)); margin-bottom: calc(24 * var(--design-px));
}

.p-customize .-_note {
  font-size: calc(12 * var(--design-px));
  margin-bottom: calc(24 * var(--design-px));
}



/* -------------------------------------
        スライダー
-----------------------------------------*/
.js_sliders { position: relative;}

.js_sliders .-_slider {
  position: relative; z-index: 10;
  width: calc(83.9% + 10px);
  overflow: hidden;
  margin: calc(20 * var(--design-px)) auto calc(10 * var(--design-px));
}

.js_sliders .-__slides {
  display: flex;
  transition: transform 0.5s ease;
  touch-action: pan-y;
}

.js_sliders .slide {
  width: calc(100% - 10px);
  margin: 0 5px;
  flex-shrink: 0;
  box-sizing: border-box;
  user-select: none;
  cursor: pointer;
}

.js_sliders .slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.js_sliders .-_controls {
  position: absolute; bottom: 0; left: 8.05%;
  z-index: 5;
  width: calc(83.9% + 10px);
  display: flex;
  flex-wrap: wrap; justify-content: space-between; align-items: center;
}

.js_sliders .-_indicators {
  text-align: center;
  margin-top: calc(6 * var(--design-px));
  padding-bottom: calc(6 * var(--design-px));
}

.js_sliders .indicator {
  display: inline-block;
  position: relative; z-index: 5;
  width: calc(12 * var(--design-px));
  height: calc(12 * var(--design-px));
  margin: 0 calc(10 * var(--design-px));
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.js_sliders .indicator.active {
  background-color: #E3001A;
}

.js_sliders button {
  cursor: pointer;
  border: none;
  outline: none;
  width: calc(40 * var(--design-px)); height: calc(40 * var(--design-px));
  background: rgba(111, 60, 0, 1);
  border-radius: 50%;
  display: flex;
  justify-content: center; align-items: center;
  transition: all 0.3s;
}

.js_sliders button:hover {
  opacity: 0.8;
}

.js_sliders button img {
  width: calc(8 * var(--design-px)); height: calc(12 * var(--design-px));
}

.js_sliders button.prev img { transform: scaleX(-1);}






/* ==========================================================

	footer

========================================================== */
.footer_note {
  border-top: 1px solid #9C9C9C;
  padding: calc(40 * var(--design-px)) calc(32 * var(--design-px)) calc(2 * var(--design-px));
  font-size: calc(12 * var(--design-px));
  line-height: 1.8;
}

