@charset "utf-8";
/* CSS Document */

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	position: relative;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

ul{
	list-style: none;
}

img{
	max-width: 100%;
	vertical-align: bottom;
}

button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

.contentIn{
	width: 1010px;
	max-width: 100%;
	margin: 0 auto;
    padding: 0 10px;
}

p{
    line-height: 2em;
}

.flexBox{
	display: flex;
}

.i-flex{
	display: inline-flex;
}

.ai_c{
	align-items: center;
}

.ai_fs{
	align-items: flex-start;
}

.ai_fe{
	align-items: flex-end;
}

.jc_sb{
	justify-content: space-between;
}

.jc_sa{
	justify-content: space-around;
}

.jc_c{
	justify-content: center;
}

.jc_fe{
	justify-content: flex-end;
}

.fw_wp{
    flex-wrap: wrap;
}

.flexL{
	order: 1;
}

.flexC{
	order: 2;
}

.flexR{
	order: 3;
}

.txa_c{
	text-align: center;
}

.txa_r{
	text-align: right;
}

.txa_l{
	text-align: left;
}

.hoverOpa{
    transition: opacity .3s;
}

.hoverOpa:hover{
    opacity: .8;
}

/*==================================

全ページ共通CSS

==================================*/



.ttlStl01{
    margin-bottom: 50px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.ttlStl01:after{
    content: '';
    display: block;
    height: 7px;
    margin-top: 10px;
    background: url(../images/ttlStl01_black.svg) no-repeat center center / contain;
}

.bk_black .ttlStl01:after{
    background: url(../images/ttlStl01_white.svg) no-repeat center center / contain;
}

.caption{
    margin-top: .6em;
    font-size: 12px;
    line-height: 1.5em;
}

.sec01{
    padding: 70px 0 80px;
}

.secStl01{
    padding: 60px;
    border: 1px solid #e8e8e8;
    box-shadow: 7px 7px 0 0 #e8e8e8;
}

.secStl02 > *{
    flex-basis: 46%;
}

.boxStl01{
    padding: 2em;
    border: 1px solid red;
}

.bk_gray{
    background-color: #e8e8e8;
}

.bk_black{
    color: #fff;
    background-color: #252525;
}

.tableStl01{
    border-collapse: collapse;
}

.tableStl01 tr:not(:last-of-type){
    border-bottom: 1px solid #eee;
}

.tableStl01 tr th ,
.tableStl01 tr td{
    padding: 15px 10px;
}

.tableStl01 tr th{
    min-width: 5em;
    text-align: left;
    vertical-align: text-top;
    white-space: nowrap;
    overflow: hidden;
}

.tableStl01 tr th:after{
    content: '：';
    float: right;
}

.tableStl02{
    width: 100%;
    border-collapse: collapse;
}

.tableStl02 tr:nth-child(odd){
    background-color: #e8e8e8;
}

.tableStl02 tr th ,
.tableStl02 tr td{
    padding: 20px;
}

.tableStl02 tr th{
    width: 30%;
    text-align: left;
}

.tableStl02 tr th .txt_s{
    font-size: 12px;
}


.tableStl02 tr td input[type="text"] ,
.tableStl02 tr td input[type="tel"] ,
.tableStl02 tr td input[type="email"] ,
.tableStl02 tr td textarea{
    width: 100%;
    max-width: 100%;
    padding: 2px;
    border-radius: 0;
    box-shadow: none;
}

.tableStl02 tr td textarea {
    min-width: 100%;
    min-height: 140px;
    resize: vertical;
}

#mailformpro .tableStl02 tr td label{
    background: transparent;
    border: none;
    box-shadow: none;
}

.tableStl02 tr td label + label{
    margin-left: 30px;
}

.tableStl02 tr td label input{
    margin-right: 3px;
}

#thanks-page{
    min-height: 83vh;
    padding-top: 150px;
}

.buttonStl01{
    display: inline-block;
    width: 250px;
    margin: 40px auto 0;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    background-color: #000;
}

/*==================================

フッター

==================================*/

.pagetop{
    position: fixed;
    bottom: 40px;
    right: 30px;
	z-index: 99;
    display: none;
    width: 60px;
    height: 60px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    background-color: #000;
    border-radius: 50%;
    transition: transform .3s , box-shadow .3s;
}

.pagetop:before{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    margin: 15px auto 0;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transform: rotate(45deg);
}

.pagetop:hover{opacity: .8;
}


.bnFooter {
    margin: 10px auto 50px;
}

.bnFooter a {
    position: relative;
    display: inline-block;
    padding: 20px 40px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background-color: #4DBDEF;
    text-decoration: none;
	border-radius: 50px;
    transition: opacity .3s;
}

.bnFooter a:hover {
    opacity: .8;
}

.bnFooter a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 8px;
    border-color: transparent transparent transparent #ffffff;
    transform: translateY(-50%);
}

.bnFooter .txt_l {
    font-size: 24px;
}

footer{
	padding: 10px 0 0;
}

footer .sns{
	margin: 40px auto;
}

footer .sns ul{
	margin-top: 20px;
}

footer .sns li{
	margin: 0 1.2%;
}

footer .sns li a{
	display: inline-block;
	transition: opacity .3s;
}

footer .sns li a:hover {
	opacity: .8;
}


footer .copyright{
	margin-top: 40px;
	padding: 5px;
    color: #fff;
	font-size: 13px;
    background-color: #000;
}

/*==================================

トップページ

==================================*/

.hero-area{
    position: relative;
    width: 100%;
    padding: 60px 0 40px;
}

.hero-area .contentIn{
    position: relative;
}

.hero-area .endInfo{
    padding: 20px 10px;
    border: 1px solid #FF17C0;
}

.hero-area .flexL .endInfo p{
    font-size: 18px;
    line-height: 1.8em;
}

.hero-area .flexL .endInfo .catch{
    font-size: 22px;
    font-weight: bold;
}

.hero-area .youtubeWrap{
    position: relative;
    padding-top: 27%;
}

.hero-area .youtubeWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.hero-area .flexBox + .flexBox{
    margin-top: 30px;
}

.hero-area .flexBox > .flexL{
    flex-basis: 48%;
}

.hero-area .flexBox > .flexR{
    flex-basis: 46%;
}

.hero-area .flexL p{
    margin-top: 10px;
    color: #221815;
    font-size: 18.5px;
}

.hero-area .infoVirus{
    margin: 40px auto 0;
    padding: 40px 50px;
    background: #eee;
}

.hero-area .infoVirus h4{
    margin-bottom: 1em;
    font-size: 25px;
    font-weight: bold;
}

.hero-area .infoVirus .catch{
    margin-bottom: 1em;
    font-size: 18px;
}

.hero-area .infoVirus ul{
    display: inline-block;
    margin: 1em 0;
    text-align: left;
}

.hero-area .infoVirus ul li{
    margin-left: 1em;
    list-style: disc;
}

.languageLink{
            position: absolute;
            top: -50px;
            right: 0;
        }
        
        .thisLanguage:before{
            content: '/';
            margin: 0 .2em;
        }

/*==================================

ナビ

==================================*/

.globalnav{
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
    background-color: #000000;
}

.globalnav ul{
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}

.globalnav ul li{
    margin: 10px 0;
}

.globalnav ul li + li{
    margin-left: 2%;
}


.globalnav ul li a{
	position: relative;
	display: inline-block;
    color: #fff;
    font-size: 14px;
    line-height: 1.4em;
    text-decoration: none;
	transition: opacity .3s;
}

.globalnav ul li a:hover{
	opacity: .8;
}

.globalnav ul li.entry a{
    display: block;
    padding: 10px 20px;
    color: #000;
    background-color: #fff;
    border-radius: 90px;
}

/*==================================

about

==================================*/

#about{
    position: relative;
    padding: 80px 0 100px;
}

#about .flexBox .flexR{
	flex-basis: 60%;
}

#about .flexBox .flexL{
    flex-basis: 40%;
}

#about .txt_l{
    color: #333333;
    font-size: 26px;
    font-weight: bold;
}

#about .txt_s{
    margin: 30px 0 .5em;
    font-size: 16px;
    font-weight: bold;
}


/*==================================

aim

==================================*/

#aim .flexL{
    flex-basis: 60%;
}

#aim .flexL h2{
    margin-bottom: 1em;
}


#aim .flexR{
    flex-basis: 30%;
}



/*==================================

img movie

==================================*/

#img_movie {
    padding-top: 100px;
}

#img_movie .secStl02 .flexBox > .flexImg{
    flex-basis: 48%;
    margin: 20px 0;
}

#img_movie .movieWrap{
    margin: 50px auto 80px;
}

#img_movie .movie:not(.commingsoonwrap){
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

#img_movie .movie iframe{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

#img_movie .movie_caption{
    margin: 30px 0 5px;
    text-align: right;
}

#img_movie .movie .commingsoon{
    position: relative;
    display: block;
    width: 100%;
    height: 430px;
    color: #fff;
    text-align: center;
    background: #ccc;
}

#img_movie .movie .commingsoon p{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 20px;
    transform: translateY(-50%);
}


/*==================================

event

==================================*/


#event .popup{
    margin: 20px auto;
}

#event .popup .popupButton{
    display: block;
    max-width: 32%;
    margin: 0 auto;
    padding: 15px 10px;
    color: #fff;
    background-color: #252525;
    cursor: pointer;
}

/*==================================

event popup

==================================*/



.popup_wrap{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
}


.popup_wrap .overlay{
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
}

.event-popup{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 2;
    width: 80%;
    max-height: 90%;
    margin: 0 auto;
    padding: 80px 30px;
    background-color: #fff;
    overflow-y: scroll;
    transform: translateY(-50%);
}

.event-popup .closeButton{
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.event-popup .closeButton:before ,
.event-popup .closeButton:after{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 3px;
    margin: 0 auto;
    background-color: #252525;
}

.event-popup .closeButton:before{
    transform: rotate(45deg);
}

.event-popup .closeButton:after{
    transform: rotate(-45deg);
}

.event-popup .overviewWrap + .overviewWrap{
    margin-top: 80px; 
}

.event-popup .overviewTtl{
    margin-bottom: .5em;
    font-size: 18px;
    font-weight: bold;
}

.event-popup .overviewImg{
    margin: 50px auto;
}

.event-popup .overviewImg > img + .flexBox{
    margin-top: 60px;
}

.event-popup table{
    margin: 0 auto;
}

.event-popup table tr{
    border-bottom: none;
}

/*==================================

#entryform

==================================*/


#entryform h2{
    margin-bottom: 50px;
    padding: 15px;
    color: #fff;
    text-align: center;
    background-color: #252525;
}

#entryform table{
    margin: 50px auto;
}

#entryform .submit{
    display: block;
    width: 250px;
    margin: 0 auto 50px;
    padding: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-shadow: none;
    background: #252525;
    border: none;
    border-radius: 50px;
    box-shadow: none;
}


/*==================================

@media screen PC

==================================*/

@media screen and (min-width:761px){
	.spOnly{
		display: none !important;
	}
	
	#about h3{
		max-width: 410px;
		margin: 0 auto 20px;
	}
	
	.inputWrap{
		position: relative;
	}
	
	.application .inputWrap .error ,
	.child .inputWrap .error {
		position: absolute;
		font-size: 14px;
		white-space: nowrap;
	}
    
    .globalnav ul{
        display: flex !important;
    }
	
}


/*==================================

@media screen SP

==================================*/

@media screen and (max-width:760px){
	
	.pcOnly{
		display: none !important;
	}
	
	.sp_bk{
		display: block;
	}
	
	
    .tableStl01 tr th ,
    .tableStl01 tr td ,
    .tableStl02 tr th ,
    .tableStl02 tr td{
        display: block;
    }
    
    .tableStl01 tr th{
        padding-bottom: 0;
    }
    
    .tableStl01 tr td{
        padding-top: 5px;
    }
    
    .tableStl01 tr th:after{
        float: none;
    }
    
    .tableStl02 tr th{
        width: 100%;
        padding: 10px 20px 0;
        }
    
    .tableStl02 tr td{
        padding-top: 5px;
    }
    
    .secStl02 > * .caption{
        margin-bottom: 30px;
    }
    

	/*==================================

	globalnav

	==================================*/
    
    .spButton{
        position: relative;
        display: block;
        width: 50px;
        height: 50px;
        cursor: pointer;
    }
    
     .spButton span ,
     .spButton:before ,
    .spButton:after{
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        width: 30px;
        height: 3px;
        margin: 0 auto;
        background-color: #fff;
        transition: .3s;
    }
    
    .spButton:before{
        top: 13px;
    }
    
    .spButton span{
        top: 23px;
    }
    
    .spButton:after{
        top: 33px;
    }

    .spButton.active span ,
     .spButton.active:before ,
    .spButton.active:after{
        top: 23px;
    }
    
    .spButton.active:before ,
    .spButton.active span{
        transform: rotate(135deg);
    }
    
    .spButton.active:after{
        transform: rotate(-135deg);
    }
    
	.globalnav ul{
        display: none;
		flex-wrap: wrap;
		/*padding: 0px 0 10px;*/
	}
	
	.globalnav ul li{
		flex-basis: 46%;
		margin: 0;
		text-align: center;
	}
	
	.globalnav ul li + li{
		margin-left: auto;
	}
    
    .globalnav ul li{
        border-top: 1px solid #fff;
    }
    
    .globalnav ul li a{
        padding: 20px;
    }
	
	/*==================================

	フッター

	==================================*/
	
	.bnFooter a{
		padding: 20px 32px 20px 15px;
	}
	
	.bnFooter .txt_l {
		font-size: 24px;
		line-height: 1.4em;
	}
	
	.pagetop{
		bottom: 20px;
		right: 10px;
		width: 50px;
		height: 50px;
        font-size: 10px;
	}
	
	
	footer .copyright{
		margin-top: 65px;
	}

	/*==================================

	イベント

	==================================*/

    #event ul.popup li{
        max-width: 100%;
    }
    
    #event ul.popup li + li{
        margin-top: 2%;
    }
    
    
	/*==================================

	トップページ

	==================================*/
	
    .hero-area{
        padding: 40px 0;
    }

    .hero-area .flexBox > *{
        margin-bottom: 40px;
    }
    
    .hero-area .infoVirus{
        padding: 40px 30px;
    }
    
	
    .hero-area .youtubeWrap{
        padding-top: 56.2%;
    }
    
    .languageLink{
        top: -30px;
    }
    
	#aim .flexBox{
      display: flex;
      flex-direction: column;
    }
	
	#aim .flexBox .flexL{
	  margin-bottom: 30px;
	}
}
