@charset "UTF-8";
/* tenbo */
.tenbo {
  background: url(../images/tenbo_bg.png) no-repeat right bottom, #0C007C;
  display: flex;
  padding-top: 40px;
}
.tenbo h2 {
  background: url(../images/tenbo_tit.svg) no-repeat center;
  background-size: contain;
  text-indent: -9999px;
  width: 278px;
  height: 62px;
  position: absolute;
}
.tenbo .photo_wrap {
  width: 606px;
  height: 1080px;
  height: 1120px;
  overflow: hidden;
  position: relative;
}
.tenbo .photo_wrap .photo {
  background: url(../images/tenbo_photo.png) no-repeat left bottom;
  background-size: contain;
  width: 606px;
  height: 1080px;
  height: 1120px;
}
.tenbo .photo_wrap::after {
  content: "";
  background: url(../images/tenbo_wave.png) no-repeat bottom;
  background-size: contain;
  display: inline-block;
  width: 100%;
  height: 430px;
  position: absolute;
  bottom: -25px;
  animation: wave 5s ease-in-out infinite;
}
.tenbo .txt_area {
  position: relative;
}
.tenbo .txt_area h3 {
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 40px;
}
.tenbo .txt_area p {
  line-height: 40px;
  text-align: justify;
  color: #fff;
  font-size: 22px;
}
.tenbo .txt_area p.small {
  margin-top: 40px;
  font-size: 18px;
}
.tenbo .txt_area p span {
  color: #FFF14F;
  font-weight: 900;
}

/***********************************************************************
「★PC版 CSS★」ブラウザの幅が751px以上ならここの記述が有効になる
**********************************************************************/
@media screen and (min-width: 751px) {
  .tenbo {
    flex-wrap: wrap;
  }
  .tenbo h2 {
    top: 80px;
    right: 860px;
  }
  .tenbo .txt_area {
    width: 1005px;
    border-style: solid;
    border-width: 1px;
    border-color: #fff;
    border-right: none;
    border-bottom: none;
    padding-top: 60px;
    padding-left: 95px;
    margin-top: 150px;
  }
} /* PC end */
/***********************************************************************
「★SP版 CSS★」ブラウザの幅が750px以下ならここの記述が有効になる
**********************************************************************/
@media screen and (max-width: 750px) {
  .tenbo {
    flex-direction: column;
    align-items: center;
    background-position: bottom;
    padding-top: 170px;
    padding-right: 35px;
    padding-left: 35px;
    padding-bottom: 50px;
    margin-bottom: -50px;
  }
  .tenbo h2 {
    top: 150px;
  }
  .tenbo .photo_wrap {
    width: 750px;
    margin-top: 50px;
    height: 810px;
    margin-bottom: -90px;
  }
  .tenbo .photo_wrap .photo {
    background: url(../images/tenbo_photo_sp.png) no-repeat bottom;
    background-size: contain;
    width: 750px;
    height: 460px;
    height: 810px;
    position: relative;
    z-index: 1;
  }
  .tenbo .photo_wrap::after {
    background: url(../images/tenbo_wave_sp.png) no-repeat bottom;
    background-size: contain;
    width: 100%;
    height: 100%;
    bottom: 350px;
  }
  .tenbo .txt_area {
    position: relative;
    z-index: 1;
  }
  .tenbo .txt_area h3 {
    width: 100%;
    text-align: center;
    font-size: 48px;
    border-style: solid;
    border-width: 1px;
    border-color: #fff;
    border-right: none;
    border-bottom: none;
    padding-top: 35px;
    padding-bottom: 25px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .tenbo .txt_area p {
    line-height: 50px;
    font-size: 28px;
  }
} /* SP end */
/***********************************************************************
■■■■■アニメーション■■■■■
**********************************************************************/
@keyframes wave {
  0%, 5% {
    transform: translateY(0);
  }
  65% {
    transform: translateY(-24px);
  }
  95%, 100% {
    transform: translateY(0);
  }
}