@charset "utf-8";
/* CSS Document */

#showroom{
  background-image: url("../img/showroom/bg_grd.png");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
}

/*================================
共通パーツ
================================*/
/*ボタン
================================*/
.btn_sl{
  position: relative;
  width: 100%;
  display: block;
  font-weight: bold;
  border-color: #22b373;
  border-radius: 3px;
}
.btn_sl::after{
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  transition: .15s;
}
@media (min-width: 768px){
  .btn_sl{
    max-width: 300px;
    padding: .75rem;
  }
}
@media (max-width: 767px){
  .btn_sl{
    font-size: .8rem;
    max-width: 240px;
    padding: .6rem .5rem;
  }
}

/*通常*/
.btn_sl.grn{
  color: #fff;
  background-color: #22b373;
}
.btn_sl.grn::after{
  background-image: url(../img/icon_external_link.svg);
}
@media (hover: hover) {
  .btn_sl.grn:hover{
    border-color: #22b373;
    background-color: rgba(34, 179, 115, .95);
  }
}

/*反転*/
.btn_sl.wht{
  color: #22b373;
}
.btn_sl.wht::after{
  background-image: url("../img/showroom/icon_event_link.svg");
}
@media (hover: hover) {
  .btn_sl.wht:hover{
    border-color: #22b373;
    background-color: rgba(34, 179, 115, .15);
  }
}

/*フォトカード
================================*/
.photo_card{
  background-color: #fff;
  border-radius: 10px;
  padding: 24px 24px 30px;
}
.photo_card img{
  border-radius: 5px;
}
.photo_card h3{
  position: relative;
  font-size: 1.15rem;
  font-weight: bold;
  padding-left: 1rem;
  margin-top: 1.5rem;
}
.photo_card h3::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #22b373;
  border-radius: 50%;
}

/*================================
MV
================================*/
#showroom #mv_photo img{
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

/*================================
安心のショールーム
================================*/
#sl_about .container{
  position: relative;
}
#sl_about .about_txt h1{
  font-weight: bold;
  margin-bottom: 1.5rem;
}
#sl_about .about_txt p{
  margin-bottom: 2rem;
}
@media (min-width: 1200px){
  .about_img{
    padding-bottom: 120px;
  }
}
@media (min-width: 992px){
  .about_img img{
    width: 50%;
  }
}
@media (min-width: 768px){
  .about_img{
    position: relative;
    top: -120px;
    left: 0;
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
  }
  .about_img img{
    position: absolute;
    top: -10%;
    left: -3%;
    transform: translateY(-10%) translateX(-3%);
  }
}
@media (min-width: 768px) and (max-width: 991px){
  #sl_about .about_txt h1{
    font-size: 1.8rem;
  }
  .about_img img{
    width: 43%;
  }
}
@media (max-width: 991px){
  #sl_about{
    padding-bottom: 0 !important;
  }
}
@media (max-width: 767px){
  #sl_about{
    padding-top: 0 !important;
  }
  #sl_about .about_txt h1{
    font-size: 1.5rem;
  }
  .about_img img{
    width: 43%;
    margin: -30px -5px -30px auto;
    display: block;
  }
  #sl_about .btn_sl{
    margin-left: auto;
    margin-right: auto;
  }
}


/*================================
ショールームの特徴
================================*/
#sl_features .photo_card{
  position: relative;
  margin-top: 1rem;
}
#sl_features .photo_card::before{
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 5px 5px 15px rgba(114, 155, 62, .2);
  mix-blend-mode: multiply;
  border-radius: 10px;
}


/*================================
よくあるご質問
================================*/
/*#sl_faq{
  position: relative;
  z-index: 0;
}
@media (max-width: 767px){
  #sl_faq::before,
  #sl_faq::after{
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  #sl_faq::after{
    height: 100%;
    background-image: url("../img/showroom/bg_grd_bottom.png");
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: -2;
  }
}*/

/*FAQ
================================*/
#sl_faq dl{
  border-top: #cacaca 1px solid;
  padding: 2rem 0;
  margin-bottom: 0;
}
#sl_faq dl:last-child{
  border-bottom: #cacaca 1px solid;
}
#sl_faq dl dt,
#sl_faq dl dd{
  position: relative;
  padding-left: 2rem;
}
#sl_faq dl dt::before,
#sl_faq dl dd::before{
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
}
#sl_faq dl dt::before{
  background-image: url("../img/showroom/icon_q.png");
}
#sl_faq dl dd::before{
  background-image: url("../img/showroom/icon_a.png");
}
#sl_faq dl dt{
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
#sl_faq dl dd{
  margin-bottom: 0;
}

/*================================
相談会のご案内
================================*/
#sl_info{
  background-color: #22b373;
}
#sl_info .sect_top_ttl,
#sl_info .main_txt{
  color: #fff;
}
#sl_info .photo_card{
  position: relative;
}
#sl_info .photo_card::before{
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 5px 5px 15px rgba(63, 79, 38, .3);
  mix-blend-mode: multiply;
  border-radius: 10px;
}
#sl_info .btn_sl{
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px){
  #sl_info .info_wrap > div:nth-child(odd){
    margin-top: 50px;
  }
}
@media (min-width: 768px){
  #sl_info{
    border-radius: 60px;
  }
}
@media (max-width: 767px){
  #sl_info{
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    border-radius: 25px;
  }
}
/*================================
アクセス
================================*/
#sl_access{
  position: relative;
  z-index: 0;
}
#sl_access::before,
#sl_access::after{
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#sl_access::before{
  background-image: url("../img/showroom/bg_grd_bottom.png");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: -1;
}
#sl_access::after{
  background-color: #fff;
  z-index: -2;
}

/*住所
================================*/
.access_info .address p{
  margin-bottom: .5rem;
}
.access_info .address ul{
  padding-left: 1.3rem;
  margin-bottom: 0;
}
.access_info .address ul li{
  margin-right: 2rem;
}
.access_info .address ul li::marker{
  color: #22b373;
}
@media (min-width: 768px){
  .access_info{
    display: flex;
    margin-bottom: 2rem;
  }
  .access_info .address{
    flex: 1;
    padding-left: 2rem;
    margin-left: 2rem;
    border-left: #cacaca 1px solid;
  }
  .access_info .address ul{
    display: flex;
  }
}
@media (max-width: 767px){
  .access_info{
    margin-bottom: 1rem;
  }
}

/*Googleマップ
================================*/
#sl_access iframe{
  width: 100%;
}
@media (min-width: 768px){
  #sl_access iframe{
    height: 350px;
  }
}
@media (max-width: 767px){
  #sl_access iframe{
    height: auto;
    aspect-ratio: 2 / 1;
  }
}

/*モデルハウスのご案内
================================*/
#sl_access .photo_card{
  position: relative;
  gap: 0 24px;
}
#sl_access .photo_card::before{
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 5px 5px 15px rgba(92, 158, 62, .2);
  mix-blend-mode: multiply;
  border-radius: 10px;
}
#sl_access .photo_card .modelhouse_info{
  position: relative;
}
#sl_access .photo_card .modelhouse_info h3{
  z-index: 1;
  font-size: 1.5rem;
  padding-left: 0;
}
#sl_access .photo_card .modelhouse_info::before{
  content: '';
  display: inline-block;
  position: absolute;
  background-image: url("../img/showroom/modelhouse_bg.png");
  background-size: contain;
  max-width: 430px;
  aspect-ratio: 800 / 134;
  mix-blend-mode: multiply;
  z-index: 0;
}
#sl_access .photo_card .modelhouse_info h3::after{
  display: none;
}
#sl_access .photo_card a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#sl_access .photo_card a span{
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  padding-right: 60px;
  padding-bottom: 8px;
  height: 45px;
  border-bottom-right-radius: 10px;
  color: #22b373;
  font-weight: bold;
  overflow: hidden;
}
#sl_access .photo_card a span::before,
#sl_access .photo_card a span::after{
  content: '';
  display: inline-block;
}
#sl_access .photo_card a span::before{
  position: absolute;
  bottom: -45px;
  right: -45px;
  width: 90px;
  height: 90px;
  background-color: #22b373;
  border-radius: 50%;
}
#sl_access .photo_card a span::after {
  width: 8px;
  height: 8px;
  position: absolute;
  top: 20px;
  right: 1rem;
  transform: rotate(45deg);
  border-width: 2px;
  border-style: solid;
  border-left: 0;
  border-bottom: 0;
  color: #fff;
}
@media (min-width: 992px){
  #sl_access .photo_card .modelhouse_info::before{
    top: -20px;
  }
}
@media (min-width: 768px) and (max-width: 991px){
  #sl_access .photo_card .modelhouse_info::before{
    top: -5px;
  }
}
@media (min-width: 768px){
  #sl_access .photo_card{
    display: flex;
    align-items: center;
    margin-top: 100px;
  }
  #sl_access .photo_card img{
    width: 50%;
    max-width: 400px;
  }
  #sl_access .photo_card p{
    flex: 1;
  }
  #sl_access .photo_card .modelhouse_info::before{
    width: 100%;
    left: -10px;
  }
}
@media (max-width: 767px){
  #sl_access .photo_card{
    margin-top: 50px;
  }
  #sl_access .photo_card .modelhouse_info::before{
    top: -40px;
    right: -10px;
    width: 90%;
  }
}
