@charset "UTF-8";

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    color: #000000;
    line-height: 1.8;
}

.clearfix::after {
    content: '';
    display: block;
    clear: both;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a:link,
a:visited,
a:hover,
a:active {
    color: #ffffff;
    text-decoration: none;
}

.container {
    width: 1200px;
    margin: auto;
}

.page_title .container {
    padding: 74px 0;
}

.page_title p {
    font-size: 28px;
    font-family: corporate-logo-ver2, sans-serif;
    font-style: normal;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 3px;
}

.pankuzu {
    font-size: 14px;
    color: #333333;
    margin: 20px 0 30px;
}

.pankuzu a {
    color: #333333 !important;
}

.headline {
    font-size: 120px;
    font-family: corporate-logo-ver2, sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    color: #00A34B;
    text-align: center;
}

.headline-ja {
    font-size: 40px;
    text-align: center;
    font-family: corporate-logo-ver2, sans-serif;
    font-style: normal;
    font-weight: 500;
    color: #00A34B;
}

@media screen and (max-width: 750px) {
    body {
        font-size: 14px;
    }

    .container {
        width: 100%;
        margin: auto;
    }

    .headline {
        font-size: 50px;
    }

    .headline-ja {
        font-size: 20px;
    }

    .pankuzu {
        font-size: 12px;
        margin: 20px 0 30px 10px;
    }

    .page_title p {
        padding: 0 15px;
    }
}


/*========= ナビゲーションのためのCSS ===============*/

@media screen and (max-width: 750px) {
    #g-nav {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
        top: -120%;
        left: 0;
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background: #00812A;
        /*動き*/
        transition: all 0.6s;
    }

    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive {
        top: 0;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    /*ナビゲーション*/
    #g-nav ul {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
    }

    #g-nav ul.sns_logo {
        position: absolute;
        top: auto;
        left: 50%;
        bottom: 10%;
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #ffffff;
        text-decoration: none;
        padding: 10px;
        display: inline-block;
        letter-spacing: 0.1em;
        font-size: 1.2em;
        font-weight: bold;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn1 {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 0;
        right: 0;
        cursor: pointer;
        width: 70px;
        height: 62px;
        background: #00812A;
    }

    /*×に変化*/
    .openbtn1 span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #ffffff;
        width: 64%;
    }

    .openbtn1 span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn1 span:nth-of-type(2) {
        top: 28px;
    }

    .openbtn1 span:nth-of-type(3) {
        top: 41px;
    }

    .openbtn1.active span:nth-of-type(1) {
        top: 20px;
        left: 10px;
        transform: translateY(10px) rotate(-45deg);
        width: 68%;
    }

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

    .openbtn1.active span:nth-of-type(3) {
        top: 40px;
        left: 10px;
        transform: translateY(-10px) rotate(45deg);
        width: 68%;
    }

}



/*========= 404 ===============*/
.not-found {
    text-align: center;
    padding: 100px 0;
    color: #333333;
    font-weight: bold;
    line-height: 1.3;
}

.not-found .not-found-en {
    font-size: 60px;
}

.not-found .not-found-num {
    font-size: 120px;
}

.not-found .not-found-text {
    font-size: 24px;
}

.not-found .not-found-en-text {
    font-size: 18px;
    padding-top: 5px;
}

.not-found a {
    color: #333333;
    text-decoration: underline;
    padding-top: 20px;
    display: inline-block;
}

.not-found a:hover {
    text-decoration: none;
}

@media screen and (max-width: 750px) {
    .not-found .not-found-en {
        font-size: 40px;
    }
    
    .not-found .not-found-num {
        font-size: 80px;
    }
    
    .not-found .not-found-text {
        font-size: 21px;
    }
    
    .not-found .not-found-en-text {
        font-size: 13px;
        padding-top: 5px;
    } 
}

/*========= 404 ===============*/