@charset "UTF-8";
/* -------------------------------------
    設定
-----------------------------------------*/
/* FontFamily */
/* font-weight */
.l-con { font-family: "Noto Sans JP", "Open Sans", "Inter", sans-serif;}

/* -------------------------------------
        l-section
-----------------------------------------*/
@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: url(../images/common/mv-pc.jpg) center center;
  background-size: auto 100%;
  height: 100vh;
  width: 100%;
}
.l-bg.fixed {
  position: fixed;
}

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

.l-bg_sideL {
  background: url(../images/common/mv-pc_left.jpg) left bottom no-repeat;
  background-size: cover;
}

.l-bg_sideR {
    background: url(../images/common/mv-pc_right.jpg) right bottom no-repeat;
    background-size: cover;
    left: calc(((100% - (454px + 12px + 12px)) / 2) + (454px + 12px + 12px));
  }

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


@media screen and (min-width: 1280px) {
  .l-bg_sideL .-_lp_name {
    display: block;
    width: 90%;
    max-width: 430px;
    transform: translateY(-68px);
  }
}

@media screen and (min-width: 1080px) and (max-width: 1279.98px) {
  .l-bg_sideL { width: 13%;}

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

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

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

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

@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: 478px;
  background-color: #fff;
  margin: 0 auto;
  border-left: 12px solid #EB3A3A;
  border-right: 12px solid #EB3A3A;
  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: 342px;
  height: 80px;
  padding: 0 36px 0 30px;
  display: flex;
  justify-content: center; align-items: center;
  gap: 2px;
  border-radius: 10px;
  background: #E3001A;
  box-shadow: 2px 4px 0 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  transition: all 0.3s;
  font-family: "Zen Kaku Gothic New";
  font-size: 21px;
  font-weight: 700;
  position: relative;
  text-align: center;
}

.btn-base:hover {
  color: #fff;
  text-decoration: none;
  background: #F38989;
  box-shadow: none;
  transform: scale(1.04, 1.04);
}

.btn-base::after {
  content: '';
  display: block;
  width: 10px; height: 6px;
  transform: translateY(-50%) rotate(-90deg);
  background: url(../images/common/arrow_down_white.png) no-repeat;
  background-size: cover;
  position: absolute; right: 5.4%; top: 50%;
}

@media screen and (max-width: 767.98px) {
  .btn-base {
    font-size: calc(21 / 430 * 100vw);
  }
}

/* 白 */
.btn-base.--white {
  background: #fff;
  color: #E3001A;
}

.btn-base.--white::after {
  width: 6px; height: 10px;
  background: url(../images/common/arrow_left_red.png) no-repeat;
  background-size: cover;
  transform: translateY(-50%) rotate(0);
}

.btn-base.--white:hover {
  background: #EDB53E;
  color: #fff;
}

.btn-base.--white:hover::after {
  width: 10px; height: 6px;
  transform: translateY(-50%) rotate(-90deg);
  background: url(../images/common/arrow_down_white.png) no-repeat;
  background-size: cover;
}


/* 角丸 */
.btn_semicircle {
  border-radius: calc(1px / 0);
  border: 2px solid #EB3A3A;
  background: #FFF;
  color: #EB3A3A;
  display: flex;
  width: 300px;
  height: 56px;
  padding: 0 16px 0 40px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  transition: all 0.3s;
}

.btn_semicircle span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.btn_semicircle span:after {
  content: '';
  width: 6px; height: 10px;
  background: url(../images/common/arrow_left_red.png) no-repeat;
  background-size: cover;
  margin-top: 2px;
}

.btn_semicircle:hover {
  background: #EB3A3A;
  color: #fff;
  text-decoration: none;
  transform: scale(1.04, 1.04);
}

.btn_semicircle:hover span:after {
  background: url(../images/common/arrow_left_white.png) no-repeat;
  background-size: cover;
}


/* ボタン上テキスト */
.btn_on-text {
  display: flex;
  flex-direction: column; align-items: center;
  color: #EB3A3A;
}

.btn_on-text span {
  display: flex;
  justify-content: center; align-items: center;
  font-weight: 900;
  gap: 15px;
  font-size: 18px;
}

.btn_on-text span::before,
.btn_on-text span::after {
  content: '';
  width: 3px; height: 1.8em;
  background: #EB3A3A;
}

.btn_on-text span::before { transform: translateX(1px) rotate(-25deg);}
.btn_on-text span::after { transform: translateX(-1px) rotate(25deg);}


/* -------------------------------------
        bl_menu
-----------------------------------------*/
.bl_menu {
  width: 90%;
  max-width: 380px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border: 1px solid #d9d9d9;
  padding: 16px 16px 24px 16px;
  transform: translateY(-42px);
}

.bl_menu .-_ttl {
  font-family: "Zen Kaku Gothic New";
  font-weight: 900;
  font-size: 26px;
}

.bl_menu li {
  position: relative;
  border-bottom: 1px dotted #d9d9d9;
  font-weight: bold;
}

.bl_menu li a {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: 0.25s;
  padding: 12px 32px 12px 8px;
  font-size: 18px;
  color: #EB3A3A;
  transition: all 0.3s;
}

.bl_menu li a::after {
  content: '';
  width: 24px; height: 24px;
  border-radius: 50%;
  background-color: #595757;
  background-image: url(../images/common/arrow_down_white.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px 6px;
  position: absolute; top: 50%; right: 0;
  transform: translateY(-50%);
}

.bl_menu li a:hover { opacity: 0.8;}

.bl_menu .__img {
  height: 24px;
  width: auto;
  margin-bottom: 3px;
}

.bl_menu .__small { font-size: 12px;}

@media screen and (max-width: 767.98px) {
  .bl_menu li a {
    font-size: calc(18 / 420 * 100vw);
  }
}

/* メインコンテンツ内 */
.bl_mc-wrap {
  display: flex;
  justify-content: center; align-items: center;
  background: linear-gradient(180deg, #CF000E 0%, #EB3A3A 100%);
}

.bl_mc-wrap .bl_menu { transform: translateY(-32px);}


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

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


/* -------------------------------------
        c-cards
-----------------------------------------*/
.c-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px 12px;
}

/* -------------------------------------
        c-card
-----------------------------------------*/
.c-card {
  font-size: 16px;
}
.c-card:not(:first-child) {
  margin-top: 40px;
}
.c-card figure {
  margin-bottom: 0;
}
.c-card__text {
  line-height: 1.4;
  margin-top: 10px;
}
.c-card__link {
  text-align: right;
  margin-top: 16px;
}
.c-card__link a {
  display: inline-block;
  font-size: 16px;
  text-align: right;
  text-decoration: underline;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.c-card__link a:hover {
  opacity: 0.7;
}
.c-card__link::after {
  content: "";
  position: relative;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon/icon_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 2px;
}
@media screen and (max-width: 500px) {
  .c-card__link::after {
    width: 16px;
    height: 16px;
  }
}
.c-card p {
  margin-bottom: 0;
}


/* -------------------------------------
        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;
}

@media screen and (max-width: 959px) {
  .globalHeader .only_sp {
    display: block !important;
  }
}


/* -------------------------------------
        p-section
-----------------------------------------*/
.p-section__cv-btn {
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
@media screen and (max-width: 767px) {
  .p-section__cv-btn {
    padding: 0;
    margin: 12px auto 0;
  }
}
.p-section__cv-btn:hover {
  -webkit-transform: scale(1.04, 1.04);
          transform: scale(1.04, 1.04);
}
.p-section__cv-btn:hover::before {
  content: none;
}
.p-information {
  background-image: url(/campaign/winter202401/assets/images/common/information_ornament_t.png), url(/campaign/winter202401/assets/images/common/information_ornament_b.png), url(/campaign/winter202401/assets/images/common/information_bg.png);
  background-size: 255px 12px, 255px 12px, 100% auto;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center 22px, center bottom 22px, center bottom;
  background-color: #70220A;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column; justify-content: center; align-items: center;
  padding-top: 53px; padding-bottom: 56px;
  position: relative;
  font-family: 'Kosugi Maru', sans-serif;
}
.p-information::before,
.p-information::after {
  content: '';
  display: block;
  border-top: 1px solid #fff;
  width: calc(100% - 48px);
  position: absolute; left: 50%;
  transform: translateX(-50%);
}
.p-information::before {
  top: 14px;
}
.p-information::after {
  bottom: 14px;
}
.p-information .p-information__text01 {
  width: 130px;
  margin-bottom: 0;
}
.p-information .p-information__text02 {
  width: 250px;
  margin-bottom: 0;
}
.p-information .p-information__shop {
  font-size: 35px;
  margin-top: 12px; margin-bottom: 6px;
}
.p-section--01 {
  position: relative;
  background-color: #fff;
  padding-bottom: 40px;
  border-top: 12px solid #EB3A3A;
  border-bottom: 12px solid #EB3A3A;
}
.p-section--01 .p-sec__head h2 { margin-bottom: 0;}
.p-section--01 .p-section__content {
  padding-right: 32px; padding-left: 32px;
  margin-top: 21px;
}
.p-section--01 .btn_on-text { margin-top: 24px; margin-bottom: 8px;}
.p-section--01 .-_btn {
  display: flex;
  justify-content: center; align-items: center;
  margin-bottom: 40px;
}
.p-section--01 .more_box dt {
  color: #EB3A3A;
  margin-top: 8px; margin-bottom: 4px;
}
@media screen and (max-width: 767.98px) {
  .p-section--01 {
    border-left: 12px solid #EB3A3A;
    border-right: 12px solid #EB3A3A;
  }
}

.p-section--02 {
  padding: 0 0 0;
  background: #fff;
}
.p-section--02 .p-sec__content {
  margin-bottom: 28px;
}
.p-section--02 .-_btn {
  display: flex;
  justify-content: center; align-items: center;
}
.p-section--02 .-_btn .btn-base { max-width: 390px;}
.p-section--02 .more_box { margin: 32px;}
@media screen and (max-width: 767.98px) {
  .p-section--02 {
    border-left: 12px solid #EB3A3A;
    border-right: 12px solid #EB3A3A;
    padding-bottom: 1px;
  }
  .p-section--02 .-_btn .btn-base  {
    max-width: 84vw;
  }
}

.p-section--03 { border-top: 12px solid #EB3A3A;}
@media screen and (max-width: 767.98px) {
  .p-section--03 {
    border-left: 12px solid #EB3A3A;
    border-right: 12px solid #EB3A3A;
  }
}

.p-section--04 {
  background: #F8F7F3;
  border-top: 12px solid #EB3A3A;
}
.p-section--04 .p-sec-head { margin-bottom: 0;}
.p-section--04 .p-section__contents {
  padding-right: 16px; padding-bottom: 40px; padding-left: 16px;
  background: linear-gradient(180deg, #fdf9ec 0%, #fbefd8 100px);
}
.p-section--04 .c-card:not(:first-child) { margin-top: 64px;}
.p-section--04 .c-card .__contets {
  padding-right: 16px; padding-left: 16px;
}
.p-section--04 .c-card .__title {
  text-align: center;
  color: #A46B4D;
  font-size: 28px;
  font-weight: 900;
  margin-top: 12px; margin-bottom: 12px;
  line-height: 1.5;
}
.p-section--04 .c-card .__note {
  margin-top: 8px;
  font-size: 14px;
}

.p-section--05 {
  padding-top: 32px; padding-bottom: 56px;
}
.p-section--05 .p-section__content { padding-bottom: 10px;}
.p-section--05 .__block {
  padding-bottom: 32px;
}
.p-section--05 .__btn {
  display: flex;
  justify-content: center; align-items: center;
  margin-top: 15px;
}


/* -------------------------------------
        p-section--shops
-----------------------------------------*/
.p-section--shops {
  padding-right: 12px; padding-left: 12px;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.p-section--shops .p-sec__shop {
  background: #FBF8EE;
  padding: 32px 12px;
  border-radius: 12px;
  margin-top: 25px;
  margin-bottom: 15px;
}
.p-section--shops .p-sec__shop_ti {
  display: flex;
  justify-content: space-between; align-items: flex-start;
  margin-bottom: 25px;
}
.p-section--shops .p-sec__shop_ti_img {
  width: 160px; height: auto;
}
.p-section--shops .p-sec__shop_ti_text {
  flex: 1;
  margin-left: 13px;
  font-size: 11px;
}
.p-section--shops .p-sec__shop_ti_text p {
  margin-bottom: 0;
}
.p-section--shops .p-sec__shop_ti_text p span {
  font-weight: bold;
  color: #EC6D61;
}
.p-section--shops .p-sec__btn {
  display: flex;
  flex-wrap: wrap; justify-content: center; align-items: center;
}
.p-section--shops .p-sec__btn a {
  width: 98%;
  background: #8CC724;
  border: 3px solid #fff;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 3px 5px 8px rgba(0,0,0, 0.6);
  display: flex;
  flex-wrap: wrap; justify-content: center; align-items: center;
  padding-top: 15px; padding-bottom: 15px;
  position: relative;
  text-align: center;
}
.p-section--shops .p-sec__btn a::after {
  content: '';
  width: 10px; height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  position: absolute; right: 10px; top: calc(50% - 3px);
  transform: rotate(45deg);
}
@media (min-width: 1024px) {
  .p-section--shops .p-sec__btn a {
    transition: all 0.3s;
    font-size: 18px;
  }
  .p-section--shops .p-sec__btn a:hover {
    transform: scale(1.02);
    text-decoration: none;
  }
}

/* -------------------------------------
      p-application
-----------------------------------------*/
.p-application {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 5px;
  font-size: 16px;
  overflow: hidden;
}
@media screen and (max-width: 500px) {
  .p-application {
    font-size: 12px;
  }
}
.p-application__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background-color: #EDB53E;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: 24px 0 8px;
}
@media screen and (max-width: 500px) {
  .p-application__head {
    font-size: 12px;
    height: 30px;
  }
}
.p-application__head img {
  display: inline-block;
  width: 8px;
  margin-left: 6px;
}
.p-application__inner {
  display: none;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 30px 20px;
}
@media screen and (max-width: 767px) {
  .p-application__inner {
    padding: 15px;
  }
}
.p-application__inner.is-open {
  display: block;
}
.p-application__title {
  color: #EC6D61;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 500px) {
  .p-application__title {
    font-size: 12px;
  }
}
.p-application__item:not(:first-child) {
  margin-top: 30px;
}
.p-application li {
  font-size: 16px;
  line-height: 1.58;
}
@media screen and (max-width: 500px) {
  .p-application li {
    font-size: 12px;
  }
}
.p-application li::before {
  content: "";
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #FFA29A;
  background-color: #EC6D61;
  margin-right: 2px;
}
@media screen and (max-width: 767px) {
  .p-application li::before {
    width: 10px;
    height: 10px;
  }
}
.p-application p {
  font-size: 16px;
}
@media screen and (max-width: 500px) {
  .p-application p {
    font-size: 12px;
  }
}
.p-application a {
  text-decoration: underline;
  color: #1991F7;
}


/* -------------------------------------
        スライダー
-----------------------------------------*/
@media (min-width: 1024px) {
  .swiper-custom .swiper-slide {
    width: 200px;
  }

  .swiper-custom .card .card-info {
    text-align: left;
    padding: 10px;
    line-height: 1;
  }

  .swiper-custom .card .card-info .card-text {
    font-size: 12px;
  }

  .swiper-custom .card .card-info .card-title {
    font-size: 14px;
  }

  .swiper-button-next,
  .swiper-button-prev{
    width: 18px; height: 30px;
    background-size: 18px 30px;
  }

  .swiper-custom .swiper-button-next { right: 10px;}
  .swiper-custom .swiper-button-prev { left: 10px;}
}


/* -------------------------------------
        more_box
-----------------------------------------*/
.more_box { position: relative;}

.more_contents {
	height: 130px;
	overflow: hidden;
}

.more_contents section:last-child { margin-bottom: 60px;}

.show_more {
  padding-top: 78px;
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 40px;
  text-align: center;
  background: linear-gradient(180deg, rgb(255, 255, 255, 0.2) 0%, rgb(255, 255, 255, 1) 40%);
  cursor: pointer;
  transition: bottom 0.2s;
}

.show_more.active {
  background: linear-gradient(180deg, rgb(255, 255, 255, 0) 0%, rgb(255, 255, 255, 0.2) 30%, rgb(255, 255, 255, 1) 40%);
}

.show_more span {
  width: 30px; height: 30px;
  border-radius: 50%;
  background-color: #EDB53E;
  background-image: url(../images/common/arrow_down_white.png);
  background-position: center 55%;
  background-repeat: no-repeat;
  background-size: 12px 7px;
  display: flex;
  justify-content: center; align-items: center;
  position: absolute; bottom: 5px; left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}

.show_more.active span {
  transform: translateX(-50%) rotate(180deg);
  transition: all 0.3s;
}

.show_more::before {
  content: '';
  position: absolute;
  bottom: 19px; left: 0;
  border-top: 1px solid #000;
  width: calc((100% - (40px + 16px * 2)) / 2);
}

.show_more::after {
  content: '';
  position: absolute;
  bottom: 19px; right: 0;
  border-top: 1px solid #000;
  width: calc((100% - (40px + 16px * 2)) / 2);
}


/* -------------------------------------
        footer ボタン文字色が黒くなるのを訂正
-----------------------------------------*/
.btnSet a {color: #fff;}


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


/* -------------------------------------
        パーツ
-----------------------------------------*/
.fw_500 { font-weight: 500;}