.noto-serif-<uniquifier> {
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.noto-sans-jp-<uniquifier> {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

.noto-sans-jp-<uniquifier> {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

.outfit-<uniquifier> {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

.inter-<uniquifier> {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

.serif {
    font-family: "Noto Serif", serif;
}

.outfit {
    font-family: "Outfit", sans-serif;
}

body {
    font-size: 15px;
    font-family: "Noto Sans JP", sans-serif;
}


/**
 * 汎用スタイルシート
**/


@media only screen and (max-width: 850px) {
    .pc_disp {
        display: none;
    }
}

.sp_none {
    display: block;
}

.pc_none {
    display: none;
}

span.pc_none.talk {
    display: none;
}

@media only screen and (max-width: 740px) {
    .sp_none {
        display: none;
    }

    .pc_none {
        display: block;
    }

    span.pc_none.talk {
        display: inline !important;
    }


}


/**
 * リンクテキスト
**/

.link_text a {
    text-decoration: underline;
}

.link_text a:hover {
    text-decoration: none;
}

/**
 * フォントウェイト
**/

.bold {
    font-weight: bold;
}



/**
 * テキストインデント
**/

.txt_indent {
    text-indent: 1em;
}

img {
    width: 100%;
}


/**
 * フロート
**/

.fleft {
    float: left;
}

.frright {
    float: right;
}

.clear {
    clear: both;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.clearfix {
    min-height: 1px !important;
}

* html .clearfix {
    height: 1px !important;
}

.iblock {
    display: inline-block;
}

ul {
    list-style: none;
}

#wrap {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 78px 0 0;
    overflow: hidden;
}

@media only screen and (max-width: 900px) {
    #wrap {
        padding: 105px 0 0;
    }
}

/*ヘッダー*/
#header {
    width: 100%;
    height: 78px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    transition: all 0.6s 0s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#header.scroll {}

#header .inner {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header img {
    width: 100%;
    height: auto;
    display: block;
}

#header .logo {
    width: 30%;
    max-width: 160px;
    margin: 0 0 0 20px;
    align-self: center;
    transition: all 0.3s 0s ease-in-out;
}

#header .inner .logo:hover {
    opacity: 0.6;
}

@media only screen and (max-width: 1200px) {
    #header .logo {
        margin: 0 0 0 15px;
    }
}

@media only screen and (max-width: 900px) {
    #header {
        height: 60px;
    }

    #header .inner {
        padding: 0 5px 0 0;
    }

    #header .logo {
        width: 81%;
        max-width: 150px;
        transition: all 0.6s 0s ease-in-out;
    }

    .openbtn {
        width: 50px;
        height: 50px;
        color: #000;
        /* background-color: #000000; */
        align-self: center;
        display: block;
        cursor: pointer;
        position: relative;
    }

    #header.scroll .inner .openbtn {
        top: 0px;
    }

    .openbtn.active {
        /* background-color: #000; */

    }

    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 10px;
        height: 3px;
        background: #000;
        width: 30px;
    }

    .openbtn span:nth-of-type(1) {
        top: 12px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 35px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 23px;
        transform: rotate(-45deg);
        background-color: #000;
    }

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

    .openbtn.active span:nth-of-type(3) {
        top: 23px;
        transform: rotate(45deg);
        background-color: #000;
    }

}

@media only screen and (max-width: 500px) {
    #header .logo {
        width: 75%;
    }
}

/**
 * ナビゲーション
**/
.navi_pc {
    display: flex;
    width: 100%;
    align-items: center;
    margin-right: 15px;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

.navi_sp {
    display: none;
}

#navi {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

@media only screen and (max-width: 1200px) {
    #navi {
        width: 100%;
    }
}

#navi ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#navi ul li {
    width: fit-content;
    margin: 0;
    padding: 0 1.6%;
    text-align: center;
    position: relative;
    z-index: 0;
}

#navi ul li:last-child {
    padding: 0 0 0 0;

}

#navi ul li a {
    width: fit-content;
    height: 100%;
    margin: 0 0 0 0;
    padding: 6px 0.2em;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4em;
    text-decoration: none;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#navi ul li .subnavi {
    margin: 0;
    padding: 12px 0 0;
    transform: translateX(-50%);
    display: none;
    position: absolute;
    border: 1px solid #fff;
    top: 100%;
    left: 50%;
}

#navi ul li .subnavi:before {
    content: "";
    margin: 0;
    padding: 0;
    border-bottom: solid 0px rgba(0, 0, 0, 0.9);
    border-left: solid 10px rgba(255, 255, 255, 0);
    border-right: solid 10px rgba(255, 255, 255, 0);
    /* transition: all .7s; */
    position: absolute;
    top: 2px;
    left: calc(50% - 10px);
}

#navi ul li .subnavi.open:before {
    border-bottom-width: 10px;
}

#navi ul li .subnavi a {
    width: 200px;
    height: fit-content;
    margin: 0;
    padding: 0.8em 1.2em;
    color: #fff;
    font-weight: 500;
    text-align: left;
    line-height: 1.3;
    background-color: rgba(0, 0, 0, 0.9);
    border-bottom: solid 1px rgba(255, 255, 255, 0.7);
    transition: background .4s;
    box-sizing: border-box;
    display: block;
    position: relative;
}

#navi ul li .subnavi a:last-child {
    border-bottom: none;
}

#navi ul li .subnavi.open a:hover {
    background-color: rgba(0, 0, 0, 1);
}



@media only screen and (min-width: 1201px) {
    #navi ul li a .tablet {
        display: none;
    }
}

#navi ul li>a::after {
    content: "";
    width: 0;
    height: 1px;
    background: #e60020;
    transition: all 0.5s 0s;
    position: absolute;
    bottom: 0;
    left: 0;
}

#navi ul li>a.on::after {
    width: calc(100% - 17px);
}

#navi ul li>a:hover::after {
    width: 100%;
}

#navi .recruit {
    width: 178px;
    padding: 0 0 0 10px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    box-sizing: border-box;
    position: relative;
}

#navi .recruit::before {
    content: '';
    width: 70%;
    height: 122%;
    background-image: linear-gradient(to right, #006ce9, #0032e5);
    transform-origin: left bottom;
    transform: skewX(155deg);
    position: absolute;
    z-index: -1;
    left: 14%;
    bottom: -5.5%;
}

#navi .recruit a {
    padding: 6px 0;
    color: #fff;
    display: inline-block;
    width: 100%;
}

#navi .recruit a:hover {
    color: #fff;
    text-decoration: none;
}

#navi .recruit:hover::before {
    background: #e60020;
}

@media only screen and (max-width: 990px) {

    #navi ul {
        width: 100%;
    }

    #navi ul li a {
        font-size: 13px;
    }

    #navi .recruit {
        width: 120px;

    }

    #navi .recruit a {
        font-size: 13px;
        font-weight: 400;
    }
}

@media only screen and (max-width: 900px) {
    .navi_pc {
        display: none;
    }

    .navi_sp {
        display: block;
    }


    #navi2 {
        width: 100%;
        height: calc(100vh - 60px);
        padding-top: 8vw;
        padding-bottom: 8vw;
        background: rgba(255, 255, 255, 0.9);
        display: none;
        position: fixed;
        top: 60px;
        right: 0px;
        z-index: 10000;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }



    /* #navi ul {
        width: 100%;
        margin: 0;
        padding: 0 0 0 0;
        display: flex;
        flex-wrap: wrap;
    }

    #navi ul li {
        width: 50%;
        max-width: 584px;
        margin: 0 auto 3vw;
        padding: 0 0 0 0;
    }

    #navi ul li a {
        width: 100%;
        margin: 0 0 0 0;
        padding: 0;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.4em;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        max-height: 32px;
    }

    #navi ul li a::after {
        content: '';
        width: 0;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    #navi ul li .subnavi a {
        width: 100%;
    max-width: 278px;
    background-color: transparent;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 1.3;
}


    #navi ul li a.top::before {
        display: none;
    }

    #navi ul li .subnavi {
        display: block;
        position: static;
        transform: translateX(0%);
    } */

    .inner_navi {
        display: flex;
        flex-wrap: wrap;
        width: 96%;
        margin: 0 auto;
        justify-content: center;
    }

    .mega-col {
        position: relative;
        padding-left: 16px;
        width: 50%;
        box-sizing: border-box;
        max-width: 290px;
    }

    .mega-col .ttl {
        display: block;
        font-size: 18px;
        margin-bottom: 7px;
        font-weight: 700;
        color: #000;
    }

    .mega-col .news {
        display: block;
        font-weight: 700;
        margin-top: 40px;
        font-size: 18px;
        color: #000;
    }

    .mega-col .contact {
        display: block;
        font-weight: 700;
        margin-top: 40px;
        font-size: 18px;
        color: #000;
    }

    .mega-col ul {
        margin: 0 0 21px 3vw;
        padding: 0;
        list-style: none;
        position: relative;
    }

    .mega-col ul::before {
        position: absolute;
        content: '';
        height: 100%;
        width: 3px;
        background-image: linear-gradient(to bottom, #e60020 64%, #000000 36%);
        top: 0;
        left: -7%;
    }

    .mega-col ul li {
        padding-left: 1em;
        margin-bottom: 10px;
        position: relative;
    }

    .mega-col ul li::before {
        content: '';
        position: absolute;
        background-color: #000;
        width: 2.2vw;
        height: 2px;
        top: 54%;
        left: -.75em;
    }


    .mega-col ul li a {
        text-decoration: none;
        color: #000;
        font-size: 15px;
        position: relative;
    }

    .mega-col ul li a:hover {
        color: #d80000;
    }

}

a.btn_header_sp {
    display: none;
}

@media only screen and (max-width: 900px) {
    a.btn_header_sp {
        width: fit-content;
        margin: 0 0 2vw auto;
        padding: 0.5em 1.5em 0.5em 2em;
        color: #fff;
        font-weight: 700;
        position: absolute;
        top: 100%;
        right: 0;
        display: block;
    }

    a.btn_header_sp::before {
        content: '';
        width: 100%;
        height: 100%;
        background-color: #00d200;
        transform: skewX(-42deg);
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
    }
}

@media only screen and (max-width: 600px) {
    .mega-col ul li::before {
        left: 0;
    }
}





/* パンくずリスト */

.breadcramb {
    width: 94%;
    max-width: 1100px;
    margin: 0 auto 30px;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
}


/**
 * フッター
**/

#footer {
    position: relative;
    background-color: #000;
    color: #fff;
    padding-bottom: 23px;
}

#footer a {
    color: #fff;
    font-weight: 500;
}

#footer img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
}

#footer #pagetop {
    margin: 0 0 0 0;
    width: 83px;
    display: block;
    position: absolute;
    top: -42px;
    right: 0;
}

#footer .wrap {
    margin: 0 auto;
    padding: 44px 0 0px 0;
    width: 92%;
    max-width: 1130px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
}

#footer .wrap .left {
    padding: 0 0 48px 0;
    width: 25%;
}

#footer .wrap .logo {
    margin: 0 0 25px 0;
}

#footer .wrap .logo a {
    max-width: 259px;
    display: block;
}

#footer .wrap .left_txt {
    font-size: 12px;
    position: relative;
    padding-left: 1em;
}

#footer .wrap .left_txt::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #fff;
    left: 0em;
}

.fs14 {
    font-size: 14px;
    font-weight: 600;
}

#footer .btn_contact {
    box-sizing: border-box;
    padding: 12.5px 11px 12.5px 0;
    line-height: 1.2em;
    font-size: 15px;
    max-height: 45px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #ffffff;
    display: block;
    vertical-align: middle;
    max-width: 169px;
    position: relative;
    margin: 32px 0 0 0;
    transition: 0.3s;
}

#footer .btn_contact::after {
    content: '→';
    position: absolute;
    font-size: 14px;
    top: 30%;
    right: 10%;
}

#footer .btn_contact:hover {
    background-color: #fff;
    color: #000;
    border: 1px solid;
}

#footer .footer_navi {
    padding: 0 0 48px 0;
    width: 69%;
    text-align: left;
    overflow: hidden;
}

#footer .footer_navi ul {
    line-height: 1.6em;
    font-size: 15px;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

#footer .footer_navi ul li {
    padding: 0 0 0 14px;
    box-sizing: border-box;
    width: 32%;
    position: relative;
}

#footer .footer_navi ul li:before {
    margin: 0.5em 0 0 0;
    width: 6px;
    height: 12px;
    line-height: 12px;
}

#footer .footer_navi ul li:nth-child(5) {
    width: 13%;
    min-width: 74px;
}


#footer .footer_navi ul li ul {
    padding: 5px 0 0 0;
    line-height: 1.6em;
    font-size: 12px;
    display: block;
    position: relative;
}

#footer .footer_navi ul li ul::before {
    content: '';
    position: absolute;
    background-color: #fff;
    width: 1px;
    height: 96%;
    top: 0.5em;
    left: 0;
}

#footer .footer_navi ul li ul li {
    padding: 0 0 4px 1em;
    margin: 0 0 0 1em;
    width: auto;
    position: relative;
}

#footer .footer_navi ul li ul li:before {
    margin: 0 0 0 0;
    width: auto;
    height: auto;
    line-height: 1.6em;
    background: none;
    content: "-";
    position: absolute;
    top: 0;
    left: 0;
}

#footer .footer_navi ul li ul li:nth-of-type(3) {
    width: auto;
}

#footer .footer_navi ul li ul li:nth-of-type(4) {
    width: auto;
}

#footer .footer_navi ul li ul li:nth-of-type(5) {
    width: auto;
}


#footer .copyright {
    border-top: 1px solid #fff;
    margin: 0 auto;
    padding: 17px 0 0 0;
    width: 92%;
    max-width: 1130px;
    line-height: 1.4em;
    font-size: 12px;
    text-align: right;
}

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

    #footer .wrap {
        margin: 0 auto;
        padding: 6.7vw 0 0px 0;
        width: 92%;
        display: block;
    }

    #footer .wrap .left {
        padding: 0 0 48px 0;
        width: 100%;
        text-align: center;
    }

    #footer .wrap .logo {
        margin: 0 auto 0;
    }

    #footer .wrap .logo a {
        max-width: 415px;
        width: 56.2vw;
        display: block;
        margin: 0 auto;
    }

    #footer img {
        max-width: 415px;
    }

    #footer .wrap .left_txt {
        font-size: min(4.4vw, 32px);
        margin: 5.8vw 0 0 0;
        padding: 0;
    }

    #footer .wrap .fs14 {
        font-size: min(4.4vw, 32px);
    }

    #footer .wrap .left_txt::before {
        content: none;
    }

    #footer .wrap .left_txt hr {
        border-color: #fff;
        margin: 2vw 0;
    }

    #footer .wrap .left_txt .addres {
        font-size: min(4.0vw, 28px);
        line-height: 1.4;
        display: block;
    }

    #footer .footer_navi {
        display: none;
    }

    #footer .btn_contact {
        padding: 2.4vw 2.4vw 2.4vw 0;
        line-height: 1.2em;
        font-size: min(4.1vw, 26px);
        border: 1px solid #ffffff;
        max-width: 265px;
        width: 51.6vw;
        margin: 7vw auto 0;
        max-height: none;
    }

}










/* アニメーション */
.main_image .fade-in {
    opacity: 0;
    transition: opacity 1.0s, transform 0.5s;
    transform: translate(0);
}

.fade-in {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1.0s, transform 1.0s;
}

.main_image .fade-in img{
    transform: translateX(-100%);
    transition: opacity 1.0s, transform 0.5s;
}

.fade-in.is-show {
    opacity: 1;
    transform: translateX(0);
}


.main_image .fade-in.is-show img{
    transform: translateX(0);
}
/* .fade-in:nth-child(2) {
    transition-delay: 0.2s;
}

.fade-in:nth-child(3) {
    transition-delay: 0.4s;
} */

.main_image .fade-in2 {
    opacity: 0;
    transform: translateX(0);
    transition: opacity 1.0s, transform 0.5s;
    transition-delay: 0.2s;
}

.main_image .fade-in2 img{
    transform: translateX(-100%);
    transition: opacity 0.75s, transform 0.75s;
}

.fade-in2 {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1.0s, transform 1.0s;
    transition-delay: 0.4s;
}

.fade-in2.is-show {
    opacity: 1;
    transform: translateX(0);
}

.main_image .fade-in2.is-show img{
    transform: translateX(0);
}

.main_image .fade-in3 {
    opacity: 0;
    transform: translate(-50px, -50px);
    transition: opacity 1.0s, transform 0.5s;
    transition-delay: 0.5s;
}

.fade-in3 {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1.0s, transform 1.0s;
    transition-delay: 0.8s;
}


.fade-in3.is-show {
    opacity: 1;
    transform: translate(0px, 0px);
}


.popup {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.popup.is-show {
    opacity: 1;
    transform: translateY(0);
}


.popup2 {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: 0.3s;
}

.popup2.is-show {
    opacity: 1;
    transform: translateY(0);
}