@charset "utf-8";

/* ---------------------------------------- 
 - mainVisual 
---------------------------------------- */
/* mainVisual */
#mainVisual{
	position:relative;
	max-height: 100%;
	background:#000;
}
#mainVisualCol{
	position:relative;
	width:100%;
	height: 100%;
	max-height: 100%;
	overflow: hidden;
}

/* scrollBtn */
#mainVisual #mainVisualCol .scrollBtn {
	position: absolute;
	display: inline-block;
	bottom: 8px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 10;
	font-weight: normal;
	padding:0 0 45px;
	opacity: 0;
	animation: scrollIn 1s ease 0s 1 forwards;
    -webkit-animation: scrollIn 1s ease 0s 1 forwards;
	animation-delay:1.5s;
}
#mainVisual #mainVisualCol .scrollBtn:after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	width: 1px;
	height: 40px;
	margin: auto;
	display: block;
	background: url("../images/common/scroll_arw.png") no-repeat center center;
	z-index: 1;
	-webkit-transform: translate3d(0, 0, 0) scaleY(1);
	transform: translate3d(0, 0, 0) scaleY(1);
	-webkit-transform-origin: top left;
	transform-origin: top left;
	transition: -webkit-transform .4s;
	transition: transform .4s;
}
#mainVisual #mainVisualCol .scrollBtn.active:after {
	-webkit-transform-origin: bottom left;
	transform-origin: bottom left;
	-webkit-transform: translate3d(0, 0, 0) scaleY(0);
	transform: translate3d(0, 0, 0) scaleY(0);
}
#mainVisual #mainVisualCol .scrollBtn a{
	font-size: 1.0rem;
	color: #fff;
	text-decoration: none;
}
@keyframes scrollIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes scrollIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@media screen and (max-width: 768px) {
	#mainVisual #mainVisualCol .scrollBtn {
		padding:0 0 35px;
		bottom: 6px;
	}
	#mainVisual #mainVisualCol .scrollBtn:after {
		height: 30px;
	}
}

/* media（動画） */
.media {
    position: relative;
    width:100%;
	max-height: 100%;
    display: inline-block;
    overflow: hidden;
}
.media video {
    position: absolute;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
@supports ( object-fit: cover ) {
    .media video {
        position: static;
        height: 100%;
        width: 100%;
        left: 0;
        -o-object-fit: cover;
        object-fit: cover;
        top: 0;
        -ms-transform: none;
        -moz-transform: none;
        -webkit-transform: none;
        transform: none;
    }
}
@supports (-ms-ime-align: auto) { /* Edgeのみ */
	.media video {
        position: absolute;
        height: auto;
        width: auto;
		min-height: 100%;
    	min-width: 100%;
        top: 50%;
    	left: 50%;
        -ms-transform: translateX(-50%) translateY(-50%);
    	-moz-transform: translateX(-50%) translateY(-50%);
    	-webkit-transform: translateX(-50%) translateY(-50%);
    	transform: translateX(-50%) translateY(-50%);
    }  
}
.media > img {
    position: absolute;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
@supports ( object-fit: cover ) {
    .media img {
        position: static;
        height: 100%;
        width: 100%;
        left: 0;
        -o-object-fit: cover;
        object-fit: cover;
        top: 0;
        -ms-transform: none;
        -moz-transform: none;
        -webkit-transform: none;
        transform: none;
    }
}
@supports (-ms-ime-align: auto) { /* Edgeのみ */
	.media > img {
        position: absolute;
        height: auto;
        width: auto;
		min-height: 100%;
    	min-width: 100%;
        top: 50%;
    	left: 50%;
        -ms-transform: translateX(-50%) translateY(-50%);
    	-moz-transform: translateX(-50%) translateY(-50%);
    	-webkit-transform: translateX(-50%) translateY(-50%);
    	transform: translateX(-50%) translateY(-50%);
    }  
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
}

/* 動画音量 */
#soundBtn_pc{
	position:absolute;
	right:15px;
	bottom:15px;
	cursor:pointer;
	width: 20px;
	display:block;
}
#soundBtn_sp{
	position:absolute;
	right:15px;
	bottom:15px;
	cursor:pointer;
	width: 20px;
	display:none;
}
#soundBtn_pc > span,
#soundBtn_sp > span{
	display:none;
}
#soundBtn_pc.sound_off .off,
#soundBtn_sp.sound_off .off{
	display:block;
}
#soundBtn_pc.sound_on .on,
#soundBtn_sp.sound_on .on{
	display:block;
}
@media screen and (max-width: 768px) {
	#soundBtn_pc{
		display:none;
	}
	#soundBtn_sp{
		display:block;
	}
}

/* slider（スライド画像） */
.slider{
	position:absolute;
	top:0;
	left:0;
	margin:0 auto;
	text-align:center;
	overflow:hidden;
}
.slick-track{
	width:100%;
	margin: 0 auto;
	text-align:center;
}
.slick-slide{
	width:100%;
	margin: 0 auto;
	text-align:center;
}
.slider img.coverPosition{
	object-position:100% 50%;
}
.slider li{
	background-repeat:no-repeat;
	background-position:center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display:block;
	width:100%;
	height:100%;
}
_::-webkit-full-page-media, _:future, :root .slider { /* safariのみ */
	height:calc(100vh - 80px);
}
_::-webkit-full-page-media, _:future, :root .slick-track { /* safariのみ */
	height:calc(100vh - 80px);
}
@media screen and (max-width: 768px) {
	.slider li {
		background-position:center center;
		height:100%;
	}
}
@media screen and (max-width: 768px) {
	_::-webkit-full-page-media, _:future, :root .slider { /* safariのみ */
		height:calc(100vh - 80px);
	}
	_::-webkit-full-page-media, _:future, :root .slick-track { /* safariのみ */
		height:calc(100vh - 80px);
	}
}
@media screen and (max-width: 480px) {
	_::-webkit-full-page-media, _:future, :root .slider { /* safariのみ */
		height:calc(100vh - 80px);
	}
	_::-webkit-full-page-media, _:future, :root .slick-track { /* safariのみ */
		height:calc(100vh - 80px);
	}
}


/* mainImage（1枚画像） */
.mainImage {
    position: relative;
    width:100%;
	max-height: 100%;
    display: inline-block;
    overflow: hidden;
}
.mainImage > img {
    position: absolute;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
@supports ( object-fit: cover ) {
    .mainImage img {
        position: static;
        height: 100%;
        width: 100%;
        left: 0;
        -o-object-fit: cover;
        object-fit: cover;
        top: 0;
        -ms-transform: none;
        -moz-transform: none;
        -webkit-transform: none;
        transform: none;
    }
}
@supports (-ms-ime-align: auto) { /* Edgeのみ */
	.mainImage > img {
        position: absolute;
        /*height: auto;
        width: auto;
		min-height: 100%;
    	min-width: 100%;*/
        top: 50%;
    	left: 50%;
        -ms-transform: translateX(-50%) translateY(-50%);
    	-moz-transform: translateX(-50%) translateY(-50%);
    	-webkit-transform: translateX(-50%) translateY(-50%);
    	transform: translateX(-50%) translateY(-50%);
    }  
}

/* ---------------------------------------- 
 - contents 
---------------------------------------- */
/* about */
#contents #about {
	margin:0 auto;
	width:100%;
	padding:110px 0 90px;
	background:#000;
	color:#fff;
}
#contents #about #aboutCol {
	margin:0 auto;
	width:96%;
	max-width:1100px;
}
#contents #about #aboutCol .leadBox {
	margin: 0 auto;
    width: 70%;
    max-width: 720px;
    box-sizing: border-box;
    text-align: center;
	line-height:2.4;
	letter-spacing: 0.1em;
	padding:0 0 80px;
}
:lang(en) #contents #about #aboutCol .leadBox {
    width: 75%;
    max-width: 880px;
}
#contents #about #aboutCol .leadBox h2 {
	font-size:2.3rem;
	font-weight:500;
	line-height:1.8;
	padding:0 0 1.5em;
	position: relative;
	display: inline-block;
	text-decoration: none;
}
#contents #about #aboutCol .leadBox h2 span {
	letter-spacing: 0.1em;
    font-size: 2.6rem;
}
#contents #about #aboutCol .relationship {
	width: 60%;
    max-width: 620px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	#contents #about {
		padding:5.0em 0 ;
	}
	#contents #about #aboutCol {
		width:94%;
	}
	#contents #about #aboutCol .leadBox {
		margin:0 0;
		width:100%;
		max-width: 100%;
		padding: 0 0 3.0em;
	}
	#contents #about #aboutCol .leadBox h2 {
		font-size:1.8rem;
		text-align: left;
		font-weight: 400;
	}
	#contents #about #aboutCol .leadBox h2 span {
		font-size:2.0rem;
	}
	#contents #about #aboutCol .leadBox .txt {
		font-size:1.2rem;
		text-align: left;
	}
	#contents #about #aboutCol .relationship {
		width: 90%;
		max-width: 620px;
	}
}

/* group */
#contents #group {
	margin:0 auto;
	width:100%;
	background:#f3f4f4 !important;
}
#contents #group #groupCol {
	margin:0 auto;
	width:96%;
	max-width:1100px;
	padding:80px 0;
	box-sizing:border-box;
}
#contents #group #groupCol h3.ttl {	
	width:50%;
	max-width:480px;
	margin:0 auto;
	padding:0 0 80px;
}
#contents #group #groupCol .groupBox {
	width: 96%;
    max-width: 1000px;
	margin:0 auto;
}
#contents #group #groupCol .groupBox > ul {
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	width:100%;
}
#contents #group #groupCol .groupBox > ul > li {
    width:30%;
	max-width: 290px;
}
#contents #group #groupCol .groupBox > ul > li a img {
	transition: 0.5s;
	opacity: 1.0;
}
#contents #group #groupCol .groupBox > ul > li a:hover img {
	opacity: 0.5;
}
#contents #group #groupCol .groupBox > ul > li dl dd {
	text-align:left;
	padding:2.0em 0;
	font-size:1.3rem;
	border-top:solid 3px #ddd;
	border-bottom:solid 3px #ddd;
}
#contents #group #groupCol .groupBox > ul > li a:hover {
	text-decoration: none;
}
@media screen and (max-width: 768px) {
	#contents #group #groupCol {
		width:94%;
		padding:4.0em 0 2.0em;
	}
	#contents #group #groupCol h3.ttl {	
		width:85%;
		max-width:580px;
		margin:0 auto;
		padding:0 0 4.0em;
	}
	#contents #group #groupCol .groupBox > ul {
		display: block;
	}
	#contents #group #groupCol .groupBox > ul > li {
		width:85%;
		max-width: 85%;
		margin:0 auto 4.0em;
	}
	#contents #group #groupCol .groupBox > ul > li dl dt {
		width:85%;
		max-width: 290px;
		margin:0 auto;
		padding: 0 0 20px;
	}
	#contents #group #groupCol .groupBox > ul > li:nth-child(3) dl dt {
		width:100%;
		max-width: 290px;
		margin:0 auto;
	}
	#contents #group #groupCol .groupBox > ul > li dl dd {
		padding:1.0em 0;
		font-size:1.2rem;
	}
	#contents #group #groupCol .groupBox > ul > li a:hover {
		text-decoration: none;
	}
}