@charset "utf-8";

/*================================================================
	Base Setting
================================================================*/
html,
body,
#wrap {
	overflow-x:hidden;
	width:100%;
	min-width: 320px;
}
body {
	line-height:2;
	font-family:"Noto Sans JP", "Noto Sans Japanese","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro","sans-serif";
	font-size:16px;
	font-feature-settings:"palt";
	color:#222;
}
body img {
	width:auto;
	vertical-align:bottom;
}
body a {
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	text-decoration:none;
	color:inherit;
}
body .center { text-align: center; }
.baseWidth {
	position:relative;
	max-width:1080px;
	min-width:320px;
	margin:0 auto;
}
.spStyle { display: none; }
.pcStyle { display: block; }
#globalLang { display: none; }
@media only screen and (max-width:1024px) {
	body { font-size:14px; }
	body a:hover img { opacity:1; }
	.spStyle { display:block; }
	.pcStyle { display: none; }
	#globalHeader { display: none; }
}

/* #header
--------------------------------------------*/
#spMenu { display:none; }
#header {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	min-width: 320px;
	padding: 0 30px;
	background: #FFF;
	z-index: 100;
}
#header.fixed { position: fixed; }
#gNav,
#gNav ul {
	display:flex;
	justify-content:space-between;
	align-items:center;
	height:80px;
	font-weight: bold;
	}
#gNav ul a {
	color: #222;
	display:block;
	margin-left:2em;
}
#logo {
	position: relative;
	width:250px;
}
#logo a {
	overflow: hidden;
	display: block;
	width: 100px;
	height: 63px;
	background: url(../img/logo.png) no-repeat;
	background-size: contain;
	text-indent: -9999px;
}

.breadcrumbs {
	overflow-x:auto; 
	display: flex;
	position: absolute;
	width: 100%;
	padding:0.5em 1.2em;
	font-size: 0.875em;
	text-shadow: 0 0 5px rgba(0,0,0,0.8);
	z-index: 1;
}
.breadcrumbs,
.breadcrumbs a {
	white-space: nowrap;
	color: rgba(255,255,255,0.6);
}
.breadcrumbs .current-item {
	color: rgba(255,255,255,0.9);
}
.breadcrumbs > span + span:before {
	content: "\0bb";
	margin: 0 0.5em;
}
.breadcrumbs a { text-decoration: underline; }
.breadcrumbs a:hover { text-decoration: none; }

@media only screen and (max-width:1024px) {
	#spMenu {
		display:flex;
		justify-content: center;
		align-items: center;
		position: relative;
		width: 50px;
		height: 50px;
		background: #46aef7 linear-gradient(15deg, #46aef7, #1addbf);
	}
	#spMenu span,
	#spMenu:before,
	#spMenu:after {
		content: "";
		display: inline-block;
		position: absolute;
		width: 26px;
		height: 2px;
		background: #FFF;
		transition: 0.3s;
	}
	#spMenu:before { top: 14px; }
	#spMenu:after { bottom: 14px; }
	
	#spMenu.open { 
		background: #46aef7 linear-gradient(15deg, #46aef7, #1addbf);
	}
	#spMenu.open:before,
	#spMenu.open:after {
		top: auto;
		bottom:auto;
		background: #FFF;
	}
	#spMenu.open:before { transform: rotate(45deg); }
	#spMenu.open:after { transform: rotate(-45deg); }
	#spMenu.open span { opacity: 0; }
	#spMenu.open + ul { display: block; }
	
	#header {
		padding-left:1em;
		padding-right: 0;
	}
	#gNav { height:50px; }
	#gNav ul {
		display: none;
		position: absolute;
		top: 50px;
		right: 0;
		width: 100%;
		height: auto;
	}
	#gNav ul a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 50px;
		margin-left:0;
		padding: 0 1em;
		border-top: 1px solid rgba(255,255,255,0.2);
		/*background: #46aef7 linear-gradient(15deg, #46aef7, #1addbf);*/
		background: rgba(49,122,230,0.95);
		color: #FFF;
		border-radius: 0px;
	}
	#gNav li:first-of-type a { border: 0; }
	#gNav ul a:after {
		content: "";
		border-style: solid;
		border-width: 6px 0 6px 6px;
		border-color: transparent transparent transparent #FFF;
	}
	#gNav .contactNav a {
		justify-content: space-between;
		flex-direction: row-reverse;
		width: auto;
		padding: 0 1em;
		border-color: rgba(250,168,2,1.0);
 		background: rgba(250,168,2,0.9);
		font-size: inherit;
	}
	#gNav .contactNav a:after { display: none; }
	#logo {
		top: 3px;
		width:150px;
		height: 50px;
	}
	#logo a {
			width:68px;
		}
	.breadcrumbs {
		padding:0.5em 1.2em;
		font-size: 10px;
	}
}

/* #main
--------------------------------------------*/
#main {
	position: relative;
}
@media only screen and (max-width:1024px) {
}

/*================================================================
	Contents layout
================================================================*/
section.sec{
	padding: 5em 0 6em;
}
.headline {
	font-size:2.4em;
	font-weight: bold;
	line-height: 1.5;
}
.headline2 {
	font-size:1.5em;
	letter-spacing: 0.1rem;
	line-height: 1.5;
	margin-bottom: 0.4em;
	}
.headline3 {
	font-size:1.8em;
	font-weight: 900;
	letter-spacing: 0.1rem;
	line-height: 1.5;
	}
.headline3 .grad{
	color: #4285ec;
	background: linear-gradient(176deg, rgba(42,255,253,1), rgba(36,89,255,1));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
}
section.sec .txt p,
section.sec .txt ul {
	margin-bottom: 1.6em;
}
.contact,
.btnType01 a{
	display:inline-flex;
	justify-content:center;
	align-items:center;
	color:#FFF;
	position: relative;
	z-index: 10;
}
.btnType01 a i{
	font-size: 1.2em;
	padding-right: 0.3em;
}
.btnType01 a {
	color:#333333;
	text-align: center;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding:1em 2em 1em 1.5em;
	background:#FFF;
	border: 2px solid #333333;
	border-radius: 1px;
	min-width: 340px;
	box-shadow:0px 3px 0px rgba(0,0,0,.3);
}


.btnType01 a:hover,
.banlink a:hover,
.applink a:hover {
	opacity: 0.7;
	transition: all 0.3s ease 0s;
}
.buttonArrow span::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0.8em;
	width: 8px;
	height: 2px;
	margin-top: -3px;
	background-color: #333333;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
.buttonArrow span::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0.8em;
	width: 30px;
	height: 2px;
	background-color: #333333;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

#gNav .contact a {
	color:#000;
	min-width: 140px;
	padding:0.3rem 1rem;
	background: #FFF;
}
.linkList {
	margin-top:1.4em;
}
.linkList li{
	text-indent: -1em;
	margin-left:3em;
	line-height: 1.6;
	margin-bottom: 0.3em;
}
.linkList li i{
	padding-right: 0.5em;
}
.linkList li a,
.linkList li a:hover,
.linkList li a:visited{
	color:#307be1;
}
.linkUnderline a {
	position: relative;
	display: inline-block;
	text-decoration: none;
}
.linkUnderline a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #307be1;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .3s;
}
.linkUnderline li a:hover::after {
	transform: scale(1, 1);
}


@media only screen and (max-width:1024px) {
	section.sec{
		padding: 3em 0 4em;
	}
	.headline {
		font-size:2em;
		letter-spacing: 0.1em;
	}
	.headline2 {
		font-size:1.5em;
		padding: 0 1em;
	}
	.btnType01 a {
		width: 100%;
	}
}
@media only screen and (max-width:450px) {
	.btnType01 a {
		min-width: initial;
	}
}

.toggle + * { display:none; }
.toggle.active + * { display:block; }

ul.caution {
	padding-left: 1em;
}
ul.caution li { text-indent: -1em; }
ul.caution li:before {
	content: "＊";
	color: #7a0018;
}
.youtube {
	width: auto;
	margin: 0 auto 3rem;
}
.youtube .movie {
	position: relative;
	padding-top: 56.25%;
}
.youtube iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.youtube p { padding-top: 1rem; }

@media only screen and (max-width:1024px) {
	.youtube {
		width: 100%;
		margin: 0 auto 2em;
	}
	.youtube p { padding-top: 1em; }
}

/* colorbox main
------------------*/
#cboxLoadingOverlay,
#cboxLoadingGraphic { display: none !important; }

#colorbox,
#cboxWrapper,
#cboxContent,
#cboxLoadedContent,
#cboxMain {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	min-width: 320px;
	background: none !important;
	cursor: pointer;
}
#cboxMain,
#cboxInner {
	display: flex;
	justify-content: center;
	align-items: center;
}
#cboxInner {
	position: relative;
	width: 80%;
	height: 80%;
	max-width: 1120px;
	max-height: 730px;
}
#cboxInner .youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
#cboxInner .youtube iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#cboxMain #close {
	position:absolute;
	top: 17px;
	right:20px;
	width:50px;
	height:50px;
	cursor: pointer;
}
#cboxMain #close:before,
#cboxMain #close:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 40px;
	margin: -20px 0 0 -1px;
	background: #FFF;
}
#cboxMain #close:before { transform: rotate(45deg); }
#cboxMain #close:after { transform: rotate(-45deg); }
@media only screen and (max-width:768px) {
	#cboxInner {
		width: calc(100% - 20px);
		height: calc(100% - 20px);
	}
	#cboxMain #close {
		top: 0;
		right:0;
		width:50px;
		height:50px;
	}
	#cboxMain #close:before,
	#cboxMain #close:after {
		height: 27px;
		margin: -14px 0 0 -1px;
	}
}


/* #keyv
--------------------------------------------*/
#keyv {
	position: relative;
	margin: 0;
	background: #00A5E5 url("../img/keyv.jpg") no-repeat 50% 50%;
	background-size: cover;
	color: #FFF;
	min-height: 700px;
}
#keyv .txt {
	display: flex;
	flex-direction: column;
	justify-content: center;
	/*width: 1080px;
	height: 700px;*/
	margin: 0 auto;
	z-index: 3;
	text-align: center;
}
#keyv .banlink{
	position: absolute;
	top: 78%;
	left: calc(50% - 110px);
	border-radius: 10px;
	width: 220px;
}
#keyv .banlink img{
	width: 100%;
	border-radius: 10px;
}
/*
@media only screen and (max-width:1024px) {
	#keyv {
		margin: 0;
		background-size: cover;
		min-height: 400px;
	}
	#keyv .txt {
		width: 100%;
		height: auto;
	}
	#keyv .banlink{
		width: 180px;
		top: 76%;
		left: calc(50% - 90px);
	}
}*/
@media only screen and (max-width:1024px) {
	#keyv {
		background: #00A5E5 url("../img/keyv_sp.jpg") no-repeat 50% 50%;
		background-size: cover;
		min-height: 400px;
		padding: 50% 0;

	}
	#keyv .banlink{
		width: 40%;
		top: 55%;
		left:6%;
	}
	#keyv .txt { 
		padding: 5% 1em;
		text-align: center;
	}
	#keyv .title {
		margin-bottom: 1.8em;
	}
}

/* #pickup
--------------------------------------------*/
#pickup{
	background-color:#fafdff;
	background-image: url("../img/bg_dot.png"),url("../img/bg_pattern.png");
	background-position: 50% 0%, 50% 0%;
	background-repeat: repeat,no-repeat;
	background-size: auto,contain;
}
#pickup.sec{
	padding-top:2em;
}
#pickup .beginner{
	margin-bottom:2em;
	padding:0 2em;
}
#pickup .baseWidth.w1180{
	max-width:1180px;
}
#pickup .number,.picon{
	font-size: 0.9em;
	color:#FFF;
	font-weight: bold;
	letter-spacing: 1px;
	line-height: 1.4;
	padding: 0 0.7em 0.2em;
	margin-bottom: 1.4em;
	background: #333;
	display: inline-block;
}
.picon{
	margin-bottom: 0.6em;
	background: linear-gradient(180deg, rgba(66,133,236,1), rgba(11,186,251,1));
}

#pickup .number .no{
	font-size: 1.5em;
	font-family: 'Roboto', sans-serif;
	padding-left: 3px;
}
#pickup .mostpu{
	display:flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 90%;
	margin: 0 auto 4em;
	padding: 2.4em 0;
	background: rgba(255, 255, 255, 0) linear-gradient(160deg, rgba(76,197,248,0.3), rgba(132,245,222,0.3));
	 -webkit-clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
	clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
	/*box-shadow:0px 10px 0px rgba(0,0,0,0.3);*/
}
#pickup .mostpu .pic{
	width: 180px;
	margin-right: 3em;
}
#pickup .subpu{
	display:flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 5em;
}
#pickup .subpu .item{
	width: 30%;
	text-align: center;
}
#pickup .subpu .pic{
	width: 130px;
	margin: 0 auto 1.4em;
}
#pickup .pro{
	background-color: #FFF;
	border: 10px solid;
	border-image: linear-gradient(150deg, rgba(42,255,253,0.4), rgba(36,89,255,0.4));
	border-image-slice: 1;
	padding: 2em 3em 3em;
}
#pickup .pro .grad .small{
	font-size:0.6em;
}
#pickup .pro .subpu{
	margin: 3em 0 0;
}
#pickup .pro .line{
	font-size:1em;
	font-weight: normal;
	padding:0 0.4em;
	background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #f8f066 0%) repeat scroll 0 0;
	display: inline;
}
#pickup .pro .prolist{
	display:flex;
	flex-direction: row;
	justify-content:flex-start;
	align-items: flex-start;
	flex-basis: 49%;
}
#pickup .pro .pic{
	width: 120px;
	margin: 0 1.4em 0 0;
	flex-basis: 120px;
}

@media only screen and (max-width:1024px) {
	#pickup .mostpu{
		flex-wrap: wrap;
		clip-path: none;
		text-align: center;
		padding: 2em 2em 1em;
	}
	#pickup .mostpu .pic{
		width: 180px;
		margin: 0 0 1.5em 0;
	}
	#pickup .mostpu .headline{
		font-size: 1.6em;
		margin-bottom: 0.5em;
	}
	#pickup .pro{
		margin: 0em 1em;
		padding: 2em 2em 0em;
	}
	#pickup .pro .headline2{
		padding: 0;
	}
	#pickup .pro .prolist{
		display:flex;
		flex-direction: row;
		justify-content:flex-start;
		align-items: flex-start;
		flex-basis: 100%;
		margin-bottom: 3em;
	}
	#pickup .pro .prolist .pic{
		min-width: 100px;
	}
}
@media only screen and (max-width:768px) {
	#pickup{
		background-repeat: repeat,repeat;
		background-size: auto,auto;
	}
	#pickup .subpu{
		margin-bottom: 0;
	}
	#pickup .subpu .item{
		width: 80%;
		margin-bottom: 4em;
	}
}


/* #dance
--------------------------------------------*/
#dance {
	position: relative;
	background-color: #EAFBFF;
	background-image:url("../img/bg_pattern.png");
	background-position:50% 50%;
	background-repeat:no-repeat;
	background-attachment: fixed;
	background-size: cover;
}
#dance .headline{
	margin-bottom: 0.4em;
	line-height: 1.4;
	letter-spacing: 0.1em;
}
#dance .toptxt {
	font-size: 1.2em;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
	line-height: 1.8;
	margin-bottom: 2em;
	padding: 0 4%;
}
#dance .line {
	padding: 0 0.4em;
	background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #f8f066 0%) repeat scroll 0 0;
	display: inline;
}
#dance .youtube{
	max-width: 880px;
	margin: 0 auto 2em;
	position: relative;
	z-index: 1;
}
#dance .dancenote{
	font-weight: 700;
	line-height: 2;
	letter-spacing: 0.1em;
	text-align: center;
}
@media only screen and (max-width:1024px) {
	#dance .youtube{
		width: 96%;
	}
	#dance .dancenote{
		text-align: left;
		padding:0 3%;
	}
}


/* #operation
--------------------------------------------*/
#operation .headline{
	margin-bottom:3rem;
}
#operation .headline .small{
	font-size:0.6em;
}
#operation .featureBox{
	display:flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-bottom: 5em;
}
#operation .featureBox .pic{
	text-align: center;
	min-width: 346px;
	width: 30%;
}
#operation .featureBox .leftArea{
	order: -1;
	text-align: right;
}
#operation .featureBox .leftArea div:nth-child(2) {
	width: 100%;
}
#operation .featureBox ul{
	width: 33%;
	position: relative;
}
#operation .featureBox li{
	width: 100%;
	display:flex;
	align-items: center;
}
#operation .featureBox .leftArea li{
	flex-direction: row-reverse;
	justify-content: flex-end;
}
#operation .featureBox .rightArea li{
	flex-direction: row;
	justify-content: flex-start;
}
#operation .leftArea li{
	position: absolute;
	right:-7px;
	top:0;
}
#operation .rightArea li{
	position: absolute;
	left:-8px;
	top:0;
}
#operation .leftArea .fe02{top:90px;}
#operation .leftArea .fe03{top:180px;}
#operation .leftArea .fe04{top:295px;}
#operation .leftArea .fe05{top:420px;}

#operation .rightArea .fe01{top:-10px;}
#operation .rightArea .fe02{top:130px;}
#operation .rightArea .fe03{top:210px;}
#operation .rightArea .fe04{top:310px;}
#operation .rightArea .fe05{top:410px;}
#operation .featureBox .icon{
	width: 60px;
	min-width: 60px;
}

#operation .featureBox .picon{
	font-size: 0.8em;
	margin-bottom: 0em;
}
#operation .featureBox .name{
	color:#000688;
	font-weight: 700;
}
#operation .featureBox .txt{
	font-size:0.9em;
	line-height: 1.6;
}

#operation .unachange{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	
	border:8px solid rgba(227,1,127,0.2);
	padding: 2em 3em;
	margin-bottom: 5em;
	border-radius: 20px;
}
#operation .unachange .model{
	text-align: center;
	min-width: 160px;
	width: 50%;
}
#operation .unachange .txt{
	text-align: left;
	padding-left: 3em;
}
#operation .unachange .colorUna{
	color: #e30480;
	background: linear-gradient(180deg, rgba(227,1,127,1), rgba(234,104,149,1));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: #004097;
}
#operation .unachange .boxline{
	font-size: 0.9em;
	color: #333;
	letter-spacing: 1px;
	line-height: 1.4;
	padding: 0.2em 1em 0.4em;
	margin-bottom: 0.6em;
	display: inline-block;
	border:1px solid #333;
}
#operation .unachange .big{	font-size:1.2em;}
#operation .unachange .small{	font-size:0.7em;}

#operation .pointBox{
	padding: 3em 4em 3.4em;
	background-color: #eafbff;
	border-radius: 10px;
	position: relative;
}
#operation .pointBox .pointchara{
	position: absolute;
	top: -30px;
	right: -30px;
	width: 240px;
}

#operation .pointBox ul{
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 3em 0 1.5em;
}
#operation .pointBox li{
	font-weight: 700;
	width: 31%;
	margin-bottom: 2em;
	display:flex;
	align-items: center;
}
#operation .number{
	color: #FFF;
	font-size: 0.8em;
	font-family: 'Roboto',sans-serif;
	text-align: center;
	line-height: 1;
	width: 80px;
	height: 80px;
	min-width: 80px;
	padding-top: 1.6em;
	margin-right: 1.2em;
	border-radius: 50%;
	background: #46aef7 linear-gradient(15deg, #1addbf, #46aef7);
}
#operation .number .no {
	font-size: 2.6em;
}
#operation .pointBox .txt{
	font-size: 1.1em;
	line-height: 1.6;
	letter-spacing: 1px;
}

@media only screen and (max-width:1024px) {
	#operation .featureBox{
		display:flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
		flex-wrap: wrap;
		margin-bottom: 3em;
	}
	#operation .featureBox ul{
		width: 90%;

	}
	#operation .featureBox .leftArea{
		order: 0;
		text-align: left;
	}
	#operation .featureBox .leftArea li,
	#operation .featureBox .rightArea li{
		position: static;
		flex-direction: row;
		justify-content: flex-start;
		margin-bottom: 1em;
	}
	#operation .featureBox .pic{
		text-align: center;
		width: 90%;
		min-width: 370px;
		margin-bottom: 2em;
	}
	#operation .featureBox .pic img{
		margin: 0 auto;
	}
	
	#operation .unachange{
		padding: 2em 2em 1em;
		width: 96%;
		margin: 0 auto 5em;
	}

	#operation .pointBox h2{
		margin-bottom: 0.5em;
	}
	#operation .pointBox{
		width: 96%;
		margin: 0 auto;
		padding: 3em 1.5em;
	}
	#operation .pointBox .pointchara{
		display: none;
	}
	#operation .pointBox ul{
		margin-top: 2em;
	}

	#operation .pointBox li{
		width: 100%;
		margin-bottom: 1.5em;
	}
	#operation .number{
		width: 70px;
		height: 70px;
		min-width: 70px;
	}
}
@media only screen and (max-width:768px) {
	#operation .unachange{
		flex-wrap: wrap;
		clip-path: none;
		text-align: center;
	}
	#operation .unachange .model{
		min-width: 160px;
		width: 30%;
	}
	#operation .unachange .txt{
		text-align: left;
		padding: 0;
	}
}


/* #movieArea
--------------------------------------------*/
#movieArea{
	margin-bottom: 6em;
	/*padding-top: 4em;
	border-top: 1px solid #DDD;*/
}
#movieArea .headline3 span{
	color: #404658;
	position: relative;
}
#movieArea .headline3 span:before{
	content: '';
	position: absolute;
	bottom: 30%;
	left: -2em;
	width: 46px;
	height: 3px;
	margin-top: -6px;
	background-color: #404658;
	-webkit-transform: translateY(-50%) rotate(65deg);
	transform: translateY(-50%) rotate(65deg);
	border-radius: 10px;
}
#movieArea .headline3 span:after{
	content: '';
	position: absolute;
	bottom: 30%;
	right: -1.8em;
	width: 46px;
	height: 3px;
	margin-top: -6px;
	background-color: #404658;
	-webkit-transform: translateY(-50%) rotate(115deg);
	transform: translateY(-50%) rotate(115deg);
	border-radius: 10px;
}
#movieArea .movieList{
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	/*justify-content:center;*/
	flex-wrap: wrap;
	margin: 3em  auto 0;
}
#movieArea .movieList .pMov{
	width: 49%;
	/*width: 70%;*/
	margin-bottom: 1em;
}
#movieArea .movieList .pMov .youtube {
	margin: 0 auto;
}
#movieArea .movieList .pMov .capt{
	text-align: center;
}

@media only screen and (max-width:1024px) {
	#movieArea{
		margin-bottom: 4em;
	}
	#movieArea .movieList{
		justify-content: center;
		padding: 0;
		width: 90%;
		margin: 2em auto;
	}
	#movieArea .movieList .pMov{
		width: 100%;
		margin-bottom: 1em;
		background-color: #FFF;
	}
	#movieArea .movieList .pMov:last-child{
		margin-bottom: 0;
	}
	#movieArea .movieList .pMov .youtube {
		margin: 0 auto;
	}
}



/* #news
--------------------------------------------*/
#news {
	background:#9be7f5 url(../img/bg_news.png) no-repeat 50% 100% ;
	background-size: cover;
	background-attachment: fixed;
}
#news .headline{
	margin-bottom:3rem;
}
#news .newslist{
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}
#news .newslist .item{
	width: 31%;
	margin-bottom: 2em;
	background-color: #FFF;
	box-shadow:0px 3px 8px rgba(0,0,0,.3);
}
#news .newslist .item:hover{
	box-shadow:none;
	transition: all 0.3s ease 0s;
}
#news .newslist .item .pic img{
	width: 100%;
}
#news .newslist .item .txt{
	padding: 1em 1.8em 1.8em;
}
#news .newslist .item .data{
	font-size: 1.3em;
	font-family: 'Aldrich','Roboto', sans-serif;
	margin-bottom: 0;
}
@media only screen and (max-width:1024px) {
	#news .newslist{
		justify-content:center;
		padding: 0 2em;
	}
	#news .newslist .item {
		width: 100%;
	}
	#news .newslist .item:last-child{
		margin-bottom: 0em;
	}
}


/* #promo
--------------------------------------------*/
#promo {
	position: relative;
}
#promo .youtube{
	max-width: 880px;
	margin: 0 auto 2em;
	position: relative;
	z-index: 1;
}
#promo .youtube::before{
	content: '';
	border: 6px solid;
	border-image: linear-gradient(150deg, rgba(42,255,253,0.4), rgba(36,89,255,0.4));
	border-image-slice: 1;
	width: calc(128% - 10px);
	height: 60%;
	position: absolute;
	top: 20%;
	left: calc(0% - 13.5%);
	z-index: -1;
	box-sizing:border-box;
}
#promo .youtube::after{
	content: '';
	border: 14px solid;
	border-image: linear-gradient(150deg, rgba(42,255,253,0.4), rgba(36,89,255,0.4));
	border-image-slice: 1;
	width: calc(136% - 28px);
	height: 70%;
	position: absolute;
	top: 15%;
	left: calc(0% - 16.5%);
	z-index: -1;
	box-sizing:border-box;
}
#promo .headline2{
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1.8;
}
#promo .charaBox{
	display: flex;
	width: 100%;
	padding: 0 2%;
	align-items: flex-end;
	justify-content: space-between;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
}
#promo .chara01{
	max-width: 210px;
}
#promo .chara02{
	max-width: 160px;
	transform:rotate(10deg);
	padding-bottom:30px;
	margin-right: 20px;
}
@media only screen and (max-width:1180px) {
	#promo .charaBox{
		display: none;
	}
}
@media only screen and (max-width:1024px) {
	#promo .youtube{
		width: 96%;
	}
}


/* #profile
--------------------------------------------*/
#profile{
	position: relative;
	z-index: 0;
	background-color: #eff8ff;
}
#profile .baseWidth{
	max-width: 990px;
	margin-top: 6em;
}
#profile .profbox{
	position: relative;
	height: 878px;
	background: url(../img/bg_profile.png) no-repeat top left;
}
#profile .pic{
	position:absolute;
	top:-100px;
	left:60px;
	width: 100%;
	max-width: 500px;
}
#profile .txt{
	font-size: 1.2em;
	line-height: 2.2;
	padding: 0 80px;
}
#profile .profbox .title{
	padding: 90px 0 65px 270px;
}
#profile .profbox p img{
	margin-bottom: 2em;
}
#profile .profbox .txt .txtPing{
	padding-left:270px;
}
@media only screen and (max-width:1024px) {
	#profile .profbox {
		height: auto;
		padding-bottom: 1em;
		border-bottom: 1px solid rgba(42,255,253,.2);
	}
	#profile .profbox .txt .txtProf{
		font-size: 14px;
	}
	#profile .pic {
		position: absolute;
		/*top: -55px;*/
		left: 20px;
		width: 50%;
	}
	#profile .txt {
		font-size: 14px;
		line-height: 2;
		padding: 0 30px 0 60px;
	}
	#profile .profbox .title{
		padding: 60px 0 40px 25%
	}
	#profile .profbox .txt .txtPing {
		padding-left: 25%;
	}
}
@media only screen and (max-width:530px) {
	#profile .baseWidth{
	margin-top: 3em;
	}
	#profile .profbox .title{
		padding: 15% 15% 10% 25%
	}
	#profile .txt {
		padding: 0 1em 0 50px;
	}
	#profile .pic {
		top: -55px;
		width: 40%;
	}
	#profile .profbox .txt .txtPing {
		padding-left: 0;
	}
	#profile .profbox .txt .txtPing img{
		margin-bottom: 0;
	}
}

/* #info
--------------------------------------------*/
#app{
	background-color: #5a5b61;
}
#app .info{
	color:#FFF;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	/*padding: 50px 0;
	background: linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,.1) 25%,rgba(255,255,255,.1) 50%,rgba(255,255,255,.1) 75%,rgba(255,255,255,0) 100%);*/
}
#app .txt .title {
	margin-bottom: 1em;
}
#app .pic, #app .txt {
	position: relative;
	width: 50%;
	padding: 0 20px;
}
#app .info .pic{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
#app .txt a{
	overflow: hidden;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	border: 1px solid #b1b1b1;
	border-radius: 10px;
}
#app .applink a img{
	width: auto;
	height: 100%;
	border-radius: 10px;
}

@media only screen and (max-width:1024px) {
	#app .txt .title img{
		width: 180px;
	}
}
@media only screen and (max-width:590px) {
	#app .info .pic{
		display: none;
	}
	#app .info .txt{
		width: 100%;
		padding: 0 2em;
		text-align: center;
	}
	#app .applink a{
		height: 50px;
	}
}


/* sns
--------------------------------------------*/
#sns { background:#DDD; }
#sns ul {
	display: flex;
	justify-content: center;
	padding: 1em 0;
	font-size: 32px;
	color: #004a88;
}
#sns li { margin: 0 0.8em; }
@media only screen and (max-width:1024px) {
	#sns ul {
		padding: 1em 0;
		font-size: 20px;
	}
}


/* IE グラデ対応
--------------------------------------------*/
@media all and (-ms-high-contrast:none){
	.headline3 .grad,
	#operation .unachange .colorUna{
		background: none;
	}
}


/*======================================================
	ブログ記事 / blogGuid
================================================*/
/* #blogGuid
------------------------------------------------------*/
#blogGuid {
	background-color: #FFF;
}
#blogGuid .headline {
	margin-bottom: 3rem;
}
#blogGuid .cardLayout{
	display: flex;
	flex-direction: row;
	justify-content:space-evenly;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto 2em;
}
#blogGuid .cardLayout .item {
	width: 31%;
	margin-bottom: 2%;
	border-radius: 4px;
	position: relative;
	transition: all .3s ease;
	background-color: #fff;
	box-shadow: 0px 1px 6px rgb(0 0 0 / 12%);
	overflow: hidden;
}
#blogGuid .cardLayout .item:hover {
	opacity: 0.8;
	box-shadow: 0px 1px 2px rgb(0 0 0 / 8%);
	background-color: #EAFBFF;
}
#blogGuid .cardLayout .item .inner {
	width: 90%;
	margin: 1em auto 1.2em;
}
#blogGuid .cardLayout .item .inner .title {
	font-weight: 700;
	margin-bottom: 0.5em;
}
#blogGuid .cardLayout .item .inner .txt {
	font-size: 0.9em;
	
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
#blogGuid .btn {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	height: inherit;
}
#blogGuid .btn a {
	color: #4578E4;
	font-size: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 270px;
	height: 60px;
	margin: 0 1em;
	padding: 0 1em;
	white-space: nowrap;
	border: 1px solid #4578E4;
	transition: .2s;
}
#blogGuid .btn a:hover {
	border: 1px solid #4578E4;
	background: #4578E4;
	color: #FFF;
}
@media only screen and (max-width:768px) {
	#blogGuid {
		padding: 4em 0;
	}
	#blogGuid .cardLayout .item {
		width: 47%;
		margin-bottom: 2%;
	}
	#blogGuid .cardLayout .item .inner .txt {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
	}
}


