body {
  font-family: 'Noto Sans CJK JP', 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
  font-size: 15px;
  opacity: 1;

  margin: 0 auto;
  overflow-x: hidden;
  color: #363636;
    z-index: -10;

}

@media screen and (min-width: 768px) {
  body {}
}

body.active{
  height: 100%;
  overflow: hidden;
}

*,
:after,
:before {
  box-sizing: border-box;
}

abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: rgba(0, 0, 0, 0)
}

body {
  line-height: 1
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block
}

nav ul {
  list-style: none
}

img {
  max-width: 100%;
}



/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: #999;
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  z-index: 9999;
  cursor: pointer;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}


/*========= ボタンのためのCSS ===============*/
.openbtn2 {
  z-index: 9999;
  cursor: pointer;
}

/*×に変化*/
.openbtn2 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.openbtn2 span:nth-of-type(1) {
  top: 15px;
}

.openbtn2 span:nth-of-type(2) {
  top: 23px;
}

.openbtn2 span:nth-of-type(3) {
  top: 31px;
}

.openbtn2.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn2.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn2.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}



/*×に変化*/
.openbtn3 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.openbtn3 span:nth-of-type(1) {
  top: 15px;
}

.openbtn3 span:nth-of-type(2) {
  top: 23px;
}

.openbtn3 span:nth-of-type(3) {
  top: 31px;
}

.openbtn3.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn3.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn3.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}



/*×に変化*/
.openbtn4 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.openbtn4 span:nth-of-type(1) {
  top: 15px;
}

.openbtn4 span:nth-of-type(2) {
  top: 23px;
}

.openbtn4 span:nth-of-type(3) {
  top: 31px;
}

.openbtn4.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn4.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn4.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}











/*========= レイアウトのためのCSS ===============*/

h1 {
  font-size: 1.2rem;
}

h2 {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 30px 0;
}

p {
  margin-top: 20px;
}

small {
  color: #fff;
  display: block;
  text-align: center;
}

#header {
  width: 100%;
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

section {
  padding: 100px 30px;
}

section:nth-child(2n) {
  background: #f3f3f3;
}

#footer {
  background: #333;
  padding: 20px;
}



.hedder_red{
  background-color: #E60010;
  height: calc(40px + 2vw);
    z-index: 100;
}


.bg_skew_dot{
  background-color: #fff;
  background-image:
    radial-gradient(#F7F8F8 20%, transparent 10%),
    radial-gradient(#F7F8F8 20%, transparent 10%);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
    padding-bottom: 0em;
}
.top_section{
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.top_img {
  display: inline-block;
  position: relative;
 margin: 0 auto 3em;
  text-align: center;
  outline: 2px solid rgb(255, 255, 255);
  outline-offset: -1em;
}
@media screen and (min-width: 1080px) {
  .top_img{
    background-color: #E60010;
    position: relative;
    max-width: 100vw;
      width: 45vw;
      min-width: 600px;
    left:15%;
    top:50px;
    margin:0 auto;
    border-radius: 30px;
  }}




/*========= TOPの右側 ===============*/

.top_meintext{
    max-width: 100%;
    margin:0 auto;
    margin-bottom:-6em;

}
@media screen and (min-width: 1080px) {
  .top_meintext{
    top:30px;
      text-align: end;
      margin-right: 10%;
      max-width: 45vw;
  }}

.top_logo {
  max-width: 300px;
  position: relative;
  top: -100px;
  z-index: 2;
    margin:0 auto;
}

.top_textbox {
    margin:0 auto;
  position: relative;
  top: -160px;
  text-align: center;
  width: 90%;
  max-width: 700px;
  border-radius: 20px;
  height: auto;
  filter: drop-shadow(0 3px 0.1em #C7C7C7);
  background-color: #F8F8F8;
  z-index: 1;
}
@media screen and (min-width: 1080px) {
  .top_textbox{
    max-width:900px ;
    width:100%;
      
    
  }}
.top_title {
  font-size: clamp(25px, 3.5vw, 30px);
  font-weight: 600;
  margin: 1em auto;
  padding-top: 2em;
}

.top_rainbow {
  text-align: center;
  max-width: 20rem;
  width: 50vw;
}

.top_text {
  line-height: 30px;
  font-size: clamp(15px, 2vw, 18px);
  width: 100%;
  padding: 0em 3em 3em;
  margin-bottom: 2em;
  font-weight: 500;
  text-align: left;
}
/*=========================================*/


.sh_box{
  display: block;
  margin: 0 auto;
 position: relative;
  max-width: 600px;
  outline: 2px solid rgb(255, 255, 255);
  outline-offset: -0.8em;
  border-radius: 30px;
  line-height:calc(10px + 0.7vw);
  z-index: 10;
  transition: 1s all linear;
}
.sh_box.panelactive{
  transition: 1s all linear;
  right: 30%;
  opacity: 0.8;
}
.sh_pct{
  width:100%;
  border-radius: 25px 25px 0 0;
}

.sh_sbbox{
  padding:2em 1em;
  padding-top:1em;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  color:white;
  background-color: #E60010; 
  border-radius: 0 0 25px 25px;
  font-size: clamp(10px, 2vw, 18px);
  z-index: -2;
  overflow-x: hidden;
  line-height: 1.5em;
}

.sh_title{
  margin:auto 0;
  font-weight: 800;
  font-size:clamp(24px, 2em, 38px);
  flex-wrap: nowrap;
  display: inline;
  vertical-align: middle;
  text-align: center;
}
.sh_shop_icon{
  padding-left: 10px;
  position: relative;
  margin:auto 0;
  max-width: 100px;
  width:2em;
  min-width:25px;
  height: auto;
  margin-right: 5px;
  vertical-align: middle;
  top:-2px;
}
.sh_sbbox_line{
  background-color: #fff;
  width: 1px;
  height: calc(3rem + 1vw);
  margin:auto 1em
}
.sh_button{
  position: absolute;
  bottom:-5%;
  right:7%;
  z-index: 100;
  width:clamp(60px, 4em, 80px);
}
.sh_relative{
  position: relative;
  z-index: -1;
}
.tensen{
  margin:2em auto;
  height: 8px;
  width: 90%;
  background-image : linear-gradient(to right, #FF9300, #FF9300 8px, transparent 2px, transparent 8px);  /* 幅2の線を作る */
  background-size: 50px 10px;          /* グラデーションの幅・高さを指定 */
  background-position: left bottom;  /* 背景の開始位置を指定 */
  background-repeat: repeat-x;       /* 横向きにのみ繰り返す */
}
@media screen and (min-width: 1080px) {
  .tensen {
    margin:3em auto;
    height: 10px;
    width: 80%;
    background-image : linear-gradient(to right, #FF9300, #FF9300 10px, transparent 2px, transparent 8px);  /* 幅2の線を作る */
    background-size: 80px 10px;          /* グラデーションの幅・高さを指定 */
    background-position: left bottom;  /* 背景の開始位置を指定 */
    background-repeat: repeat-x;       /* 横向きにのみ繰り返す */
  }}


.copylight{
    font-size: 12px;
    text-align: center;
    margin:8em auto 3em;
}



/*========= 店舗のオープンメニュー ===============*/
#menu-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 9999;
  /*ナビのスタート位置と形状*/
  top: 0px;
  right: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  overflow: scroll;
  transition: all 0.6s;
  /*動き*/
}
/*アクティブクラスがついたら位置を0に*/
#menu-nav.panelactive {
  top: 0px;
  right: 0%;
  width: 100vw;
  height: 100vh;
}
@media screen and (min-width: 1080px) {
  #menu-nav {
    top: 0px;
    width: 60%;
    height: 100vh;
  }
  #menu-nav.panelactive {
    top: 0px;
    right: 0%;
    width: 60%;
    height: 100vh; /*ナビの高さ*/
  }
}



/*========= 店舗のオープンメニュー ===============*/
#menu-nav2 {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 9999;
  /*ナビのスタート位置と形状*/
  top: 0px;
  right: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  overflow: scroll;
  transition: all 0.6s;
  /*動き*/
}
/*アクティブクラスがついたら位置を0に*/
#menu-nav2.panelactive {
  top: 0px;
  right: 0%;
  width: 100vw;
  height: 100vh;
}
@media screen and (min-width: 1080px) {
  #menu-nav2 {
    top: 0px;
    width: 60%;
    height: 100vh;
  }
  #menu-nav2.panelactive {
    top: 0px;
    right: 0%;
    width: 60%;
    height: 100vh; /*ナビの高さ*/
  }
}


/*========= 店舗のオープンメニュー ===============*/
#menu-nav3 {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 9999;
  /*ナビのスタート位置と形状*/
  top: 0px;
  right: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  overflow: scroll;
  transition: all 0.6s;
  /*動き*/
}
/*アクティブクラスがついたら位置を0に*/
#menu-nav3.panelactive {
  top: 0px;
  right: 0%;
  width: 100vw;
  height: 100vh;
}
@media screen and (min-width: 1080px) {
  #menu-nav3 {
    top: 0px;
    width: 60%;
    height: 100vh;
  }
  #menu-nav3.panelactive {
    top: 0px;
    right: 0%;
    width: 60%;
    height: 100vh; /*ナビの高さ*/
  }
}


/*========= 店舗のオープンメニュー ===============*/
#menu-nav4 {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 9999;
  /*ナビのスタート位置と形状*/
  top: 0px;
  right: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  overflow: scroll;
  transition: all 0.6s;
  /*動き*/
}
/*アクティブクラスがついたら位置を0に*/
#menu-nav4.panelactive {
  top: 0px;
  right: 0%;
  width: 100vw;
  height: 100vh;
}
@media screen and (min-width: 1080px) {
  #menu-nav4 {
    top: 0px;
    width: 60%;
    height: 100vh;
  }
  #menu-nav4.panelactive {
    top: 0px;
    right: 0%;
    width: 60%;
    height: 100vh; /*ナビの高さ*/
  }
}






/*===============メニューのcloseボタン===============*/
#menu-close{
  position: fixed;
  bottom:-100px;
  left:calc(50% - 50px/2);
  margin:auto 1em;
  color: #591900;
  background-color: #FEF102;
  width: 50%;
  height: 60px;
  text-align: center;
  border-radius: 50px 0px 0px 50px;
  transition: all 1s;
    z-index:1000;
}
#menu-close.panelactive{
  bottom:1%;
}
@media screen and (min-width: 768px){
  #menu-close{
    position: absolute;
    display: inline-block;
    left:-500px;
    transform:rotate(90deg);
    transform: rotate(1.1);
    width: 160px;
    height: 80px;
    border-radius: 80px 80px 00px 0px;
    line-height: 0px;
    top:30%;
  }
  #menu-close.panelactive{
  position: absolute;
  display: inline-block;
  left:-80px;
  transform:rotate(90deg);
  width: 160px;
  height: 80px;
  border-radius: 80px 80px 00px 0px;
  line-height: 0px;
  top:30%;
}}
/*==============================*/


/*===============メニューのcloseボタン===============*/
#menu-close2{
  position: fixed;
  bottom:-100px;
  left:calc(50% - 50px/2);
  margin:auto 1em;
  color: #591900;
  background-color: #FEF102;
  width: 50%;
  height: 60px;
  text-align: center;
  border-radius: 50px 0px 0px 50px;
  transition: all 1s;
    z-index:1000;
}
#menu-close2.panelactive{
  bottom:1%;
}
@media screen and (min-width: 768px){
  #menu-close2{
    position: absolute;
    display: inline-block;
    left:-500px;
    transform:rotate(90deg);
    transform: rotate(1.1);
    width: 160px;
    height: 80px;
    border-radius: 80px 80px 00px 0px;
    line-height: 0px;
    top:30%;
  }
  #menu-close2.panelactive{
  position: absolute;
  display: inline-block;
  left:-80px;
  transform:rotate(90deg);
  width: 160px;
  height: 80px;
  border-radius: 80px 80px 00px 0px;
  line-height: 0px;
  top:30%;
}}
/*==============================*/


/*===============メニューのcloseボタン===============*/
#menu-close3{
  position: fixed;
  bottom:-100px;
  left:calc(50% - 50px/2);
  margin:auto 1em;
  color: #591900;
  background-color: #FEF102;
  width: 50%;
  height: 60px;
  text-align: center;
  border-radius: 50px 0px 0px 50px;
  transition: all 1s;
    z-index:1000;
}
#menu-close3.panelactive{
  bottom:1%;
}
@media screen and (min-width: 768px){
  #menu-close3{
    position: absolute;
    display: inline-block;
    left:-500px;
    transform:rotate(90deg);
    transform: rotate(1.1);
    width: 160px;
    height: 80px;
    border-radius: 80px 80px 00px 0px;
    line-height: 0px;
    top:30%;
  }
  #menu-close3.panelactive{
  position: absolute;
  display: inline-block;
  left:-80px;
  transform:rotate(90deg);
  width: 160px;
  height: 80px;
  border-radius: 80px 80px 00px 0px;
  line-height: 0px;
  top:30%;
}}
/*==============================*/


/*===============メニューのcloseボタン===============*/
#menu-close4{
  position: fixed;
  bottom:-100px;
  left:calc(50% - 50px/2);
  margin:auto 1em;
  color: #591900;
  background-color: #FEF102;
  width: 50%;
  height: 60px;
  text-align: center;
  border-radius: 50px 0px 0px 50px;
  transition: all 1s;
    z-index:1000;
}
#menu-close4.panelactive{
  bottom:1%;
}
@media screen and (min-width: 768px){
  #menu-close4{
    position: absolute;
    display: inline-block;
    left:-500px;
    transform:rotate(90deg);
    transform: rotate(1.1);
    width: 160px;
    height: 80px;
    border-radius: 80px 80px 00px 0px;
    line-height: 0px;
    top:30%;

  }
  #menu-close4.panelactive{
  position: absolute;
  display: inline-block;
  left:-80px;
  transform:rotate(90deg);
  width: 160px;
  height: 80px;
  border-radius: 80px 80px 00px 0px;
  line-height: 0px;
  top:30%;
}}
/*==============================*/

























.menu_box{
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  background-color: #E60010;
  padding: 1em 0.5em;
  padding-bottom: 5em;
  overflow-x: hidden;
}
@media screen and (min-width: 768px){
  .menu_box{
    padding: 1em 0em 1em 4em;
  }}
::-webkit-scrollbar {
  width: 3px;
  height: 2px;
}
::-webkit-scrollbar-track {
  background: #E60010;
  opacity: 0;
}
::-webkit-scrollbar-thumb {
  background: #FEF102;
}
.menu_map{
  width: 90%;
  max-width: 500px;
  height: auto;
  margin:1em auto;
  border-radius: clamp(20px, 1.5em, 30px);
  aspect-ratio: 16 / 9;
}
.menu_syousaibox{
  margin:1em auto;
  font-weight: 200;
  line-height: 1.5em;
  font-size: 14px;
}
.menu_hp_button{
  font-size: 16px;
  width: 250px;
  background-color: #591900;
  height: auto;
  padding:1em 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 50px;
}
.menu_hp_button:hover{
  color:#591900;
  background-color: #FEF102;
  transform: scale(0.9,0.9);
  transition: 0.3s;
}
.openbtn1{
  position: relative;
}




.menu_grid_list{
  margin: 3em auto ;
  margin-right: 1em;
  width:100%;
}

.more{
text-align: center;
font-size: 0.8rem;
color:#591900;
margin: 0 auto;
}
.stickarrow{
  position: relative;
  top:-12px;
  width: 5rem;
  height: 6px;
  margin:1em auto;
  border-bottom: 1px solid #591900;;
  border-right: 1px solid #591900;;
  transform: skew(45deg);

}
.card:hover .stickarrow{
    width: 7rem;
    transition: 0.5s;
}




.menu_card{
  color:#363636;
  display: grid;
  gap: 1rem 4%;
  grid-template-columns:repeat(auto-fit, minmax(160px, 1fr));
}
@media screen and (min-width: 768px){
  .menu_card{
  gap: 1rem 5% ;
  grid-template-columns:repeat(auto-fit, minmax(170px, 30%));
}}
.card{
  border-radius: .5rem;
  background-color: #F7F7F7;
  overflow: hidden;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, .1);
}
.card_img{
border-radius: 20px;
padding:.5em;
}
.card_title{
  font-size: .5em;
  padding:.5em 1em;
  margin: 1em 0;
  line-height: 1.5em;
}
@media screen and (min-width: 768px){
  .card_title{
    font-size: .6em;
  }}
.menu_gentei{
  display: flex;
    font-size: 8px;
  padding: 0 0.6rem;
  color: #fff;
  
}
.tenpo_gentei, .museum_gentei{
padding: 0.5em 0.8em;
  border-radius: 10px;
  white-space: nowrap;
}
.tenpo_gentei{
  background-color: #5DA8FF;
    margin-right: 5px;
}
.museum_gentei{
  background-color: #FF6641;
}

