@charset "UTF-8";
/* ----------------------------------------------------------------
共通
---------------------------------------------------------------- */
body.pages {
    margin-top: 0;
}
.cutin_anime{
	font-size:clamp(1.7rem, 1.3rem + 2vw, 2.8rem);
	letter-spacing: 0.09em;
	font-weight: 700;
    line-height: 1.8;
}
.cutin_anime .anime{
    transform: translate3d(0, 110%, 0);
    opacity: 0;
    will-change: transform;
    display: block;
}
.cutin_anime.active .anime{
    transition: transform 1.9s cubic-bezier(.12, 1.15, .22, 1), opacity 0.8s ease;
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
/* テキストに帯 */
.cutin_anime span.line {
    position: relative;
    display: inline-block;
    z-index: 0;
    margin: 0 5px;
    padding: 0 5px;
    color: #000;
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
p.cutin_anime span.line::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 0.6em);
    width: 100%;
    height: 1.3em;
    background: #fff;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(.12,1.05,.22,1);
}
p.cutin_anime.active span.line::before{
	transition: transform 0.9s cubic-bezier(.15,.9,.25,1);
  transform: scaleX(1);
  transition-delay: 0.6s;
}
@media screen and (max-width: 767px) {
.cutin_anime {
    font-size: 1.5em;
}
}
@media screen and (max-width: 767px) {

}
@media screen and (min-width: 1026px) {

}
@media screen and (max-width: 1025px) {

}
/* ----------------------------------------------------------------
fv cutin :before fade
---------------------------------------------------------------- */
#fv > .inner .tl_area .cutin_anime:before {
    opacity: 0;
    transition: opacity 1.2s ease;
}
#fv > .inner .tl_area .cutin_anime.before-active:before {
    opacity: 0.3;
}

/* img-wrap 浮かび上がり */
#fv .img_area .img-wrap {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
#fv .img_area .img-wrap.img-visible {
    opacity: 1;
    transform: translateY(0);
}
/* モノクロ→カラー */
#fv .img_area .img-wrap .anime_img img {
    filter: grayscale(100%);
    transition: filter 1.4s ease;
    transition-delay: 0.5s;
}
#fv .img_area .img-wrap.img-visible .anime_img img {
    filter: grayscale(0%);
}

/* slide_area ループスライド（SP） */
#slide_area {
    overflow: hidden;
}
#slide_area .img_area {
    display: flex;
    width: max-content;
    animation: fv-slide-loop 15s linear infinite;
}
#slide_area .img_area .img-wrap {
    flex-shrink: 0;
    width: 50vw;
}
#slide_area .img_area .img-wrap > div {
    width: 100%;
    overflow: hidden;
}
#slide_area .img_area .img-wrap .anime_img {
    width: 100%;
    height: 100%;
}
#slide_area .img_area .img-wrap .anime_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@keyframes fv-slide-loop {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------
fv
---------------------------------------------------------------- */
#fv{
    width: 100%;
    max-height: 830px;
    height: 100dvh;
    position: relative;
}
#fv:before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url("../img/fv_main_pc.jpg")center center no-repeat;
    top: 0;
        background-size: cover;
}
#fv:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #0000009c;
    mix-blend-mode: hard-light;
    top: 0;
}
#fv > .inner {
    position: relative;
    padding: 120px 0;
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
    color: #fff;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#fv > .inner > div{
        width: 48%;
        position: relative;
        height: 100%;
}
#fv > .inner .tl_area{
        display: flex;
    align-items: center;
}
#fv > .inner .tl_area .cutin_anime{
    position: relative;
}
#fv > .inner .tl_area .cutin_anime:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 190px;
    background: url("../img/recruit_txt.svg")center center no-repeat;
    top: -100px;
}
#fv > .inner .img_area .img-wrap{
    position: absolute;
}
#fv > .inner .img_area .img-wrap.img01 {
    max-width: 360px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
        width: 30vw;
}
#fv > .inner .img_area .img-wrap.img02{
    max-width: 190px;
    top: 0;
    left: 7%;
        width: 15vw;
}
#fv > .inner .img_area .img-wrap.img03 {
    max-width: 205px;
    right: 0;
    top: 10%;
        width: 15vw;
}
#fv > .inner .img_area .img-wrap.img04 {
    max-width: 190px;
    bottom: 13%;
        width: 12vw;
}
#fv > .inner .img_area .img-wrap.img05 {
    max-width: 162px;
    bottom: 5%;
    right: 0%;
        width: 11vw;
}
@media screen and (max-width: 767px) {
#fv {
    max-height: none;
    height: 70dvh;
}
#fv:before{
    background: url("../img/fv_main_sp.jpg")center center no-repeat;
    background-size: cover;
}
    #fv > .inner{
        display: block;
            padding:0 0 30px;
    }
    #fv > .inner .tl_area{
        width: 100%;
                align-items: flex-end;
    }
}
/* ----------------------------------------------------------------
フェードイン共通
---------------------------------------------------------------- */
.js-fadeHalf {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.js-fadeHalf.is-in {
    opacity: 1;
    transform: translateY(0);
}
.js-fade-before:before {
    opacity: 0;
    transition: opacity 1s ease;
}
.js-fade-before.is-in:before {
    opacity: 1;
}

/* ----------------------------------------------------------------
second_view
---------------------------------------------------------------- */
#second_view{
    background: #000;
        border-bottom: solid 1px #fff;
    color: #fff;
}
#second_view > .inner{
        max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    color: #fff;
        padding: 120px 0;
}
#second_view .main_txt_area {
    position: relative;
    padding: 100px 0 150px;
}
#second_view .main_txt_area:before {
    content: "";
    position: absolute;
    background: url("../../common/img/logo_gray.svg")center center no-repeat;
    background-size: contain;
    width: 260px;
    height: 231px;
    margin: auto;
    left: 0;
    right: 0;
    top: -30%;
    bottom: 0;
}
#second_view .main_txt {
    text-align: center;
    font-weight: 900;
    font-size: 2.3rem;
    position: relative;
}
#second_view > .inner > .txt {
    text-align: center;
    font-size: 1.15rem;
    line-height: 2.3;
}
#second_view .page_link_area{
        margin-top: 100px;
}
#second_view .page_link_area ul{
    display: flex;
    gap:0.5%;
    justify-content: space-between;
    margin-bottom: 80px;
}
#second_view .page_link_area ul li{
    width: 33%;
}
#second_view .page_link_area ul li a {
    display: flex;
    flex-wrap: wrap;
    height: 570px;
    width: 100%;
    position: relative;
    text-align: center;
    padding: 30px;
    overflow: hidden;
        flex-direction: column;
    justify-content: space-between;
}
#second_view .page_link_area ul li a:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    transition: transform 0.6s ease;
    transform: scale(1);
    transform-origin: center;
}
#second_view .page_link_area ul li a:hover:before {
    transform: scale(1.08);
}
#second_view .page_link_area ul li:nth-child(1) a:before{
    background: url("../img/btn_bg_01_pc.jpg") center center no-repeat;
    background-size: cover;
}
#second_view .page_link_area ul li:nth-child(2) a:before{
    background: url("../img/btn_bg_02_pc.jpg") center center no-repeat;
    background-size: cover;
}
#second_view .page_link_area ul li:nth-child(3) a:before{
    background: url("../img/btn_bg_03_pc.jpg") center center no-repeat;
    background-size: cover;
}
#second_view .page_link_area ul li a:after{
        content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #00000085;
}
#second_view .page_link_area ul li a:hover{
    text-decoration: none;
}
#second_view .page_link_area ul li a div{
    position: relative;
    z-index: 1;
    width: 100%;
    height: 45px;
}
#second_view .page_link_area ul li a div .tl {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 25px;
}
#second_view .page_link_area ul li a div .txt{
        line-height: 2;
}
#second_view .page_link_area ul li .btn_area p {
    display: block;
    background: #000000;
    border: solid 1px #ffffff;
    font-size: 1.2em;
    width: 100%;
    max-width: 250px;
    position: relative;
    border-radius: 35px;
    font-weight: 800;
    text-align: center;
    line-height: 1;
    overflow: hidden;
    margin: 0 auto;
    padding: 11px;
}
	#second_view .page_link_area ul li .btn_area p{
		transition: color 0.4s ease-out;
	}
	.btn_area a p{
		position: relative;
		z-index: 1;
	}
#second_view .page_link_area ul li .btn_area p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 0;
}
#second_view .page_link_area ul li .btn_area p .innertxt{
    position: relative;
    z-index: 1;
}
.arrow {
transition:background-color 0.4s ease;
}
#second_view .page_link_area ul li .btn_area p  .arrow::before,
#second_view .page_link_area ul li .btn_area p  .arrow::after {
transition:background-color 0.4s ease;
}
#second_view .page_link_area ul li .btn_area p  .arrow {
    position: absolute;
    right: 15px;
    z-index: 1;
    display: inline-block;
    width: 20px;
    height: 2px;
    border-radius: 9999px;
    background-color: #fff;
    top: calc(50% - 1px);
}
#second_view .page_link_area ul li .btn_area p  .arrow::before, #second_view .page_link_area ul li .btn_area p  .arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 9px;
    height: 2px;
    border-radius: 9999px;
    background-color: #ffffff;
    transform-origin: calc(100% - 1px) 50%;
}

#second_view .page_link_area .contact_btn a {
    max-width: 650px;
    padding: 10px;
    font-size: 1.7rem;
    color: #000;
    border: solid 1px #fff;
    border-radius: 60px;
}
#second_view .page_link_area .contact_btn a .arrow {
        position: absolute;
    right: 15px;
    z-index: 1;
    display: inline-block;
    width: 20px;
    height: 2px;
    border-radius: 9999px;
    background-color: #000;
    top: calc(50% - 1px);
}
#second_view .page_link_area .contact_btn a .arrow::before,#second_view .page_link_area .contact_btn a .arrow::after {
    background-color: #000;
}
#second_view .page_link_area .contact_btn a .arrow::before,
#second_view .page_link_area .contact_btn a .arrow::after {
background-color: #000;
}
@media screen and (min-width: 768px) {
	#second_view .page_link_area ul li a:hover .btn_area p{
		color: #000;
	}
	#second_view .page_link_area ul li a:hover .btn_area p .arrow{
		background-color: #000;
	}
#second_view .page_link_area ul li a:hover .btn_area p::after {
    transform: translateX(0);
}
#second_view .page_link_area ul li a:hover .btn_area p  .arrow::before,
#second_view .page_link_area ul li a:hover .btn_area p  .arrow::after {
background-color: #000;
}
#second_view .page_link_area ul li a:hover .btn_area p .arrow {
    background-color: #000;
}
#second_view .page_link_area .contact_btn a:hover{
    color: #fff;
}
#second_view .page_link_area .contact_btn a:hover .arrow {
    background-color: #fff;
}
#second_view .page_link_area .contact_btn a:hover .arrow::before,
#second_view .page_link_area .contact_btn a:hover .arrow::after {
background-color: #fff;
}
}
@media screen and (max-width: 767px) {
    
    #second_view > .inner {
    padding: 40px 0;
}
#second_view .main_txt_area {
    padding: 30px 0 30px;
}
#second_view .main_txt_area:before {
    width: 100%;
    height: 150px;
    top: -11%;
}
#second_view .main_txt {
    font-size: 1.6rem;
}
#second_view > .inner > .txt {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
    margin-top: 30px;
}
#second_view .page_link_area {
    margin-top: 50px;
}
    #second_view .page_link_area ul{
        display: block;
                margin-bottom: 40px;
    }
#second_view .page_link_area ul li {
    width: 100%;
    margin-bottom: 8px;
}
#second_view .page_link_area ul li a {
    width: 100%;
        display: block;
    padding: 15px;
    text-align: left;
        height: auto;
}
#second_view .page_link_area ul li a div {
    height: auto;
}
#second_view .page_link_area ul li a div .tl {
        font-size: 1.8rem;
        margin-bottom: 10px;
        line-height: 1;
}
#second_view .page_link_area ul li a div .txt {
margin-bottom: 90px;
        font-size: 0.8rem;
        line-height: 1.3;
}
#second_view .page_link_area ul li .btn_area p {
    font-size: 1em;
}
#second_view .page_link_area ul li:nth-child(1) a:before{
    background: url("../img/btn_bg_01_sp.jpg") center center no-repeat;
    background-size: cover;
}
#second_view .page_link_area ul li:nth-child(2) a:before{
    background: url("../img/btn_bg_02_sp.jpg") center center no-repeat;
    background-size: cover;
}
#second_view .page_link_area ul li:nth-child(3) a:before{
    background: url("../img/btn_bg_03_sp.jpg") center center no-repeat;
    background-size: cover;
}
#second_view .page_link_area .contact_btn a {
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}
}