@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
img {
  width: 100%;
  vertical-align: bottom;
}
html {
  font-size: 62.5%;
}
body {
  width: 100vw;
  background: #2b4183;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic",
    游ゴシック, YuGothic, 游ゴシック体, Meiryo, メイリオ, sans-serif;
  font-size: 1.6rem;
  overflow-x: hidden;
}
/*header*/
.hero {
  width: 100%;
  display: flex;
  margin-bottom: 50px;
}
h1 .hero-img {
  position: relative;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.hero :nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
}
.hero :nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 0;
}
.logo {
  width: 30%;
  height: 30%;
  object-fit: cover;
  border-radius: 46% 73% 78% 37% / 28% 31% 33% 42%;
  z-index: 100;
}
@media screen and (min-width: 767px){
  .hero .logo {
    width: 10%;
    height: 20%;
    position: fixed;
    top: 5vh;
    left: 2vw;
  }
  h1 .hero-img {
    position: relative;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }
}
/* nav */
/* ハンバーガーボックス */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  cursor: pointer;
  z-index: 100;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #dad8d8f1;
  margin: 5px 0;
  transition: 0.4s;
}

/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media screen and (min-width: 767px) {
  .hamburger {
    display: none;
  }
}
/* ハンバーガーボックスの中身 */
.sp-nav {
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
  background: #223670;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  ul {
    list-style: none;
    li {
      transform: translate(-50%, -50%);
      margin: 20px;
      a {
        display: block;
        color: #d0a900;
        font-weight: bold;
        font-size: 30px;
        transition: all 0.3s ease 0s;
        text-decoration: none;
      }
      a:hover {
        cursor: pointer;
        transform: scale(1.2);
      }
    }
  }
}
.sp-nav.active {
  opacity: 1;
  pointer-events: all;
}
.pc-nav ul{
  display: flex;
  list-style: none;
  gap: 20px;
  display: none;
}
@media screen and (min-width:767px){
  .pc-nav ul{
      display: flex;
      z-index: 100;
      position: fixed;
      top: 5vh;
      right: 2vw;

      li{
        background: #fff;
        padding: 5px 30px;
        border-radius: 46% 73% 78% 37% / 28% 31% 33% 42%;
        border: #aaa 1px solid;
      }
      a{
        color: #000;
        font-weight: bold;
        font-size: 20px;
      } 
     }
}

/* main */
main {
  position: relative;
}
.nedan-box1,.nedan-box2{
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  font-weight: bold;
}
.nedan{
  font-weight: normal;
}
h3{
  display: block;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px dotted #000;
  padding: 0 20px;
}
@media screen and (min-width:767px){
  .nedan-box2{
    flex-direction: row;
    justify-content: space-between;
    padding: 0 7vw;
  }
}
/* news */
.news-box1 {
  width: 90vw;
  flex-direction: column;
  padding: 10px;
  border-radius: 3px;
  margin: 15px auto;
  box-shadow: 0 0 10px gray;
  background: #223670;
  text-align: center;
  color: #fff;
}
.news-box1 img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.news-box1 a dd {
  margin: 0 auto;
  color: white;
}
.flex-box1{
  display: flex;
  flex-direction: column;
}
.flex-box1 a {
  display: block;
}
@media screen and (min-width: 767px) {
  .news-box1 {
    width: 30vw;
    flex-direction: column;
    padding: 10px;
    border-radius: 3px;
    margin: 15px auto;
    box-shadow: 0 0 10px gray;
    background: #223670;
    text-align: center;
    color: #fff;
  }
  .flex-box1 {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
}

/* 文字の影 */
.theme1 {
  width: fit-content;
  display: flex;
  flex-direction: column;
  margin: 200px auto 50px;
  position: relative;
  font-size: 30px;
  color: #fff;
}
.shadow1 h2 {
  position: absolute;
  top: 3px;
  left: 5px;
  z-index: -1;
  color: #d0a900;
}

/* menu */

.flex-box2 h2 {
  color: #fff;
  margin: 0 auto;
}
.menu {
  margin: 0 10px;
}
/* drink */

.theme2 {
  width: fit-content;
  display: flex;
  flex-direction: column;
  margin: 200px auto 50px;
  position: relative;
  font-size: 30px;
}
.shadow2 h2 {
  position: absolute;
  top: 3px;
  left: 5px;
  z-index: -1;
  color: #d0a900;
}

.drink-box img {
  border-radius: 63% 30% 78% 50% / 28% 50% 44% 40%;
  margin-bottom: 50px;
}
.menu-box1 {
  border: 2px #fff solid;
  padding: 20px 50px;
  margin-bottom: 50px;
  background: #fff;
  border-radius: 30% 30% 30% 37% / 50% 40% 60% 42%;
}
.menu-box1 li,
.menu-box1 h3 {
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 767px) {
  .flex-box2{
    width: 100%;
  }
 .drink-box img {
    width: 40vw;
    margin-bottom: 0;
    margin-right: 10px;
  }
  .pc-flex1 {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }
  .drink-box{
    display: flex;
  } 
  .pc-flex2{
    display: flex;
    flex-direction: column;
    width: 55vw;
  }
}
/* food */
.theme3 {
  width: fit-content;
  display: flex;
  flex-direction: column;
  margin: 200px auto 50px;
  position: relative;
  font-size: 30px;
}
.shadow3 h2 {
  position: absolute;
  top: 3px;
  left: 5px;
  z-index: -1;
  color: #d0a900;
}
.food-box h2 {
  margin: 0 auto;
}
.food-box img {
  border-radius: 63% 63% 78% 37% / 28% 34% 44% 42%;
  margin-bottom: 50px;
}
.menu-box2 {
  border: 2px #fff solid;
  padding: 20px 50px;
  margin-bottom: 50px;
  background: #fff;
  border-radius: 30% 30% 30% 37% / 50% 40% 60% 42%;
}
.menu-box2 li,
.menu-box2 h3 {
  text-align: center;
}
.menu-box2 ul li:nth-child(3) {
  display: flex;
  justify-content: center;
}
.buruburu {
  font-size: 1.2rem;
  -webkit-animation: buruburu 0.1s infinite linear alternate;
  animation: buruburu 0.1s infinite linear alternate;
}

@-webkit-keyframes buruburu {
  0% {
    -webkit-transform: translate(0, 0) rotate(-3deg);
  }
  50% {
    -webkit-transform: translate(0, -1px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(3deg);
  }
}

@keyframes buruburu {
  0% {
    transform: translate(0, 0) rotate(-3deg);
  }
  50% {
    transform: translate(0, -1px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(3deg);
  }
}
@media screen and (min-width: 767px) {
  .food-box{
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .food-box img {
    width: 35vw;
    margin-bottom: 0;
    margin-right: 30px;
  }
  .pc-flex3{
    display: flex;
    flex-direction: column;
    width: 30vw;

  }
  .menu-box2{
    margin: 5px;
    border: 2px #fff solid;
    padding: 20px 50px;
    margin-bottom: 50px;
    background: #fff;
    border-radius: 30% 30% 30% 37% / 50% 40% 60% 42%;
  }
  .dessert-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 20px auto;
  }
}
/* goods */
.goods {
  margin: 0 20px;
}
.theme4 {
  width: fit-content;
  display: flex;
  flex-direction: column;
  margin: 200px auto 50px;
  position: relative;
  font-size: 30px;
}
.theme4 h2 {
  color: #fff;
}
.shadow4 h2 {
  position: absolute;
  top: 3px;
  left: 5px;
  z-index: -1;
  margin: 0 auto;
  color: #d0a900;
}

.goods-item1 img {
  width: 50%;
  border-radius: 65% 100% 100% 64% / 57% 47% 71% 84%;
}
.goods-item2 img {
  width: 50%;
  border-radius: 65% 100% 100% 64% / 57% 47% 71% 84%;
}
.goods-box1 {
  border-radius: 65% 100% 100% 64% / 57% 47% 71% 84%;
  background: hsl(68, 90%, 53%);
  position: relative;
  margin: 100px 20px;
}
.g-shadow1 {
  width: 100%;
  border-radius: 65% 100% 100% 64% / 57% 47% 71% 84%;
  position: relative;
  top: 30px;
  left: 30px;
  background: #070346;
}
.goods-box2 {
  border-radius: 65% 100% 100% 64% / 57% 47% 71% 84%;
  background: hsl(68, 90%, 53%);
  position: relative;
  margin: 200px 0px 100px 0px;
}
.g-shadow2 {
  width: 100%;
  border-radius: 65% 100% 100% 64% / 57% 47% 71% 84%;
  position: relative;
  bottom: 30px;
  left: 20px;
  background: #c9cbcd;
}
.goods-item1 dd,
.goods-item1 dt {
  color: #fff;
  text-align: center;
}
.goods-item1 dt,
.goods-item2 dt {
  position: absolute;
  top: 30%;
  left: 57%;
  font-weight: bold;
  transform: translate(-10%, -50%);
  font-size: 1.3rem;
  width: fit-content;
}
.goods-item1 dt {
  border-bottom:1px solid #fff ;
}
.goods-item2 dt {
  border-bottom:1px solid #000 ;
}
.goods-item1 dd,
.goods-item2 dd {
  position: absolute;
  top: 40%;
  left: 57%;
  transform: translate(-10%, -0%);
  font-size: 12px;
}

@media screen and (min-width: 767px){
  .pc-flex4{
    display: flex;
  }
  .pc-flex5{
    width: 23%;
    margin: 10px;
  }
  .goods-item1,.goods-item2{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .goods-item1 p,.goods-item2 p{
    display: block;
    width: 300px;
    height: fit-content;
    margin-left: 50%;
    margin-bottom: 20px;

  }
  .goods-item1 dt,
  .goods-item2 dt {
  width: 70%;
  position: static;
  text-align: center;
}
  .goods-item1 dd,
  .goods-item2 dd {
  font-size: 16px;
  width: 80%;
  position: static;
  text-align: center;

}
.g-shadow1, .g-shadow2{
  height: 60vh;
}
}

/* footer */

footer {
  position: relative;
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  background: #223670;
}
@media screen and (min-width: 767px) {
  footer {
    display: flex;
    margin: 0 auto;
    justify-content: space-evenly;
  }
}
footer ul {
  color: #fff;
}

/* access */
.access {
  margin: 50px auto;
}
.flex-box4 {
  flex-direction: column;
  justify-items: center;
}
.flex-box4 p {
  margin: 30px;
}
iframe {
  display: block;
  width: 100%;
}

.theme5 {
  width: fit-content;
  display: flex;
  flex-direction: column;
  margin: 100px auto 50px;
  position: relative;
  font-size: 30px;
}
.theme5 h2 {
  color: #fff;
  z-index: 2;
}
.shadow5 h2 {
  position: absolute;
  z-index: 1;
  top: 3px;
  left: 5px;
  margin: 0 auto;
  color: #d0a900;
}
.access p {
  color: #223670;
  font-size: 20px;
}
@media screen and (min-width: 767px){
  iframe{
    width: 60vw;
    height: 40vh;
  }
  .balloon0-top {
    position: relative;
    top: 30px;
    left: 0px;
    margin: 0 auto;
    display: inline-block;
    margin: 30px 30px;
    padding: 30px 30px;
    min-width: fit-content;
    max-width: 100%;
    font-size: 30px;
    font-weight: bold;
    background: #d0a900;
    position: relative;
    border-radius: 50%;
  }
  .balloon0-top:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50px;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 50px solid #d0a900;
    transform: rotate(30deg);
  }
  
}
/* 吹き出し */
.balloon0-top {
  position: relative;
  top: 30px;
  left: 0px;
  margin: 0 auto;
  display: inline-block;
  margin: 30px 30px;
  padding: 30px 30px;
  min-width: fit-content;
  max-width: 100%;
  font-size: 16px;
  background: #d0a900;
  position: relative;
  border-radius: 50%;
}
.balloon0-top:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50px;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 50px solid #d0a900;
  transform: rotate(30deg);
}

.balloon0-top p {
  margin: 0 auto;
  padding: 0 30px;
  font-size: 15px;
}

/* about */
.about {
  position: relative;
  width: 100%;
  height: 80vh;
  margin: 0px auto;
  z-index: 10;
}
.about .about-container {
  display: flex;
  width: 100vw;
  height: 40px;
  justify-content: space-around;
  margin: 30px auto;
}
.about .box {
  position: relative;
}
.about .box a {
  display: block;
  text-align: center;
  color: #fff;
  z-index: 2;
  transition: all 0.3s ease 0s;
  text-decoration: none;
  position: absolute;
  font-weight: bold;
}

.about .box a:hover {
  cursor: pointer;
  transform: scale(1.2);
  color: springgreen;
}
.about .box .box-a1 {
  top: 40px;
  left: 26px;
}
.about .box .box-a1 p{
  font-size: 3rem;
}

.about .box .box-a2 {
  top: 80px;
  left: 20px;
}
.about .box .box-a3 {
  top: 60px;
  left: 15px;
}


.theme6 {
  width: fit-content;
  display: flex;
  flex-direction: column;
  margin: 200px auto 50px;
  position: relative;
  font-size: 30px;
}
.theme6 h2 {
  color: #fff;
}
.shadow6 h2 {
  position: absolute;
  top: 3px;
  left: 5px;
  z-index: -1;
  margin: 0 auto;
  color: #d0a900;
}

/* 豆購入フォーム */
form {
  p {
    font-size: 30px;
    font-weight: bold;
  }
  dt {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    background-color: #dddddd;
    border-radius: 3px;
    box-shadow: 6px 6px 10px 0px rgba(0, 21, 55, 0.35);
    margin: 20px 0;
  }
}
.heading07 {
  position: relative;
  padding-top: 50px;
  padding-left: 30px;
  font-size: 26px;
}

.heading07 span {
  position: relative;
  z-index: 2;
}

.heading07::before {
  content: attr(data-en);
  position: absolute;
  transform: rotate(-5deg);
  top: -20px;
  left: 0;
  color: rgba(94, 27, 68, 0.341);
  font-size: 80px;
  font-weight: 400;
  font-family: luxus-brut, cursive;
  font-style: italic;
}
.flex-box5 {
  display: flex;
  justify-content: center;
}
.flex-box6 {
  display: flex;
  flex-direction: column;
}
.flex-box6 a {
  color: brown;
}
.click {
  position: relative;
  font-size: 18px;
  z-index: 10;
  opacity: 0; /* 初めは透明に設定 */
  transform: translateY(100%); /* 下からスライドするために位置を下に設定 */
  animation: fadeInFromBottom 3s infinite; /* フェードインアニメーションの設定 */
  font-weight: bold;
}

@keyframes fadeInFromBottom {
  to {
    opacity: 1; /* アニメーション終了時に完全に表示 */
    transform: translateY(0); /* アニメーション終了時の位置 */
  }
}
form :nth-child(7) {
  dd {
    padding: 0 20px;
  }
}
form :nth-child(9) {
  dd {
    padding: 0 20px;
  }
}
form :nth-child(7) {
  dd:nth-child(2) {
    text-align: left;
  }
}
/* about 営業日 */
.calendar-wrap {
  margin: 0 auto;
  max-width: 1110px;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 767px) {
  .calendar-wrap {
    display: flex;
    flex-direction: column;
  }
}
.calendar {
  width: 100%;
  border-collapse: collapse;
}
.calendar th,
.calendar td {
  border: 1px solid #000;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
}
.calendar th {
  padding: 6px 10px;
}
@media (max-width: 767px) {
  .calendar th,
  .calendar td {
    padding: 6px;
    font-size: 12px;
  }
  .calendar th {
    padding: 3px 6px;
  }
}

.calendar .sun {
  color: #e17f7e;
  background-color: #f8e4e2;
}
.calendar .sat {
  color: #7ab6f3;
  background-color: #e7f6fd;
}
.calendar .mute {
  color: #aaa;
}
.calendar .today {
  background-color: #7d7d7d;
}
.calendar .off {
  background-color: #fadcdb;
}
.comment {
  display: flex;
  justify-content: center;
  margin: 10px auto;
}
.color1 {
  width: 20px;
  height: 20px;
  background: rgb(255, 192, 192);
  align-items: center;
}
.color2 {
  width: 20px;
  height: 20px;
  background: #999;
  align-items: center;
}

/* 吹き出し */
.balloon1-top {
  position: relative;
  display: inline-block;
  margin: 10px 0;
  padding: 0 5px;
  width: 110px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  background: #d0a900;
  border-radius: 50%;
  box-sizing: border-box;
}

.balloon1-top:before {
  content: "";
  position: absolute;
  top: -12px;
  left: 95px;
  transform: rotate(43deg);
  margin-left: -15px;
  border: 10px solid transparent;
  border-bottom: 25px solid #d0a900;
  z-index: 0;
}

.balloon2-top {
  position: relative;
  display: inline-block;
  margin: 50px 0;
  padding: 0 5px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  background: #d0a900;
  border-radius: 50%;
  box-sizing: border-box;
}

.balloon2-top:before {
  content: "";
  position: absolute;
  top: -32px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 30px solid #d0a900;
}
.balloon3-top {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 0 5px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  background: #d0a900;
  border-radius: 50%;
  box-sizing: border-box;
}
.balloon3-top:before {
  content: "";
  position: absolute;
  top: -15px;
  left: 10px;
  transform: rotate(-35deg);
  margin-left: -15px;
  border: 10px solid transparent;
  border-bottom: 25px solid #d0a900;
}
@media screen and (min-width: 767px){
  .balloon1-top {
    width: 200px;
    height: 150px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    background: #d0a900;
    border-radius: 50%;
    box-sizing: border-box;
  }
  
  .balloon1-top:before {
    content: "";
    position: absolute;
    top: -65px;
    left: 160px;
    transform: rotate(43deg);
    margin-left: -15px;
    border: 30px solid transparent;
    border-bottom: 70px solid #d0a900;
    z-index: 0;
  }
  
  .balloon2-top {
    position: relative;
    display: inline-block;
    margin: 40px 0;
    padding: 0 5px;
    width: 200px;
    height: 150px;
    line-height: 90px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    background: #d0a900;
    border-radius: 50%;
    box-sizing: border-box;
  }
  
  .balloon2-top:before {
    content: "";
    position: absolute;
    top: -75px;
    left: 90px;
    margin-left: -15px;
    border: 20px solid transparent;
    border-bottom: 70px solid #d0a900;
  }
  .balloon3-top {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 0 5px;
    width: 200px;
    height: 150px;
    line-height: 90px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    background: #d0a900;
    border-radius: 50%;
    box-sizing: border-box;
  }
  .balloon3-top:before {
    content: "";
    position: absolute;
    top: -70px;
    left: 10px;
    transform: rotate(-35deg);
    margin-left: -15px;
    border: 30px solid transparent;
    border-bottom: 70px solid #d0a900;
  }
  
  .about .box a {
font-size: 30px;
  }
.about .box .box-a1 {
  top: 60px;
  left: 50px;
}

.about .box .box-a2 {
  top: 90px;
  left: 55px;
}
.about .box .box-a3 {
  top: 80px;
  left: 40px;
}
.about .box img{
  width: 50%;
}
}
/* copy right */
.copy {
  display: block;
  background: #d0aa00;
  text-align: center;
  font-size: 10px;
}