@charset "utf-8";
/* CSS Document */
/*==============================
header
===============================*/
.header{
  padding: 10px 90px;
}
.header .nifty-top a{
  color: #333;
  font-size: 14px;
  text-decoration: underline;
}
.header .nifty-top a:hover{
  text-decoration: none;
}
@media screen and (max-width: 768px){
  .header{
    padding: 10px;
  }
}

/*==============================
main
===============================*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body{
  opacity: 0;
  animation: fadeIn 0.5s linear 0.7s forwards;
}
main{
  position: relative;
  overflow:hidden;
}
.cam-btn{
  position: fixed;
  right:30px;
  bottom: 60px;
  z-index: 999;
  opacity: 1;
  transition:0.3s;
}
.cam-btn.remove{
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 768px){
  .cam-btn {
    right: 15px;
    bottom: 15px;
    width: 115px;
  } 
}
/*==============================
mv-area
===============================*/
.mv-area{
  padding: 60px 0 160px;
  background: url("../images/bg-mv.png") no-repeat center;
  background-size:100% 100%;
}
.mv-area .inner{
  position: relative;
}
.mv-img{
  margin-bottom: 160px;
}
/*img*/
@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    opacity: 1;
    transform: scale(1);
  }
  80% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
.img-firework{
  position: absolute;
  opacity: 0;
  animation: zoomIn 2s ease-out 1s infinite;
}
.img-firework.is-01 {
  left: -450px;
  top: 50px;
  animation-delay: 2.8s;
}
.img-firework.is-02 {
  left: -222px;
  top: 42%;
  animation: zoomIn 1.5s ease-out 1.5s infinite;
}
.img-firework.is-03 {
  right: -340px;
  top: 7%;
  animation: zoomIn 1.5s ease-out 2.3s infinite;
}
.img-firework.is-04 {
  left: 70px;
  top: 3%;
  animation: zoomIn 2s ease-out 1.4s infinite;
}
.img-firework.is-05 {
  right: -100px;
  top: 54%;
  animation-delay: 3.2s;
}

/*message*/
.message-group{
  position: relative;
}
.message-group:before{
  position: absolute;
  content: "";
  width: 1108px;
  height: 290px;
  background: url("../images/bg-message.png") no-repeat center;
  background-size: contain;
  bottom: -80px;
  left: 50%;
  margin-left: -554px;
  transition: 0.6s;
  opacity: 0;
}
.message-group.active:before{
  bottom: -30px;
  left: 50%;
  margin-left: -554px;
  opacity: 1;
}
.message-group .text{
  line-height: 2.8;
}
@media screen and (max-width: 1366px){
  .mv-area{
    background-size:cover;
  }
}
@media screen and (max-width: 768px){
  .mv-area {
    padding: 40px 0 90px;
    background: url(../images/bg-mv_sp.png) no-repeat center;
    background-size: 100% 100%;
  }
  .mv-img{
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
  }
  
  .img-firework{
    width: 50%;
  }
  .img-firework.is-01 {
    left: -120px;
    top: -30px;
  }
  .img-firework.is-02 {
    left: -40px;
    top: 46%;
    width: 30%;
  }
  .img-firework.is-03 {
    right: -90px;
    top: 17%;
  }
  
  .message-group:before{
    content: none;
  }
  .message-group .text {
    line-height: 1.8;
    text-align: left;
  }
}

/*==============================
history-area
===============================*/
.history-area{
  padding: 70px 0 90px;
  position: relative;
}
.history-area .inner{
  position: relative;
}
.history-area .inner:before,
.history-area .inner:after{
  position: absolute;
  content: "";
}
.history-area .inner:before{
  width: 415px;
  height: 465px;
  background: url("../images/bg-history_l.png") no-repeat center;
  background-size: contain;
  left: -415px;
  top: -80px;
}
.history-area .inner:after{
  width: 360px;
  height: 480px;
  background: url("../images/bg-history_r.png") no-repeat center;
  background-size: contain;
  right: -480px;
  top: -100px;
}

@keyframes scrollMove{
  0%{right: 40px;}
  80%{right:0;}
  100%{right:0;}
}
@keyframes scrolltriangleHide{
  0%{opacity:0}
  50%{opacity:1;}
  90%{opacity:0.9;}
  100%{opacity:0;}
}

@media screen and (max-width: 768px){
  .history-area .inner:before,.history-area .inner:after{
    display:none;
  }
  .history-area {
    padding: 40px 0 50px;
  }
  .sp-scroll{
   /*
   overflow-x: scroll;
    white-space: nowrap;
   */
  }
  .img-history{
    /*width: 620px;*/
    width:100%;
  }
  .text-scroll{
    display:none;
     /*
    margin-bottom: 15px;
    font-size: 12px;
    color: #808080;
    text-align: right;
    padding-right: 60px;
    position: relative;
    */
  }
  .text-scroll:before{
    position: absolute;
    content: "";
    width: 50px;
    height: 1.5px;
    background: #808080;
    right: 0;
    bottom: 8px;
  }
  .text-scroll:after{
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 0 10px;
    border-color: transparent transparent transparent #808080;
    right: 0;
    bottom: 8px;
    opacity: 0;
    animation:
    scrollMove 1.5s ease-in-out infinite,
    scrolltriangleHide 1.5s ease-out infinite;
  }
}
/*==============================
cam-area
===============================*/
.cam-area{
  padding: 80px 0 90px;
  background: #ed6572;
  position: relative;
}
.cam-area:before{
  position: absolute;
  content: "";
  width: 1920px;
  height: 47px;
  background: url("../images/bg-campaign.png") no-repeat center;
  background-size: contain;
  bottom: -47px;
  left: 0;
}
.cam-area .inner{
  position: relative;
}
.cam-area .group{
  margin-top: 70px;
}
/*img*/
.img-human{
  position: absolute;
}
.img-human.is-01{
  right: -250px;
  top: 15%;
}
.img-human.is-02{
  left: -250px;
  top: 45%;
}
.img-human.is-03{
  right: -250px;
  bottom: 10%;
}

.cam-box{
  max-width: 1000px;
  width: 100%;
  margin: auto;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  position: relative;
}
.cam-box .icon{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  width: 104px;
  height: 104px;
  font-weight: bold;
  background:url("../images/bg-circle.png") no-repeat center;
  background-size: contain;
  position: absolute;
  left: -10px;
  top: -35px;
}
.cam-box .ttl{
  padding: 0 70px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
.cam-box .ttl+.content{
  margin-top: 30px;
}
.cam-box .cam-img{
  max-width: 410px;
  width: 100%;
  margin: auto;
}
.cam-box .cam-text{
  margin-top: 10px;
}
.cam-box .grid .cam-text{
  width: calc(100% - 410px);
  padding-left: 25px;
}
.cam-box .ballon{
  display: inline-block;
  margin-top: 15px;
  padding: 5px 10px;
  font-size: 14px;
  text-align: center;
  border-radius: 999em;
  background: #e6e6e6;
}
.cam-box .btn-wrap{
  margin-top: 30px;
}
.cam-box .btn{
  display: block;
  max-width: 600px;
  width: 100%;
  padding: 20px 30px;
  margin: auto;
  color: #fff;
  font-size:20px;
  font-weight: bold;
  text-align: center;
  background: #57c1a5;
  position: relative;
  transition: 0.3s;
}
.cam-box .btn:before{
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 10px;
  border-color: transparent transparent transparent #ffffff;
  right: 20px;
  top: 50%;
  margin-top: -9px;
}
.cam-box .btn:hover{
  text-decoration: none;
  opacity: 0.8;
  transform: scale(1.05);
}

/*close*/
.cam-box .text-close{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 20px;
  font-size: 20px;
  font-weight: bold;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px){
  .cam-area {
    padding: 30px 0 40px;
  }
  .cam-area:before{
    bottom: -28px;
    width: 100%;
  }
  .cam-area .group {
    margin-top: 35px;
  }
  
  .cam-box {
    width: 98%;
    padding: 15px 10px;
    border-radius: 10px;
  }
  .cam-box .icon {
    padding: 8px;
    width: 70px;
    height: 70px;
    left: -5px;
    top: -15px;
    font-size: 13px;
  }
  .cam-box .ttl {
    padding: 0 60px;
    font-size: 16px;
  }
  .cam-box .ttl+.content {
    margin-top: 15px;
  }
  .cam-box .grid .cam-text {
    width: 100%;
    padding-left: 0;
  }
  .cam-box .ballon {
    margin-top: 10px;
    font-size: 13px;
  }
  .cam-box .btn-wrap{
    margin-top: 15px;
  }
  .cam-box .btn {
    padding: 15px 20px;
    font-size: 16px;
  }
  .cam-box .btn:before {
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #ffffff;
    right: 15px;
    margin-top: -6px;
  }
  
  .cam-box .text-close{
    border-radius: 10px;
    font-size: 18px;
  }
}

/*==============================
bnr-area
===============================*/
.bnr-area{
  padding: 150px 0 110px;
  background: url("../images/bg-bnr.png") no-repeat center;
  background-size: cover;
}
.bnr-img+.text-img{
  margin-top: 110px;
}
@media screen and (max-width: 768px){
  .bnr-area{
    padding: 60px 0 40px;
  }
  .bnr-img+.text-img{
    margin: auto;
    margin-top: 50px;
    max-width: 340px;
  }
}

/*==============================
footer
===============================*/
.footer{
  padding: 15px;
  background: #57c1a5;
  color: #fff;
  font-size: 14px;
}
.footer-service{
  display: flex;
}
.footer-service >li{
  padding: 0 10px;
}
.footer-service >li +li{
  border-left: 1px solid #fff;
}
.copyright{
  margin-top: 10px;
  text-align: right;
}
@media screen and (max-width: 768px){
  .footer{
    padding: 15px 0;
    font-size: 12px;
  }
  .footer-service{
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-service >li a{
    display: block;
  }
  .copyright{
    text-align: center;
  }
}

/*==============================
for-app overflow fix
===============================*/
@media screen and (max-width: 768px){
  .cam-btn,.img-list{
    display:none;
  }
  .mv-area{
  overflow:hidden;
  }
}