html, body{
    height: 100%;
    font-family: sans-serif;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%; 
    z-index: 100;
}
.header-container{
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 1s;
}
.header-background{
    background-color: #fff;
    transition: all 1s;
    box-shadow: 1px 1px 10px 1px black;
}
.header-content{
    height: 50px;
    text-align: center;
    line-height: 50px;
}
@media(max-width: 500px){
    .header-left{
        position: relative;
    }
    .header-left img{
        width: 100%;
        height: unset !important;
        position: absolute;
        top: 50%;
        right: -20%;
        transform: translateY(-50%);
    }
}
.header-side{
    width: 15%;
}
.header-center{
    width: 70%;
    font-weight: 900;
}
.header-center a{
    text-decoration: none;
    color: #241514;
}
.header-left:hover, .header-center a:hover{
    opacity: 0.6;
}
.header-left a img{
    /*height: inherit;*/
    height: 100%;
}
.main{
    position: relative;
    z-index: 1;
}
/*section{
    height: 500px;
    background: rgba(197, 63, 10, 1);  
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}*/
section#sec1{
    height: 100vh;
    background: 0;
    /*background-color: rgba(255,255,255,0.1);*/
}
section#sec1::before{
    content: "";
    width: 100%;
    height: 100vh;
    background: url("../media/image/burger_img/burger_img1.jpeg") no-repeat center / cover;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    display: block;
}
.bg-img::before{
    position: unset !important;
}

section#sec2{
    background: #CD362C;  
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.ingredients_title{
    font-size: xx-large;
    font-weight: 600;
}
#sec3{
    background-color: #CD362C;
}
.concept-sec{
    padding: 100px 0 120px;
    margin-left: 50px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}
.section-content{
    color: #fff;
}
.section-content-left{
    width: 20%;   
}
.section-content-right{
    width: 80%;
}
.section-content-right h1{
    font-size: calc((100vw - 50px)*0.8*0.16777);
}
.section-content-inner{
    display: flex;
    align-items: stretch;
}
.section-content-inner-left, .section-content-inner-right{
    margin-top: 100px;
    margin-right: 30px;
    font-size: 14px;
    line-height: 2;
}

.section-content-left h2{
    writing-mode: vertical-lr;
    padding: 5px;
}
#about_us + p{
    writing-mode: vertical-lr;
}
/*for menu scroll position*/
h2[id]{
    display: block;
    padding-top: 120px;
    margin-top: -120px;
}
.section-content-left p{
    margin-top: 100px;
    font-size: 14px;
}

.main-video{
    margin-bottom: -7px;
    overflow: hidden;
    position: relative;
    height: 56.250365vw
}
video{
    pointer-events: none;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
}
#sec4{
    /*padding-top: 100px;*/
    background-color: #cd362c;
}
.hamburger-image-container{
    margin: 70px 10px 0 10px;
}
.hamburger-image{
    overflow: hidden;
    border-radius: 50%;
    /*background-color: #241514;*/
}
.hamburger-image img{
    height: 200px;
    width: 200px;
    border-radius: 50%;
    /*margin: 70px 10px 0 10px;*/
    transition: 1s all;
}
@media(max-width: 500px){
    .hamburger-image img{
        height: 150px;
        width: 150px;
    }
}
.hamburger-image img:hover{
    transform: scale(1.2,1.2);
}

.hamburger-sec{
    padding: 100px 0 100px;
    margin-left: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.hamburger-images-wrapper{
    padding-bottom: 120px;
}
.hamburger-sentence{
    margin: 0 20px;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    font-size: 12px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}
.hamburger-images{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* 全体設定 */
.css-carousel-slider {
    width: 100%;
    /* max-width: 800px */ /* サイズ設定をする場合はここ(*1) */
    overflow: hidden;
    position: relative;
}
.css-carousel-slider img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

/* スライド設定 */
.css-carousel-slider .slide-wrap {
    width: 400%; /* 画像の合計数*100%を設定(*2) */
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    z-index: 0;
    animation: css-carousel-slider 20s infinite; /* スライダーアニメーション全体の時間(*3) */
    animation-delay: 2s; /* スライダーが始まるまでの時間(*4) */
}
.css-carousel-slider .slide-wrap-main {
    width: 100%;
    z-index: 1;
    animation: css-carousel-slider-main 20s infinite; /* (*3)と同じ内容を設定 */
    animation-delay: 2s; /* (*4)と同じ内容を設定 */
}
.css-carousel-slider .slide {
    width: 100%;
}

/* スライダーアニメーションの設定(*5) */
@keyframes css-carousel-slider {
    0% { transform: translateX(0); }

    20% { transform: translateX(calc(1 / 4 * -100%)); }
    25% { transform: translateX(calc(1 / 4 * -100%)); }

    45% { transform: translateX(calc(2 / 4 * -100%)); }
    50% { transform: translateX(calc(2 / 4 * -100%)); }

    70% { transform: translateX(calc(3 / 4 * -100%)); }
    75% { transform: translateX(calc(3 / 4 * -100%)); }

    95% { transform: translateX(calc(4 / 4 * -100%)); }
    100% { transform: translateX(calc(4 / 4 * -100%)); }
}

@keyframes css-carousel-slider-main {
    0% { transform: translateX(100%); }
    75% { transform: translateX(100%); }
    95% { transform: translateX(0%);}
}


#sec6{
    /*padding-top: 100px;*/
    background-color: #cd362c;
}
.shop-info-sec{
    padding: 100px 0 100px;
    margin-left: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.section-content-inner-left h2{
    font-size: 18px;
    margin-bottom: 15px;
}
.shop-info-li li{
    padding-left: 35px;
    background: top 5px left 3px no-repeat;
}
.shop-info-li li:nth-child(1){
    background-image: url("../media/image/illust_icon/location-icon.png") !important;
    background-size: 12px auto;
}
.shop-info-li li:nth-child(2){
    background-image: url("../media/image/illust_icon/phone-icon.png") !important;
    background-size: 12px auto;
}
.shop-info-li li:nth-child(3){
    background-image: url("../media/image/illust_icon/mail-icon.png") !important;
    background-size: 12px auto;
}
.open-hour-info{
    margin-top: 50px;
}
@media(max-width: 630px){
    .section-content-inner-for-phone-display{
        display: block;
    }
}
#copyTarget{
    display: inline;
}

.address-copy-button{
    background-color: #0058B0;
    color: #fff;
    font-size: 14px;
    text-align: center;
    /*border: 1px solid #241514;*/
    border-radius: 5px;
    margin: 40px auto;
    padding: 5px;
    width: 30%;
}
.address-copy-button:hover{
    background-color: #ccc;
    cursor: pointer;
}

.map-select{
    padding: 10px;
    text-align: right;
}
.map-select-anchor{
    color: #fff;
    text-decoration: none;
    padding: 10px;
    font-size: 10px;
}


.phone a{
    color: #e8e8e8;
}
.google-map{
    text-align: center;
}
.google-map iframe{
    width: 80vw;
    height: 60vw;
    max-width: 600px;
    max-height: 450px;
}
/*.google-map:before{
    content:"";
    display: block;
    padding-top: 75%;
}
.google-map iframe{
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    transform: translate(-50%,-50%);
    max-width: 600px;
    max-height: 450px;
}*/
.section-content-inner-left a{
    color: #fff;
    text-decoration: underline;
}
#sec7{
    background-color: #cd362c;
}
.zoom-visual-sec{
    position: relative;
    background-image: url("../media/image/burger_img/burger_img2.jpeg");
    width: 100%;
    height: 0;
    padding-top: calc(885 / 1080 * 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#sec8{
    /*padding-top: 100px;*/
    background-color: #cd362c;
}
.news-sec{
    padding: 100px 0 100px;
    margin-left: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/*news*/
/*a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}*/


.news {
    margin: 0 50px;
    padding-top: 50px;
    padding-bottom: 20px;
    background: #FFF;
    border-radius: 20px;
}


.inner {
    width: 80%;
    background-color: #aaa;
    margin: 0 auto;
    padding: 65px 0 100px;
    border-radius: 20px;
}


.sub_ttl {
    font-size: 30px;
    text-align: center;
    margin-bottom: 40px;
}

/* ここからがニュース記事のCSS */

.news_list {
    margin: 0 8%;
}

.news_list_item {
  /*padding: 25px 0;*/
    border-bottom: 1px solid #b6b6b6;
  /*display: flex;*/
}
/*.news_list_item:nth-of-type(3n+1){
    border-top: 1px solid #b6b6b6;
}*/
.more{
    background: #0058B0;
    color: #fff;
    width: 40%;
    text-align: center;
    cursor: pointer;
    margin: 30px auto 10px;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
}
/*.modal-content{
    display: flex;
}*/
.news_list_item > div{
    position: relative;
    display: flex;
    padding:25px 30px 25px 0px;
    color: #241514;
    cursor: pointer;
}
@media(max-width: 720px){
    .news_list_item > div{
        display: block;
    }
    .news_list_item_left{
        width: 80% !important;
        margin: 0px auto 40px !important;
    }
}
.news_list_item_left{
    width: 30%;
}
.news_list_item_left img{
    width: 100%;
}
.news_list_item_right{
    width: 70%;
    padding: 0 10px 10px 45px;
}
.news_list_item_right p{
    margin-bottom: 5px;
}
.news_list_item_title p{
    font-size: 16px;
    font-weight: bold;
    color: black;
}
.news_list_item_title{
    margin-bottom: 20px;
}
.news_list_item:first-child {
    border-top: 1px solid #b6b6b6;
}
/*.news_list_date {
  font-size: 14px;
  display: flex;
  margin-right: 15px;
  align-items: center;
}*/

.news_item {
    background: #F6C6A2;
    border-radius: 14px;
    width: 6em;
  /* 親要素の文字サイズを基準 */
    text-align: center;
    margin-left: 20px;
}

.arrow {
    width: 25px;
    height: 1px;
    background: #707070;
    position: absolute;
    top: 50%;
    right: 0;
}

.arrow::after {
    content: "";
    display: block;
    width: 6px;
    height: 1px;
    background: #707070;
    transform: rotate(45deg);
    position: absolute;
    right: 0px;
    bottom: 2px;
}

/*.modal__content{
    display: flex;
}*/

/*modal*/
/*.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
}

/*@media screen and (max-width: 1024px) {
    .news_list_item a {
        display: block;
    }
}

@media screen and (max-width: 769px) {
    .news_list_item a  {
        font-size: 14px;
    }


}
@media screen and (max-width: 480px) {
    .arrow {
        display: none;
    }
    .news_list_item a {
        padding-right: 0;
    }
}*/

/*modal*/
/*モーダルを開くボタン*/
/*.modal-open{
	position: fixed;
	display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
	width: 300px;
	height: 50px;
	font-weight: bold;
	color: #fff;
	background: #000;
	margin: auto;
	cursor: pointer;
	transform: translate(-50%,-50%);
}*/
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
    box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
    z-index: 100;
}
/*モーダル枠の指定*/
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 500px;
	width: 90%;
}
@media(max-width: 420px){
    .modal-body{
        max-width: 350px;
    }
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
	position: absolute;
	display: flex;
    align-items: center;
    justify-content: center;
	top: -40px;
	right: -40px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
	background: #fff;
	text-align: left;
	padding: 30px;
    border-radius: 20px;
}
.modal-content .news_list_item_left{
   width: 80%;
   margin: 0px auto 40px; 
}
.news_close{
    text-align: center;
    font-size: 10px;
    padding: 20px;
    cursor: pointer;
    color:#241514;
}

/*news*/

#sec9{
    /*padding-top: 100px;*/
    background-color: #cd362c;
}
.contact-sec{
    padding: 100px 0 50px;
    margin-left: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/*contact-form*/
form {
    border: solid 1px #ddd;
    border-bottom: unset;
    padding: 30px;
    /*-moz-border-radius: 5px;
    -webkit-border-radius: 5px;*/
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #fff;
    margin-bottom: 50px;
}
.contact-title {
    letter-spacing: 2px;
    margin: 0 0 15px;
    font-size: 22px;
    font-weight: bold;
    color: #333333;
    background-color: unset;
    border: unset;
}
/*body > div:nth-child(3) > div {
    border: solid 1px #ddd;
    padding: 30px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
}*/
body > div:nth-child(3) > div > h1 {
    letter-spacing: 2px;
    margin: 0 0 15px;
    font-size: 22px;
    font-weight: bold;
    color: #333333;
    padding-left: 0;
}
form > div {
    border-radius: 3px;
    background-color: #f6f6f6;
    vertical-align: middle;
    border: 1px solid #dddddd;
    margin-top: 20px;
    margin-bottom: 15px;
    padding: 20px;
}
form > div > div {
    border-radius: 3px;
    padding: 10px 20px;
}
form > div > div > p {
    width: 405px;
    float: left;
    margin: 0 15px;
}
form > div > div:before, form > div > div:after {
    display: table;
    content: " ";
    clear: both;
}
form > div input[type=text], form > div input[type=email], form > div textarea, form > div select {
    display: block;
    min-width: 405px;
    max-width: 405px;
    float: right;
    height: 38px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    margin: 0 15px;
}
form > div textarea {
    height: auto;
}
input[type=radio] {
    margin-left: 25px;
    margin-top: 8px;

}
body > div label {
    margin-bottom: 0;
    text-align: right;
    width: 145px;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
}
body > div label span {
    color: #fff;
    background: #fb3b6f;
    display: inline-block;
    padding: 2px 5px;
    font-size: 10px;
    font-size: 1rem;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    position: absolute;
    right: 16px;
    top: 19px;
}
.container label + div {
    width: 75%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
button {
    display: block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    margin: 0 auto;
}
button:hover, .more:hover, .address-copy-button:hover{
    background: #00b0da;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #00a1d0), color-stop(0, #00bedf));
    background: -webkit-linear-gradient(#00bedf, #00a1d0);
}
button {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
body > div > a > button {
    margin-left: 0;
    margin: 0 auto;
    display: block;
}
a + button {
    margin-left: 20px
}
a {
    text-decoration: none;
}
a:focus, a:hover {
    outline: none;
    text-decoration: none;
}
input::-webkit-input-placeholder {
    color:   #777;
}
button {
    padding: 10px 13px 11px;
    /*font-size: 18px;*/
    cursor: pointer;
    /*font-weight: bold;*/
    border-radius: 4px;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    /*border: 1px solid #00c9;*/
    color: #ffffff;
    background: #0058B0;
    /*box-shadow: 0px 1px 1px rgba(0,0,0,0.28),inset 0px 2px 0px -1px #10a4d2;*/
}
input[type=button] {
    padding: 10px 13px 11px;
    font-size: 18px;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    border-radius: 4px;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    border: 1px solid #c3c3c3;
    color: #7c7c7c;
    background: #ffffff;
    text-shadow: 0px 1px 1px rgba(0,0,0,0.13);
    -moz-box-shadow: 0px 1px 1px rgba(0,0,0,0.28);
    -webkit-box-shadow: 0px 1px 1px rgba(0,0,0,0.28);
    box-shadow: 0px 1px 1px rgba(0,0,0,0.28);
    margin-left: 180px;
    margin-right: 25px;
}
input[type=button] + button {
    display: inline-block;
}
input + div, select + div, textarea + div {
    float: right;
    width: 420px;
    color: red;
    margin-bottom: -10px;
}
.error-form {
    border-color: #fb9a93 !important;
}
@media(max-width: 799px){
    form > div input[type=text], form > div input[type=email], form > div textarea, form > div select{
        min-width: 340px;
    }
    body > div label{
        text-align: unset;
    }
    body > div label span{
        right: 117px;
    }
}
@media(max-width: 600px){
    body > div label{
        float: 300px;
    }
    body > div label span{
        right: -36px;
        top: 0;
    }
    form > div input[type=text], form > div input[type=email], form > div textarea, form > div select {
        float: none;
        min-width: 250px;
        margin-top: 25px;
        margin-bottom: 20px;
    }
    form > div div{
        padding: 10px 0px;
    }
    form{
        padding: 20px;
    }
}
/*contact-form*/

#sec10{
    background: #CD362C;
    height: 100px;
}
.footer{
    background: #242424;
    color: #e6e6e6;
    line-height: 1.5;
    font-size: 12px;
    position: relative;
}
.footer-content{
    display: flex;
    line-height: 2;
    /* position: relative; */
}
.footer-center-logo{
    text-align: center;
}
.footer-center-logo img{
    height: 65px;
    margin-top: 25px;
}
.footer-content-inner{
    width: 33%;
    padding-left: 30px;
    margin: 40px 0 100px;
}
.footer-map{
    width: 33%;
    margin: 40px 20px 100px;
}
.footer-map iframe{
    width: 80%;
    height: 60%;
    min-width: 220px;
    min-height: 165px;
}
@media(min-width: 721px){
    .footer-map-400-720{
        display: none;
    }
}
@media(max-width: 720px){
    .footer-content-inner{
        width: 50%;
        padding-left: 30px;
        margin: 40px 0 100px;
    }
    .footer-map{
        display: none;
    }
    .footer-map-400-720{
        text-align: center;
        margin-bottom: 60px;
    }
    .footer-map-400-720 iframe{
        margin-bottom: 60px;
        width: 80%;
        min-width: 220px;
        min-height: 165px;
    }
}
.instagram{
    color: #e8e8e8;
}
.instagram:before{
    font-family: "Font Awesome 5 Brands";
    content: "\f16d";
    font-weight: 900;
    padding: 5px 20px 5px 4px;
    color: #e6e6e6;
    /*background:radial-gradient(at 20% 120%,orange, #f15a4d 25%, #f13f79 55%, #9933ff 100%) no-repeat;*/
    /*background:radial-gradient(at 20% 120%,orange, #f15a4d 25%, #f13f79 55%, #9933ff 100%) no-repeat;*/
}
.footer-page-info a{
    color: #e6e6e6;
}
.copy-right{
    position: absolute;
    bottom: 20px;
    right: 20px;
}


body{
    margin: 0; /* Codepen調整 */
}
p{
    font-size: 14px;
}

/*global-navi*/
.hamburger-menu nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    padding-top: 50px;
    background: rgba(33,33,33,.95);
    font-size: 16px;
    box-sizing: border-box;
    z-index: 2;
    overflow-y: scroll;
}

.hamburger-menu nav ul li {
    padding: 20px 28px;
    text-align: center;
}

.hamburger-menu nav ul li a {
    text-decoration: none;
    color: #fff;
    display: block;
}
.hamburger-menu nav ul li:hover .transparent{
    opacity: 0.4;
}
.hamburger-menu nav ul li ul li:hover {
    opacity: 0.6;
}
.btn-gnavi:hover{
    opacity: 0.6;
}

.hamburger-menu .btn-gnavi {
    padding-right: 40px;
    position: fixed;
    top: 30px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 3;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms
}

.hamburger-menu .btn-gnavi span {
    position: absolute;
    width: 30px;
    height: 4px;
    background: #241514;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms
}

.hamburger-menu .btn-gnavi span:nth-child(1) {
    top: 0
}

.hamburger-menu .btn-gnavi span:nth-child(2) {
    top: 10px
}

.hamburger-menu .btn-gnavi span:nth-child(3) {
    top: 20px
}

.hamburger-menu .btn-gnavi.open {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.hamburger-menu .btn-gnavi.open span {
    background: #fff
}

.hamburger-menu .btn-gnavi.open span:nth-child(1) {
    width: 24px;
    -webkit-transform: translate(-7px,17px) rotate(45deg);
    transform: translate(-7px,17px) rotate(45deg)
}

.hamburger-menu .btn-gnavi.open span:nth-child(3) {
    width: 24px;
    -webkit-transform: translate(-7px,-17px) rotate(-45deg);
    transform: translate(-7px,-17px) rotate(-45deg)
}

.submenu{
    display: none;
    /*overflow: hidden;*/
}
.submenu li{
    position: relative;
    border-bottom: 1px solid black;
}
.submenu li a{
    color: #aaa;
    font-size: 8px;
}
/*.submenu{
    display: none;
    height: 191px;
}*/

/*.menu li:hover .submenu{
    visibility: visible;
    height: 100%;
}
.menu li:hover .submenu li{
    display: block;
}*/
.submenu li:nth-child(3){
    padding: 20px 24px;
}
.main_cover{
    position: fixed;
    width: 100%;
    visibility: hidden;
    z-index: -1;  
    -webkit-transition: .3s;
    transition: .3s;
}
.main_cover.open{
    height:100%;
    visibility: visible;
    background:rgba(0,0,0,0.4);
    z-index:1000;
}
