@charset "utf-8";

.top-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000000000000;
}
.top-loading-logo {
    width: 100px;
    height: 100px;
    background: url("../img/home/logo_mark.png") no-repeat center;
    background-size: cover;
    -webkit-animation: loading 10s linear 0s infinite normal;
    -moz-animation: loading 10s linear 0s infinite normal;
    animation: loading 10s linear 0s infinite normal;
}

/* -----------------
main-fv
-----------------------*/
#main-fv {
	color: #fff;
	padding-bottom: 100px;
	margin-bottom: 50px;
    position: relative;
	overflow: hidden;
}
#main-fv:after {
	content: '';
	width: 0;
	height: calc(100% - 50px);
    background-color: #c70519;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
} 
#main-fv .inner {
    min-height: 560px;
}
.main-fv-in {
	display: flex;
	align-items:center;
}
.main-fv-catch {
	width: 50%;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}
.main-fv-catch-img {
    width: 250px;
	position: absolute;
    top: 280px;
    left: 355px;
    opacity: 0;
    transform: translateY(20px);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.main-fv-catch01 {
    font-size: 86px;
    font-weight: 600;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(20px);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.main-fv-catch01 .font-l {
	font-size: 160%;
}
.main-fv-catch01 .font-l span {
	font-size: 120%;
    font-weight: 500;
    font-family: var(--font-en);
    display: inline-block;
    vertical-align: -13px;
}
.main-fv-catch02 {
    font-size: 34px;
    font-weight: 600;
    margin-top: 70px;
    line-height: 2;
    opacity: 0;
    transform: translateY(20px);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.main-fv-catch02 span {
    border-bottom: solid 5px;
}
.main-fv-catch03 {
    color: var(--main-color);
    width: 1200px;
    font-size: 64px;
    font-weight: 600;
    background: #FFFF00;
    margin-top: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fv-illust {
    width: 50%;
	padding-top: 20px;
}
.fv-illust img {
    max-width: 120%;
    opacity: 0;
    transform: translateX(50px);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.main-fv-whosho {
    width: 52%;
    max-width: 657px;
	opacity: 0;
    position: absolute;
    right: -100px;
    bottom: -19%;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.main-fv-news {
	padding: 20px 40px;
    position: absolute;
    left: 0;
    bottom: -15%;
	z-index: 10;
}
.main-fv-news:after {
    content: '';
    width: 50vw;
    height: 100%;
    background: #fff;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 0 9px -3px #ccc;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
.main-fv-news a {
    display: block;
    padding-right: 20px;
    position: relative;
}
.main-fv-news a:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent var(--main-color);
    border-width: 6px 0px 6px 10px;
    position: absolute;
    right: 0;
    bottom: 5px;
}
.main-fv-news .blog-info-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 20em;
}


/* anime */
#main-fv.on:after {
	width: 100%;
}
.main-fv-catch.on .main-fv-catch-img,
.main-fv-catch.on .main-fv-catch01,
.main-fv-catch.on .main-fv-catch02,
.main-fv-catch.on .main-fv-catch03 {
    opacity: 1;
    transform: translateY(0);
}
.main-fv-whosho.on {
	opacity: 1;
    right: 0;
}
.fv-illust.on img{
	opacity: 1;
    transform: translateX(0);
}
 


@media (max-width: 815px) {

	#main-fv {
		background-position: left 30vw center;
		padding-top: 20px;
		padding-bottom: 50px;
		margin-bottom: 0;
	}
	#main-fv .inner {
		min-height: 320px;
	}
	.main-fv-catch-img {
        width: 120px;
        top: 0;
        left: calc(100vw - 160px);
	}
	.main-fv-catch01 {
		font-size: 48px;
	}
	.main-fv-catch01 .font-l span {
		vertical-align: -5px;
	}
	.main-fv-catch02 {
		font-size: 24px;
		margin-top: 0;
	}
	.main-fv-catch02 span {
		border-bottom: solid 2px;
	}
	.main-fv-catch03 {
		font-size: 30px;
        margin-top: 10px;
        width: calc(100vw - 40px);
	}
	.fv-illust {
		padding-top: 50px;
	}
	.fv-illust img {
		max-width: 120%;
	}
}
@media (max-width: 480px) {

	#main-fv .inner {
		min-height: 280px;
	}
	.main-fv-catch01 {
		font-size: 32px;
	}
	.main-fv-catch02 {
		font-size: 16px;
	}
	.main-fv-catch03 {
		font-size: 18px;
	}
	.main-fv-whosho {
		width: 100%;
		bottom: -16%;
	}
}


/* ----------------
greeting
--------------------------*/
#greeting {
	padding: 0;
}
#greeting:before,
#greeting:after {
	content: '';
	width: 50vw;
	height: 100%;
	background-position: center;
	background-size: cover;
	position: absolute;
	top:0;
	z-index: -1;
}
#greeting:before {
	background-image: url("../img/home/greeting_bg_l.jpg");
	right: 50%;
	
}
#greeting:after {
	background-image: url("../img/home/greeting_bg_r.jpg");
	left: 50%;
}

.greeting-in {
    display: flex;
}
.greeting-in .info {
	width: 50%;
	padding: 100px 0;
}
.greeting-in .info .cmn-text.-hidden {
    display: none;
}
.more-msg {
    color: var(--base-color);
    font-size: 17px;
    font-weight: 600;
    width: 200px;
    padding: 13px 0 14px;
    text-align: center;
    background: #fff;
    border: solid 2px;
    border-radius: 1000px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-top: 30px;
	cursor: pointer;
}
.more-msg:after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent var(--main-color);
    border-width: 6px 0px 6px 10px;
    margin-left: 20px;
}
.more-msg:hover {
    color: #fff;
    background: var(--base-color);
}

.greeting-in .img {
	width: 50%;
    background-image: url("../img/home/greeting_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 815px) {

	#greeting {
		background: var(--bg-color);
	}
	.greeting-in {
		display: block;
		position: relative;
	}
	.greeting-in .info {
		width: 100%;
		padding: 50px 0;
		position: relative;
		z-index: 1;
	}
	.more-msg {
		font-size: 14px;
		margin: 30px auto 0;
	}
	.greeting-in .img {
		width: 100%;
		height: 100%;
		background: none;
		opacity: 0.2;
		position: absolute;
		top: 0;
		left: 0;
	}

}


/* ----------------
service
--------------------------*/
.service-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
	flex-direction: row-reverse;
}
.service-main .img {
    width: 48%;
    display: flex;
    justify-content: end;
}
.service-main .img img {
    max-width: none;
}
.service-main .info {
    width: 48%;
}

.service-sub {
    margin-top: 120px;
}
.service-sub h3 {
    text-align: center;
	font-size: 36px;
	line-height: 1.6;
	margin-bottom: 60px;
}

.service-role__list {
    display: flex;
    justify-content: space-between;
}
.service-role__list >li {
    width: 48%;
    border: solid 2px;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}
.service-role__list >li h4 {
    color: #fff;
    background: var(--main-color);
    font-size: 24px;
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 5px;
}
.service-role__list >li h4 i {
	display: inline-block;
    width: 32px;
	height: 32px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
    vertical-align: -6px;
    margin-right: 10px;
}
.service-role__list >li h4 i.icon-hogo {
	background-image: url("../img/cmn/icon_hogo.png");
}
.service-role__list >li h4 i.icon-bikan {
	background-image: url("../img/cmn/icon_bikan.png");
}
.service-role__list >li p {
    font-size: 18px;
    line-height: 1.6;
}
.nuri-flow {
	display: flex;
	justify-content: space-between;
}
.nuri-flow >li {
	width: 22%;
	max-width: 260px;
}
.nuri-flow .num {
	font-size: 48px;
	font-weight: 500;
	font-style: italic;
	font-family: var(--font-en);
	margin-bottom: 5px;
}
.nuri-flow .img {
	position: relative;
}
.nuri-flow .img:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent var(--main-color);
    border-width: 28px 0px 28px 28px;
    position: absolute;
    right: -17%;
    top: calc(50% - 28px);
    z-index: 1;
}
.nuri-flow p {
	font-size: 28px;
	font-weight: 600;
	text-align: center;
	margin-top: 15px;
}
.nuri-flow >li:last-child .img:after {
    display: none;
}

.service-merit {
	position: relative;
}
.service-merit:after {
    content: '';
    background: url("../img/cmn/illust.png") no-repeat bottom right;
    background-size: 400px;
    opacity: 0.1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
	z-index: -1;
}
.service-merit__list >li {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 2;
    position: relative;
    padding-left: 50px;
    padding-bottom: 30px;
    border-bottom: dotted 1px #ccc;
}
.service-merit__list >li .num {
    font-size: 48px;
    font-weight: 500;
    font-style: italic;
    color: var(--main-color);
    font-family: var(--font-en);
    line-height: 1;
    position: absolute;
    left: 0;
    top: -8px;
}
.service-merit__list >li .font-s {
    font-size: 80%;
}

.service-whosho {
    margin-top: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-whosho .img {
    width: 48%;
    text-align: center;
}
.service-whosho .info {
    width: 48%;
}
.service-whosho .info ul li {
    font-size: 28px;
    font-weight: 600;
    margin: 10px 0;
    padding-left: 35px;
    position: relative;
}
.service-whosho .info ul li i {
    width: 18px;
    height: 18px;
    border: solid 2px;
    position: absolute;
    left: 0;
    top: 13px;
}
.service-whosho .info ul li i:after {
    content: '';
    color: var(--main-color);
    width: 10px;
    height: 20px;
    border-bottom: solid 4px;
    border-right: solid 4px;
    transform: rotate(45deg);
    position: absolute;
    left: 6px;
    bottom: 3px;
}

.service-bnr {
	text-align: center;
	margin-top: 50px;
}


@media (max-width: 815px) {

	.service-main {
		display: block;
	}
	.service-main .info {
		width: 100%;
		margin-bottom: 30px;
	}
	.service-main .img {
		width: 100%;
		display: block;
	}
	.service-main .img img {
		max-width: 100%;
	}

	.service-sub {
		margin-top: 70px;
	}
	.service-sub h3 {
		font-size: 18px;
		margin-bottom: 30px;
	}

	.service-role__list >li {
		padding: 15px;
	}
	.service-role__list >li h4 {
		font-size: 16px;
	}
	.service-role__list >li h4 i {
		width: 20px;
		height: 20px;
		vertical-align: -3px;
	}
	.service-role__list >li p {
		font-size: 14px;
		line-height: 1.6;
        text-align: left;
    }

	.nuri-flow {
		flex-wrap: wrap;
	}
	.nuri-flow >li {
		width: 48%;
		max-width: none;
		text-align: center;
		margin-bottom: 30px;
	}
	.nuri-flow .img:after {
		display: none;
	}
	.nuri-flow .num {
		font-size: 32px;
	}
	.nuri-flow p {
		font-size: 18px;
	}

	.service-merit:after {
		background-size: contain;
	}
	.service-merit__list >li {
		font-size: 14px;
		margin-bottom: 20px;
		padding-left: 35px;
		padding-bottom: 20px;
	}
	.service-merit__list >li .num {
		font-size: 30px;
		top: -5px;
	}
	.service-whosho {
		margin-top: 50px;
		display: block;
	}
	.service-whosho .img {
		width: 100%;
		margin-bottom: 30px;
	}
	.service-whosho .info {
		width: 100%;
	}
	.service-whosho .info ul {
		display: table;
		margin: auto;
	}
	.service-whosho .info ul li {
		font-size: 16px;
	}
	.service-whosho .info ul li i {
		top: 6px;
	}


}


/* ----------------
movie
--------------------------*/
#movie {
	background: var(--bg-color);
}
.movie-in {
	max-width: 700px;
	margin: 50px auto 0;
}


@media (max-width: 815px) {
}



/* ----------------
overview
--------------------------*/
#overview {
    color: #fff;
    background: var(--base-color);
}
.overview-info {
    border-collapse: collapse;
    width: 100%;
    max-width: 840px;
    margin: auto;
    line-height: 2;
}
.overview-info th {
    font-weight: normal;
    width: 38%;
    text-align: left;
    padding: 10px 20px;
    border-bottom: solid 1px;
    vertical-align: top;
}
.overview-info td {
    padding: 10px 0;
    border-bottom: solid 1px;
}
.overview-info td a {
    color: #fff;
    text-decoration: underline;
}
#overview .catch {
    color: var(--base-color);
    font-size: 20px;
    max-width: 840px;
    text-align: center;
    margin: 50px auto 0;
    border: solid #eee;
    background: #fff url("../img/home/join_bg.png") no-repeat center;
    background-size: 120%;
    padding: 10px;
    line-height: 2;
}
#overview .catch b {
    display: inline-block;
    color: #fff;
    background: var(--main-color);
    padding: 5px 10px;
    line-height: 1;
}


@media (max-width: 815px) {

	#overview .catch {
		font-size: 16px;
		background-size: 200%;
	}
}

/* ----------------
logomark
--------------------------*/
#logomark {
	background: var(--bg-color);
}
.logomark-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logomark-in .info {
	width: 48%;
}
.logomark-in .img {
	width: 48%;
	text-align: center;
}



@media (max-width: 815px) {

	.logomark-in {
		display: block;
	}
	.logomark-in .info {
		width: 100%;
		margin-bottom: 30px;
	}
	.logomark-in .img {
		width: 100%;
	}
	.logomark-in .img img {
		max-width: 250px;
	}

}


/* ----------------
blog
--------------------------*/
.blog__list {
    display: flex;
    flex-wrap: wrap;
}
.blog__list >li {
    width: 32%;
    margin-left: 2%;
}
.blog__list >li:first-child {
    margin-left: 0;
}



@media (max-width: 815px) {

	.blog__list  {
		display: block;
	}
	.blog__list >li {
		width: 100%;
		padding-bottom: 10px;
		margin: 0 0 10px;
		border-bottom: dotted 1px;
	}
	.blog__list >li a {
		display: flex;
		justify-content: space-between;
	}
	.blog__list >li a .blog-thumb {
		margin-bottom: 0;
		width: 30%;
	}
	.blog__list >li a .blog-info {
		width: 68%;
		font-size: 12px;
	}
	.blog__list >li a .blog-info .blog-info-category,
	.blog__list >li a .blog-info .blog-info-date{
		font-size: 11px;
	}

}