@charset "utf-8";


/* 共通設定
--------------------- */
html{
    font-size: 62.5%;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    color: #111;
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0.06em;
    text-align: left;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

:root {
    --font-family-urw: urw-form-expanded, sans-serif;
}

.sp{
    display: none;
}
.tb{
    display: none;
}

a{
    color: #111;
}

/* 見出し */
h2{
    font-family: var(--font-family-urw);
}

:root {
    --font-family-urw: urw-form-expanded, sans-serif;
}


/* コンタクト・リクルート
--------------------- */
.contact-recruit-sec{
    background-image: url(../parts/img/contact-recruit-bg.jpg);
    background-size: cover;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* コンタクトフォーム一旦非表示 */
.contact-sec{
    display: none;
}
.recruit-sec{
    width: 30%;
    min-height: 130px;
    /* width: 50%;
    min-height: 130px; */
}
.contact-sec-ttl{
    max-width: 360px;
    width: 100%;
    margin: 0 10% 10px auto;
}
.recruit-sec-ttl{
    width: 100%;
    margin-bottom: 10px;
    /* max-width: 360px;
    width: 100%;
    margin: 0 auto 10px 10%; */
}
.contact-form-btn,
.recruit-form-btn{
    display: block;
    border: 1px solid #111;
    padding: 30px 0 30px 40px;
    position: relative;
    transition: all .4s;
}
.contact-form-btn:hover{
    opacity: .7;
    color: #111;
}
.recruit-form-btn:hover{
    opacity: .7;
    color: #111;
}
.contact-sec-ttl h3,
.recruit-sec-ttl h3{
    font-family: var(--font-family-urw);
    font-size: 2.0rem;
    font-weight: 400;
}
.contact-form-btn::before{
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    right: 12%;
    width: 16%;
    height: 1px;
    background-color: #111;
    transition: all .3s;
}
.contact-form-btn::after{
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    right: 12%;
    width: 5px;
    height: 5px;
    margin-top: -2px;
    border-top: 1px solid #111;
    transform: rotate(45deg);
    transition: all .3s;
}
.contact-form-btn:hover::before {
	position: absolute;
	top: 50%;
	right: 10%;
	width: 18%;
}
.contact-form-btn:hover::after {
	position: absolute;
	top: 50%;
	right: 10%;
}
.contact-sec p{
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0 10% 0 auto;
    max-width: 360px;
    width: 100%;
}

.recruit-form-btn::before{
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    right: 12%;
    width: 16%;
    height: 1px;
    background-color: #111;
    transition: all .3s;
}
.recruit-form-btn::after{
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    right: 12%;
    width: 5px;
    height: 5px;
    margin-top: -2px;
    border-top: 1px solid #111;
    transform: rotate(45deg);
    transition: all .3s;
}
.recruit-form-btn:hover::before {
	position: absolute;
	top: 50%;
	right: 10%;
	width: 18%;
}
.recruit-form-btn:hover::after {
	position: absolute;
	top: 50%;
	right: 10%;
}
.recruit-sec p{
    font-size: 1.2rem;
    font-weight: 400;
    /* margin: 0 auto 0 10%; */
    /* max-width: 360px; */
    width: 100%;
}


/* フッター
--------------------- */
#footer{
    background: #333333;
    padding:50px 0 30px;
}
.footer_inner{
    font-family: var(--font-family-urw);
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.footer-logo-area{
    width: 30%;
}
.footer-logo-area img{
    width: 140px;
}
.footer-nav-area{
    width: 70%;
    height: 100%;
}
.footer-nav-list{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.footer-nav-list li:first-child{
    color: #747474;
}
.footer-nav-list li a{
    color: #fff;
}

/* コンタクトフォーム一旦非表示 */
.footer-nav-list li:nth-child(6){
    display: none;
}

.footer-copy{
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 10px;
    font-family: var(--font-family-urw);
}



/* TB 560px ~ 959px
--------------------- */
@media only screen and (max-width: 960px) {
    .pc{
        display: none;
    }
    .tb{
        display: block;
    }
/* コンタクト・リクルート
    --------------------- */
    .contact-recruit-sec{
        flex-wrap: wrap;
        align-content: center;
    }
    .contact-sec,
    .recruit-sec{
        margin: 0 auto;
        width: 80%;
    }
    .contact-sec{
        margin-top: 20px;
    }
    .contact-sec-ttl{
        margin: 0 auto 10px auto;
    }
    .recruit-sec-ttl{
        margin: 0 auto 10px auto;
    }
    .contact-sec-ttl a,
    .recruit-sec-ttl a{
        padding: 20px 0 20px 30px;
    }
    .recruit-sec p,
    .contact-sec p{
        margin: 0 auto;
    }
/* フッター
    --------------------- */
    #footer {
        padding: 30px 0 30px;
    }
    .footer_inner{
        max-width: 600px;
        display: block;
    }
    .footer-logo-area{
        margin: 0 auto 20px;
    }
    .footer-nav-area{
        width: 100%;
    }
    .footer-nav-list{
        font-size: 0.7rem;
        justify-content: space-evenly;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .footer-nav-list li{
        margin-left: 15px;
    }
    .footer-nav-list li:first-child{
        margin-left: 0;
        margin-bottom: 7px;
        width: 100%;
        text-align: center;
    }
    .footer-nav-list li:nth-child(2){
        margin-left: 0;
    }

    .footer-copy{
        font-size: 0.8rem;
    }
}

/* SP ~559px
--------------------- */
@media only screen and (max-width: 559px) {
    .sp{
        display: block;
    }
/* コンタクト・リクルート
    --------------------- */
    .contact-recruit-sec {
        height: 400px;
    }
/* フッター
    --------------------- */
    #footer {
        padding: 50px 0 30px;
    }
    .footer_inner{
        position: relative;
    }
    .footer_inner::before{
        background-color: rgba(255,255,255,0.05);
        content: "";
        display: block;
        height: 95%;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        position: absolute;
        width: 83%;
        pointer-events: none;
    }
    .footer-logo-area {
        margin: 0 auto 20px 70px;
    }
    .footer-nav-area{
        margin: 0 auto 0 100px;
        text-align: center;
        width: 200px;
    }
    .footer-nav-list{
        display: inline-block;
        font-size: 1.1rem;
    }
    .footer-nav-list li:first-child{
        text-align: left;
        margin-left: -30px;
        margin-bottom: 30px;
    }
    .footer-nav-list li{
        margin-left: 0;
        text-align: left;
        margin-bottom: 15px;
    }
    .footer-copy{
        text-align: left;
        margin: 40px auto 0 70px;
    }

}
