@charset "UTF-8";

/* CSS Document */

/*-------------------------------------
				header
---------------------------------------*/

header {
    height: 100vh;
	display: flex;
    align-items: center;
	justify-content: center;
}

header h1 {

}

@media(min-width:768px){

}

/*-------------------------------------
			各article
---------------------------------------*/

article section h2 {
	font-size: 40px;
	text-align: center;
	font-weight: 700;
	margin-bottom: 45px;
	line-height: 1.4;
}

article section h2 span.sub {
	font-size: 15px;
	text-align: center;
	display: inline-block;
	line-height: 1.6;
	margin-top: 15px;
	font-weight: normal;
}

article#news,
article#profile{
	margin-bottom: 200px;
}

article#plans {
	margin-bottom: 50px;
}

@media(min-width:768px){
	
article section h2 {
	font-size: 65px;
	margin-bottom: 65px;
}
	
article section h2 span.sub {
	font-size: 18px;
line-height: 1.8;
display: inline-block;
		margin-top: 0;
}
	
article#news,
article#profile{
	margin-bottom: 250px;
}

article#plans {
	margin-bottom: 50px;
}
	
}

/*-------------------------------------
			news
---------------------------------------*/

#news dl {
	font-size: 16px;

}

#news dl dd {
	margin-bottom: 30px;
}

#news dl dd a {
	color: #fefefe;
}

@media(min-width:768px){

#news dl {
	font-size: 20px;
	display: flex;
	flex-wrap: wrap;
	width: 700px;
	margin: 0 auto;
}
	
#news dl dt,
#news dl dd {
	margin-bottom: 25px;
}
	
#news dl dt {
	width: 25%;
}

#news dl dd {
	width: 75%;
}
	
}

/*-------------------------------------
			profile
---------------------------------------*/

#profile .deta {
	
}

#profile .deta div {
	width: 75%;
	margin: 0 auto 20px;
}

#profile .deta div img {
	width: 100%;
}

#profile p {
	font-size: 16px;
	margin-bottom: 1.5rem;
}

#profile p.sign {
	text-align: center;	
}

@media(min-width:768px){
#profile .deta {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
}

#profile .deta div {
	width: 48%;
	margin: 0;
}
	
#profile p {
	font-size: 18px;
	text-align: center;
}
	
}

/*-------------------------------------
			5 plans
---------------------------------------*/

#plans .plans-list {
	margin-bottom: 80px;
}

#plans .plans-list div {
	width: 60px;
	margin: 0 auto 15px;
}

#plans .plans-list div img {
	width: 100%;
}

#plans .plans-list h3 {
	text-align: center;
	font-size: 28px;
	font-weight: 400;
}

#plans .plans-list p {
	text-align: center;
	font-size: 16px;
}

#plans .sns {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	margin-top: 150px; 
}

#plans .sns div {
	margin: 0 15px;
}

#plans .sns div a{
	color: #fefefe;
}

.glowAnime span{opacity: 0;}

/*アニメーションで透過を0から1に変化させtext-shadowをつける*/
.glowAnime.glow span{ animation:glow_anime_on 2s ease-out forwards; }

@keyframes glow_anime_on{
	0% { opacity:0; text-shadow: 0 0 0 #fff000,0 0 0 #fff000;}
	50% { opacity:1;text-shadow: 0 0 10px #fff000,0 0 15px #fff000; }
	100% { opacity:1; text-shadow: 0 0 0 #fefefe,0 0 0 #fefefe;}
}

@media(min-width:768px){
	
#plans .plans-list div {
	width: 80px;
}
#plans .plans-list h3 {
	font-size: 36px;
}
#plans .plans-list p {
	font-size: 18px;
}
	
}

/*-------------------------------------
			slider
---------------------------------------*/
.slider1 img,
.slider2 img {
    width:100%;
    height:auto;
}

@media(min-width:768px){
}

/*-------------------------------------
			footer
---------------------------------------*/
footer {
	padding: 70px 0 35px;
}
footer p {
	font-size: 12px;
	text-align: center;
}

footer .btn {
	text-align: center;
	overflow: hidden;
	width: 200px;
	height: 40px;
	margin: 0 auto 100px;
	padding: 0;
	border-radius: 30px;
	border: 2px solid #fefefe;
}

footer .btn a {
	display: block;
	position: relative;
	z-index: 100;
	text-align:center;
	background: #090909;
	color: #fefefe;
	font-size: 16px;
	line-height: 40px;
	text-decoration:none;
}

footer .btn a:before { 
	display: block;
	content: "";
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	right: 20px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: #fefefe;
}
footer .btn a:after { 
	display: block;
	content: "";
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	right: 25px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: #090909;
}
footer .btn a:hover:after { 
	background: #090909;
}

@media(min-width:768px){
}