@charset "UTF-8";

html,body{
    font-size: 100%;
    height: auto;
    max-width: 100%;
    text-align: left;
}
body{
    background-color: #ffeedb;
    margin: 0;
}
header{
    display: flex;
    justify-content: space-between;
    padding: 1rem 5% 1rem 5%;
    vertical-align: middle;
}
a {
  text-decoration: none;
}
p {
    font-size: 120%;
    color: #5b2908;
}
h1,h2,h3{
    color: #5b2908;
}
.logo{
    margin-left: 30px;
}
@media  screen and (max-width: 1200px) {
.logo{
    display: block;
    text-align: center;
    margin: 0 auto;
}
}

.sns-box {                          /*SNSの設定*/
display: flex;
gap: 50px;
border-radius: .2rem;
padding-top: 7px;
}

.btn-sns {
padding-top: 0.7rem;
padding-bottom: 0.5rem;
margin: 0 auto;
}

.btn-x img{
    padding: 7px;
    background-color: #000000;
}

                             /*SNSの設定終わり*/

nav{                                /*ナビゲーションの設定*/
    flex-wrap: wrap;
    background-color: #fff;
    list-style: none;
}
.main-nav{
    display: flex;
    justify-content: space-around;
    margin: 0 5% 0 5%;
    padding: 0;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
}
nav .main-nav li{
    display: inline-block;
    justify-content: space-around;
    text-align: center;
    font-size: 180%;
    line-height: 30px;
    text-decoration: none;
    color: #db6010;
    font-weight: bold;
    padding: 10px;
}
nav .main-nav a:link,.main-nav a:hover,.main-nav a:visited{
    color: inherit;
}
                            
.main-nav li a{                    /*ナビゲーションの動き*/
    position: relative;
}
.main-nav li a::after{
    content: "";
    position: absolute;
    top: 2.5rem;
    bottom: 0px;
    left: 1%;
    width: 100%;
    height: 2px;
    background: #db6010;
    transition: all .3s;
    transform: scale(0,1);
    transform-origin: center top;
}
.main-nav li.current a::after,
.main-nav li a:hover::after{
    transform: scale(1,1);
}

@media  screen and (min-width: 1201px) {
.header-sp,.sub-nav,.openbtn,.logo2{
    display: none;
}
}
@media  screen and (max-width: 1200px) {
.page-header,.logo,.main-nav,.sns-box{
    display: none;
}
.header-sp{
    display: flex;
    justify-content: space-between;
}

#nav-sp{
    position: fixed;
    z-index: 999;
    top: -120%;
    left: 50%;
    width: 50%;
    height: 70%;
    background: #fff7ed;
    transition: all 0.6s;
}
#nav-sp.panelactive{
    top: 0;
}
#nav-sp ul{
    position: absolute;
    z-index: 999;
    width: 70%;
    top: 50%;
    left: 45%;
    transform: translate(-50%,-50%);
}
#nav-sp li{
    list-style: none;
    text-align: center;
}
#nav-sp li a{
    color: #db6010;
    text-decoration: none;
    padding: 3% 0 5%;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 25px;
    font-weight: bold;
    border-bottom: 4px solid #db6010;
}
.openbtn{
    position: relative;
    z-index: 9999;
    background: #db6010;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    float: right;
    margin-top: 2%
}
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
	background-color: #fff7ed;
  	width: 45%;
}
.openbtn span:nth-of-type(1) {
	top:13px;	
}
.openbtn span:nth-of-type(2) {
	top:19px;
}
.openbtn span:nth-of-type(3) {
	top:25px;
}
.openbtn span:nth-of-type(3)::after {
	content:"Menu";
	position: absolute;
	top:5px;
	left:-2px;
	color: #fff;
	font-size: 0.6rem;
	text-transform: uppercase;
}
.openbtn.active span:nth-of-type(1) {
    top: 14px;
    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: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(3)::after {
	content:"Close";
    transform: translateY(0) rotate(-45deg);
	top:5px;
	left:4px;
}
}
@media screen and (max-width: 650px) {
#nav-sp li a{
    font-size: 15px;
}
}
@media screen and (max-height: 780px) {
#nav-sp{
    height: 100%;
}
}
                                      /*ヘッダー・ナビゲーションの設定終了*/
.main{
    margin: 2% 10% 2% 10%;                              /*外側の余白の設定*/
    padding: 1% 2% 1% 2%;                                         /*内側の余白の設定*/
    font-family: "IBM Plex Sans JP", sans-serif;        /*フォントの設定*/
    font-weight: 400;
    font-style: normal;
    background-color: #fff;
}
.main img{
    border-radius: 10px;
}
@media screen and (max-width: 1280px) {
.main{
    margin-left: 2%;
    margin-right: 2%;
}
}

@media screen and (max-width: 550px) {
.logo2 img{
    width: 100px;
    height: auto;
}
.main p{
    font-size: 100%;
}
.main h1{
    font-size: 130%;
}
.main h2{
    font-size: 120%;
}
.main img{
    width: 80%;
    height: auto;    
}
}

h1{
    text-align: center;
    font-size: 225%;
}
.h1-1{
    align-items: center;
    display: flex;
    justify-content: center;
}
.h1-1::before,
.h1-1::after {
    background-color: #db6010;
    content: "";
    height: 5px;
    flex-grow: 1;
}
.h1-1::before{
    margin-right: 15px;
}
.h1-1::after{
    margin-left: 15px;
}

.shop{
    display: flex;
    justify-content: space-around;
}
.about,.history{
    animation-name:fadeUpAnime;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.shop01 {
    margin-top: 7%;
}
.shop01 img{
    width: 31%;
    height: auto;
}
.shop img{
    width: 40%;
    height: auto;
}
.shop img:hover{
    transform: scale(1.1,1.1); 
    cursor: pointer; 
    transition-duration: 0.5s;
}
@media screen and (max-width: 800px) {
.shop{
    display: block;
    text-align: center;
}
.shop img{
    width: 400px;
    height: auto;
}
}
@media screen and (max-width: 550px) {
.shop img{
    width: 80%;
    height: auto;
}
}

h2{
    font-size: 180%;
    position: relative;
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 4px solid #db6010;
    width: 100%;
    box-sizing: border-box;
}

.his_img{
    display: flex;
    justify-content: space-between;
}
.history img{
    width: 30%;
    height: auto;
}
@media screen and (max-width: 800px) {
.his_img{
    display: block;
    text-align: center;
}
.history img{
    width: 400px;
    height: auto;
    margin: 3% 0 3% 0;
}
}
@media screen and (max-width: 550px) {
.history img{
    width: 80%;
    height: auto;
}
}

.inside{
    margin: 3rem 0 3rem 0;
}
.inside_img{
    display: flex;
    justify-content: space-between;
}
.inside img{
    width: 30%;
    height: auto;
}
@media screen and (max-width: 800px) {
.inside_img{
    display: block;
    text-align: center;
}
.inside img{
    width: 400px;
    height: auto;
    margin: 3% 0 3% 0;
}
}
@media screen and (max-width: 550px) {
.inside img{
    width: 80%;
    height: auto;
}
}



.footer{                                          /*フッターの設定*/       
    flex-wrap: wrap;
    background-color: #fff7ed;
    list-style: none;
    padding: 1% 10% 1% 10%;
    margin: 0;
}
.footerA{
    display: flex;
    justify-content: space-around;
    font-size:100%;
    font-weight: bold;
    text-align: left;
    text-decoration: none;
}
.footer1,.footer2,.footer3{
    margin: 0;
    font-family: "IBM Plex Sans JP", sans-serif;
}
.footerB{
    display: flex;
    justify-content: center;
    background-color: #5b2908;
    list-style: none;
}
.footerB h3{
    background-color: #5b2908;
    color: #fff;
    margin: 0;
    padding: 10px 0 10px 0;
}
.footer3{
    text-align: center;
    font-size: 80%;
    font-weight: bold;
}
.footer3 a:link,.footer3 a:hover,.footer3 a:visited{
    color: inherit;
}
@media screen and (max-width:700px) {
.footerA{
    display: none;
}
.footer3{
    font-size: 60%;
}
}