@charset "UTF-8";
/* ---------------------------------------------------------------------
 * コンセプトページ
 * --------------------------------------------------------------------- */
#main_image_zeh{height: auto}
#main_image_zeh .inner{position: absolute;left: 0;right: 0;top: 0}
#main_image_zeh .wimg{width: 100%;height: auto;z-index: -1;position: relative}
@media screen and (max-width: 767px) {/*スマホ設定*/
#main_image_zeh .wimg{object-fit: cover;height: 260px!important;width: auto!important}
}

#body_zeh{padding-bottom: 60px}
#body_zeh .fontM{ font-family: 'Noto Serif JP', serif;font-size: 16px!important;}
#body_zeh img{max-width: 100%;height: auto}
#body_zeh h2{font-size: 34px;letter-spacing: 0.1em;font-weight: normal;margin-bottom: 30px;line-height: 1.8}
#body_zeh .txt{line-height: 2em;font-size: 19px;margin-bottom: 30px}
#body_zeh .coution{font-size: 12px}

@media screen and (max-width: 767px) {/*スマホ設定*/
#body_zeh h2{font-size: 20px;line-height: 1.7}
#body_zeh .coution{font-size: 10px;line-height: 1.3}
#body_zeh .txt{line-height: 2em;font-size: 16px;margin-bottom: 30px}
}

#sec0{padding: 80px 0 0}
#sec0 .box{background: #fff;box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;padding-bottom: 50px;margin-bottom: 100px}
#sec0 .box p{width: 800px;margin: auto}
#sec0 .box p.zu{padding-top: 50px}
#sec0 .box .coution{text-align: left;margin-top: 12px}

@media screen and (max-width: 767px) {/*スマホ設定*/
#sec0{padding: 40px 0}
#sec0 .box{padding: 0 0 20px;margin-bottom: 40px}
#sec0 .box p{width: 88%;margin: 20px auto 0}
#sec0 .box p.zu{padding-top: 0px}
}

#sec1{background: #deeadf;padding: 80px 0}
#sec1 h2{margin-bottom: 10px}
#sec1 .tap{width: 50%;margin: auto}
#sec1 li{margin-top: 40px;width: 48%;}
@media screen and (max-width: 767px) {/*スマホ設定*/
#sec1{padding: 40px 0}
#sec1 .tap{width: 100%;}
#sec1 li{width: 90%;margin: 30px auto 0}
}

#sec2{border-top: 5px solid #004045;background: #e8ebec;padding: 0px 0 80px}
#sec2 .txt{margin-top: 30px;}
#sec2 h3{display: inline-block;background: #fff;padding: 10px 30px;font-size: 23px;letter-spacing: 0.1em;margin-bottom: 14px}
#sec2 ul{margin-top: 30px}
#sec2 li{flex-grow: 1;text-align: center;padding: 8px 0}

@media screen and (max-width: 767px) {/*スマホ設定*/
#sec2{padding: 0px 0 40px}
#sec2 h2{width: 90%;margin: 0 auto 20px}
#sec2 h3{display: block;padding: 10px 0px;font-size: 18px;letter-spacing: 0.1em;margin-bottom: 14px}
#sec2 li{width: 100%;text-align: left}
#sec2 .first li:nth-child(1) img{width: 71%}
#sec2 .first li:nth-child(3) img{width:66%}
#sec2 .sec{width: 86%;margin: auto}
#sec2 .sec li:nth-child(1) img{width: 61%}
#sec2 .sec li:nth-child(2) img{width: 71%}
}

#sec4{background: #fff;}
#sec4 h3 {
    font-size: 28px;
	letter-spacing: 0.1em;
    line-height: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
    height: 54px;
    background: #e8ebec;
	margin-top: 80px;
}
#sec4 h3:before,
#sec4 h3:after {
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    content: '';
    border: 27px solid transparent;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
}
#sec4 h3:before {
    right: 100%;
    border-right-color:#e8ebec;
}
#sec4 h3:after {
    left: 100%;
    border-left-color: #e8ebec;
}
#sec4 ul{margin: 30px 0;}
#sec4 .txt{border-bottom: 1px solid #333;font-size: 20px;letter-spacing: 0.1em;margin-bottom: 0px;padding-bottom: 10px}
@media screen and (max-width: 767px) {/*スマホ設定*/
#sec4 h3 {    font-size: 17px;width: 86%;margin-top: 40px;}
#sec4 ul{margin: 30px auto;width: 80%}
#sec4 ul li{margin-bottom: 30px}
#sec4 .txt{font-size: 16px;}
}

/* カード本体 */
.card {
  width: 100%; /* 任意の横幅を指定 */
  height: 100%;
  position: relative;
  cursor: pointer;
}

/* 擬似要素とpadding-topでカードの高さを指定 */
.card::before {
  content: "";
  display: block;

}

/* カード内の画像 */
.card img {
  width: 100%;
}

/* カード裏面・表面の共通スタイル */
.card .back{ transition: all 0.6s;
  position: relative;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;}
.card .front {
  transition: all 0.6s;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
  
}

/* カード表面のスタイル */
.card .front {
  transform: rotateY(-180deg);
}

/* ホバー時のカード裏面 */
.card.is-act .back {
  transform: rotateY(180deg);
}

/* ホバー時のカード表面 */
.card.is-act .front {
  transform: rotateY(0);
}
.card .back img {
  height: auto;
  transition: transform .6s ease; /* ゆっくり変化させる */
}
.card .back:hover img{
   transform: scale(1.05); /* 拡大 */
}


/*===============================================================================
===============================================================================*/
@media screen and (max-width: 767px) {/*スマホ設定*/

.mobile-scroll {width: 100%; overflow-x: scroll;padding-bottom: 12px}
.mobile-scroll img{width: 800px!important;max-width:800px!important;height: auto;}
.mobile-scroll.st1 img{width: 900px!important;max-width:900px!important;height: auto;}
.swipe{width: 15%;margin: 12px auto}
.swipe img{width: 100%}
}
/*===============================================================================
===============================================================================*/
