@charset "utf-8";

@keyframes swipeRight2 {
	0% {
		transform: translate(0);
		width: 0;
	}
	50%, 60% {
		transform: translate3d(0,0,0);
		width: 100%;
	}
	100% {
		transform: translate3d(0,0,0);
		width: 100%;
	}
}


.circle-dash-loader {
    width: 40px; height: 40px;
    border-radius: 50%; position: relative;
    color: #6c5ce7; 
}
.circle-dash-loader::before,
.circle-dash-loader::after {
    content: ''; position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 3px solid;
    border-color: currentColor transparent currentColor transparent;
    animation: circle-dash-animation 1.5s linear infinite;
}
.circle-dash-loader::after {
    animation-direction: reverse;
    animation-delay: 0.75s;
}
@keyframes circle-dash-animation {
    0% { transform: rotate(0deg); opacity: 1; border-width: 3px; }
    50% { opacity: 0.5; border-width: 2px; }
    100% { transform: rotate(360deg); opacity: 1; border-width: 3px; }
}

#loading {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999999999999;
}



/* -----------------
main-visual
-----------------------*/
#main-visual {
    padding: 140px 20px 200px;
    margin-bottom: -120px;
	background: url("../img/home/fv_bg.png") no-repeat center;
	background-size: cover;
	position: relative;
}
#main-visual:after {
	content: '';
	width: 100%;
	height: 100%;
    background: url("../img/home/fv_fig.png") no-repeat center top;
    background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
}
#main-visual .inner {
	z-index: 1;
}
.main-visual-fv {
    position: relative;
}
.main-visual-fv .catch {
    color: var(--main-color);
    font-size: 52px;
	font-weight: 600;
    position: absolute;
    bottom: 50px;
    left: -50px;
}
.main-visual-fv .catch p {
    display: inline-block;
    line-height: 1;
    padding: 6px 10px 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.main-visual-fv .catch p.t2 {
	margin-left: 30px;
}
.main-visual-fv .catch p:after {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
}
.main-visual-fv .catch p.t2:after {
    animation-delay: .4s !important;
}
.main-visual-fv .catch p span {
	opacity:0;
	visibility:hidden;
    position: relative;
    z-index: 10;
    -webkit-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
	transition-delay: .4s
}

.main-visual-fv.on .catch p:after {
    animation: swipeRight2 1.1s cubic-bezier(0.6,0,0.4,1);
    animation-fill-mode: forwards;
}
.main-visual-fv.on .catch p span {
	opacity:1;
	visibility: visible;
}

.main-visual-news {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding: 50px;
    background: #fff;
    border-radius: 60px;
}
.main-visual-news-left {
    width: 33%;
}
.main-visual-news-right {
    width: 67%;
}

#main-contents {
	overflow: hidden;
}



@media (max-width: 815px) {
	
    body {
        padding-top: 0 !important;
    }
	#gb-header {
        background: none !important;
    }
	
	#main-visual {
		padding: 80px 0 20px;
		margin-bottom: 0;
	}
	.main-visual-fv .catch {
		font-size: 20px;
		left: -30px;
		bottom: 30px;
	}
	.main-visual-fv .catch p.t2 {
		margin-left: 15px;
	}
	#main-visual-news {
		padding: 50px 0 20px;
	}
	.main-visual-news {
		display: block;
		margin-top: 0;
		padding: 20px;
		border-radius: 10px;
	}
	.main-visual-news-left {
		width: auto;
	}
	.main-visual-news-right {
		width: auto;
	}
	.main-visual-news-right .news__list >li {
		font-size: 12px;
	}

}



/* ----------------
home-contents
--------------------------*/
#home-contents {

}
.home-contents__list {
	display: flex;
	flex-wrap: wrap;
}
.home-contents__list >li {
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    width: 48%;
    margin: 0 0 4% 4%;
}
.home-contents__list >li:nth-child(2n+1) {
	margin-left: 0;
}
.home-contents__list >li .info {
	width: 40%;
}
.home-contents__list >li .info h3 {
    font-size: 24px;
    color: var(--main-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
}
.home-contents__list >li .info h3:after {
	content: '';
	width: 150px;
	height: 10px;
	background: url("../img/cmn/line.png") no-repeat center;
	background-size: cover;
	position: absolute;
	bottom: 0;
	left: 0;
}
.home-contents__list >li .info p {
}
.home-contents__list >li .info .more {
    width: 150px;
    height: 0;
    padding-top: 150px;
    position: relative;
    margin-top: 30px;
}
.home-contents__list >li .info .more a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.home-contents__list >li .info .more a i {
    display: block;
	margin: 10px auto 0;
    background-position: left -10px center;
}
.home-contents__list >li .img {
	width: 55%;
	text-align: right;
}

@media (max-width: 815px) {

	.home-contents__list {
		display: block;
	}
	.home-contents__list >li {
		width: 100%;
		margin: 0 0 40px;
	}
	.home-contents__list >li .info h3 {
		font-size: 18px;
	}
	.home-contents__list >li .info h3:after {
		width: 120px;
		background-size: 100%;
	}

    .home-contents__list >li .info .more {
        width: auto;
        padding-top: 0;
        margin-top: 20px;
    }
	.home-contents__list >li .info .more a {
		display: block;
		height: auto;
		position: relative;
		top: 0;
	}
	.home-contents__list >li .info .more a i {
        display: inline-block;
        margin: 0;
		background-position: left -7px center;
	}

}


/* ----------------
home-mind
--------------------------*/
#home-mind {
    background: url("../img/home/mind_bg.png") no-repeat left top;
    background-size: contain;
}
.home-mind-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.home-mind-text {
    width: 45%;
}
.home-mind-text h3 {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.home-mind-img {
    width: 50%;
}
.home-mind-img img {
    max-width: 50vw;
}



@media (max-width: 815px) {

	.home-mind-in {
		display: block;
	}
	.home-mind-text {
		width: 100%;
	}
	.home-mind-text h3 {
		font-size: 18px;
	}
	.home-mind-img {
		width: 100%;
		margin-top: 20px;
	}
	.home-mind-img img {
		max-width: 100%;
		text-align: center;
		border-radius: 20px;
	}

}


/* ----------------
home-movie
--------------------------*/
#home-movie {
	background: #fff;
}
.home-movie__list {
    display: flex;
    justify-content: space-between;
}
.home-movie__list >li {
    width: 48%;
}
.home-movie__list  h3 {
	color: var(--main-color);
	font-size: 18px;
    margin-top: 20px;
}
.home-movie__list p {
    font-size: 13px;
    margin-top: 15px;
}

@media (max-width: 815px) {

	.home-movie__list {
		display: block;
	}
	.home-movie__list >li {
		width: 100%;
		margin-bottom: 50px;
	}

}
