﻿@charset"UTF-8";


body{
    margin: 0;
    padding: 0;
    font-family: ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, ＭＳ Ｐゴシック, MS PGothic, sans-serif
}

/************************
 * ヘッダ
 **/
header{
    background-color: #DDA637 !important;
    margin: 0;
    padding: 0;
    width: auto;
    height: 80px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

header .header_contents{
    width: 1000px;
}

header .header_logo{
    width: 22%;
    margin-top: 20px;
    float: left;
}

header .header_logo a img{
    padding-left: 10px;
    padding-right: 10px 
}

/************************
 * ヘッダナビゲーション
 **/
nav {
    width: 70%;
    margin-top: 23px;
    float: left;
}

nav ul{
    overflow: hidden;
    list-style: none;
}

nav ul li{
    float: left;
}

nav ul li.about{
    position: relative;
    margin-right: -10000px;
    width: 13.54%;
    left: 4.29%;
    font-size: 0;
}

nav li.logslices{
    position: relative;
    margin-right: -10000px;
    width: 14.08%;
    left: 21.61%;
    font-size: 0;
}

nav ul li.products{
    position: relative;
    margin-right: -10000px;
    width: 11.9%;
    left: 39.57%;
    font-size: 0;
}

nav ul li.gallery{
    position: relative;
    margin-right: -10000px;
    width: 9.99%;
    left: 54.91%;
    font-size: 0;
}

nav ul li.shop{
    position: relative;
    margin-right: -10000px;
    width: 13.94%;
    left: 67.98%;
    font-size: 0;
}

nav ul li.contact{
    position: relative;
    margin-right: -10000px;
    width: 9.71%;
    left: 85.8%;
    font-size: 0;
}
/************************
 * ヘッダSPメニューボタン
 **/
.nav_toggle{
    display: none;
    margin-top: 10px;
    position: absolute;
    right: 13px;
    top: 13px;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.nav_toggle div{
    position: relative;
}

.nav_toggle div span{
    display: block;
    position: absolute;
    width: 100%;
    border-bottom: solid 3px #fff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}

.nav_toggle div span:nth-child(1){
    top: 11px;
}

.nav_toggle div span:nth-child(2){
    top: 22px;
}

.nav_toglle div span:nth-child(3){
    top: 25px;
}

/************************
 * ヘッダSNS
 **/
.sns{
    width: 8%;
    margin-top: 30px;
    float: left;
}

.sns ul{
    overflow: hidden;
    list-style: none;
    padding-right: 10px;
}

.sns ul li{
    float: left;
}

.sns ul li.fb{
    position: relative;
    margin-right: -10000px;
    width: 40%;
    left: 0%;
}

.sns ul li.insta{
    position: relative;
    margin-right: -10000px;
    width: 40%;
    left: 59%;
}

/************************
 * メインコンテンツ
 **/
.main_contents{
    clear: left;/*headerのフロート回り込み解除*/
}

/************************
 * フッタ
 **/
footer{
    width: auto;
}

footer p.copyright{
    font-size: 10px;
    margin: 40px 0 20px 0;
    display: flex;
    justify-content: center;
}

footer .copyright_top{
    position: fixed;
    bottom: 1%;
    right: 2%;
    max-width: 100%;
}

footer .copyright_top p{
    font-size: 10px;
    color: #fff;

}

/************************
 * SPサイト
 **/
@media screen and (max-width: 768px){
    header{
        height: 70px;
    }
    
    header .header_logo{
        margin-top: 15px;
    }
    
    header .header_logo a img{
        width: 200px;
    }
    .open{
        position: absolute;
        right: 0;
        top: 72px;
        width: 100%;
        height: 380px;
        background: rgba(221,166,55,7);
        z-index: 100000;
    }
    nav{
        position: absolute;
        top: -300px;
        padding: 0 0 0 20px;
        text-align: left;
    }
    .open nav{
        -moz-transform: translateY(290px);
        -webkit-transform: translateY(290px);
        transform: translateY(290px);
        width: 100%;
    }
    nav ul li{
        clear: left;
        padding: 15px 0 0 0;
    }
    
    nav ul li a{
        font-size: 30px;
        color: #fff;
        text-decoration: none;
    }
    
    nav ul li.about{
        position: static;
    }

    nav li.logslices{
        position: static;
    }

    nav ul li.products{
        position: static;
    }

    nav ul li.gallery{
        position: static;
    }

    nav ul li.shop{
        position: static;
    }

    nav ul li.contact{
        position: static;
    }
    
    nav ul li img{
        display: none;
    }
    .nav_toggle{
        display: block;
    }
    
    .sns{
        display: none;
    }
    .open .sns{
        display: block;
    }
    .open .sns ul li.fb{
        margin-right: 0;
        max-width: 50px;
        left: 0;
        position: absolute;
        top: 310px;
        margin: 0 0 0 20px;
    }
    
        .open .sns ul li.fb img{
        width: 60%;
    }

    .open .sns ul li.insta{
        margin-right: 0;
        max-width: 50px;
        left: 0;
        position: absolute;
        top: 310px;
        margin: 0 0 0 70px;

    }
    
    .open .sns ul li.insta img{
        width: 60%;
    }

    header.open .nav_toggle span:nth-child(1){
        top: 11px;
        -webkit-transform:rotate(-45deg);
        -moz-transform:rotate(-45deg);
        transform:rotate(-45deg);
    }
   
    header.open .nav_toggle span:nth-child(2),
    header.open .nav_toggle span:nth-child(3){
        top: 11px;
        -webkit-transform:rotate(45deg);
        -moz-transform:rotate(45deg);
        transform:rotate(45deg);
    }
}

