@charset "UTF-8";

/* 共通 */

:root {
    --primary-white: #fafafa;
    --primary-black: #333333;
    --primary-lightgreen: #4CAF50;
    --primary-green: #2E7D32;
    --primary-orange: #FFA726;
    --primary-subBlack: #666666;
    --section-padding: 50px 5.3%;
    scroll-padding: 20px;
}

html {
    font-size: 62.5%;
    min-height: 0;
    min-width: 0;
}

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

.font-size-L {
    font-size: clamp(3.6rem, 2.966rem + 2.7vw, 5.4rem);
}

.font-size-fv {
    font-size: clamp(2.5rem, 2.06rem + 1.88vw, 3.75rem);
}

.font-size-M {
    font-size: clamp(2.4rem, 1.977rem + 1.8vw, 3.6rem);
}

.font-size-Sg {
    font-size: clamp(1.8rem, 1.483rem + 1.35vw, 2.7rem);
}

.font-size-S {
    font-size: clamp(1.6rem, 1.318rem + 1.2vw, 2.4rem);
}

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

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

.anchor {
    display: inline-block;
}

.SpBr {
    display: inline-block;
}

.TABBr {
    display: none;
}

.pcBr {
    display: none;
}

/* 共通 pc */

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

    .TABBr {
        display: inline-block;
    }
}

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

    .pcBr {
        display: inline-block;
    }

    :root {
        --section-padding: 75px 5.3%;
    }
}

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

.c-hamburger {
    position: relative;
    width: 60px;
    height: auto;
    aspect-ratio: 1/1;
    margin: 0;
    border: transparent;
    cursor: pointer;
    z-index: 1;
    box-shadow: 1px rgba(0, 0, 255, 0.2);
}

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

.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);
}

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

@media screen and (min-width:1024px) {
    .c-hamburger {
        width: 90px;
    }

    .c-hamburger span {
        width: 36px;
    }

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

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

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

/* ヘッダー */

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

.p-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    transition: all 0.2s;
    z-index: 100;
    background-color: rgba(51, 51, 51, 0.2);
}

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

.p-header__title {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-left: 20px;
    color: var(--primary-white, #fafafa);
}

.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: var(--primary-lightgreen, #4CAF50);
    flex-direction: column;
    display: flex;
}

.p-nav__inner {
    height: 100%;
    width: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    padding: var(--section-padding);
}

.p-nav__list {
    display: block;
    padding-bottom: 50px;
}

.p-nav__item {
    position: relative;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.2s;
    border-bottom: 1px solid var(--primary-white, #fafafa);
}

.p-nav__link {
    padding: 20px 4.2%;
    display: flex;
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition-duration: 0.2s;
    position: relative;
    width: 100%;
    align-items: center;
}

.p-nav__link:hover {
    background-color: var(--primary-orange, #FFA726);
}

.p-nav__linkName {
    color: var(--primary-white, #fafafa);
    text-align: left;
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
}

.p-nav__linkImg{
    display: flex;
    align-items: center;
}

.p-nav__linkImg img {
    width: 30px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(99%) sepia(10%) saturate(219%) hue-rotate(197deg) brightness(116%) contrast(96%);
    margin-right: 10px;
}

.p-navLink__content {
    display: flex;
    flex-wrap: wrap;
}

.p-navLink__item {
    display: none;
}

.companyNav {
    width: 100%;
}

.p-nav__btn {
    display: flex;
}

.p-navBtnItem {
    position: relative;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    transition: all 0.2s;
    background-color: var(--primary-white, #fafafa);
    border: 2px solid var(--primary-orange, #FFA726);
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    border-radius: 5px;
}

.p-navBtnItem .contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    padding: 15px 0;
    width: 100%;
    height: 100%;
}

.p-navBtnItem .telphone {
    gap: 1em;
    padding: 15px 0;
    width: 100%;
    height: 100%;
}

.p-navBtnItem div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.p-navBtnItem__txt {
    color: var(--primary-orange, #FFA726);
    text-align: center;
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.8;
    white-space: nowrap;
}

.p-navBtnItem__subTxt {
    color: var(--primary-orange, #FFA726);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    white-space: nowrap;
}

.p-navBtnItem:after {
    background-color: var(--primary-orange, #FFA726);
    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;
}

.p-navBtnImg {
    width: 20px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(85%) sepia(32%) saturate(5383%) hue-rotate(338deg) brightness(103%) contrast(104%);
}

.p-navBtnItem:hover p {
    color: var(--primary-white, #fafafa);
}

.p-navBtnItem:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7414%) hue-rotate(183deg) brightness(100%) contrast(96%);
}

.p-navBtnItem:hover::after {
    transform: scale(1, 1);
}


/* ヘッダー　pc */

@media screen and (min-width:1024px) {
    .p-header__inner {
        height: 90px;
    }

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

    .p-header__titleImg {
        width: 90px;
    }

    .p-nav__list {
        padding-bottom: 75px;
    }

    .p-nav__link {
        padding: 20px 4.2%;
    }

    .p-navLink__item {
        display: inline-block;
        color: var(--primary-white, #fafafa);
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.8;
        width: 50%;
        display: inline-block;
        position: relative;
        text-align: left;
        transition: all 0.2s;
    }

    .p-navLink__item a {
        display: block;
        padding: 20px 10.6%;
    }

    .p-navLink__item:hover {
        background-color: var(--primary-orange, #FFA726);
    }

    .p-navLink__item a::before {
        content: '';
        display: inline-block;
        position: absolute;
        width: 40px;
        height: 1px;
        background-color: var(--primary-white);
        bottom: 20px;
    }

    .p-nav__linkImg img {
        width: 45px;
    }

    .p-nav__item::before {
        bottom: 6px;
    }

    .p-header__hamburger {
        width: 90px;
        height: 100%;
    }

    .p-navBtnItem {
        margin-bottom: 0px;
    }

    .p-navBtnItem .contact,
    .p-navBtnItem .telphone {
        padding: 20px 0;
        width: 100%;
        height: 100%;
    }

    .p-navBtnImg {
        width: 25px;
    }

    .companyNav {
        width: 50%;
    }
}

/* 下層ページ firstview  */

.page-titleImg {
    object-fit: cover;
    width: 100%;
    height: 100vh;
    object-position: center bottom;
    position: relative;
}

.page-title__txt {
    background-color: var(--primary-lightgreen, #4CAF50);
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 15px;
}

.page-title__subTitle {
    color: var(--primary-black, #333333);
    text-align: right;
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
}

.page-title__title {
    color: var(--primary-white, #fafafa);
    text-align: right;
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
}

.page-title__subTxt {
    background-color: var(--primary-orange, #FFA726);
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 10px;
}

.subTxt__home {
    color: var(--primary-black, #333333);
    text-align: center;
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 500;
    line-height: 1.8;
}

.subTxt__arrow {
    width: 10px;
    height: auto;
    aspect-ratio: 1/1;
}

.subTxt__content {
    color: var(--primary-white, #fafafa);
    text-align: center;
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 500;
    line-height: 1.8;
}

/* 下層ページ firstview pc */

@media screen and (min-width: 1024px) {
    .page-title__txt {
        padding: 22.5px;
        bottom: 0px;
    }

    .page-title__subTxt {
        padding: 15px;
        position: absolute;
        bottom: 0;
    }
}

/* ボタン */

.contentBtn {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 15px;
    text-align: center;
    display: inline-block;
    transition: all 0.2s;
    background-color: var(--primary-white, #fafafa);
    border: 2px solid var(--primary-lightgreen, #4CAF50);
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
    border-radius: 5px;
}

.contentBtn p {
    color: var(--primary-lightgreen, #4CAF50);
    text-align: center;
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
}

.contentBtn:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 50px;
    height: 1px;
    z-index: 1;
    background-color: var(--primary-lightgreen, #4CAF50);
}

.contentBtn:after {
    background-color: var(--primary-lightgreen, #4CAF50);
    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:hover p {
    color: var(--primary-white, #fafafa);
}

.contentBtn:hover::before {
    background-color: var(--primary-white, #fafafa);
}

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

/* ボタン pc */
@media screen and (min-width:1024px) {
    .contentBtn {
        max-width: 480px;
        margin-top: 50px;
    }

}

/* オレンジボタン */

.contentBtn.orange {
    border: 2px solid var(--primary-orange, #FFA726);
}

.contentBtn.orange p {
    color: var(--primary-orange, #FFA726);
}

.contentBtn.orange:before {
    background-color: var(--primary-orange, #FFA726);
}

.contentBtn.orange:hover::before {
    background-color: var(--primary-white, #fafafa);
}

.contentBtn.orange:after {
    background-color: var(--primary-orange, #FFA726);
}

.contentBtn.orange:hover p {
    color: var(--primary-white, #fafafa);
}

/* 求人 */

.section--recruit {
    padding: var(--section-padding);
    position: relative;
    background: url(../images/recruitImg.jpeg);
    background-color: rgba(255, 255, 255, 0.7);
    background-blend-mode: overlay;
    background-size: cover;
}

.recruit__title {
    color: var(--primary-black, #333333);
    text-align: left;
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.8;
}

.recruit__btnContent {
    margin-top: 30px;
}

.recruit__btn {
    position: relative;
    text-align: center;
    transition: all 0.2s;
    background-color: var(--primary-white, #fafafa);
    border: 2px solid var(--primary-lightgreen, #4CAF50);
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px;
    gap: 1em;
    border-radius: 5px;
}

.recruit__btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    gap: 1em;
}

.recruit__btn:after {
    background-color: var(--primary-lightgreen, #4CAF50);
    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;
}

.recruitIcon {
    width: 20px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(58%) sepia(37%) saturate(714%) hue-rotate(73deg) brightness(94%) contrast(83%);
}

.recruit__btn:hover p {
    color: var(--primary-white, #fafafa);
}

.recruit__btn:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7414%) hue-rotate(183deg) brightness(100%) contrast(96%);
}

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

.recruit__btnTxt {
    color: var(--primary-lightgreen, #4CAF50);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: inline-block;
}

.recruit__btn:last-of-type {
    margin-bottom: 0px;
}

/* 求人 pc */

@media screen and (min-width:768px) {
    .recruit__title {
        text-align: center;
    }

    .recruit__btnContent {
        display: flex;
        gap: 5%;
        margin-top: 45px;
    }

    .recruit__btn {
        left: 0;
        transform: none;
        width: 47.5%;
        margin-bottom: 0px;
    }

    .recruit__btn a {
        padding: 30px 0;
    }

    .recruitIcon {
        width: 25px;
    }
}

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

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

#page-top a {
    background: var(--primary-orange, #FFA726);
    text-decoration: none;
    color: var(--primary-white, #fafafa);
    font-family: 'Noto Sans JP';
    width: 60px;
    height: 60px;
    padding: 22px 5px;
    text-align: center;
    display: inline-block;
    opacity: 0.9;
    transition: all .3s;
}

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

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

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

    #page-top {
        font-size: 2.4rem;
    }

    #page-top a {
        width: 90px;
        height: 90px;
        padding: 33px 20px;
    }
}

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

/*----------------------------
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;
}

.timing06 {
    transition-delay: 1.5s;
}

/* footer */

.footer {
    padding: 50px 5.3% 20px;
    background-color: var(--primary-lightgreen, #4CAF50);
}

.p-footerNavBtn {
    margin: 0;
}

.p-footerNavLink__content {
    display: none;
}

.p-footerNav__list {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 20px 5%;
}

.p-footerNavLink__item {
    margin-top: 10px;
}

.p-footerNav__list {
    margin-top: 50px;
}

.p-footerNav__item {
    text-align: left;
    display: inline-block;
}

.p-footerNav__item::after {
    display: none;
}

.p-nav__footerLink {
    color: var(--primary-white, #fafafa);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

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

.p-nav__footerLink p {
    color: var(--primary-white, #fff);
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    /* 200% */
    transition: all 0.2s;
    white-space: nowrap;
    display: inline-block;
}

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

.p-footerNavLink__item {
    color: var(--primary-white, #fff);
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    position: relative;
    transition: all 0.2s;
}

.p-footerNavLink__item::before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 10px;
    height: 1px;
    background-color: var(--primary-white);
    bottom: 0px;
}

.p-footerNavLink__item a:hover {
    color: var(--primary-orange, #FFA726);
}

.footer__address {
    margin-bottom: 30px;
}

.footer__title {
    color: var(--primary-white, #fafafa);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    margin-bottom: 20px;
}

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

.copy {
    margin-top: 30px;
    text-align: center;
    font-size: 1rem;
    color: var(--primary-white, #fff);
}

/* footer pc*/

@media screen and (min-width:768px) {
    .footer {
        padding: 75px 5.3% 30px;
        background-color: var(--primary-lightgreen, #4CAF50);
    }

    .p-navBtn {
        display: flex;
        gap: 2%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .p-navBtnItem {
        transform: none;
        left: 0;
        width: 32%;
    }

    .p-footerNav__list {
        justify-content: left;
        gap: 30px 2.5%;
        margin-top: 75px;
    }

    .p-footerNav__item {
        text-align: left;
        display: flex;
        flex-direction: column;
        width: 22.5%;
    }

    .footer__address {
        margin-bottom: 45px;
        text-align: center;
    }

    .footer__detail {
        display: inline-block;
    }

    .footer__title {
        display: flex;
        justify-content: center;
        margin-bottom: 50px;
        gap: 2%;
        align-items: center;
    }

    .copy {
        font-size: 1.5rem;
        margin-top: 50px;
    }

    .p-footerNavLink__content {
        margin-top: 20px;
        display: inline-block;
    }
}

/* 境界線 */

.triangleGreen {
    position: relative;
    background: var(--primary-lightgreen, #4CAF50);
    z-index: 1;
}

.triangleGreen::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17px 17px 0 17px;
    border-color: var(--primary-lightgreen, #4CAF50) transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}

.triangleWhite {
    position: relative;
    background: var(--primary-white, #fff);
}

.triangleWhite::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17px 17px 0 17px;
    border-color: var(--primary-white, #A22E38) transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}

/* 下線部 */

.underline {
    display: inline-block;
    position: relative;
    color: var(--primary-black, #333333);
    font-weight: 700;
}

.underline::before {
    background: rgba(76, 175, 80, 0.5);
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    height: 35%;
    transform-origin: left center;
    z-index: -1;
    display: inline-block;
}

.small{
    display: inline-block;
    font-size: 1.2rem;
}

/* 電話タグ */

@media screen and (min-width:1024px){
    a[href*="tel:"]{
      text-decoration: none;
      pointer-events: none;
    }   
}
