@charset "utf-8";

/* -----------------------------
    共通
-------------------------------- */
:root {
    --navy: #03058B;
    --cv-bg: linear-gradient(to right, #69e6be, #61e5c8, #5ce4d1, #59e3da, #59e2e2, #5ce0e9, #62def0, #69dcf5);
    /*--cv-bg:linear-gradient(to right, #3d75d6 0%, #25b5cc 51%, #3d75d6 100%);*/
}

.h1-area {
    top: 940px;
}

#header.header-no-fixed .header-area .btn-box {
    position: absolute;
}

.breadcrumbs {
    padding: 20px 0 0 calc( ( 100% - 1200px ) / 2 );
}

#com-contact {
    display: none;
}

.entry-cv-btn {
    width: 100%;
    max-width: 400px;
}

.entry-cv-btn a {
    padding: 20px;
    text-align: center;
    width: 100%;
    display: block;
    background: var(--navy);
    color: #fff;
    font-weight: bold;
    line-height: 1.5;
    border-radius: 60px;
}

.entry-cv-btn a i {
    margin-left: 5px;
}

.link-txt {
    color: var(--navy)!important;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0;
}

.link-txt i {
    margin-left: 3px;
}

@media (hover: hover) and (pointer: fine) {
    .entry-cv-btn a:hover {
        background: #0003D9;
    }
    
    .link-txt:hover {
        opacity: .7;
    }
}

@media screen and (max-width: 768px){
    #page-top {
        bottom: 60px;
    }
    
    .h1-area {
        top: 530px;
        width: calc( 100% - 40px );
    }
    
	/*採用ページだけ表示するボタン*/
    .ft-fixed .ft-btn-wrap .recruit {
        display: block;
        width: 100%;
    }
    
    .ft-fixed .ft-btn-wrap .recruit a {
        color: var(--navy);
    }
    
    .ft-fixed .ft-btn-wrap .recruit i {
        transform: none;
        margin-bottom: 2px;
    }
    .ft-fixed .ft-btn-wrap .btn .txt {
        font-size: 1.4rem;
    }
    
    .ft-fixed .ft-btn-wrap .tel,
    .ft-fixed .ft-btn-wrap .contact,
    .ft-fixed .ft-btn-wrap .simulation {
        display: none;
    }
}


/* -----------------------------
	mv-area
-------------------------------- */

#recruit .mv-area {
    position: relative;
    height: 800px;
}

#recruit .mv-area .mv-bg {
    position: absolute;
    background: url(../img/recruit-mv.jpg) repeat-x 0 0;
    background-size: 1600px auto;
    width: 100%;
    height: 800px;
    overflow: hidden;
    -moz-animation: mv-loop 25s linear infinite;
    animation: mv-loop 25s linear infinite;
    top: 0;
    z-index: -1;
}

#recruit .mv-area .mv-txt-wrap {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,.2);
	box-shadow: 0px 0px 40px 50px rgba(0,0,0,.2);
    z-index: 1;
    white-space: nowrap;
    text-align: center;
}

#recruit .mv-area .mv-txt-wrap::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: url("../img/logo-mark-white.svg") center/contain, no-repeat;
    width: 400px;
    height: initial;
    aspect-ratio: 351 / 404;
    z-index: -1;
    opacity: .2;
}

#recruit .mv-area .mv-txt-wrap .en {
    color: #fff;
    font-size: 10.0rem;
    text-shadow: 0 0 30px #000;
    letter-spacing: .9rem;
}

#recruit .mv-area .mv-txt-wrap .jp {
    color: #fff;
    font-size: 5.4rem;
    text-shadow: 0 0 30px #000;
}

#recruit .mv-area .mv-txt-wrap .mv-txt {
    color: #fff;
    text-shadow: 0 0 15px #000;
    font-weight: bold;
    line-height: 2.0;
    margin: 30px 0 0;
}

@keyframes mv-loop {
	
	0% {
		background-position: 0 0;
		}

	100% {
		background-position: -1600px 0;
		}
}

@media screen and (max-width: 768px){
    #recruit .mv-area {
        height: 500px;
    }
    
    #recruit .mv-area .mv-bg {
        background-size: auto 500px;
        height: 500px;
        -moz-animation: mv-loop 30s linear infinite;
        animation: mv-loop 30s linear infinite;
        background: url(../img/recruit-mv-sp.jpg) repeat-x 0 0;
        background-size: cover;
    }
    
    #recruit .mv-area .mv-txt-wrap {
        top: 50%;
        transform: translateY(-50%);
        left: 5%;
        white-space: initial;
        width: 90%;
    }
    
    #recruit .mv-area .mv-txt-wrap::before {
        width: 60vw;
        max-width: 300px;
        top: 30%;
        opacity: .3;
    }
    
    #recruit .mv-area .mv-txt-wrap .en {
        font-size: 2.8rem;
        letter-spacing: .4rem;
        line-height: 1.2;
        font-feature-settings: "palt";
    }
    
    #recruit .mv-area .mv-txt-wrap .jp {
        font-size: 4.2rem;
        font-feature-settings: "palt";
        margin: 10px 0 0;
    }
    
    #recruit .mv-area .mv-txt-wrap .mv-txt {
        font-size: min(3.9cqw,1.8rem);
        width: 100%;
        margin: 15px 0 0;
        container-type: inline-size;
        text-align: left;
    }
    
}

/* -----------------------------
	message-area
-------------------------------- */
#recruit .message-area {
    padding: 60px 0 30vw;
    position: relative;
}

#recruit .message-area::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50vw;
    background: url("../img/recruit-message-bg.png") top/cover,no-repeat;
    z-index: -1;
}

#recruit .message-area .sec-catch-wrap {
    margin: 0 0 20px;
}

#recruit .message-area .sec-catch {
    font-size: 4.4rem;
    transform: skewX(-5deg);
}

#recruit .message-area .sec-catch em {
    color: var(--green);
}

#recruit .message-area .message-block {
    position: relative;
}

#recruit .message-area .message-block .sign {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 320px;
}

#recruit .message-area .message-block .photo {
    margin-left: 50px;
    float: right;
}

#recruit .message-area .message-block .txt-wrap {
    margin-right: 50px;
}

#recruit .message-area .en {
    transform: skewX(-10deg);
}

@media screen and (max-width: 768px){
	#recruit .message-area {
        padding: 30px 0 50vw;
        position: relative;
    }
    
    #recruit .message-area .message-block {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    #recruit .message-area .message-block .photo {
        margin:0 0 20px 0;
        float: none;
        width: 35vw;
    }
    
    #recruit .message-area .message-block .txt-wrap {
        margin-right: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    
    #recruit .message-area .sec-catch-wrap {
        width: calc( 100% - 35vw);
        margin: 0;
    }
    
    #recruit .message-area .sec-catch {
        font-size: max(5cqw,2.6rem);
        margin: 5px 0 0;
    }
    
    #recruit .message-area .message-block .sign {
        bottom: -60px;
        width: 60vw;
    }
}

/* -----------------------------
	character-area
-------------------------------- */
#recruit .character-area {
    padding: 100px 0;
    background: #F2FCF7;
}

#recruit .character-area .icon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

#recruit .character-area .icon-list li {
    width: calc( ( 100% - 60px) / 5 );
    background: #fff;
    padding: 30px 10px 20px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    border-radius: 15px;
}

#recruit .character-area .icon-list .num {
    font-size: 3.0rem;
    font-weight: bold;
    color: var(--green);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

#recruit .character-area .icon-list .icon-wrap {
    width: 60px;
    height: 60px;
}

#recruit .character-area .icon-list .list-txt {
    text-align: center;
    font-feature-settings: "palt";
    width: 100%;
}

@media screen and (max-width: 768px){
	#recruit .character-area {
        padding: 40px 0;
    }
    
    #recruit .character-area .icon-list {
        gap: 20px;
    }
    
    #recruit .character-area .icon-list li {
        width: 100%;
        padding: 30px 20px 20px;
        flex-direction: row;
        gap: 20px;
        border-radius: 10px;
    }
    
    #recruit .character-area .icon-list .num {
        font-size: 2.4rem;
        top: -10px;
        left: 10px;
        transform: none;
    }
    
    #recruit .character-area .icon-list .icon-wrap {
        width: 50px;
        height: 50px;
    }
    
    #recruit .character-area .icon-list .list-txt {
        text-align: left;
        width: calc( 100% - 70px );
    }
}

/* -----------------------------
	attractive-area
-------------------------------- */
#recruit .attractive-area {
    padding: 80px 0;
}

#recruit .attractive-area .attractive-block-wrap {
}

#recruit .attractive-area .attractive-block {
    display: flex;
}

#recruit .attractive-area .attractive-block + .attractive-block {
    margin-top: 30px;
}

#recruit .attractive-area .attractive-block .bg-wrap {
    width: 50%;
    min-height: 600px;
    overflow: hidden;
}

#recruit .attractive-area .attractive-block .bg-wrap img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#recruit .attractive-area .attractive-block .txt-wrap {
    width: 50%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    container-type: inline-size;
}

#recruit .attractive-area .attractive-block .txt-wrap .txt-bg {
    position: relative;
    padding: 8% 0;
}

#recruit .attractive-area .attractive-block .txt-bg::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 120%;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #f6f6f6;
    z-index: -1;
    border-radius: 30px;
}

#recruit .attractive-area .attractive-block .attractive-catch {
    font-size: max(4.2cqw,2.8rem);
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 20px;
}

#recruit .attractive-area .attractive-block .num {
    font-size: min(16cqw,10.0rem);
    font-weight: bold;
    color: var(--green);
    display: block;
    position: absolute;
    top: -13%;
}

/*PCのみ*/
@media screen and (min-width: 769px){
    
    #recruit .attractive-area .attractive-block:nth-child(odd) .bg-wrap {
        border-radius: 0 30px 30px 0;
    }
    
    #recruit .attractive-area .attractive-block:nth-child(odd) .txt-wrap {
        margin-right: calc( ( 100% - 1200px ) / 2 );
    }
    
    #recruit .attractive-area .attractive-block:nth-child(odd) .num {
        right: 0;
    }
    
    #recruit .attractive-area .attractive-block:nth-child(even) .num {
        left: 0;
    }
    
    #recruit .attractive-area .attractive-block:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    #recruit .attractive-area .attractive-block:nth-child(even) .bg-wrap {
        border-radius: 30px 0 0 30px;
    }
    
    #recruit .attractive-area .attractive-block:nth-child(even) .txt-wrap {
        margin-left: calc( ( 100% - 1200px ) / 2 );
    }
}

@media screen and (max-width: 768px){
	#recruit .attractive-area {
        padding: 40px 0 0;
    }
    
    #recruit .attractive-area .attractive-block {
        flex-wrap: wrap;
    }
    
    #recruit .attractive-area .attractive-block + .attractive-block {
        margin: 0;
    }
    
    #recruit .attractive-area .attractive-block .bg-wrap {
        width: 100%;
        min-height: initial;
        height: 50vw;
    }
    
    #recruit .attractive-area .attractive-block .txt-wrap {
        width: 100%;
        padding: 30px 20px;
    }
    
    #recruit .attractive-area .attractive-block .txt-wrap .txt-bg {
        display: contents;
    }
    
    #recruit .attractive-area .attractive-block .num {
        top: -12.5vw;
        color: #fff;
    }
    
    #recruit .attractive-area .attractive-block .attractive-catch {
        font-size: max(4.2cqw,2.4rem);
        font-weight: bold;
        line-height: 1.5;
        margin: 0 0 20px;
    }
}

/* -----------------------------
	works-area
-------------------------------- */
#recruit .works-area {
    padding: 80px 0;
    position: relative;
}

#recruit .works-area .inner {
    position: relative;
    width: 1300px;
}

#recruit .works-area .ill-wrap {
    height: 320px;
    position: absolute;
    top: -180px;
    right: 0;
    z-index: -1;
}

#recruit .works-area::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    min-width: 1000px;
    background: var(--green);
    height: 430px;
    z-index: -1;
    border-radius: 0 30px 0 0;
}

#recruit .works-area::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    min-width: 1000px;
    background: var(--green);
    height: 430px;
    z-index: -1;
    border-radius: 30px 0 0 0;
}

#recruit .works-area .works-block {
    border: 2px solid var(--green);
    padding: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    background: #fff;
    border-radius: 30px;
}

#recruit .works-area .works-block + .works-block {
    margin-top: 30px;
}

#recruit .works-area .works-block .img-wrap {
    width: 45%;
    border-radius: 25px;
    overflow: hidden;
}

#recruit .works-area .works-block .txt-wrap {
    width: calc( 55% - 60px );
}

#recruit .works-area .works-block .works-ttl {
    font-size: 3.4rem;
    font-weight: bold;
    line-height: 1.6;
    padding: 0 0 10px;
    margin: 0 0 20px;
    border-bottom: 2px solid var(--green);
    color: var(--green);
    transform: skewX(-5deg);
}

#recruit .works-area .works-block .works-box {
    background: #F2FCF7;
    padding: 30px 40px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap:0 60px;
    border-radius: 25px;
}

#recruit .works-area .works-block .txt-wrap .works-box {
    margin: 30px 0 0;
}

#recruit .works-area .works-block .works-box .works-box-ttl {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
    color: var(--green);
}

#recruit .works-area .works-block .works-box .works-name {
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 1.5;
}

#recruit .works-area .works-block .works-box .disc-list {
    margin: 15px 0;
}

@media screen and (max-width: 768px){
	#recruit .works-area {
        padding: 15vw 0 40px;
        /*margin-top: 12vw;*/
        z-index: 1;
    }
    
    #recruit .works-area::before {
        min-width: initial;
        width: 100vw;
        height: 80vw;
        z-index: -1;
        border-radius: 0;
    }
    
    #recruit .works-area .inner {
        width: 100%;
    }
    
    #recruit .works-area .ill-wrap {
        height: 40vw;
        width: initial;
        top: -18vw;
        right: 20px;
        aspect-ratio: 82 / 75;
    }
    
    #recruit .works-area .works-block {
        padding: 20px;
        gap: 20px;
        border-radius: 20px;
    }
    
    #recruit .works-area .works-block + .works-block {
        margin-top: 10px;
    }
    
    #recruit .works-area .works-block .img-wrap {
        width: 100%;
        border-radius: 12px;
        height: 50vw;
    }
    
    #recruit .works-area .works-block .txt-wrap {
        width: 100%;
    }
    
    #recruit .works-area .works-block .works-ttl {
        container-type: inline-size;
        font-size: min(6cqw,3.2rem);
        margin: 0 0 15px;
    }
    
    #recruit .works-area .works-block .works-box {
        padding: 20px;
        gap: 0;
        border-radius: 10px;
    }
    
    #recruit .works-area .works-block .txt-wrap .works-box {
        margin: 20px 0 0;
    }
    
    #recruit .works-area .works-block .works-box .works-box-ttl {
        font-size: 2.0rem;
    }
    
    #recruit .works-area .works-block .works-box .works-name {
        font-size: 1.8rem;
        margin-top: 20px;
    }
    
    #recruit .works-area .works-block .works-box .disc-list {
        margin: 10px 0 0;
    }
}

/* -----------------------------
	benefit-area
-------------------------------- */
#recruit .benefit-area {
    padding: 60px 0;
    background: #F2FCF7;
}

#recruit .benefit-area .inner {
    position: relative;
}

#recruit .benefit-area .sec-catch-wrap {
    display: flex;
    align-items: center;
    position: absolute;
    top: -100px;
    right: 0;
}

#recruit .benefit-area .sec-catch-wrap .ill-wrap {
    width: 260px;
}

#recruit .benefit-area .sec-catch-wrap .sec-catch {
    font-size: 2.6rem;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin:20px 0 0;
}

#recruit .benefit-area .icon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 110px 0 0;
    position: relative;
    z-index: 1;
}

#recruit .benefit-area .icon-list li {
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    width: calc( ( 100% - 40px ) / 5 );
    padding: 20px;
    justify-content: center;
    align-items: center;align-content:flex-start;
}

#recruit .benefit-area .icon-list .icon-wrap {
    width: 50px;
    height: 50px;
}

#recruit .benefit-area .icon-list .icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#recruit .benefit-area .icon-list .list-txt {
    /*width: calc( 100% - 70px );*/
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: bold;
}

@media screen and (max-width: 768px){
	#recruit .benefit-area {
        padding: 40px 0;
    }
    
    #recruit .benefit-area .sec-catch-wrap {
        top: initial;
        right: initial;
        position: relative;
        width: 100%;
    }
    
    #recruit .benefit-area .sec-catch-wrap .sec-catch {
        container-type: inline-size;
        font-size: min(4.5cqw,2.2rem);
        padding: 15px;
        border-radius: 20px;
        margin: 0;
        width: calc( 100% - 25vw );
        margin-top: -15px;
    }
    
    #recruit .benefit-area .sec-catch-wrap .ill-wrap {
        width: 28vw;
    }
    
    #recruit .benefit-area .icon-list {
        margin: 0;
    }
    
    #recruit .benefit-area .icon-list li {
        gap: 15px;
        width: calc( ( 100% - 10px ) / 2 );
        padding: 10px;
    }
    
    #recruit .benefit-area .icon-list .list-txt {
        font-feature-settings: "palt";
    }
}

/* -----------------------------
	staff-area
-------------------------------- */
#recruit .staff-area {
    padding: 100px 0;
}

#recruit .staff-area .inner {
    position: relative;
    padding: 80px 0 60px;
}

#recruit .staff-area .inner::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: #F8F8F8;
    width: 1360px;
    height: 100%;
    z-index: -1;
    border-radius: 20px;
}

#recruit .staff-area .inner::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(1deg);
    background: #f3f3f3;
    width: 1360px;
    height: 100%;
    z-index: -2;
    border-radius: 20px;
}

#recruit .staff-area .staff-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

#recruit .staff-area .staff-list li {
    width: calc( ( 100% - 60px ) / 3 );
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

#recruit .staff-area .staff-list .txt-wrap {
    padding: 25px 30px;
}

#recruit .staff-area .staff-list .position {
    font-size: 1.4rem;
    color: #888;
    line-height: 1.5;
    margin: 0 0 10px;
}

#recruit .staff-area .staff-list .position .name {
    font-size: 2.4rem;
    font-weight: bold;
    color: #333;
}

#recruit .staff-area .staff-list .position .min {
    font-size: 1.2rem;
    color: #333;
}

@media screen and (max-width: 768px){
	#recruit .staff-area {
        padding: 40px 0;
    }
    
    #recruit .staff-area .inner {
        padding: 40px 20px;
    }
    
    #recruit .staff-area .inner::before {
        transform: translateX(-50%) rotate(-3deg);
        width: 100%;
        height: 100%;
    }
    
    #recruit .staff-area .inner::after {
        transform: translateX(-50%) rotate(2deg);
        width: 100%;
        height: 100%;
    }
    
    #recruit .staff-area .staff-list {
        gap: 20px;
    }
    
    #recruit .staff-area .staff-list li {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 20px;
        gap: 20px 0;
    }
    
    #recruit .staff-area .staff-list .img-wrap {
        width: 40vw;
    }
    
    #recruit .staff-area .staff-list .txt-wrap {
        display: contents;
    }
    
    #recruit .staff-area .staff-list .position {
        margin: 0;
        padding: 0 0 0 20px;
        width: calc( 100% - 40vw );
    }
}


/* -----------------------------
	flow-area
-------------------------------- */
.flow-area {
    padding: 0 0 100px;
}

.flow-area .flow-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.flow-area .flow-list li {
    position: relative;
    width: calc( ( 100% - 60px ) / 3 );
    border: 1px solid #ccc;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
    align-items: center;
    align-content: flex-start;
    border-radius: 10px;
}

.flow-area .flow-list li::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: -31px;
    width: 31px;
    height: 1px;
    background: #ccc;
}

.flow-area .flow-list .icon-wrap {
    width: 60px;
    height: 60px;
}

.flow-area .flow-list .icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flow-area .flow-list .list-ttl-wrap {
    width: calc( 100% - 90px );
}

.flow-area .flow-list .step {
    font-size: 1.4rem;
    font-weight: bold;
    font-family: var(--en);
    color: var(--green);
    line-height: 1.3;
}

.flow-area .flow-list .list-ttl {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
}

/*PCのみ*/
@media screen and (min-width: 769px){
	.flow-area .flow-list li:last-child::after,
    .flow-area .flow-list li:nth-child(3n)::after {
        display: none;
    }
}

@media screen and (max-width: 768px){
    .flow-area {
        padding: 0 0 40px;
    }
    
    .flow-area .flow-list {
        gap: 20px;
    }
    
    .flow-area .flow-list li {
        width: 100%;
        padding: 20px;
        gap: 10px 20px;
    }
    
    .flow-area .flow-list li::after {
        top: initial;
        right: initial;
        left: 50%;
        width: 1px;
        height: 21px;
        bottom: -21px;
    }
    
    .flow-area .flow-list li:last-child::after  {
        display: none;
    }
    
    .flow-area .flow-list .icon-wrap {
        width: 50px;
        height: 50px;
    }
    
    .flow-area .flow-list .list-ttl {
        font-size: 2.2rem;
    }
}

/* -----------------------------
	rec-contact-area
-------------------------------- */
.rec-contact-area {
    background: linear-gradient(90deg, #dff8fc, #def8fb, #def9f9, #def9f8, #def9f6, #defaf5, #defaf3, #dffaf1);
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

.rec-contact-area::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    background: url("../img/recruit-contact.png") left/cover,no-repeat;
    width: 47%;
    height: 100%;
    max-width: 1000px;
    display: block;
}

.rec-contact-area .txt-wrap .rec-catch {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.8;
    color: var(--navy);
    letter-spacing: .4rem;
    font-feature-settings: "palt";
    transform: skewX(-5deg);
}

.rec-contact-area .rec-cv-btn {
    display: inline-block;
    margin: 30px 0 0;
}

.rec-contact-area .rec-cv-btn a {
    background: var(--cv-bg);
    color: var(--navy);
    padding: 25px 50px;
    position: relative;
    background-position: 100%!important;
    background-size: 200% auto!important;
    display: block;
    border-radius: 60px;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
}

.rec-contact-area .rec-cv-btn i {
    margin-left: 5px;
    transition: all .3s;
}

@media (hover: hover) and (pointer: fine) {
    .rec-contact-area .rec-cv-btn a:hover {
        color: var(--navy);
        background: var(--cv-bg);
        background-position: 0!important;
    }
    
    .rec-contact-area .rec-cv-btn a:hover i {
        transform: translateX(5px);
    }
}

@media screen and (max-width: 768px){
	.rec-contact-area {
        padding: 40px 0 75vw;
    }
    
    .rec-contact-area::before {
        background: url("../img/recruit-contact-sp.png") top/cover,no-repeat;
        width: 100%;
        height: 100vw;
        max-width: initial;
        bottom: 0;
        top: initial;
    }
    
    .rec-contact-area .txt-wrap .rec-catch {
        font-size: 2.0rem;
        letter-spacing: .2rem;
    }
    
    .rec-contact-area .rec-cv-btn {
        margin: 20px 0 0;
        width: 100%;
    }
    
    .rec-contact-area .rec-cv-btn a {
        padding: 20px 30px;
        font-size: 1.7rem;
        width: 100%;
        text-align: center;
    }
}

/* -----------------------------
	〇〇〇
-------------------------------- */

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