@keyframes sample01 {  /*←animation-nameにも同じ名前を記述*/
  0% {
    opacity: 0;
    /* filter: grayscale(100%); */
  }
  
   100% {
    opacity: 1;
    /* filter: grayscale(0%); */
    
  } 
  }
@keyframes sample02 {  /*←animation-nameにも同じ名前を記述*/
  0% {
      opacity: 1;
      /* filter: grayscale(0%); */
      
  }
  
      100% {
      opacity: 0;
      /* filter: grayscale(100%); */
  } 
  } 
  img {
    max-width: 300px;
}

body.gallery input {
    display: none;
}
main {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
main::before {
  content: '';
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -10px;
  right: -10px;
  background: url(../images/食堂コンセプト1.jpg) no-repeat center/cover;
  filter: blur(10px);
  z-index: -1;
}
header h1 > ul {
  display: flex;
  background-color: #000;
  align-items: center;
  justify-content: center;
}
header h1 {
  text-align: center;
  background-color: #000;
  font-family: serif;
  color: #fff;
  font-size: 45px;
  font-weight: 500;
}
.nav > ul {
    font-size:0;
    display: flex;
    
}
.nav ul li {
    display: inline-block; 
    /* width: 20%; */
    flex: 1;
    font-size:16px;
    border:solid 1px;
    box-sizing: border-box;
    position: relative;
    background-color: red;
    }

.nav ul li a , span.spanMenu, .nav ul li >span {
    color: white;
    text-decoration: none; 
    display: block;
    padding: 5px 0;
}

.nav ul li a:hover, li.active_sp a{
  color: orange;
    background: #EEEEEE;
  font-weight: bold;
}
.nav li ul {
  position: absolute;
    z-index: 9999;
    width: 100%;
}
.nav li ul li {
  display: inline-block;
    width: 100%;  
    
}
.nav li ul li a {
  padding: 5px 0;
  background: rgb(255, 0, 0);
  
}
.nav li ul li{
  overflow: hidden;
  height: 0; 
  opacity: 0;
  transition: .2s;
}
.nav li:hover ul li,li.active_sp ul li{
  overflow: visible;
  height: 26px;
  height:max-content;
  opacity: 100;
}

/* .nav > ul >li >ul{
  position: relative;
  bottom: 100%;
} */
body  main {
    text-align: center;
    color: #000;
    text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
    font-weight: 700;
    font-size: 28px;
}
video {
  text-shadow: none;
}
body section h2 {
  font-size: 25px;
  margin-bottom: 25px;
  margin-top: 35px;
}
body section h2.main {
  font-size: 50px;
  letter-spacing: .2em;
}
.horusetsu > span{
  display: inline-block;
  font-size: 32px;
  margin-bottom: 20px;
}
body section h2 span {
  color: red;
}
.cp_menu {
	max-width: 360px;
	margin: 0 auto;
	padding: 0;
}
.cp_menu a {
	display: block;
	padding: 10px;
	text-decoration: none;
	color: #ffffff;
	line-height: 1;
}
.cp_menu label, .cp_menu > div >a{
	display: block;
	position: relative;
	margin: 0 0 2px 0;
	padding: 12px;
	line-height: 1;
	color: #ffffff;
	background: rgb(163, 2, 2);
	cursor: pointer;
}
.cp_menu > div {
  background-color: white;
}
.cp_menu label::before {
	position: absolute;
	content: '▼';
	color: white;
	right: 0.5em;
	top: 25%;
}
.cp_menu input {
	display: none;
}
.cp_menu ul {
	margin: 0;
	padding: 0;
	background: black;
	list-style: none;
}
.cp_menu li {
	overflow-y: hidden;
	max-height: 0;
	transition: all 0.5s;
}
/*リストが増えたらULごとに追加してください*/
#cp_menu_bar1:checked ~ #link1 li,
#cp_menu_bar2:checked ~ #link2 li,
#cp_menu_bar3:checked ~ #link3 li,
#cp_menu_bar4:checked ~ #link4 li,
#cp_menu_bar5:checked ~ #link5 li {  
max-height: 46px;
opacity: 1;
}
/* メニューを画面上部に固定表示しています */
.gMenu {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  
}
/* メニューアイコンを画面右上に固定しています */
.gMenu .menu-icon {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 12px;
  padding-top: 5px;
  height: 12px;
  display: none;
}
  .menu-icon2 {
  cursor: pointer;
  position: absolute;
  right: 5vw;
  top: -0.1vw;
  padding-top: 5px;
  height: 12px;
}
.menu-icon2 .navicon {
  background: #ffc107; /* 色は自由に変更可能です */
  display: block;
  height: 2px; /* 太さ */
  width: 6vw; /* 長さ */
  position: relative;
  transition: background .4s ease-out; /* 形が変わる時のアニメーション */
}
.menu-icon2 .navicon::before,
.menu-icon2 .navicon::after {
  background: #ffc107; /* 色は自由に変更可能です */
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .4s ease-out; /* 形が変わる時のアニメーション */
  width: 100%;
}
.menu-icon2 .navicon::before {top: 2vw;} /* 位置を上にずらしています */
.menu-icon2 .navicon::after {top: -2vw;} /* 位置を下にずらしています */

/* メニューアイコン（三本線）の真ん中の線です */
.gMenu .menu-icon .navicon {
  background: #ffc107; /* 色は自由に変更可能です */
  display: block;
  height: 2px; /* 太さ */
  width: 31px; /* 長さ */
  position: relative;
  transition: background .4s ease-out; /* 形が変わる時のアニメーション */
}
/* メニューアイコン（三本線）の上と下の線を疑似要素で追加 */
.gMenu .menu-icon .navicon::before,
.gMenu .menu-icon .navicon::after {
  background: #ffc107; /* 色は自由に変更可能です */
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .4s ease-out; /* 形が変わる時のアニメーション */
  width: 100%;
}
.gMenu .menu-icon .navicon::before {top: 10px;} /* 位置を上にずらしています */
.gMenu .menu-icon .navicon::after {top: -10px;} /* 位置を下にずらしています */
/* 表示されるメニューです */
.gMenu .menu {
  background-color: rgba(255,255,255,0.9);
  overflow: hidden;
  height: 0; /* ★最初は高さを0にして非表示状態に */
  transition: height .6s; /* 表示されるときのアニメーション */
  text-align: center;
}
/* メニュー部分のデザインです */
/* .gMenu .menu li:first-of-type {
  padding-top: 50px;
} */
.gMenu .menu li a {
  display: block;
  padding: 24px 20px;
  text-decoration: none;
  text-transform: uppercase;
}
.gMenu .menu li a:hover {
  background-color: #f4f4f4;
}
/* チェックボックスは常に非表示です */
.gMenu .menu-btn {
  display: none;
}
.gMenu .menu {
  background-color: #0a0a0aab;
}
/* ▼▼▼以下はチェックボックスがONの時の状態です▼▼▼ */
.gMenu .menu-btn:checked ~ .menu {
  height: 100vh; /* ★チェックボックスがオンの時高さを338pxにして表示させます */
  transition: height .6s;
  
  overflow-y: scroll;
}
/* メニューボタンの中央の線を非表示に */
.gMenu .menu-btn:checked ~ .menu-icon .navicon {background: transparent;}
.gMenu .menu-btn:checked ~ .menu-icon .navicon::before{background-color: white;}
.gMenu .menu-btn:checked ~ .menu-icon .navicon::after{background-color: white;}
.gMenu .menu-btn:checked ~ .menu-icon {
	left: 6px;
  right: initial;
	z-index: 999;
  display: block;
}

/* メニューボタンの上下の線を45度傾けて✕印を作ります */
.gMenu .menu-btn:checked ~ .menu-icon .navicon::before {transform: rotate(-45deg);top: 0;}
.gMenu .menu-btn:checked ~ .menu-icon .navicon::after {transform: rotate(45deg);top: 0;}

.cache ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.cache ul li {
  flex-basis: 34%;
}
.cache img {
  max-width: 100%;
  border: 2px solid #35363b;
  background: white;
}

#merpay {
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  background: white;
}
section {
    background-color: transparent;
    width: 600px;
    margin: 0 auto 50px;
    
}
.gyoza section {
  font-size: 21px;
}
.gyoza section ul li{
  text-align: left;
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
}
.gyoza section > div {
  margin-top:25px;
  text-align: left;
  padding-left: 100px;
}
.gyoza main img {
  margin-top: 10vh;
  margin-bottom: 20px;
  width: 100%;
}
.map h2 {
    background-color: rgb(170, 248, 146);
    padding: 20px auto;
    margin-bottom: 0px;
}
.design01 {
  margin: 50px auto 0px;
  width: 85%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
 }
 .design01 th {
  padding: 10px;
  background: #778ca3;
  border: solid 1px #666666;
  color: black;
  width: 310px;
  text-align: center;
 }
 .design01 td {
  
  border: solid 1px #666666;
  background-color: beige;
  /* width: 310px; */
  font-size: 25px;
  vertical-align: middle;
  /* padding-top: 10px; */
  
 }
 .design01 td:first-child{
  width: 10%;
 }
 .design01 .doumov{
  border-top: 1px dotted #9ca3af;
 }

 .design01 img {
  max-width: 300px;
 }
 main > a img {
  max-width: 7.5vh;
  position: fixed;
  bottom: 10vh;
  right: 0vh;
  z-index: 100;
 }
 section.meat {
  height: 60vh;
  width: 100%;
  position: relative;
 }
 section.meat img {
  width: 100%;
  height: 60vh;
  display: block;
  object-fit: cover;
  object-position: center 70%;
  max-width: initial;
 }
 section.meat p {
  background-color: #181717ef;
  width: 50vh;
  height: 40vh;
  vertical-align: middle;
  position: absolute;
  bottom: 0;
 }
 section p.irekae{
  margin-top: 10px;
  font-size: 30px;
  line-height: 40px;
}
.redbold {
  color: red;
  font-size: 22px;
  font-weight: bold;
}
section p.irekae span.underred{
  text-decoration:underline;
  text-decoration-color: red;
}
 section.meat p span {
  display: inline-block;
  font-family: serif;
  color: white;
  text-shadow: none;
  background: linear-gradient(90deg, #a38131 0%, #e7c76d 33%, #ffe6c5 62%, #e3c05d 83%, #9d874e 100%);
  background: -webkit-linear-gradient(0deg, #a38131 0%, #e7c76d 33%, #ffe6c5 62%, #e3c05d 83%, #9d874e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
  padding: 13vh 0 10vh;
  
  
 }
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer a {
  color: #9ca3af;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

footer .flex {
  display: flex;
}

footer hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #35363b;
}

.footer {
  padding: 2rem;
  font-size: 22px;
  color: white;
  background: #F03F23;
}
.md-flex {
  font-size: 25px;
}

.footer__navi {
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer__navi li {
  display: inline-block;
}

.footer__navi li:not(:last-child) {
  margin-right: 16px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}
/*モーダルを開くボタン*/
.modal-open{
	
	font-weight: bold;
	color: black;
	font-size: 15px;
	margin: auto;
	cursor: pointer;
	display: inline-block;
  padding: 5px 10px 5px;
  background: url(../images/btn053_10.png);
  background-size: cover;
}

.modal-open:hover {
  color: red;
}
.modal-open:hover:after {
  color: red;
  text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
}
.modal-open:after{
  font-family: "Font Awesome 5 Free";
  content: '\f061';
  padding-left: 5px;
  font-weight: 900;
  color: white;
  text-shadow: initial;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.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;
}
/*モーダル枠の指定*/
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	/* max-width: 500px; */
	width: 50%;
}
/*モーダルを閉じるボタンの指定*/
.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: transparent;
	text-align: left;
	padding: 0px;
}
.modal-content video {
  width: 100%;
}
body.recipe main  section {
  width: 1000px;
}
.horumon img:nth-child(2) {
  max-width: 100%;
  /* margin-bottom: 20px; */
}
body.recipe .thumbnail img {
  height: 188px;
}

body.recipe .thumbnail .thumbnail-img {
  aspect-ratio: 960/540;
}
body.recipe .thumbnail .imTrim img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
body.recipe .thumbnail .imTrim img.movup {
  object-position: center 0;
}
body.recipe .thumbnail .imTrim img.movdown {
  object-position: center bottom;
}
.main-slider {
  margin-bottom: 0;
}
.slick-track {
  display: flex;
  align-items: center;
}

.main-slider video {
  /* height: 100vh; */
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}
.thumbnail-img {
  opacity: .3;
  transition: opacity .3s linear;
}
.thumbnail .slick-current {
  opacity: 1;
}
.camcontain {
  width: initial;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.camcontain ul {
  display: grid;
  grid-template-rows: 620px 60px 60px;
  grid-template-columns: 50% 50%;
  margin-bottom: 20px;
}
.camcontain ul li:first-child {
  grid-row: 1/2;
  grid-column: 1/3;
}
/* .camcontain ul li:nth-child(2) {
  grid-row: 1/2;
  grid-column: 2/3;
} */
.camcontain ul li:nth-child(2) {
  grid-row: 2/3;
  grid-column: 1/3;
}
.camcontain ul li:nth-child(3) {
  grid-row: 3/4;
  grid-column: 1/3;
}

.camcontain li {
  text-shadow: initial;
  background-color: rgba(255,255,255, 0.8);
  font-family: serif;
  /* opacity: 0.8; */
}
.camcontain .opacity {
  background-color: initial;
}
.camcontain img {
  max-height: 100%;
  max-width: 100%;
  /* object-fit: cover; */
  opacity: 1;
}

.camcontain h3 {
  font-size: 25px;
  color: #F03F23;
}
.camcontain p {
  font-size: 20px;
  font-weight: 500;
}
.onlySP {
  display: none;
}
.horumon section {
  width: initial;
  max-width: 1800px;
  padding: 0 60px;
}
.horumon section > img{
  width: initial;
  max-width: 900px;
  margin-bottom: 10px;
}
.horumon section > img.muji{
  width: 100%;
  max-width: 900px;
  margin-bottom: 10px;
}
.horumon p{
  font-size: 20px;
  margin-bottom: 15px;
  font-size: clamp(0px, 3.8vw, 18px);

}

.horumon section ul div {
  /* background-color: rgb(240, 227, 210); */
  background:
    linear-gradient(
      90deg,
      rgba(208, 147, 82, 0.6),
      rgba(192, 134, 70, 0.6) 60%,
      rgba(208, 147, 82, 0.6)
    ),
    repeating-radial-gradient(
      ellipse at 60% 500%,
      #c08646,
      #c08646 0.2%,
      #d09352 0.6%,
      #d09352 1%
    );
  border-radius: 10px;
}
.horumon section ul {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  height: 5vw;
  /* flex-wrap: wrap; */
  /* margin-bottom: 15px; */
}
.horumon section ul:nth-of-type(2){
  justify-content: space-around;
}
.horumon section ul > li {
  /* max-width:max-content; */
  /* flex-basis: 33%; */
  width: 33%;
}
.horumon main ul li img {
  width: 100%;
  height: initial;
  height: 11.4vw;
  object-fit: cover;
  object-position: center 100%;
  border-radius: 10px;
  margin-bottom: 0px;
}
.horumon h3 {
  font-size: 27px;
  margin-bottom: 10px;
  font-family: 'Shippori Mincho', serif;
  text-shadow: 1px 1px 3px;
}
.horumon #text-slider p {
  padding: 20px;
}
body.gallery p.tengai {
  margin: 0 auto;
  padding-top: 68%;
  width: 70%;
  position: relative;
  text-align: center;
}

p.tengai img {
  max-height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center bottom;
  /* display: inline-block; */
  max-width: initial;
}
img.night {
  opacity: 0;
}
p.tengai img.morning {
  z-index: 1;
}
label.morning img {
  filter: grayscale(0);
  transition-property: filter;
  transition-duration: 300ms;
  transition-timing-function: ease-in;
  transition-delay: 0ms;
}


label.night img {
  filter: grayscale(1);
  transition-property: filter;
  transition-duration: 300ms;
  transition-timing-function: ease-in;
  transition-delay: 0ms;
}
body.gallery label img {
  width: 100px;
}
#night:checked ~ label.morning img{
  filter: grayscale(1);
}
#night:checked ~ label.night img{
  filter: grayscale(0);
}
#morning ~ p {
  font-size: 20px;
}
#night:checked ~ p img.morning {
  animation-name: sample02;
  animation-duration: 1s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-fill-mode:forwards;
}
#night:checked ~ p img.night {
  animation-name: sample01;
  animation-duration: 1s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-fill-mode:forwards;
}
#morning:checked ~ p img.morning {
  animation-name: sample01;
  animation-duration: 1s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-fill-mode:forwards;
}
#morning:checked ~ p img.night {
  animation-name: sample02;
  animation-duration: 1s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-fill-mode:forwards;
}

.rgbaWrap {
  padding-top: 40px;
  background: rgba(255, 255, 255, 0.85);
  margin: 10px auto 0;
  width: 80vw;
   /*コレ*/margin-left: calc(50% - 80vw/2);
}
.rgbaWrap p {
  text-shadow: initial;
  font-size: 22px;
  margin-bottom: 30px;
}
.rgbaWrap p:last-of-type{
  padding-bottom: 30px;
  margin-bottom: 0;
}
body section h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
.gallery .rgbaWrap img, .access .rgbaWrap iframe, .gallery .rgbaWrap img, .access .rgbaWrap img{
  width: 100%;
  max-width: initial;
  margin-bottom: 10px;
}
.access .rgbaWrap iframe, .access .rgbaWrap img{
 max-width: 800px; 
}
@media screen and (max-width: 640px) {
  body main {
    font-size: initial;
    margin-top: 0px;
  }

  
  body section h2 {
    font-size: 25px;
    margin-bottom: 25px;
    margin-top: 35px;
  }
  body section h2.main {
    font-size: 25px;
    margin-bottom: 25px;
    margin-top: 35px;
  }
  body section h3 {
    font-size: 23px;
  }
  .tenmei {
    display: inline-block;
    font-size: 8vw;
    vertical-align: 2vw;
  }
  header h1 > ul {
    display: inline-block;
  }
  header h1 {
    display: inline-block;
    text-align: initial;
  }
  .rgbaWrap {
    width: 93vw;
    margin: 10px auto 0;
  }
  .horusetsu > span{
    display: inline-block;
    font-size: 25px;
    margin-bottom: 20px;
  }
  .md-flex {
    display: flex;
  }

  .md-justify-between {
    justify-content: space-between;
  }

  .copyright {
    text-align: left;
  }
  section {
    width: 100%;
  }
  section.meat p {
    width: 100vh;
    height: 20vh;
   }
  section.meat p span {
    padding: 0;
    width: 100%;
    left: 0;
   }
   .design01{
    width: 95%;
   }
   .design01 th {
    padding: 10px;
    background: #778ca3;
    border: solid 1px #666666;
    color: black;
    width: 50%;
    text-align: center;
   }
   .design01 td {
    
    border: solid 1px #666666;
    background-color: beige;
    width: 50%;
    font-size: 17px;
    vertical-align: middle;
    /* height: calc((95vw/2)*(665/1021)); */
   }
   .design01 .wrapperbox{
    height: calc((95vw/2)*(1480/1515));
    overflow: scroll;
    vertical-align: middle;
   }
   
   
   .design01 img {
    width: 100%;
   }
   header {
    position: fixed;/*ヘッダー固定*/
    top: 0;
    left: 0;
    width:100%;
    transition: .3s;
    z-index: 1;
  }
  header > div {
    padding: 10px 0;
    background-color: #000;
    position: relative;
    text-align: center;
  }
  .menuWrapper {
    display: inline-block;
    position: relative;
    width: 6vw;
    height: 6vw;
    left: -10vw;
  }
   header h1 > ul {
    width: 18%;
    flex-wrap: wrap;
    vertical-align: baseline;
  }
  header h1 img {
    max-width: 100%;
  }
  header h1 li.banner {
    flex-basis: 70%;
  }
  header h1 li.icon {
    flex-basis: 30%;
  }
  section.meat p {
    background-color: #181717ef;
    width: 100%;
    height: auto;
    vertical-align: middle;
    position: absolute;
    bottom: 0;
   }
   .gyoza section > div {
    margin-top:25px;
    text-align: center;
    padding-left: 0px;
  }
  .modal-body{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    /* max-width: 500px; */
    width: 100%;
  }
  .modal-container:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 30%;
  }
  body.recipe main  section{
  
    width: 100%;
  }

  body.recipe .thumbnail img {
    width: 100%;
    height: auto;
  }
  
  body.recipe .thumbnail {
    width: 80vw;
    height: auto;
    margin: 0 auto;
  }
  .camcontain {
    width: initial;
    max-width: 1280px;
    padding: initial;
  }
  .camcontain ul {
    display: flex;
    flex-direction: column;
    grid-template-rows: 620px 60px 60px;
    grid-template-columns: 100%;
    margin-bottom: 20px;
  }
  .camcontain img {
    max-height: 100%;
    max-width: 100%;
    /* object-fit: cover; */
  }
  .camcontain li:nth-child(2n) {
    text-shadow: initial;
    
    font-family: serif;
    margin-bottom: 10px;
  }
  .horumon section {
    padding: 0px;
  }
  .horumon main ul {
    flex-direction: column;
    height: auto;
    
  }
  .horumon main #onlySP li {
    height: 50vw;
    flex-basis: 100%;
    width: 100%;
    margin-bottom: 10px;
  }
  .horumon main #onlySP p {
    margin-bottom: 5px;
  }
  .horumon main #onlySP img {
    height: 37vw;
  }
  .footer {
    
    font-size: 15px;
    
  }
  .rgbaWrap p {
    font-size: 18px;
  }
  .rgbaWrap {
    
    width: 100vw;
     /*コレ*/margin-left: calc(50% - 100vw/2);
     padding: 10px 20px 20px;
  }
  .rgbaWrap p {
    text-shadow: initial;
    font-size: 22px;
  }
  .modal-close {
    right: 0vw;
  }
  
  .nav li ul {
    display: none;
  }
  .nav li ul li{
    overflow: visible;
    height: max-content; 
    opacity: 100;
    transition: initial;
  }
  .nav li:hover ul li,li.active_sp ul li{
    overflow: visible;
    height:max-content;
    opacity: 100;
  }

   .noSP, .noSP * {
    display: none;
   }
   .onlySP {
    display: block;
   }
   
}
@media screen and (max-width: 305px) {
  .design01 .modal-open {
    font-size: 4vw;
  }
}