@charset "utf-8";

.delighter {
    transition: all .5s ease-out;
    transform: translatey(10%);
    opacity: 0;
   }

.delighter.started {
      transform: none;
      opacity: 1;
   }

body {
	font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    background: #000;
}

.heroView{
    position: relative;
    min-height: 500px;    
}
.heroView .inner{
width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}
.heroView .inner li{
    width: 48%;
}
.heroView .titBg{
    position: absolute;
    left: 0;
    width: 50%;
    z-index: -1;
    opacity: 0.5;    
}
.heroView .logoBg{
    position: absolute;
    right: 0;
    width: 50%;
    z-index: -1;
    top: -13%;
    opacity: 0.5;    
}

.heroView .inner li h2{

}
.heroView .inner li h2 p:nth-child(1){
    opacity: 0;
	margin: 0 auto 30px;
}
.heroView .inner li h2 p:nth-child(2){
    opacity: 0;
	margin: 0 auto 30px;
}
.heroView .inner li h2 p:nth-child(3){
    opacity: 0;
}
.heroView .inner li .mainLogo{
    opacity: 0;
}

.loaded .heroView .inner li h2 p:nth-child(1){
  -webkit-animation: upIn 0.8s ease 0.2s 1 forwards;
  animation: upIn 0.8s ease 0.2s 1 forwards;
}
.loaded .heroView .inner li h2 p:nth-child(2){
  -webkit-animation: upIn 0.8s ease 0.4s 1 forwards;
  animation: upIn 0.8s ease 0.4s 1 forwards;
}
.loaded .heroView .inner li h2 p:nth-child(3){
  -webkit-animation: upIn 0.8s ease 0.6s 1 forwards;
  animation: upIn 0.8s ease 0.6s 1 forwards;
}
.loaded .heroView .inner li .mainLogo{
  -webkit-animation: upIn 0.8s ease 1s 1 forwards;
  animation: upIn 0.8s ease 1s 1 forwards;
}

@keyframes upIn {
	0% {
		opacity: 0;
		-webkit-transform: translate(0, 30px);
		transform: translate(0, 30px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate(0,0);
		transform: translate(0,0);
	}
}

.scroll {
display: block;
    width: 5px;
    height: 60px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    text-decoration: none;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-animation: logoFade 0.3s ease 1.4s 1 forwards;
    animation: logoFade 0.3s ease 1.4s 1 forwards;
}
.scroll:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    background: #fff;
    -webkit-animation: scroll 2s linear 0s infinite;
    animation: scroll 2s linear 0s infinite;
}
  @-webkit-keyframes scroll {
    0%{ height: 0; top: 0; bottom: auto; opacity: 0; }
    35%{ opacity: 1; }
    46% { height: 100%; top: 0; bottom: auto; }
    50% { height: 100%; bottom: 0; top: auto; }
    54% { height: 100%; bottom: 0; top: auto; }
    100% { height: 0; bottom: 0; top: auto;}
  }
  @keyframes scroll {
    0%{ height: 0; top: 0; bottom: auto; opacity: 0; }
    35%{ opacity: 1; }
    46% { height: 100%; top: 0; bottom: auto; }
    50% { height: 100%; bottom: 0; top: auto;}
    54% { height: 100%; bottom: 0; top: auto;}
    100% { height: 0; bottom: 0; top: auto; }
  }

.container{
    background: #1a1a1a;
    padding: 80px 0;
}
.lead{
    width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    line-height: 1.8;
    font-weight: bold;
    font-size: 22px;
}
.contents{
    margin: 0 auto 50px;
}

.inBox{
	width: 800px;
    margin: 0 auto;
    background: #1f1f1f;
    position: relative;
    padding: 40px;
    box-shadow: 10px 10px 20px rgb(0 0 0 / 50%);
    box-sizing: border-box;
}
.number{
    width: 80px;
    height: 80px;
    background: #de0515;
    line-height: 80px;
    text-align: center;
    border-radius: 999px;
    position: absolute;
    left: -20px;
    top: -20px;
    font-weight: bold;
    font-size: 20px;
}
.tit{
    text-align: center;
    font-weight: bold;
    margin: 0 auto 30px;
    line-height: 1.5;
    font-size: 23px;
}
.attentionList{
    margin: 0 auto 30px;
}
.attentionList li{
    font-size: 13px;
    text-indent: -1em;
    margin: 0 0 5px 1em;
    line-height: 1.5;    
}
.attentionList li:last-child{
    margin: 0 0 0 1em;
}
.data{
background: #000;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    margin: 0 0 10px 0;    
}
.data dt{
font-size: 17px;
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid;
}
.data dd{
font-size: 19px;
    font-weight: bold;
line-height: 1.5;    
}
.data .attentionList{
margin: 10px auto 0;
}

.inBox.end{

}
.inBox.end .endTxt{
text-align: center;
    font-size: 29px;
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: bold;
    transform: translate(-50%, -50%) rotate(-10deg);
    -webkit-transform: translate(-50%, -50%) rotate(-10deg);
    transform: translate(-50%, -50%) rotate(-10deg);
    -webkit-transform: translate(-50%, -50%) rotate(-10deg);
    width: 90%;
    background: #fff;
    padding: 40px;
    box-sizing: border-box;
    z-index: 1;   
}
.inBox.end .number{
    color: #fff;
}

.joinArea{

}
.joinArea .tit{

}
.joinArea .ph{

}
.joinArea .ph a{
    display: block;
    transition: 0.4s;
}
.joinArea .ph a img{

}

@media print, screen and (min-width:850px) {

.sp{
display: none!important;
}
.pc{
display: block!important;
}
.joinArea .ph a:hover{
    opacity: 0.7;
}

}

@media screen and (max-width:849px) {

.pc{
display: none!important;
}
.sp{
display: block!important;
}

.heroView {
    position: relative;
    min-height: 100vh;
}
.heroView .inner li {
    width: 100%;
    margin: 0 auto 10px;
}
.heroView .inner {
    width: 49vh;
    max-width: 300px;
    }
.heroView .inner li h2 p:nth-child(1) {
    margin: 0 auto 3vh;
}
.heroView .inner li h2 p:nth-child(2) {
    margin: 0 auto 3vh;
}
.heroView .titBg {
    width: 50vh;
    z-index: -1;
    opacity: 0.5;
    top: -10%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
}
.heroView .logoBg {
right: auto;
    width: 50vh;
    z-index: -1;
    top: auto;
    opacity: 0.5;
    bottom: -15%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
}
.container {
    background: #1a1a1a;
    padding: 50px 20px;
}
.lead {
    width: 100%;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.8;
    font-weight: bold;
    font-size: 16px;
}
.inBox {
    width: 100%;
    margin: 0 auto;
    background: #1f1f1f;
    position: relative;
    padding:30px 20px;
    box-shadow: 10px 10px 20px rgb(0 0 0 / 50%);
    box-sizing: border-box;
}
.tit {
    text-align: left;
    font-weight: bold;
    margin: 0 auto 15px;
    line-height: 1.5;
    font-size: 15px;
}
.number {
    width: 50px;
    height: 50px;
    background: #de0515;
    line-height: 50px;
    text-align: center;
    border-radius: 999px;
    position: absolute;
    left: -13px;
    top: -20px;
    font-weight: bold;
    font-size: 12px;
}
.attentionList {
    margin: 0 auto 15px;
}
.attentionList li {
    font-size: 12px;
    line-height: 1.5;
}


.data {
    background: #000;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}
.data dt {
    font-size: 13px;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid;
}
.data dd {
    font-size: 14px;
    font-weight: bold;
}
.inBox.end .endTxt {
    text-align: center;
    font-size: 15px;
    width: 90%;
    padding: 20px;
}

}