@charset "utf-8";
/* ページ遷移時のフェードインアウト */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#fff; /* 背景カラー */
  z-index: 9999; /* 一番手前に */
  pointer-events: none; /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0; /* 初期値では非表示 */
  -webkit-transition: opacity .8s ease; /* アニメーション時間は 0.8秒 */
  transition: opacity .8s ease;
}
/*body要素に.fadeoutセレクタがある場合には、レイヤーが表示されるようにopacityを１に設定します。*/
body.fade::after {
  opacity: 1;
}

/* main,footerにフォント指定 */
main,
footer {
   font-family: "Zen Kaku Gothic New", sans-serif;
 font-weight: 300;
 font-style: normal;
}

/* main */
main {
   width: 100%;
}

 /* topimage */
 .concept-img-wrap {
    width: 100%;
    position: relative;
  }
  
  .concept-img-wrap h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: #fff;
    font-size: 3em;
    letter-spacing: .3em;
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal; 
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.6)   
  }
    
.concept-topimage {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: 5%;
}
/* 円弧(トップ) */
/* .concept-top img {
    width: 150%;
    height: 100vh;
    object-fit: cover;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    margin-left: -25%;
}

.en-wrap {
    margin-bottom: 10%;
} */

/* フェードイン */
.fadeIn {
  transition: 2s;
  opacity: 0;
}

.fadeIn.animated {
  opacity: 1;
}

/* フェードイン 下から */
.fadeIn2 {
  transform: translate3d(0, 50px, 0);
  transition: 1.5s;
  opacity: 0;
}
.fadeIn2.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* フェードイン 右から */
.fadeIn3 {
  transform: translate3d(50px, 0, 0);
  transition: 2s;
  opacity: 0;
}

.fadeIn3.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* フェードイン 左から */
.fadeIn4 {
  transform: translate3d(-50px, 0, 0);
  transition: 2s;
  opacity: 0;
}

.fadeIn4.animated {
transform: translate3d(0, 0, 0);
opacity: 1;
}

/* concept */
.concept-top-p-wrap {
    width: 100%;
    text-align: center;
    margin: 5% 0;
}

.concept-top-title {
    padding-bottom: 2%;
    font-size: 1.2em;
}

.concept-top-text {
    line-height: 1.7em;
}

/* 固定背景 */
.back1 {
    width: 100%;
    height: 80vh;
    background-image: url(../img/concept-topimage.jpg);
    background-size: cover;
    background-attachment: fixed; 
    background-repeat: no-repeat; 
    background-position: center center;
    }

/* 幅指定 */
/* .concept-max1200 {
  max-width: 1200px;
  margin: 0 auto;
} */

/* point01 */
.point01-wrap {
  width: 100%;
  height: 50vw;
  position: relative;
}

.grn-back-1 {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #e8e9de;
}

.point-text {
  padding-top: .5%;
    font-size: 2em;
    font-weight: 400;
    letter-spacing: .08em;
    color: #756763;
}

.group1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.group1-item {
  margin-left: 14%;
}

.group1-item p {
  text-align: center;
  line-height: 2.5em;
  letter-spacing: .09em;
  padding: 14% 23% 19% 0;
}

.point01,
.point-text01 {
    margin-left: 70%;
    padding-left: 17px;
}

.point01 {
    padding-top: 12%;
    padding-bottom: .5%;
    border-bottom: .3px solid #fff;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    /* border-bottom: .3px solid #9f8e8a;
    color: #756763; */
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;    
    font-weight: 400;
    font-size: 2em;
    letter-spacing: .08em;
}

.pic{
    display: block;
    height: auto;
}
.pic1-1 {
    width: 55%;
    margin-top: -13%;
}

.group2 {
    display: flex;
    justify-content: space-around;
    margin: 23% 0 20%;
}

.text-btn-wrap {
    margin-top: -5%;
    margin-left: 3%;
}
.group2 p {
    line-height: 2.5em;
    text-align: center;
    letter-spacing: 0.09em;
}


.pic1-3 {
  width: 40%;
  margin-top: 20%;
  margin-left: -15%;
}

   /* viewmoreボタン */
   .readmore-btn2 {
    text-align: center;
    margin: 70px 0 300px;
  }

  .c-arrow-link2 {
    position: relative;
    border: .5px solid #b7b99d;
    padding: 10px 90px 10px 30px;
    color: #6e7059;
    transition: all 0.5s;
  }

  .c-arrow-link--icon2 {
    overflow: hidden;
    position: absolute;
    top: 19px;
    right: 13px;
    bottom: 0;
    width: 30px;
    margin: auto 0;
    line-height: 1;
  }

  .c-arrow-link2:hover {
    color: #fff;
    background: #6e7059;
  }
  
  .c-arrow-link--icon2:before,
  .c-arrow-link--icon2:after {
    width: 29px;
    height: 9px;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    animation-fill-mode: both;
    animation-duration: 0.6s;
    background-image: url(../img/yajirushi.svg);
  }

  .c-arrow-link--icon2:after {
    transform: translateX(-100%);
    background-image: url(../img/yajirusi-white.svg);
  }

  .c-arrow-link2.is-hover .c-arrow-link--icon2:before {
    animation-name: transformLeftRight;
    animation-delay: 0.2s;
  }

  .c-arrow-link2.is-hover .c-arrow-link--icon2:after {
    animation-name: transformRightLeft;
  }

  .c-arrow-link2.is-hover:hover .c-arrow-link--icon2:before {
    animation-name: transformRightLeft;
    animation-delay: 0s;
  }

  .c-arrow-link2.is-hover:hover .c-arrow-link--icon2:after {
    animation-name: transformLeftRight;
    animation-delay: 0.2s;
  }
  
  @keyframes transformLeftRight {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
  }
  @keyframes transformRightLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(100%);
    }
  }

/* 固定背景 */
.back2 {
    width: 100%;
    height: 80vh;
    background-image: url(../img/concept-bk.jpg);
    background-size: cover;
    background-attachment: fixed; 
    background-repeat: no-repeat; 
    background-position: center center;
    }

/* point02 */
.grn-back-2 {
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 70%;
    background: #e8e9de;
}

.point02,
.point-text02 {
    margin-right: 73%;
    padding-left: 12%;
}

.point02 {
    padding-top: 13%;
    padding-bottom: .5%;
    border-bottom: .3px solid #fff;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 2em;
    letter-spacing: .08em;
}

.group3 {
    display: flex;
    justify-content: space-between;
}

.group4 {
    display: flex;
    justify-content: space-around;
    margin-top: -20%;
}

.pic2-2 {
    margin-top: 17%;
    /* margin-left: 2%; */
    width: 40%;
}
.pic2-1 {
    width: 45%;
    object-fit: contain;
    margin-top: -18%;
}

.pic2-3 {
    margin-left: 30%;
    margin-top: 34%;
    width: 30%;
}

.group4 p {
    line-height: 2.5em;
    text-align: center;
    margin-right: 16%;
    letter-spacing: .09em;
    padding-top: 5%;

}

