@charset "utf-8";
/* CSS Document */
* {
    text-decoration: none;
}
h1 {
    text-align: center;
}
h2 {
    text-align: center;
    font-size: 40px;
    font-family: 'Kaisei Decol', serif;
    color: rgb(112, 112, 112);
}
li {
    color: rgb(112, 112, 112);
}
p {
    font-size: 20px;
    font-family: 'Klee One', cursive;
}
/*スペース領域設定*/
.space1 {
    background-color: rgb(245, 165, 54);
    height: 57.6px;
}
.space2 {
    background-color: rgb(239, 230, 221);
    height: 57.6px;
}
.space1-none {
    background-color: rgb(245, 165, 54);
    height: 57.6px;
}
/*アイコンフォント設定*/
@font-face {
    font-family: 'icomoon';
    src: url('fonts/icomoon.eot?pza2gj');
    src: url('fonts/icomoon.eot?pza2gj#iefix') format('embedded-opentype'), url('fonts/icomoon.ttf?pza2gj') format('truetype'), url('fonts/icomoon.woff?pza2gj') format('woff'), url('fonts/icomoon.svg?pza2gj#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-facebook2:before {
    content: "\ea91";
    font-size: 50px;
}
.icon-instagram:before {
    content: "\ea92";
    font-size: 50px;
}
.icon-twitter:before {
    content: "\ea96";
    font-size: 50px;
}
header {
    background-color: rgb(245, 165, 54);
    height: 150px;
}
header img {
    width: 100px;
    margin-top: 25px;
}
.hero img {
    width: 100%;
    ;
}
#global-nav {
    text-align: center;
    background-color: #fff;
    color: rgb(112, 112, 112);
    position: sticky;
    position: -webkit-sticky;
    top: 0;
}
#global-nav ul {
    display: flex;
    justify-content: space-around;
    /*lign-items: center;*/
}
#global-nav ul li {
    font-family: 'Kaisei Decol', serif;
    font-size: 38px;
    width: 20%;
}
/*ハンバーガーメニューここから*/

/*ハンバーガーメニューここまで*/
/*global-nav-mediaハンバーガー用ここから-----------------------------*/
@media screen and (max-width: 540px) {
    #g-nav {
        /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
        position: fixed;
        z-index: -1;
        opacity: 0; /*はじめは透過0*/
        /*ナビの位置と形状*/
        top: 0;
        width: 100%;
        height: 100vh; /*ナビの高さ*/
        background: rgb(245, 165, 54); /*ナビ背景色*/
        /*動き*/
        transition: all 0.3s;
    }
    /*アクティブクラスがついたら透過なしにして最前面へ*/
    #g-nav.panelactive {
        opacity: 1;
        z-index: 999;
    }
    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh; /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    /*ナビゲーション*/
    #g-nav ul {
       /* display: none;
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #g-nav.panelactive ul {
        display: block;
    }
    /*リストのレイアウト設定*/
    #g-nav li {
        list-style: none;
        text-align: center;
        font-size: 40px;
        color: rgb(112, 112, 112);
		margin-bottom: 20px;
    }
    #g-nav li a {
        color: rgb(112, 112, 112);
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }
    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        z-index: 9999; /*ボタンを最前面に*/
        top: 10px;
        right: 10px;
        cursor: pointer;
        width: 50px;
        height: 50px;
        /*追記*/
        background-color: #fff; /*ボタン色*/
        border-radius: 5px;
    }
    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: rgb(112, 112, 112); /*展開後背景色*/
        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%;
    }
}
/*global-nav-mediaここまで-----------------------------*/
/*＜バックアップ用＞global-nav-mediaここから-----------------------------*/
@media screen and (max-width: 540px) {
    /*.space1-none {
		display: none;
	}*/
}
/*global-nav-mediaここまで-----------------------------*/
.about {
    background-color: rgb(245, 165, 54);
    text-align: center;
}
h2 {
    background: #fff;
    text-align: center;
}
.aboutimg {
    margin-top: 60px;
    margin-bottom: 30px;
}
.aboutimg img {
    height: 50%;
    width: 50%;
    margin: auto;
}
.abouttext {
    width: 70%;
    margin: auto;
    text-align: left;
    line-height: 30px;
    padding-bottom: 60px;
}
.botton {
    background-color: rgba(242, 235, 67);
    color: #fff;
    display: inline-block;
    width: 200px;
    height: 30px;
    margin-top: 40px;
    border-radius: 20px;
    padding: 5px;
    text-align: center;
    margin: auto;
    font-family: 'Kaisei Decol', serif;
    font-size: 20px;
    text-shadow: 1px 2px 3px #808080;
    box-shadow: 2px 2px 4px gray;
    margin-bottom: 40px;
}
/*about-mediaここから-----------------------------*/
/*@media screen and (min-width: 540px) {
	.aboutcont {
		display: flex;
		justify-content: space-between;
	}
	.botton {
		margin: auto;
	}
}*/
/*about-mediaここまで-----------------------------*/
.egg {
    background-color: rgb(239, 230, 221);
    text-align: center;
    /*height: 800px;*/
}
.eggimg {
    margin-top: 60px;
    margin-bottom: 30px;
}
.eggimg img {
    height: 50%;
    width: 50%;
    margin: auto;
}
.eggtext {
    width: 70%;
    margin: auto;
    text-align: left;
    line-height: 30px;
    margin-bottom: 40px;
}
/*egg-mediaここから-----------------------------*/
/*@media screen and (max-width: 540px) {
}
/*egg-mediaここまで-----------------------------*/
.shop {
    background-color: rgba(245, 165, 54);
    text-align: center;
    height: auto;
    /*height: 920px;*/
}
.shopimg img {
    height: 50%;
    width: 50%;
    margin: auto;
}
.shopitem {
    margin: 0 auto;
}
.shopcont {
    margin: 0 auto;
}
.shoptext {
    width: 70%;
    margin: auto;
    text-align: left;
    line-height: 30px;
    margin-top: 60px;
    margin-bottom: 40px;
}
.shopbotton {
    background-color: rgba(242, 235, 67);
    color: #fff;
    text-align: center;
    margin-top: 40px;
    border-radius: 20px;
    padding: 5px;
    display: inline-block;
    width: 500px;
    height: 30px;
    font-family: 'Kaisei Decol', serif;
    font-size: 20px;
    text-shadow: 1px 2px 3px #808080;
    box-shadow: 2px 2px 4px gray;
    margin-bottom: 40px;
}
.shoph3 {
    margin-top: 10px;
    font-family: 'Kaisei Decol', serif;
}
.shopitem {
    margin-bottom: 20px;
}
/*shop-mediaここから-----------------------------*/
@media screen and (min-width: 540px) {
    .shopcont {
        display: flex;
    }
    .shopitem {
        justify-content: space-between;
    }
}
/*shop-mediaここまで-----------------------------*/
.news {
    background-color: rgb(239, 230, 221);
    text-align: center;
}
.newstext dl {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    font-family: 'Klee One', cursive;
}
.newstext dt {
    width: 40%;
    margin-bottom: 10px;
    text-align: right;
    font-family: 'Klee One', cursive;
}
.newstext dd {
    width: 60%;
    margin-inline-start: 0;
    margin-bottom: 10px;
    text-align: left;
    font-family: 'Klee One', cursive;
}
/*news-mediaここから-----------------------------*/
/*@media screen and (min-width: 540px) {
}
/*news-mediaここまで-----------------------------*/
footer {
    background-color: rgba(245, 165, 54);
    text-align: center;
    font-family: 'Klee One', cursive;
}
.footerlogo {
    width: 100px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.snsicons {
    display: flex;
    justify-content: space-around;
}
.icon-twitter,.icon-facebook2,.icon-instagram {
	color: black;
}
.container {
    margin-top: 60px;
}
.botton-fot {
    background-color: rgba(242, 235, 67);
    color: #fff;
    display: inline-block;
    width: 200px;
    height: 30px;
    border-radius: 20px;
    padding: 5px;
    text-align: center;
    margin: auto;
    font-family: 'Kaisei Decol', serif;
    font-size: 20px;
    text-shadow: 1px 2px 3px #808080;
    box-shadow: 2px 2px 4px gray;
    margin-bottom: 40px;
    margin-top: 60px;
}
.container dl {
    display: flex;
    flex-wrap: wrap;
    font-size: 20px;
}
.container dt {
    width: 50%;
    margin-bottom: 10px;
    text-align: right;
}
.container dd {
    width: 50%;
    margin-inline-start: 0;
    margin-bottom: 10px;
    text-align: left;
}
.copytext {
    padding-bottom: 10px;
	color: #fff;
}
/*footer-mediaここから-----------------------------*/
@media screen and (min-width: 540px) {
    .fot-cont {
        display: flex;
    }
    .snsicons {
        width: 900px;
        margin-top: 100px;
    }
    .img-cont {
        width: 400px;
    }
}
/*footer-mediaここまで-----------------------------*/



/*about下層ここから-----------------------------*/
.about-1 {
	background: rgb(245, 165, 54);
}
.about-1 h2 {
	background: #fff;
}
.about-1-img {
	width: 300px;
	display: block;
	margin: auto;
	border: solid 8px #fff;
}
.about-1-imgcont {
	margin-top: 60px;
	margin-bottom: 60px;
}
.about-1-text {
	width: 80%;
	margin: auto;
	padding-bottom: 60px;
	text-align: left;
	font-weight: 200;
}

/*about下層ここまで-----------------------------*/

/*about下層-mediaここから-----------------------------*/
@media screen and (min-width: 540px) {
	.about-1-img {
		width: 500px;
}
	.about-1-text {
		width: 70%;
		text-align: center;
	}
}
/*about下層-mediaここまで-----------------------------*/