@charset "UTF-8";

/* 共通 */

:root {
    --primary-white: #fff;
    --primary-black: #333;
    --primary-green: #68A346;
    --primary-orange: #F4A876;
    --primary-yellow: #FAF966;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family:
        "Noto Sans JP",
        "Lato"
        Arial,
        sans-serif;
    font-style: normal;
    color: var(--primary-black, #020202);
    background-color: var(--primary-white, #F2F2F2);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    display: inline-block;
}

a.anchor{
    display: block;
    padding-top: 400px;
    margin-top: -400px;
}

.SpBr {
    display: inline-block;
}

.TABBr {
    display: inline-block;
}

.pcBr {
    display: none;
}

@media screen and (min-width: 768px) {
    .SpBr {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .TABBr {
        display: none;
    }

    :root{
        scroll-padding: 214px;
    }

    .pcBr {
        display: inline-block;
    }
}

@media screen and (min-width: 1439px){
    .pcBr{
        display: none;
    }
}


/* ハンバーガーキット */

.c-hamburger {
    position: relative;
    width: 60px;
    height: auto;
    aspect-ratio: 1/1;
    margin: 0;
    border: transparent;
    background-color: var(--primary-orange, #F4A876);
    cursor: pointer;
}

.c-hamburger span {
    display: block;
    position: relative;
    left: 50%;
    width: 24px;
    height: 2px;
    transform: translateX(-50%);
    background: var(--primary-white);
    transition: all 0.4s;
}

.c-hamburger span:nth-of-type(1) {
    top: -4px;
}

.c-hamburger span:nth-of-type(2) {
    top: 1px;
    transform: translateX(-0.45deg);
}

.c-hamburger span:nth-of-type(3) {
    top: 6px;
    transform: translateX(-0.45deg);
}

.c-hamburger.is-active span:nth-of-type(1) {
    top: 0;
    transform: translateX(-50%) rotate(225deg);
}

.c-hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
}

.c-hamburger.is-active span:nth-of-type(3) {
    top: -4px;
    transform: translateX(-50%) rotate(-225deg);
}

/* ヘッダー */

.p-header__nav {
    display: flex;
    z-index: 10;
    position: absolute;
    top: -100%;
    right: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: transparent;
    opacity: 0;
    transition: top 0.6s, right 0.6s, opacity 0.6s;
}

.p-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 60px;
    z-index: 30;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-green, #68A346);
    transition: all 0.2s;
    box-shadow: 0px 2px 17px rgba(15, 15, 15, 0.4);
}

.p-header__inner.hide {
    transform: translateY(-60px);
}

.p-header__title{
    display: flex;
    gap: 2.6%;
    align-items: center;
}

.p-header__titleTxt{
    color: var(--primary-white, #fff);
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    transition: all 0.2s;
    white-space: nowrap;
}

.p-header__titleTxt a{
    text-decoration: none;
}

.p-header__titleImg{
    width: 30px;
    height: 30px;
    /* position: absolute;
    top: 0;
    left: 0; */
    filter: brightness(5);
}

.p-header__hamburger {
    z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
}

.p-header__nav.is-active {
    position: fixed;
    top: 0;
    right: 0;
    opacity: 1;
    background-color: rgba(104, 163, 70, 0.7);
}

.p-nav__list {
    display: block;
    padding-right: 20px;
    padding-left: 20px;
}

.p-nav__item {
    position: relative;
    width: 100%;
    text-align: center;
    display: inline-block;
}


.p-nav__link {
    color: var(--primary-white, #fff);
    padding: 20px;
    display: inline-block;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    transition-duration: 0.2s;
}

.p-nav__link:hover {
    color: var(--primary-orange);
}

/* ヘッダー pc */

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

    .p-header__titleTxt{
        font-size: 2.5rem;
    }

    .p-header__titleImg{
        width: 45px;
        height: 45px;
    }

    .p-header__hamburger {
        display: none;
    }

    .p-header__inner {
        height: 90px;
    }

    .p-header__inner.hide {
        transform: translateY(-90px);
    }

    .p-nav__inner {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary-orange);
    }

    .p-nav__list {
        display: flex;
        white-space: nowrap;
        padding-right: 0px;
        padding-left: 0px;
        justify-content: center;
    }

    .p-nav__item {
        align-items: center;
    }

    .p-nav__link {
        font-size: 1.6rem;
        padding: 20px;
        /* width: 116px; */
        white-space: nowrap;
        display: inline-block;
        color: var(--primary-white, #fff);
    }

    .p-nav__link:hover {
        color: var(--primary-green);
    }

    .p-header__nav {
        background-color: var(--primary-orange);
        background-image: none;
        width: auto;
        height: auto;
        /* overflow-y: scroll; */
        position: fixed;
        top: 90px;
        transform: translateX(0);
        display: flex;
        opacity: 1;
        width: 100%;
        transition: all 0.2s;
    }

    .p-header__nav.hide {
        transform: translateY(-90px);
    }
}

/* 求人 */

.recruitImg {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 10s;
}

.recruitImg:hover {
    transform: scale(1.2);
}

.recruitImg__hover {
    width: 100%;
    height: 300px;
    object-fit: cover;
    overflow: hidden;
}

.recruit__detail {
    padding: 50px 5.3%;
    background-color: var(--primary-yellow);
}

.recruit__mainTitle {
    color: var(--primary-black, #333);
    text-align: left;
    font-family: "Noto Sans JP";
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
}

.recruit__subTitle{
    color: var(--primary-green, #68A346);
    text-align: left;
    font-family: "Noto Sans JP";
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
}

.recruit__txt {
    color: var(--primary-black, #333);
    text-align: left;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 30px;
}

/* 求人 pc*/

@media screen and (min-width:768px) {
    .section--recruit {
        margin-top: 0px;
        padding-bottom: 0;
    }

    .recruit {
        display: flex;
    }

    .recruitImg {
        width: 100%;
        height: 510px;
        object-fit: cover;
    }

    .recruitImg__hover {
        width: 100%;
        height: 510px;
        object-fit: cover;
        overflow: hidden;
    }

    .recruit__detail {
        padding: 75px 5.3%;
        width: 100%;
    }

    .recruit__title {
        font-size: 3rem;
        text-align: center;
    }

    .recruit__title::after {
        color: rgba(104, 163, 70, 0.3);
        text-align: center;
        top: -23px;
    }

    .recruit__txt {
        text-align: left;
    }

}

/* お問い合わせ */

.section--contact {
    position: relative;
    background-color: var(--primary-green);
}

.contact__mainTitle {
    color: var(--primary-white, #fff);
    text-align: left;
    font-family: "Noto Sans JP";
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: relative;
}

.contact__subTitle {
    color: var(--primary-yellow, #FAF966);
    text-align: left;
    font-family: "Noto Sans JP";
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
}

.contact__txt {
    color: var(--primary-white, #fff);
    text-align: left;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 30px;
}

.contactImg {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 10s;
}

.contactImg:hover {
    transform: scale(1.2);
}

.contactImg__hover {
    width: 100%;
    height: 300px;
    object-fit: cover;
    overflow: hidden;
}

.contact__detail {
    padding: 50px 5.3%;
}

/* お問い合わせ pc*/

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

    .section--contact {
        margin-top: 0;
        padding-bottom: 0;
    }

    .contact {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }

    
    .contactImg__hover{
        width: 100%;
        height: 630px;
        object-fit: cover;
        overflow: hidden;
    }
    
    .contactImg {
        width: 100%;
        height: 630px;
        object-fit: cover;
    }

    .contact__detail {
        padding: 75px 5.3%;
        width: 100%;
    }

    .contact__title {
        font-size: 3rem;
        text-align: center;
    }

    .contact__title::after {
        color: rgba(250, 249, 102, 0.3);
        text-align: center;
        top: -23px;
    }

    .contact__txt {
        text-align: left;
    }
}

/* アクセス */

.section--access {
    padding: 0;
}

.gmap__iframe {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* アクセス pc */

@media screen and (min-width:768px) {
    .gmap__iframe {
        height: 400px;
    }
}

/* footer */

.footer {
    padding: 50px 5.3% 20px;
    background-color: var(--primary-green, #68A346);
    margin: 0 auto;
    position: relative;
}

.footer__icon {
    width: 35px;
    height: auto;
    aspect-ratio: 1/1;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    filter: brightness(5);
}

.footer__img{
    width: 35px;
    height: auto;
    aspect-ratio: 1/1;
    filter: brightness(5);
}

.footer__img:hover{
    transform: scale(1.1);
    filter: brightness(0);
}

.footer__title{
    display: flex;
    gap: 1.3%;
    justify-content: flex-start;
    align-items: center;
}

.footer__titleTxt{
    color: var(--primary-white, #fff);
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    transition: all 0.2s;
    white-space: nowrap;
}

.footer__titleTxt a{
    text-decoration: none;
}

.footer__titleImg{
    width: 30px;
    height: 30px;
    /* position: absolute;
    top: 0;
    left: 0; */
    filter: brightness(5);
}

.footer__title:after{
    content: '';
    background-image: url(../images/ryobiLogo.png);
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(5);
}

.footer__address {
    margin: 50px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer__detail {
    color: var(--primary-white, #fff);
    text-align: left;
    font-family: "Noto Sans JP";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2;
}

.p-footer__inner {
    display: none;
}

.copy {
    color: var(--primary-white, #fff);
    text-align: center;
    font-family: 'Lato';
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* footer pc */

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

    .footer__content{
        display: flex;
        margin-top: 50px;
        gap: 5%;
        align-items: flex-start;
        justify-content: center;
    }

    .footer__address{
        margin: 0;
    }

    .footer__titleTxt{
        font-size: 2.5rem;
    }

    .footer__titleImg{
        width: 45px;
        height: 45px;
    }

    .footer__icon{
        width: 50px;
    }

    .footer__img{
        width: 50px;
    }

    .p-footer__inner{
        display: inline-block;
        position: static;
        left: 0;
        transform: none;
    }   

    .p-nav__footerLink{
        font-size: 1.6rem;
        font-weight: 500;
        font-family: 'Noto Sans JP';
        padding: 10px 20px;
        color: var(--primary-white);
        text-decoration: none;
    }

    .p-nav__footerLink:hover {
        color: var(--primary-orange);
    }

    .copy{
        font-size: 1.2rem;
        margin-top: 30px;
    }
}

/* ボタン */

.contentBtn {
    display: flex;
    width: 100%;
    max-width: 360px;
    height: 60px;
    border: 2px solid var(--primary-orange);
    background-color: var(--primary-white);
    color: var(--primary-orange);
    margin: 50px auto 0;
    border-radius: 158px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.contentBtn:after {
    background-color: var(--primary-orange);
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}

.contentBtn p {
    display: inline-block;
    color: var(--primary-orange);
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.contentBtn:hover p {
    color: var(--primary-white);
}

.contentBtn:hover::after {
    transform: scale(1, 1);
}

.contactBtn__name {
    display: flex;
    width: 100%;
    max-width: 360px;
    height: 60px;
    border: 2px solid var(--primary-orange);
    background-color: var(--primary-white);
    color: var(--primary-orange);
    margin-top: 30px;
    border-radius: 158px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.contactBtn__name:after {
    background-color: var(--primary-orange);
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}

.contactBtn__name p {
    display: inline-block;
    color: var(--primary-orange);
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contactBtn__name:hover p {
    color: var(--primary-white);
}

.contactBtn__name:hover::after {
    transform: scale(1, 1);
}

.telBtnSP {
    display: flex;
    width: 316px;
    height: 60px;
    border: 2px solid var(--primary-orange);
    background-color: var(--primary-white);
    color: var(--primary-orange);
    margin: 20px auto 0;
    border-radius: 158px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.telBtnSP:after {
    background-color: var(--primary-orange);
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}

.telBtnSP p {
    display: inline-block;
    color: var(--primary-orange);
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.telBtnSP:hover p {
    color: var(--primary-white);
}

.telBtnSP:hover::after {
    transform: scale(1, 1);
}

.telBtnPC {
    display: none;
}

/* ボタン　pc */

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

    .contentBtn {
        margin: 70px auto 0;
        width: 100%;
        max-width: 480px;
        height: 90px;
    }

    .contentBtn p{
        font-size: 2.4rem;
    }

    .contactBtn__name {
        margin: 30px auto 0;
        max-width: 480px;
        pointer-events: none;
        height: 90px;
    }

    .contactBtn__name p{
        font-size: 2.4rem;
    }

    .telBtnSP {
        display: none;
    }

    .telBtnPC {
        display: flex;
        width: 350px;
        height: 70px;
        border: 2px solid var(--primary-orange);
        background-color: var(--primary-white);
        color: var(--primary-white);
        border-radius: 158px;
        overflow: hidden;
        position: relative;
        z-index: 1;
        pointer-events: none;
    }

    .telBtnPC:after {
        background-color: var(--primary-orange);
        position: absolute;
        top: 0;
        left: 0;
        content: '';
        width: 100%;
        height: 100%;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
        z-index: -1;
    }

    .telBtnPC p {
        display: inline-block;
        color: var(--primary-orange);
        font-family: "Noto Sans JP";
        font-size: 2rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .telBtnPC:hover p {
        color: var(--primary-white);
    }

    .telBtnPC:hover::after {
        transform: scale(1, 1);
    }
}

/* ==============================
トップに戻るボタン
========================================*/

#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    line-height: 1;
    z-index: 99;
}

#page-top a {
    background: var(--primary-orange);
    text-decoration: none;
    color: var(--primary-white);
    width: 60px;
    height: 60px;
    padding: 22px 5px;
    text-align: center;
    display: inline-block;
    border-radius: 90px;
    opacity: 0.9;
    transition: all .3s;
}

#page-top a:hover {
    text-decoration: none;
    opacity: 0.5;
}

/* トップに戻るボタン pc */

@media screen and (min-width:1024px){
    #page-top a{
        width: 90px;
        height: 90px;
    }

}

/* ============================================
スクロールアニメーション
=============================================== */

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}

.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    transform: translateX(0);
}

.timing02 {
    transition-delay: .3s;
}

.timing03 {
    transition-delay: .6s;
}

.timing04 {
    transition-delay: .9s;
}

.timing05 {
    transition-delay: 1.2s;
}