@charset "UTF-8";

/* 全体のリセット */
body,
h1,
h2,
h3,
p,
a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Klee One", serif;
    font-weight: 400;
    font-style: normal;
}

body {
    line-height: 1.6;
    background-color: #FFF7E8;
}

.contaener {
    width: 100%;
}

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

    /* sp非表示 */
    .header-sp,
    .img-sp,
    .about-sp,
    .footer-sp {
        display: none;
    }

    /* 全体の画像サイズ */
    img{
        width: 100%;
    }

    /* ヘッダー共通 */
    .header {
        background-color: #637433;
        display: flex;
        align-items: center;
        width: 100%;
        padding: 1% 0;
    }

    .header-pc img {
        width: 50%;
        margin-left: 5%;
    }

    .header-pc a:hover {
        opacity: 0.5;
    }

    .header-pc1 .navi-pc a {
        color: #fff;
        text-decoration: none;
        padding: 0 3%;
    }

    .header-pc1 {
        width: 100%;
    }

    .header-pc1 .navi-pc a:hover {
        text-decoration: underline;
        text-decoration-color: #B9FB00;
    }

    /* メイン */
    .about-1{
        padding: 5%;
        position: relative;
    }

    .about-1-1 p{
        text-align: center;
        line-height: 2em;
    }

    .about-1-2 img{
        width: 5% !important;
        position: absolute;
        top: -20%;
        right: 10%;
    }

    .about-pc img{
        width: 90%;
    }

    .img-right{
        text-align: right;
        margin: 5% 0;
    }

    img.bottom{
        margin-bottom: 5%;
    }

    .about-pc{
        padding-bottom: 10%;
        background-image: url(../img/bg-img2.png);
        background-size: cover;
    }

    /* 動画サイズ */
    .video-container {
        position: relative;
        width: 80%;
        padding-bottom: 45%; /* 16:9 アスペクト比 */
        margin: 0 auto;
        height: 0;
        overflow: hidden;
    }
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* フッター共通 */

    .footer-pc {
        background-color: #637433;
    }

    .footer-pc img {
        width: 100%;
    }

    .footer-copy {
        background-color: #272727;
        color: #fff;
        text-align: center;
        padding: 2% 0;
    }
}


/*SPサイズレスポンシブ*/
@media(max-width:959px) {

    /* pc非表示 */

    .header-pc,
    .header-pc1,
    .img-pc,
    .about-pc,
    .footer-pc {
        display: none;
    }

    /* 全体の画像サイズ調整 */
    img {
        width: 100%;
    }

    .header-sp {
        display: flex;
        background-color: #637433;
        height: 80px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .header-sp img {
        width: 50%;
    }

    /* ハンバーガーメニュー */
    /*========= ナビゲーションのためのCSS ===============*/

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

    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive {
        right: 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: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0;
    }

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

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

    #g-nav li a {
        color: #fff;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }

    .navi-bottom,
    .navi-top {
        display: none;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 15px;
        right: 20px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

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

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

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

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

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

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

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .navi span {
        color: #fff;
    }

    /* メイン */
    .about-sp img{
        width: 90%;
    }

    .about-2 img,.about-3 img{
        width: 80%;
    }

    .about-sp{
        text-align: center;
        background-image: url(../img/bg-img2.png);
        padding-bottom: 5%;
    }

    .about-2{
        text-align-last: left;
        margin-top: 5%;
        margin-left: 2%;
    }

    .about-3{
        text-align: right;
        margin-top: 5%;
        margin-bottom: 5%;
        margin-right: 2%;
    }

    /* 動画サイズ */
    .video-container {
        position: relative;
        width: 80%;
        padding-bottom: 45%; /* 16:9 アスペクト比 */
        margin: 0 auto;
        height: 0;
        overflow: hidden;
    }
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* フッター */
    .footer-sp {
        background-color: #637433;
    }

    .footer-copy {
        background-color: #272727;
        color: #fff;
        text-align: center;
        padding: 2% 0;
    }

}