/*******************************************************************************
共通、使い回し
*******************************************************************************/

:root {
  --scrollbar: 0;
  --gutter-pc: 30px;
  --gutter-sp: 24px;
  --container-xl: 1128px;
  --container-lg: 936px;
  --container-md: 744px;
  --container-sm: 648px;
  --gutter-pc: 33px;
  --gutter-tb: 60px;
  --gutter-sp: 23.5px;
  --width-pc: 1920;
  --height-pc: 1080;
  --width-sp: 375;
  --height-sp: 667;
}

.younoie {
  padding-bottom: 100px;
}

.younoie img {
  display: block;
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.younoie .boxed-btn>span {
  margin-right: 10px;
}

.l-container {
  padding-right: var(--gutter-pc);
  padding-left: var(--gutter-pc);
  margin-left: auto;
  margin-right: auto;
}

.l-container.--md {
  width: min(100%, calc(760px + var(--gutter-pc) * 2));
}

.l-container.--md-lg {
  width: min(100%, calc(800px + var(--gutter-pc) * 2));
}

.l-container.--lg {
  width: min(100%, calc(1000px + var(--gutter-pc) * 2));
}

.u-border-top {
  border-top: 1px solid #ccc;
}

/* クリックエリアの拡張 */
.u-expand-clickable-area {
  position: relative;
}

.u-expand-clickable-area::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  bottom: -15px;
  left: -15px;
}

.pcD {
  display: block;
}

.spD {
  display: none;
}

/* 右下固定のボタン（資料席、モデルハウス来場予約）非表示 */
.ie21-header__sub {
  display: none;
}

/* SP */
@media screen and (max-width: 767px) {
  .younoie {
    padding-bottom: 60px;
  }

  .l-container {
    padding-right: var(--gutter-sp);
    padding-left: var(--gutter-sp);
    overflow: hidden;
  }

  .l-container.--md {
    width: min(100%, calc(760px + var(--gutter-sp) * 2));
  }

  .l-container.--md-lg {
    width: min(100%, calc(800px + var(--gutter-sp) * 2));
  }

  .l-container.--lg {
    width: min(100%, calc(1000px + var(--gutter-sp) * 2));
  }

  .u-width-100vw-sp {
    margin-left: calc(50% - (50vw - var(--scrollbar) / 2));
    margin-right: calc(50% - (50vw - var(--scrollbar) / 2));
  }

  .pcD {
    display: none;
  }

  .spD {
    display: block;
  }
}

/*******************************************************************************
コンテナー
*******************************************************************************/
.l-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter-pc);
  padding-right: var(--gutter-pc); }

.l-container.--xl {
  width: min(100%, calc(var(--container-xl) + (var(--gutter-pc) * 2))); }

.l-container.--lg {
  width: min(100%, calc(var(--container-lg) + (var(--gutter-pc) * 2))); }

.l-container.--md {
  width: min(100%, calc(var(--container-md) + (var(--gutter-pc) * 2))); }

.l-container .l-container {
  padding-left: 0;
  padding-right: 0; }

@media (max-width: 1128px) {
  .l-container {
    padding-left: var(--gutter-tb);
    padding-right: var(--gutter-tb); }
  .l-container.--xl,
  .l-container.--lg,
  .l-container.--md {
    width: min(100%, calc(648px + (var(--gutter-tb) * 2))); } }

@media (max-width: 648px) {
  .l-container {
    padding-left: var(--gutter-sp);
    padding-right: var(--gutter-sp); }
  .l-container.--xl,
  .l-container.--lg,
  .l-container.--md {
    width: min(100%, calc(328px + (var(--gutter-sp) * 2))); } }

.ie21-header__sub {
  display: none; }

  .c-header__title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center; }

@media (max-width: 648px) {
  .c-header__title {
    font-size: 2rem; } }

/*******************************************************************************
共通 - ボタン
*******************************************************************************/
.hstack-actions{
  margin-top: 80px;
}
.btn.--center {
  display: flex;
  justify-content: center;
}

.btn .boxed-btn {
  padding: 24px 19px;
  background: var(--c-white);
}

.btn .boxed-btn span {
  font-weight: normal;
  margin-right: 8px;
}

.boxed-btn {
  background: none;
  border: none;
  outline: none;
  appearance: none;
  padding: 0;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: inline-flex;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  padding: 19.5px 19px;
  transition: border-color 0.15s ease-out;
}
.boxed-btn.txtType{
  border: none;
  padding: 5px 19px;
}

.boxed-btn.--black {
  background-color: #3C3C43;
  color: #fff;
}

.boxed-btn::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='28' viewBox='0 0 16 28'%3e%3cpath d='M1.5 1l13 13-13 13' fill='none' stroke='black' stroke-width='2'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 8px;
  height: 14px;
}

.boxed-btn.--black::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(38%) hue-rotate(321deg) brightness(110%) contrast(110%);
}

.boxed-btn:hover {
  border-color: black;
}

.boxed-btn>span {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1;
  margin-right: 17.5px;
}

.boxed-btn::after {
  content: "";
  flex: 0 0 auto;
}

.boxed-btn::after {
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.boxed-btn:hover::after {
  transform: translateX(50%);
}






/*******************************************************************************
メインビジュアル
*******************************************************************************/
.kinoie2025{
  
}
.kinoie2025__MainV{
  padding-top: calc(100vh - 0px);
  position: relative;
}
.kinoie2025__MainV--Bg{
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0;
  z-index: -1;
}
.kinoie2025__MainV--Bg img{
  height: calc(100vh - 0px);
  width: 100%;
  object-fit: cover;
  vertical-align: bottom;
  object-position: bottom;
}
.kinoie2025__MainV--Logo{
  position: absolute;
  left: 40px;
  top: 40px;
  z-index: 2;
}
.kinoie2025__MainV--Title{
  position: absolute;
  right: 48px;
  top: 40px;
  z-index: 2;
}
.kinoie2025__MainV--More{
  position: sticky;
  width: 100%;
  bottom: 0;
  left: 0;
  
  z-index: 3;
}
.kinoie2025__MainV--More a{
  background: rgb(0 0 0 / 0.8);
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  display: block;
  text-align: center;
  padding: 24px;
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 650px) {
  .kinoie2025__MainV{
    padding-top: calc(100vh - 0px);
  }
  .kinoie2025__MainV--Bg{
    top: 0px;
  }
  
  .kinoie2025__MainV--Bg img{
    height: calc(100vh - 0px);
  }
  .kinoie2025__MainV--Logo{
    left: 20px;
    top: 20px;
  }
  .kinoie2025__MainV--Logo img{
    max-width: 124px;
  }
  .kinoie2025__MainV--Title{
    right: 20px;
    top: 20px;
  }
  .kinoie2025__MainV--Title img{
    max-width: 40px;
  }
}



/*******************************************************************************
木の家 新仕様
*******************************************************************************/

.kinoie2025__About{
  position: sticky;
  top: 0px;
  left: 0;
  width: 100%;
  padding: 40px 30px 400px 30px;
  background: rgb(0 0 0 / 0.3);
}
.kinoie2025__About--Area{
  display: flex;
  justify-content: space-between;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}
.kinoie2025__About--AreaRead{
  margin-top: 200px;
}
@media only screen and (max-width: 1060px) {
  .kinoie2025__About--Area{
    max-width: 740px;
  }
  .kinoie2025__About--AreaRead img{
    max-width: 560px;
  }
}
@media screen and (max-width: 767px) {
  .kinoie2025__About{
    top: 0px;
    padding: 40px 20px 400px 20px;
  }
  .kinoie2025__About h2{
    margin-right: 24px;
  }
  .kinoie2025__About h2 img{
    max-width: 40px;
  }
  .kinoie2025__About--Area{
    justify-content: flex-start;
  }
  .kinoie2025__About--AreaRead{
    margin-left: auto;
    margin-top: min(170px,10vh);
  }
  .kinoie2025__About--AreaRead img{
    max-width: 264px;
    width: 100%;
  }
}

/*******************************************************************************
素材
*******************************************************************************/
.kinoie2025__MSWrap{
  background: url(../img/sec_bg1.webp) no-repeat top center #665A52;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 2;
}

.kinoie2025__MidSt{
  padding-top: 120px;
  padding-bottom: 240px;
  
}
.kinoie2025__MidSt--Area{
    display: flex;
}
.kinoie2025__MidSt--AreaImg{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}
.kinoie2025__MidSt--AreaImg .sec1{
  /* max-width: 60%; */
}
.kinoie2025__MidSt--AreaImg .sec1 img{
  width: 100%;
  max-width: 948px;
}
.kinoie2025__MidSt--AreaImg .sec2{
  max-width: 30%;
}
.kinoie2025__MidSt--AreaImg .sec2 img{
  transform: translateY(50%);
  width: 100%;
}
.kinoie2025__MidSt--AreaRead{
  max-width: 1124px;
  width: 100%;
  margin: 0 auto;
  margin-top: 120px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1060px) {
  .kinoie2025__MidSt--AreaRead{
    max-width: 740px;
  }
  .kinoie2025__MidSt--AreaRead img{
    max-width: 480px;
  }
}
@media screen and (max-width: 767px) {
  .kinoie2025__MidSt{
    padding-top: 60px;
    padding-bottom: 80px;
    
  }
  .kinoie2025__MidSt--Area{
  }
  .kinoie2025__MidSt--AreaImg{
    display: block;
  }
  .kinoie2025__MidSt--AreaImg .sec1{
    margin-bottom: 20px;
    max-width: 100%;
  }
  .kinoie2025__MidSt--AreaImg .sec1 img{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
  }
  .kinoie2025__MidSt--AreaImg .sec2{
    max-width: 100%;
  }
  .kinoie2025__MidSt--AreaImg .sec2 img{
    transform: translateY(0%);
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
  }
  .kinoie2025__MidSt--AreaRead{
    max-width: calc(100% - 40px);
    margin-top: 40px;
  }
}


/*******************************************************************************
素材2
*******************************************************************************/

.kinoie2025__Sozai{
  position: relative;
  padding-bottom: 0px;
}
.kinoie2025__Sozai .stk{
  position: sticky;
  text-align: right;
  left: 0px;
  top: 0px;
}
.kinoie2025__Sozai .stk img{
  position: absolute;
  right: 48px;
  top: 0px;
}
.kinoie2025__Sozai--Area{
  max-width: 1124px;
  width: 100%;
  margin: 0 auto;
}
.kinoie2025__Sozai--AreaBox{
  display: flex;
  align-items: flex-end;
  padding-bottom: 120px;
}
.kinoie2025__Sozai--AreaBox .img{
  max-width: 456px;
  width: 100%;
  margin-right: 60px;
}
.kinoie2025__Sozai--AreaBox .img img{
  width: 100%;
  vertical-align: bottom;
}
.kinoie2025__Sozai--AreaBox .con{
  flex: 1 1 0;
  color: #fff;
  line-height: 1.8;
}
.kinoie2025__Sozai--AreaBox.s1{
  background: url(../img/s_i1.svg) no-repeat center top;
}
.kinoie2025__Sozai--AreaBox.s2{
  background: url(../img/s_i2.svg) no-repeat right center;
  background-size: 780px;
}
.kinoie2025__Sozai--AreaBox.s3{
  background: url(../img/s_i3.svg) no-repeat right top;
}
.kinoie2025__Sozai--AreaBox .con h3{
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}
.kinoie2025__Sozai--AreaBox .con p{
  font-size: 16px;
}
@media only screen and (max-width: 1060px) {
  .kinoie2025__Sozai--AreaBox .img{
    max-width: 45%;
  }
  .kinoie2025__Sozai--AreaBox{
    padding: 0 30px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .kinoie2025__Sozai{
    padding-bottom: 0px;
  }
  .kinoie2025__Sozai .stk{
    top: 0px;
  }
  .kinoie2025__Sozai .stk img{
    max-width: 30px;
    right: 24px;
    top: 0px;
  }
  .kinoie2025__Sozai--Area{
    padding-top: 150px;
  }
  .kinoie2025__Sozai--AreaBox{
    padding: 0;
    padding-bottom: 120px;
    margin-bottom: 0;
    display: block;
  }
  .kinoie2025__Sozai--AreaBox .img{
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .kinoie2025__Sozai--AreaBox .img img{
    width: 100%;
    vertical-align: bottom;
  }
  .kinoie2025__Sozai--AreaBox .con{
    padding: 0 70px 0 20px;
    color: #fff;
    line-height: 1.8;
    padding-bottom: 100px;
  }
  .kinoie2025__Sozai--AreaBox.s1{
    background: url(../img/s_i1.svg) no-repeat center bottom 60px;
    background-size: calc(100% - 40px);
  }
  .kinoie2025__Sozai--AreaBox.s2{
    background: url(../img/s_i2.svg) no-repeat center bottom 60px;
    background-size: calc(100% - 40px);
  }
  .kinoie2025__Sozai--AreaBox.s3{
    background: url(../img/s_i3.svg) no-repeat center bottom 60px;
    background-size: calc(100% - 40px);
  }
  .kinoie2025__Sozai--AreaBox .con h3{
    font-size: 20px;
  }
  .kinoie2025__Sozai--AreaBox .con p{
    font-size: 14px;
  }
}


/* 202512追加 */
.kinoie2025__column{
    padding: 0;
    padding-bottom: 100px;
    color: #fff;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.kinoie2025__column__heading{
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid #FFFFFF;
    width: fit-content;
}
.kinoie2025__column__anchor{
    width: 170px;
    margin-top: 40px;
    display: block;
}
.kinoie2025__column__button{
    padding: 25px;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    width: 170px;
    transition: opacity 0.2s;
}
.kinoie2025__column__button:hover{
    opacity: 0.6;
}
.kinoie2025__column__button a{
    width: 100%;
    height: 100%;
}
.kinoie2025__column__button__text{
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    display: inline-flex;
    gap: 8px;
}
.kinoie2025__column__button__icon{
    display: inline-block;
    height: 16px;
}


/*******************************************************************************
Philosophy
*******************************************************************************/

.kinoie2025__Philosophy{
  position: relative;
  z-index: 2;
  background: #fff;
  padding-bottom: 0px;
}
.kinoie2025__Philosophy .stk{
  position: sticky;
  text-align: right;
  left: 0px;
  top: 0px;
}
.kinoie2025__Philosophy .stk img{
  position: absolute;
  right: 48px;
  top: 0px;
}

.kinoie2025__Philosophy--Area{
  padding-top: 120px;
  max-width: 1124px;
  width: 100%;
  margin: 0 auto;
}

.kinoie2025__Philosophy--AreaBox{
  display: flex;
  padding-bottom: 120px;
}
.kinoie2025__Philosophy--AreaBox .img{
  max-width: 640px;
  width: 100%;
  margin-right: 40px;
}
.kinoie2025__Philosophy--AreaBox .img img{
  width: 100%;
}
.kinoie2025__Philosophy--AreaBox .con{
  flex: 1 1 0;
  display: flex;
  font-size: 16px;
  line-height: 1.8;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 1060px) {
  .kinoie2025__Philosophy--Area{
    padding: 0 30px;
    padding-top: 120px;
  }
  .kinoie2025__Philosophy--AreaBox .img{
    max-width: 45%;
    margin-right: 40px;
  }
  .kinoie2025__Philosophy--AreaBox .con h3{
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .kinoie2025__Philosophy{
    padding-bottom: 0px;
  }
  .kinoie2025__Philosophy .stk{
    top: 0px;
  }
  .kinoie2025__Philosophy .stk img{
    max-width: 32px;
    right: 24px;
    top: 0px;
  }

  .kinoie2025__Philosophy--Area{
    padding: 0 0px;
    padding-top: 460px;
  }

  .kinoie2025__Philosophy--AreaBox{
    display: block;
    margin-bottom: 0px;
    padding-bottom: 80px;
  }
  .kinoie2025__Philosophy--AreaBox .img{
    max-width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .kinoie2025__Philosophy--AreaBox .img img{
    width: 100%;
  }
  .kinoie2025__Philosophy--AreaBox .con{
    padding: 0 70px 0 20px;
    display: block;
    font-size: 14px;
  }
  
  .kinoie2025__Philosophy--AreaBox .con h3 img{
    height: 24px;
  }
  
}


.p-modelhouseW {
  box-shadow:0px -5px 5px rgb(0 0 0 / 0.1);
  position: relative;
  z-index: 2;
  background: #fff;
  padding-top: 120px;
  padding-bottom: 40px;
}

.p-modelhouseW__Area{
  display: flex;
  justify-content: space-between;
}
.p-modelhouseW__Box{
  font-size: 1.4rem;
  line-height: 1.8;
  width: min(calc(50% - 12px), 546px);
  margin: 40px auto 0;
}

.p-modelhouse-content__title {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  text-align: center;
  margin: 20px 0 10px 0;
}
.p-modelhouse-content__img {
  width: 100%;
}
.p-modelhouse-content__img img{
  width: 100%;
}
.p-modelhouse-content__list {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
  padding-top: 40px;
  font-size: 1.2rem;
  line-height: 1.6;
  width: max-content;
  margin: 0 auto;
  color: #9D9C9C;
}
.p-modelhouse-header__title {
  width: unquote("min(100%, 546px)");
  margin: auto;
}
.p-modelhouse-content__list li {
  position: relative;
  padding-left: 2em;
}
.p-modelhouse-content__list li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.p-modelhouseW__Bottom{
    background-image: linear-gradient(to right, #DEDEDE 2px, transparent 2px);
    background-size: 4px 2px;
    background-repeat: repeat-x;
    margin-top: 40px;
}
@media (max-width: 767px) {
  .p-modelhouseW__Area{
    display: block;
  }
  .p-modelhouseW__Box{
    margin: 40px auto 0;
    width: 100%;
  }
  .p-modelhouse-content__title {
    font-size: 1.4rem;
    text-align: left;
    margin: 10px 0 10px 0;
  }
  .p-modelhouse-content__list {
    width: 100%;
  }
  .p-modelhouse-header__title {
    width: unquote("min(100%, 229px)");
    margin-left: 0;
  }
  .p-modelhouse-content__list li {
    padding-left: 1.5em;
  }
}
















.themesec {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  background: #fff;
  padding: 0 30px 40px 30px;
  
 }
  @media (min-width: 768px) {
    .themesec {
      padding-bottom: 50px; }
  }
  .themesec.nonB {
    border-top: none; 
  }
  

  .nopaddingSideSP {
    padding: 0 0 100px 0; 
  }


.theme__lifestyle {
  padding: 0 0px 40px 0px; }
  .theme__lifestyle--wrap .title__themesec1 {
    padding: 0 30px 0px 30px; }
  .theme__lifestyle--wrapImg {
    margin-bottom: 40px; }
    .theme__lifestyle--wrapImg img {
      max-width: 100%;
      width: 100%; }
  .theme__lifestyle--wrapCon {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px 0px 30px; }
    .theme__lifestyle--wrapCon.nopadding {
      padding: 0; }
    .theme__lifestyle--wrapCon p {
      font-size: 1.4rem;
      line-height: 2.6rem;
      margin-bottom: 2.6rem; }
    .theme__lifestyle--wrapCon .btnWrap {
      text-align: center;
      margin: 26px auto 0px auto; }
    .theme__lifestyle--wrapCon .center__con {
      margin-top: 40px;
      text-align: center; }
    .theme__lifestyle--wrapCon .qTxt {
      text-align: center; }
      .theme__lifestyle--wrapCon .qTxt > p {
        font-size: 1.6rem;
        font-weight: bold;
        display: flex;
        line-height: 3rem;
        margin: 0 auto 1.5rem;
        text-align: left;
        width: 100%; }
        .theme__lifestyle--wrapCon .qTxt > p > span {
          font-size: 2.4rem; }
    .theme__lifestyle--wrapCon .ie21-footer__divider--bottom {
      margin-bottom: 30px; }
  .theme__lifestyle--wrapCon4Box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .theme__lifestyle--wrapCon4Box .wrapCon4Box {
      background: #fff;
      border-radius: 5px;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
      margin-top: 10px;
      position: relative;
      text-align: center;
      width: calc((100% / 2) - 5px); }
      .theme__lifestyle--wrapCon4Box .wrapCon4Box__items {
        font-size: 1.6rem;
        line-height: 2.6rem;
        padding: 25px 20px; }
      .theme__lifestyle--wrapCon4Box .wrapCon4Box__item:not(:last-child) {
        margin-bottom: 25px; }
      .theme__lifestyle--wrapCon4Box .wrapCon4Box__title {
        align-items: center;
        display: flex;
        font-size: 1.4rem;
        font-weight: bold;
        justify-content: center;
        line-height: 2rem;
        margin: auto;
        padding: 10px 10px 10px 0;
        position: relative; }
        .theme__lifestyle--wrapCon4Box .wrapCon4Box__title:after {
          background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='28' viewBox='0 0 16 28'%3e%3cpath d='M1.5 1l13 13-13 13' fill='none' stroke='black' stroke-width='2'/%3e%3c/svg%3e");
          background-size: 100%;
          content: "";
          height: 12px;
          position: absolute;
          right: -2px;
          top: 38%;
          width: 6px; }
      .theme__lifestyle--wrapCon4Box .wrapCon4Box .wrapCon4Box__img {
        display: flex;
        flex-direction: column;
        height: 100%; }
        .theme__lifestyle--wrapCon4Box .wrapCon4Box .wrapCon4Box__img img {
          border-radius: 5px 5px 0 0;
          width: 100%; }
  .theme__lifestyle--list {
    align-items: flex-start;
    display: flex; }
    .theme__lifestyle--list > img {
      margin-right: 10px; }
  @media (min-width: 768px) {
    .theme__lifestyle {
      padding: 0 30px 50px 30px; }
      .theme__lifestyle--wrap {
        max-width: 1000px;
        margin: 0 auto; }
        .theme__lifestyle--wrapImg {
          margin-bottom: 50px; }
        .theme__lifestyle--wrapCon p {
          font-size: 1.6rem;
          line-height: 3rem;
          margin-bottom: 3rem; }
        .theme__lifestyle--wrapCon .btnWrap {
          margin: 30px auto 0px auto; }
        .theme__lifestyle--wrapCon .center__con {
          margin-top: 50px; }
        .theme__lifestyle--wrapCon .qTxt > p {
          font-size: 1.8rem;
          margin: 0 auto 3rem;
          width: 442px; }
        .theme__lifestyle--wrapCon .ie21-footer__divider--bottom {
          margin-bottom: 50px; }
        .theme__lifestyle--wrapCon4Box {
          padding: 0; }
          .theme__lifestyle--wrapCon4Box .wrapCon4Box {
            margin-top: 50px;
            width: calc((100% / 4) - 15px); }
            .theme__lifestyle--wrapCon4Box .wrapCon4Box__title:after {
              height: 14px;
              top: calc(50% - 6px);
              width: 7px; } }
