@charset "utf-8";

* {
    box-sizing: border-box;
}
/* base
----------------- */
html {
    color: #000;
    font-size: 16px;
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    *font-size: small;
    *font: x-small;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
body {
    height: 4500px;
    text-align: center;
    outline: none;
    border-style: none;
    overflow-x: hidden;
    /*
    background-image:url("../images/layout.jpg");
    background-repeat: no-repeat;
    background-position: top center;
*/
}    

*:focus {
	outline: 0;
}
a {
    color: blue;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
a:link {
    color: #333332;
    text-decoration: none;
}
a:visited {
    color: #333332;
    text-decoration: none;
}
a:hover {
    color: #00bbff;
    text-decoration: none;
}
a:active {
    color: #333332;
    text-decoration: none;
}
ul, ol, li {
    list-style: none;
}

table {
  width: 100%;
}

h2{
    font-family: "Ranchers", sans-serif;
    font-weight: 100;
    font-size: 95px;
    color: #396925;
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}
h2 .kana{
    font-family: "Reggae One", system-ui;
    font-size: 20px;
    font-weight: normal;
    margin-top: 20px;
}
@media screen and (max-width: 959px) {
    h2{
        font-size: 320%;
        text-align: center;
        margin-bottom: 110px;
    }
}

h3{
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: normal;
}




    /* HEADER 
}
----------------- */
header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 1px 9px -5px #000000;
}
    .header_area {
        max-width: 1200px;
        width: 80%;
        margin: 0 auto;
        display: flex;
    }
header h1 {
    display: block;
    width: 30%;
    margin: 0 auto;
}

header h1 img,
.header_area h1.logo a img
{
    height: 100px;
    margin: 20px auto;
}
@media screen and (max-width: 959px) {
    header h1 img,
    .header_area h1.logo a img
    {
        height: 70px;
        margin: 20px auto;
    }
}
/*****NAV*****/
nav {
    width: 100%;
    padding: 30px 0;

}
#navi{
    background-color: #396925;
}
#navi ul li:first-child{
        margin-left: 0;
}
#navi ul li{
        display: inline-block;
        font-family: "Ranchers", sans-serif;
        font-weight: 100;
        letter-spacing: 0.2em;
        margin-left: 5%;

}
#navi ul li a{
        color: #fff;
        font-size: 30px;
        font-weight: bold;
}
#navi ul li a:hover {
    color: #c7975e;
    text-decoration: none;
}
.kana{
        font-family: "Reggae One", system-ui;
        font-size: 14px;
        margin-top: 10px;
        font-weight: normal;
}
@media screen and (max-width: 959px) {
        #navi{
            display: none;
        }

    }



@media screen and (min-width:959px) {
    #nav-open {
        display: none;
    }
    #nav-drawer {
        position: relative;
        display: none;
    }

}
    #nav-drawer {
        position: absolute;
        margin: 15px 10px 0px 0px;
        top: 0px;
        right: -200px;
    }
    /*チェックボックス等は非表示に*/
    .nav-unshown {
        display: none;
    }

    /*アイコンのスペース*/
    #nav-open {

        display: inline-block;
        width: 30px;
        height: 22px;
        vertical-align: middle;
    }

        /*ハンバーガーアイコンをCSSだけで表現*/
        #nav-open span, #nav-open span:before, #nav-open span:after {
            position: absolute;
            height: 3px; /*線の太さ*/
            width: 25px; /*長さ*/
            border-radius: 3px;
            background: #555;
            display: block;
            content: '';
            cursor: pointer;
        }

            #nav-open span:before {
                bottom: -8px;
            }

            #nav-open span:after {
                bottom: -16px;
            }

    /*閉じる用の薄黒カバー*/
    #nav-close {
        display: none; /*はじめは隠しておく*/
        position: fixed;
        z-index: 99;
        top: 0; /*全体に広がるように*/
        left: 0;
        width: 100%;
        height: 100%;
        background: black;
        opacity: 0;
        transition: .3s ease-in-out;
    }

    /*中身*/
    #nav-content {
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 9999;
        width: 60%; 
        max-width: 330px;
        height: 100%;
        background: #fff; /*背景色*/
        transition: .3s ease-in-out; /*滑らかに表示*/
        -webkit-transform: translateX(-105%);
        transform: translateX(105%); /*左に隠しておく*/
        opacity: .95;
    }

    /*チェックが入ったらもろもろ表示*/
    #nav-input:checked ~ #nav-close {
        display: block; /*カバーを表示*/
        opacity: .5;
    }

    #nav-input:checked ~ #nav-content {
        -webkit-transform: translateX(0%);
        transform: translateX(0%); /*中身を表示（右へスライド）*/
        box-shadow: 6px 0 25px rgba(0,0,0,.15);
    }

@media screen and (max-width: 959px) {
    .category-list {
        font-size: 14px;
        margin: 10px 0 40px 0px;
        line-height: 150%;
    }

        .category-list ul li {
            list-style: none;
            font-weight: bold;
            font-size: 20px;
            padding: 15px 5px 5px 25px;
            border-bottom: 1px solid #f7f7f7;
        }
        .category-list ul li p.kana{
                margin: 0px 0 10px 0;
        }


}

/*****section*****/
section {}

    article {
        display: block;
        width: 100%;
    }

        article img {
        }


    .t-contents,
    .s-contents {
        width: 100%;
        margin: auto;
        margin-top: 0px; 
    }
@media screen and (max-width: 959px) {
    .t-contents,
    .s-contents {
        margin-top: 0px; 
    }

}
    .t-main, .s-main {
        width: 100%;
        margin: auto;
    }
    .main-visual{
        width: 100%;
        z-index: -100!important;
    }

    .inner {
        max-width: 1200px;
        width: 80%;
        margin: 0 auto -184px auto;
        padding: 70px 0;
    }
        video {
            display: block;
            margin: 0 auto;
            width: 100%;
            animation-name:wrapvideo;
            animation-delay : 0s;
            animation-duration:1s;
            animation-fill-mode:forwards;
            opacity:0;
            -webkit-transform: translate3d(0, 0, 0);
            -ms-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
            z-index: -100!important;
            }
            @keyframes wrapvideo{
              0% {
                opacity: 0;
                width: 100%;
              }
              100% {
                opacity: 1;
                width: 100%;
              }
            }

.service{
    width: 100%;
    margin: 0px auto auto auto ;
    padding: 0px 0 80px 0;
    background-color: #fff;
}
.title-service{
    position: relative;
    margin-top: -120px;
    z-index: 85;
}
.title-service h2{
    margin-top: -150px;
}
    .service .inner {
        width: 70%;
        margin: -100px auto 0 auto;
        padding: 70px 0;
    }

.character1{
    position: relative;
    top: -350px;
    left: -300px;
}
.character2{
    position: relative;
    top: -450px;
    right: -220px;
}
@media screen and (max-width: 959px) {
    .service .inner {
        width: 70%;
        margin: 30px auto 0 auto;
        padding: 70px 0;
    }
    .title-service{
        position: relative;
        margin-top: -40px;
        margin-bottom: 70px;
        z-index: 85;
    }
    .character1{
        position: relative;
        width: 20%;
        top: -224px;
        left: -120px;
    }
    .character2{
        position: relative;
        width: 20%;
        top: -260px;
        right: -100px;
    }
}
.service_box{
    width: 70%;
    margin: 0 auto;
    margin-top: -300px;
}
.sub_text{
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 46px;
    text-align: center;
    line-height: 1.4em;
    font-weight: bold;
    color: #50341c;
    margin-bottom: 50px;
}
.text-box{
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 20.5px;
    line-height: 1.6em;
}
@media screen and (max-width: 959px) {
    .service_box{
        width: 90%;
        margin: 0 auto;
        margin-top: -270px;
    }
    .sub_text{
        font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
        font-size: 20px;
        text-align: center;
        line-height: 1.4em;
        font-weight: bold;
        color: #50341c;
        margin-bottom: 50px;
    }
    .text-box{
        font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
        font-size: 16px;
        line-height: 2em;
    }
}

.service_imgbox{
    display: block;
    width: 100%;
    margin: 40px auto;
}
.service_imgbox ul li{
    display: inline-block;
    min-height: 576px;
    width: 32%;
    text-align: left;
}
li.service_case1{}
li.service_case2{margin-left: 1%;}
li.service_case3{
    margin-left: 1%;
    text-align: left;
}
@media screen and (max-width: 959px) {
    .service_imgbox ul li{
        display: inline-block;
        min-height: 300px;
        width: 96%;
        text-align: left;
    }
    li.service_case1{margin: 2%;}
    li.service_case2{margin: 2%;}
    li.service_case3{
        margin: 2%;
        text-align: left;
    }
}
span.red{
    font-weight: bold;
    color: #b72e00;
    margin-right: 15px;
}
.case_title{
    color: #fff;
    margin: -140px 15px 15px 15px;
}
.case_txt{
    color: #fff;
    font-size: 13px;
    margin: 15px;
}

.video_work{
    width: 100%;
    margin: 0px auto auto auto ;
    padding: 0px 0 80px 0;
    background-color: #fff;
    z-index: 100;
}
@media screen and (min-width:959px) {
    .video_work .movie {
        height: 75vh;
    }
}

    .video_work .movie {
        position: relative;
        width: 100%;
        overflow: hidden;
        margin-top: -161px;
    }

    .video_work .movie::after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
        background-size: 4px 4px;
        background-position: 0 0, 2px 2px;
    }

.video_work p.sub_text{
    margin-top: 100px;
}
.character3{
    position: relative;
    top: -160px;
    right: -400px;
}
@media screen and (max-width: 959px) {
    .video_work .movie{
        margin-top: -90px;
        height: 100%;
    }
    .character3{
        position: relative;
        width: 10%;
        top: -88px;
        right: -25%;
    }
}


.gallery {
    width: 1600px;
    padding: 0px;
    margin: -100px auto 0 auto;
}
@media screen and (max-width: 959px) {
    .gallery {
        width: 100%;
        padding: 0px;
        margin: -20px auto 0 auto;
    }
}
.gallery li {
    float: left;
    overflow: hidden;
}

.mailbox{
    margin: 0 0 150px 0;
}
.btn_contact{
    width: 935px;
    height: 135px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    line-height: 90px;
    margin: 0 auto;
    padding: 20px;
    background-color: #40662c;
    border-radius: 7px 7px 7px 7px;
}
.btn_contact:hover{
    width: 950px;
    height: 135px;
    font-weight: bold;
    font-size: 42px;
    opacity: 0.9;
}
.character4{
    position: relative;
    top: -100px;
    left: -500px;
}
.character5{
    position: relative;
    top: -200px;
    right: -600px;
}
@media screen and (max-width: 959px) {



    .btn_contact{
        width: 80%;
        height: 100px;
        color: #fff;
        font-size: 20px;
        font-weight: bold;
        line-height: 58px;
        margin: 0 auto;
        padding: 20px;
        background-color: #40662c;
        border-radius: 7px 7px 7px 7px;
    }
    .btn_contact:hover{
        width: 80%;
        height: 100px;
        font-weight: bold;
        font-size: 22px;
        opacity: 0.9;
    }
    .character4{
        position: relative;
        width: 20%;
        top: -30px;
        left: -40%;
    }
    .character5{
        position: relative;
        width: 10%;
        top: -130px;
        right: -45%;
    }

}
/* footer
----------------- */
footer {
    display: block;
    color: #fffffc;
    font-size: 85%;
    width: 100%;
    text-align: center;
    padding: 30px 0 60px 0;
    background-color: #333333;
    border-top: 1px solid #333333;
    clear: both;
    z-index: 99;
}
    .info_box{
        max-width: 1200px;
        width: 80%;
        color: #fff;
        margin: 0 auto;
        padding: 10px 0;
    }
    .info_box ul{
        display: flex;
        align-items: center;
        height: 250px;
        justify-content: center;
    }

    .info_box ul li{
        text-align: center;
        display: block;
        min-width: 50%;
    }

    @media screen and (max-width: 959px) {
            .info_box ul{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-wrap: wrap;
            }

            .info_box ul li{
                text-align: center;
                display: block;
                margin-bottom: 30px;
            }
    }

    .info_p1{
        font-size: 16px;
    }
    .info_p2{
        font-weight: bold;
        font-size: 36px;
        line-height: 150%;
    }
    .info_p3{
        font-size: 16px;
        line-height: 150%;
    }
    .info_p4{
        font-size: 16px;
        line-height: 150%;
    }
    @media screen and (max-width: 959px) {
        .info_p1{
            font-size: 12px;
        }
        .info_p2{
            font-weight: bold;
            font-size: 28px;
            line-height: 200%;
        }
        .info_p3{
            font-size: 11px;
            line-height: 150%;
        }
    }




/* その他 */
.Clear::after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}
.pcnone {display: none;}
.only-sp {display: none;}
.only-pc {display: block;}
    @media screen and (max-width: 959px) {
        .only-sp {display: block;}
        .only-pc {display: none;}
    }
.spnone {display: none;}

.aligncenter {
    display: block;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

hr {
    background: #545454;
    border: 0;
    height: 1px;
    margin: 4em 0;
}
.bg_wh{
    background-color: #FFF;
}
.bg_gray{
    background-color: #e9ebef;
}


.page_top{
    width: 100%;

}

#page_top{
  width: 179px;
  height: 338px;
  position: fixed;
  right: 26px;
  bottom: 20px;
  opacity: 1;
  z-index: 100;

}
#page_top a{
  position: relative;
  display: block;
  width: 179px;
  height: 338px;
  text-decoration: none;
}
#page_top a::before{
  color: #545454;
  margin: auto;
  text-align: center;
}
#page_top a::after{
  margin: auto;
  text-align: center;
}
.page-top-link {
    position: absolute; /* 固定位置を設定 */
    z-index: 1000; /* 背景要素より上に配置 */
    bottom: 10px; /* 画面下部に配置 */
    right: 10px; /* 画面右端に配置 */
}
@media screen and (max-width: 959px) {

    #page_top{
      width: 90px;
      position: fixed;
      right: 12px;
      bottom: 16px;
      opacity: 0.9;
    }
    #page_top a{
      position: relative;
      display: block;
      width: 90px;
      text-decoration: none;
    }


}




