@charset "UTF-8";

/*
  copyright: © ISAMI ABE
  lastUpdate: 2025/07/15
  serviceNaem: wakura
*/

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 13px;
}
 
::-webkit-scrollbar-track {
  background: linear-gradient(to top, #ffaa77, #ff7777);
}
 
::-webkit-scrollbar-thumb {
  background: #aaff00;
  border-radius: 3px;
  box-shadow: 1px 1px 2px #555;
}
 
::-webkit-scrollbar-thumb:active {
  background: #ccc000;
  box-shadow: 0px 0px 0px;
}

@font-face {
  font-family: aoyagiFont;
  src: url("../fonts/青柳衡山フォントT.ttf");
}

body {
  margin: 0;
  padding: 0;
}

show {
  display: block;
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
  font-family: aoyagiFont;
}
show > .show_content1,
show > .show_content2 {
  position: absolute;
  top: 10%;
  bottom: 10%;
  writing-mode: vertical-rl;
  text-orientation: upright;
  direction: ltr;
  line-height: 30px;
  font-size: 20px;
}
show > .show_content1 {
  left: 10%;
  text-align: center;
  font-size: 30px;
  color: #F50;
}
show > .show_content2 {
  right: 10%;
  color: #FFF;
  bottom: 25%;
  width: 65%;
  overflow: auto;
}
show > 
show > video,
show > img {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
show > #scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  right: 50%;
  color: #ff0000;
  font-family: sans-serif !important;
  display: flex;
  justify-content: center;
}
show > #scroll > span {
  word-break: keep-all;
}
show > #scroll::before {
  content: "⇅";
  position: absolute;
  bottom: -30px;
  animation: scrollAnime 1s infinite;
}
@keyframes scrollAnime {
  10% {
    transform: translateY(-10px);
    color: #00aaff;
  } 
  50% {
    transform: translateY(10px);
    color: #aa5500;
  }  
  100% {
    transform: translateY(0px);
    color: #ff0000;
  }  
}

loading {
  display: block;
  position: fixed;
  inset: 0;
  background: #fee;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
loading > div {
  padding: 15px;
}
@keyframes loadingAnime {
  0% {
    content: "";
  }
  40% {
    content: ".";
  }
  80% {
    content: "..";
  }
  100% {
    content: "..."
  }
}
loading > div > h3::after {
  content: "";
  animation: loadingAnime infinite 1s;
}
loading > div > p > span {
  color: #fdbf06;
}
loading > div > div {
  color: #ff0000;
  text-align: center;
}

header {
  position: sticky;
  top: 0;
  background: rgb(255,160,100);
  color: #FFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
  z-index: 10;
  padding: 0 20px 0;
}
header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
header > h1 {
  font-family: aoyagiFont;
  color: #CB1B45;
}
nav > ul {
  display: flex;
}
nav > ul > li {
  list-style: none;
  margin: 10px;
}
nav > ul > li > a {
  text-decoration: none;
  color: #ff5000;
  transition: all 0.5s;
  position: relative;
}
nav > ul > li > a:hover {
  color: #ffff00;
}
nav > ul > li > a::before,
nav > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  height: 2px;
  width: 0;
  transition: all 0.3s;
  z-index: -1;
} 
nav > ul > li > a::before {
  background: rgba(255,0,0,0.3);
  left: 0;
}
nav > ul > li > a::after {
  background: rgba(0,0,255,0.3);
  right: 0;
}
nav > ul > li > a:hover::before,
nav > ul > li > a:hover::after {
  width: 50%;
}
main {
  position: relative;
}
main > .main_wrap {
  padding: 20px;
  min-height: 100vh;
  background: linear-gradient(45deg, rgba(255, 168, 168,0.2), rgba(255, 250, 170,0.2));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
main > .bg {
  position: absolute;
  inset: 0;
  display: block;
  z-index: -1;
}
main > .bg > div {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
}
main > .bg > div > img {
  width: 100%;
  height: 100%;
}

footer {
  background: #222;
  padding: 20px;
  color: #FFf;
}
footer > div {
  text-align: center;
}
footer p {
  font-family: aoyagiFont;
}
footer a {
  color: #00ff00;
  transition: all 0.5s;
}
footer a:hover {
  color: #00aaff;
}

footer ul,
footer li {
  margin: 0;
  padding: 5px;
}
footer li {
  list-style: none;
}

a.zoom_img {
  display: block;
  text-decoration: none;
  color: unset;
}
a.zoom_img > img {
  cursor: zoom-in;
}

.keikentoazi {
  display: flex;
  justify-content: center;
  font-family: aoyagiFont;
}
.keikentoazi > div {
  width: 90%;
  height: auto;
  background: rgb(255,255,247);
  color: #000;
  box-shadow: -2px 2px 5px #555;
  padding: 20px;
  line-height: 25px;
  word-break: break-all;
}

.foods {
  display: block;
  padding: 10px;
}
.foods > div {
  display: flex;
  justify-content: flex-start;
}
.foods > div:nth-child(even) {
  justify-content: flex-end;
}
.foods > div > div {
  width: 65%;
  min-height: 40vh;
  margin: 10px 0 10px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #eeffee;
}
.foods > div > div > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.foods > div > div > p {
  position: absolute;
  bottom: 10px;
  right: 20px;
  margin-left: 20px;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 15px;
  border-radius: 3px;
  font-family: aoyagiFont;
}

.info {
  position: fixed;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
}

.shop_flont {
  overflow: hidden;
  border-radius: 10px;
  width: 65%;
}
.shop_flont > div {
  position: relative;
  width: 100%;
  height: 100%;
  background: #eeffee;
}
.shop_flont > div > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shop_flont > div > p {
  display: inline-block;
  position: absolute;
  bottom: 5%;
  left: 5%;
  margin-right: 5%;
  margin-right: 10px;
  color: #FFF;
  padding: 15px;
  margin: 0;
  background: rgba(0,0,0,0.5);
  border-radius: 5px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-family: aoyagiFont;
}

main h2 {
  color: #00aaff;
  position: relative;
  padding: 15px;
}
main h2::before {
  content: "";
  background: #000;
  position: absolute;
  border-radius: 2px 10px 2px 10px;
  inset: 0;
  z-index: -1;
}
main section {
  padding-top: 80px;
}

table th,
table td {
  padding: 10px;
  text-align: center;
}
table th {
  background-color: rgba(255,150,0,0.5);
  color: #FFF;
}
table td {
  background-color: rgba(0,150,255,0.3);
  font-family: aoyagiFont;
}

.price {
  padding: 15px;
}
.price .flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25vw, 1fr));
}
.price > .flex > article {
  border-radius: 10px;
  overflow: hidden;
  background: #ffaa00;
  position: relative;
  height: 400px;
  margin: 10px;
}
.price > .flex > article > a {
  display: block;
  width: 100%;
  height: 70%;
}
.price > .flex > article > a > img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.price > .flex > article > div {
  padding: 15px;
  width: 100%;
  height: 30%;
  overflow-y: auto;
  color: #FFF;
}

.map {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.map div {
  width: 100%;
  height: auto;
}
.map iframe {
  border-width: 0;
  border: 1px solid #000;
  border-radius: 3px;
  width: 100%;
  height: 500px;
}
.map small a {
  background: #00aaff;
  text-decoration: none;
  box-shadow: 1px 1px 3px #555;
  color: #FFF;
  padding: 5px;
  border-radius: 3px;
  transition: all 0.4s;
  display: inline-block;
  margin: 5px;
}
.map small a:hover {
  background: #ffaa00;
  box-shadow: 0px 0px 0px;
}

#hamCheck {
  display: none;
}

@media only screen and (max-width: 600px) {
  nav > ul > li > a::before,
  nav > ul > li > a::after {
    content: unset;
    position: unset;
    bottom: unset;
    height: unset;
    width: unset;
    transition: unset;
    z-index: unset;
  } 
  nav > ul > li > a::before {
    background: unset;
    left: unset;
  }
  nav > ul > li > a::after {
    background: unset;
    right: unset;
  }
  nav > ul > li > a:hover::before,
  nav > ul > li > a:hover::after {
    width: unset;
  }

  .hamNav {
    position: fixed;
    inset: 0;
    top: 150%;
    background: rgba(255, 150, 150, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  nav {
    width: 80%;
  }
  nav > ul {
    display: block;
    padding: 0;
    margin: 0;
  }
  nav > ul > li {
    margin: 10px;
  }
  nav > ul > li > a {
    display: block;
    width: 100%;
    padding: 20px;
    background: rgba(255,0,0,0.2);
    color: #ff0000;
    border-radius: 3px;
    position: relative;
  }
  nav > ul > li > a:hover {
    color: #00aaff;
  }
  nav > ul > li > a::before {
    content: ">";
    position: absolute;
    transition: all 0.1s;
    right: 30px;
  }
  nav > ul > li > a:hover::before {
    color: #00ff00;
    position: absolute;
    right: 20px;
  }
  .hamBtn {
    position: fixed;
    top: 15px;
    right: 15px;
    display: flex;
    height: 45px;
    width: 45px;
    justify-content: center;
    align-items: center;
    z-index: 20;
    background-color: #ffaa00;
    box-shadow: 1px 1px 3px #555;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
  }
  .hamBtn:active {
    box-shadow: 0px 0px 0px;
  }
  @keyframes menubtnAnime {
    0% {
      transform: translate(20px);
    }
    50% {
      transform: scale(1.5);
    }
    100% {
      transform: rotate(-180deg);
    }
  }
  .hamBtn span,
  .hamBtn span:before,
  .hamBtn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 20px;
    border-radius: 3px;
    background-color: #F50;
    position: absolute;
    transition: all 0.7s;
  }
  .hamBtn span:before {
    bottom: 8px;
  }
  .hamBtn span:after {
    top: 8px;
  }
  #hamCheck:checked ~ .hamBtn span {
    background-color: rgba(255, 255, 255, 0);
    animation: menubtnAnime 1.5s;
  }
  #hamCheck:checked ~ .hamBtn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #hamCheck:checked ~ .hamBtn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  @keyframes hamNavAnime {
    0% {
      transform: translateY(0px);
    }
    30% {
      transform: translateY(200px);
    }
    50% {
      transform: translateY(-200px);
    }
    70% {
      transform: translate(0px) rotate(-360deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  #hamCheck:checked ~ .hamNav {
    top: 0;
    animation: hamNavAnime 1.5s;
  }
  show > .show_content1,
  show > .show_content2 {
    position: absolute;
    top: unset;
    bottom: unset;
    writing-mode: unset;
    text-orientation: upright;
    direction: ltr;
    line-height: 30px;
    font-size: 15px;
    overflow: auto;
    left: 8%;
    right: 8%;
  }
  show > .show_content1 {
    top: 5%;
    text-align: center;
    font-size: 27px;
    color: #F50;
  }
  show > .show_content2 {
    bottom: 25%;
    color: #FFF;
    height: 50%;
    width: auto;
  }
  .foods > div {
    display: block;
  }
  .foods > div > div {
    width: 100%;
  }
  .shop_flont {
    width: 100%;
  }
  .price > .flex {
    display: block;
  }
}
@media only screen and (max-width: 400px) {
  show > .show_content1 {
    font-size: 18px;
  }
}