@charset "UTF-8";
/* media query : mobile */
@media screen and (max-width:768px) {
}
/* media query : desktop */
@media screen and (min-width:769px) {
}
/* media query : tablet */
@media screen and (min-width:769px) and (max-width:1024px){
}
/*==============================================================
4.0 Home
--------------------------------------------------------------*/


/* media query : mobile */
@media screen and (max-width:768px) {
    .page-home .h2 {
        line-height: 1.5;
    }
    .page-home .h2 i {
        font-size: 2.4rem;
    }
    .page-home .h2 h2 {
        font-size: 1.4rem;
    }
}
/* media query : desktop */
@media screen and (min-width:769px) {
    .page-home .h2 {
        line-height: 1.2;
    }
    .page-home .h2 i {
        font-size: 4rem;
    }
    .page-home .h2 h2 {
        font-size: 1.4rem;
    }
}
/* 4.0 home.css
--------------------------------------------------------------*/
/* home-mv */
.home-mv {
    width: 100%;
    height: calc(100% - var(--header-height));
    height: calc(100vh - var(--header-height));
}
.home-mv__img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.home-mv__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    border-top-right-radius: 6rem;
}
.home-mv__sub {
    position: absolute;
    top: 5%;
    right: 2.2rem;
    width: auto;
    height: 65%;
}
.home-mv .container {
    height: 100%;
    max-width: 100%;
}
.home-mv__title {
	position: absolute;
}

/* media query : mobile */
@media screen and (max-width:768px) {
    .home-mv__bg {
        width: calc(100% - 1rem);
        margin-left: -1rem;
    }
    .home-mv__sub {
        top: 6rem;
        right: 0.5rem;
    }
    .home-mv__title {
        width: 7rem;
        right: 4rem;
        top: 6rem;
    }
}
/* media query : desktop */
@media screen and (min-width:769px) {
    .home-mv__bg {
        width: calc(100% - 5rem);
        margin-left: -2.5rem;
    }
    .home-mv__sub {
        top: 5%;
        right: 2.2rem;
    }
    .home-mv__title {
        width: 10vw;
        right: calc(7vw + 5rem);
        top: 10vh;
    }
}
/* scroll */
.home-scroll {
	position:absolute;
	height: 6rem;
	left: 5%;
	z-index: 1;
}
.home-scroll__bar {
	position: absolute;
	left:-6px;
	color: var(--main);
	font-size: 0.7rem;
	letter-spacing: 0.05em;
}
.home-scroll::after {
	content: "";
	position: absolute;
	top: 0;
	width: 2px;
	background: var(--main);
	animation: scroll-bar 1.4s ease-in-out infinite;
	opacity:0;
}
.home-scroll__txt {
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    display: block;
    line-height: 1;
    white-space: nowrap;
    margin: 0 auto;
    color: var(--main);
}

/* media query : mobile */
@media screen and (max-width:768px) {
	.home-scroll {
		bottom: 3rem;
	}
	.home-scroll__bar {
		top: 10px;
	}
	.home-scroll__txt {
	}
	@keyframes scroll-bar {
		0%{
			height:0;
			top:60px;
			opacity: 0;
		}
		30%{
			opacity: 1;
			height:60px;
		}
		100%{
			height:0;
			opacity: 0;
			top:120px;
		}
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-scroll {
		bottom: 40px;
	}
	.home-scroll__bar {
		top: -56px;
	}
	@keyframes scroll-bar {
		0%{
			height:0;
			top:0;
			opacity: 0;
		}
		30%{
			opacity: 1;
			height:120px;
		}
		100%{
			height:0;
			opacity: 0;
			top:120px;
		}
	}

}
/* home-corporate */
.home-corporate {
	width: calc(100% - 5rem);
	border-bottom-right-radius: 6rem;
}

.home-corporate__wrap {
	display: flex;
	justify-content: space-between;
}
.home-corporate__img {
	display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* media query : mobile */
@media screen and (max-width:768px) {
    .home-corporate {
	    width: calc(100% - 1.5rem);
    }
    .home-corporate .container {
        width: calc(100% - 3rem);
    }
    .home-corporate__wrap {
        flex-direction: column;
        gap: 2rem;
    }
    .home-corporate__img img {
        max-width: 9rem;
    }
}
/* media query : desktop */
@media screen and (min-width:769px) {
    .home-corporate {
	    width: calc(100% - 5rem);
    }
    .home-corporate .container {
        left: 2.5rem;
    }
    .home-corporate__img {
	    width: 50%;
    }
    .home-corporate__img img {
        max-width: 13rem;
    }
    .home-corporate__txt {
	    width: 50%;
    }
    .home-corporate__txt {
        padding-right: 2.5rem;
    }
}
/* home-business */
.home-business .appear-in {
	display: block;
    position: absolute;
    z-index: -1;
    width: 40%;
    height: 50rem;
    left: 0;
    top: -8rem;
    border-bottom-right-radius: 5rem;
    background: var(--bgc);
}
.home-business__list {
	display: flex;
	flex-direction: column;
    margin-bottom: -4rem;
	gap: 4rem;
	margin-bottom: 4rem;
	margin-top: 4rem;
}
.home-business::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    background: url(../img/home-blur1.png) no-repeat center / contain;
    opacity: 0.4;
}
.home-business::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    background: url(../img/home-blur2.png) no-repeat center / contain;
    opacity: 0.4;
}
.home-business__list::after {
    content: "";
    position: absolute;
    z-index: -1;
    background: url(../img/home-blur3.png) no-repeat center / contain;
    opacity: 0.4;
}
.home-business__list li {
	width: 100%;
	display: flex;
	flex-direction: row-reverse;
    align-items: flex-start;
	gap: 2rem;
}
.home-business__list .img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}
.home-business__list .img article {
    position: absolute;
    background: rgba(255,255,255,0.5);
}
.home-business__list li:first-child article {
    left: 0;
}
.home-business__list li:last-child article {
    right: 0;
}
.home-business__list .img picture {
    position: absolute;
    width: 48%;
    top: -5rem;
    height: 35rem;
    border-radius: 0 !important;
}
.home-business__list li:first-child picture {
    right: 0;
    left: auto;
}
.home-business__list li:last-child picture {
    left: 0;
    right: auto;
}
.home-business__list .txt .wrap{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.home-business__list .txt .h3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.home-business__list .txt .h3 i {
    color: var(--main);
    font-weight: 600;
    letter-spacing: 8px;
}
.home-business__list .txt .h3 h3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.home-business__list .txt p {
    text-align: left;
    margin-bottom: 1rem;
}
/* media query : mobile */
@media screen and (max-width:768px) {
    .home-business::before {
        width: 27rem;
        height: 38rem;
        top: -7rem;
    }
    .home-business::after {
        width: 27rem;
        height: 38rem;
        top: 48rem;
    }
    .home-business__list::after {
        width: 27rem;
        height: 38rem;
        bottom: -7rem;
        left: calc(50% - 13.5rem);
    }
     .home-business__list .img article {
        width: calc(100% - 1.5rem);
        height: 41rem;
        top: 12rem;
    }
    .home-business__list .img picture {
        width: calc(100% - 1.5rem);
        top: 0rem;
        height: 18rem;
    }
    .home-business__list li:first-child picture img {
        border-radius: 2rem 0rem 0rem 6rem;
    }
    .home-business__list li:last-child picture img {
        border-radius: 0rem 6rem 2rem 0rem;
    }
    .home-business__list .txt .wrap{
        max-width: calc(100% - 1.5rem);
        padding-top: 20rem;
    }
    .home-business__list .txt .h3 i {
        font-size: 2.4rem;
        line-height: 1.2;
    }
    .home-business__list .txt .h3 h3 {
        font-size: 1.3rem;
    }
}
/* media query : desktop */
@media screen and (min-width:769px) {
    .home-business::before {
        width: 47rem;
        height: 68rem;
        top: -23rem;
    }
    .home-business::after {
        width: 47rem;
        height: 68rem;
        top: 11rem;
    }
    .home-business__list::after {
        width: 60rem;
        height: 60rem;
        bottom: -12rem;
        left: calc(50% - 22rem);
    }
    .home-business__list li { 
        height: 40rem;
    }
    .home-business__list .img article {
        width: 60%;
        height: 32rem;
        top: 2rem;
    }
    .home-business__list .img picture {
        width: 48%;
        top: -5rem;
        height: 35rem;
    }
    .home-business__list li:first-child picture img {
        border-radius: 4rem 0rem 0rem 12rem;
    }
    .home-business__list li:last-child picture img {
        border-radius: 0rem 12rem 4rem 0rem;
    }
    .home-business__list .txt .wrap{
        max-width: 45%;
        padding-top: 5rem;
    }
    .home-business__list li:last-child .txt .wrap {
        margin-left: auto;
        margin-right: 0;
    }
    .home-business__list .txt .h3 i {
        font-size: 3rem;
        line-height: 1.3;
    }
    .home-business__list .txt .h3 h3 {
        font-size: 1.5rem;
    }
}
/* home-recruit */
.home-recruit {
    overflow: hidden;
}
.home-recruit__wrap .img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}
.home-recruit__wrap .img:before {
    content: "";
    position: absolute;
    background: url(../img/home-recruit__circle01.png) no-repeat center / contain;
    opacity: 1;
}
.home-recruit__wrap .img:after {
    content: "";
    position: absolute;
    background: url(../img/home-recruit__circle02.png) no-repeat center / contain;
    opacity: 1;
}
.home-recruit__wrap .img picture {
    position: absolute;
    overflow: hidden;
}
.home-recruit__wrap .img picture:first-child  {
    right: 0;
}
.home-recruit__wrap .img picture:last-child {
    bottom: 0;
    left: 0;
}
.home-recruit__wrap .txt {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-recruit__wrap .txt p {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.home-recruit__wrap .txt p span  {
    font-weight: 500;
    line-height: 150%;
    display: inline-block;
    width: fit-content;
}
.home-recruit__wrap .txt p span b {
    color: var(--main);
    font-weight: 500;
}

/* media query : mobile */
@media screen and (max-width:768px) {
    
    .home-recruit__wrap .img {
        height: 51rem;
    }
    .home-recruit__wrap .img:before {
        width: 30rem;
        height: 30rem;
        bottom: 9rem;
        left: calc(50% - 15rem);
    }
    .home-recruit__wrap .img:after {
        width: 15rem;
        height: 15rem;
        right: -5rem;
        bottom: 11rem;
    }
    .home-recruit__wrap .img picture:first-child  {
        width: calc(100% - 1.5rem);
        height: 14rem;
        top: 0;
        border-radius: 2rem 0 0 6rem;
    }
    .home-recruit__wrap .img picture:last-child {
        width: calc(100% - 3rem);
        height: 20rem;
        border-radius: 0 6rem 2rem 0;
    }
    .home-recruit__wrap .txt {
        gap: 1.5rem;
        padding-bottom: 21rem;
    }
    .home-recruit__wrap .txt p {
        padding-top: 16rem;
    }
    .home-recruit__wrap .txt p span {
        font-size: 2.2rem;
    }
}
/* media query : desktop */
@media screen and (min-width:769px) {
    
    .home-recruit__wrap .img {
        height: 55rem;
    }
    .home-recruit__wrap .img:before {
        width: 60rem;
        height: 60rem;
        bottom: 3rem;
        left: calc(50% - 30rem);
    }
    .home-recruit__wrap .img:after {
        width: 30rem;
        height: 30rem;
        top: 7rem;
        right: 15rem;
    }
    .home-recruit__wrap .img picture:first-child  {
        width: 45%;
        height: 30rem;
        top: -24.7rem;
        border-radius: 0 0 0 10rem;
    }
    .home-recruit__wrap .img picture:last-child {
        width: 34%;
        height: 33rem;
        border-radius: 0 10rem 0 0;
    }
    .home-recruit__wrap .txt {
        height: 40rem;
        gap: 4rem;
    }
    .home-recruit__wrap .txt p {
        padding-top: 8rem;
    }
    .home-recruit__wrap .txt p span {
        font-size: 4rem;
    }
    .home-recruit__wrap .txt p span:first-child {
        padding-right: 25%;
    }
    .home-recruit__wrap .txt p span:last-child {
        padding-left: 25%;
    }
    
}
/* home-news */
.section.home-news {

}
.home-news .container {

}
.home-news .news-list {
	margin-bottom: 2rem;
}