@charset "UTF-8";
/* CSS Document */
/* Header
--------------------- */
#header h1 {
  width: 30%;
}

#header p {
  width: 7%;
}

/* SwipeUp
--------------------- */
.SwipeUp {
  left: 44%;
}

/* 01 Top
--------------------- */
html, body {
  height: 100%;
}

/* すべての写真を格納するdiv定義 */
#areaTop {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 各スライドdivの背景画像設定 */
#photo1 {
  background-image: url(../images/bg01b.jpg);
}

#photo2 {
  background-image: url(../images/bg02b.jpg);
}

#photo3 {
  background-image: url(../images/bg03b.jpg);
}

#photo4 {
  background-image: url(../images/bg04b.jpg);
}

#photo5 {
  background-image: url(../images/bg05b.jpg);
}

/* 全スライド共通のstyleとanimationの設定 */
.frame {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  opacity: 0;
  animation: imgTrans 30s infinite;
  -webkit-animation: imgTrans 30s infinite;
}

/* 各スライドのanimationに時間的ずれを設定 */
#photo2 {
  animation-delay: 6s;
  -webkit-animation-delay: 6s;
}

#photo3 {
  animation-delay: 12s;
  -webkit-animation-delay: 12s;
}

#photo4 {
  animation-delay: 18s;
  -webkit-animation-delay: 18s;
}

#photo5 {
  animation-delay: 24s;
  -webkit-animation-delay: 24s;
}

/* スライドのFadeIn,FadeOutのanimation設定 */
@keyframes imgTrans {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  18% {
    opacity: 1;
  }
  22% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes imgTrans {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  18% {
    opacity: 1;
  }
  22% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* 02 About
--------------------- */
#areaAbout {
  padding: 10px 20px 20px;
}

#areaAbout h2 {
  padding: 0 0 10px;
}

/* 03 Tjppal
--------------------- */
#areaTjppal {
  background: url(../images/bg03.jpg) no-repeat 0 -80px;
}

#areaTjppal p {
  padding-top: 100px;
}

/* 04 Profile
--------------------- */
#areaProfile {
  padding: 20px 20px 30px;
}

/* 05A tjppalMember
--------------------- */
.guestText01 {
  margin: 0 0 0 1%;
}

.guestText01 p {
  width: 20%;
  margin: 0 0 0 4%;
}

.guestText03 {
  width: 75%;
  height: auto;
  margin: 0 auto;
}

.guestText03 p {
  width: 25.3%;
  margin: 0 4% 20px;
}

.m03 {
  clear: none;
}

.guestText02 {
  padding: 0 0 15px;
}

.guestText02 p {
  margin: 0 10px;
}

/* 05B tjppalGallery 
--------------------- */
#tjppalGallery h2 {
  width: 35%;
}

#tjppalGallery div {
  margin: 0 0 0 1%;
}

#tjppalGallery div p {
  width: 20%;
  margin: 0 0 0 4%;
}

.photo {
  width: 20%;
}

/* 06 Duo
--------------------- */
#areaDuo {
  background: url(../images/bg06b.jpg) no-repeat 0 bottom;
  background-size: 100% auto;
  width: 100%;
  height: 320px;
}

#areaDuo p {
  width: 50%;
  padding-top: 130px;
}

/* 07 Yurika
--------------------- */
#areaYurika {
  background: url(../images/bg07.jpg) no-repeat right bottom;
  background-size: 60% auto;
  padding: 10px 20px 20px;
}

#areaYurika h2 {
  padding: 20px 0 10px;
}

.yurikaEng {
  width: 60%;
}
/*# sourceMappingURL=index02.css.map */