@charset "utf-8";
/* CSS Document */
/*ロード*/
/* ロード画面全体 */
.loading {
  position: fixed;
  inset: 0;
  background: #EFE5CA;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  transition: opacity 1.2s ease;
}

/* ロゴ */
.logo {
  width: 140px;
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}

/* 文字 */
.loading-text {
  margin-top: 15px;
  font-size: 14px;
  color: #5c4a2f;
  animation: float 3s ease-in-out infinite;
}

/* 湯気 */
.steam {
  position: absolute;
  bottom: 55%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  filter: blur(8px);
  animation: steam 4s ease-in-out infinite;
}

.steam:nth-child(1) {
  margin-left: -30px;
  animation-delay: 0s;
}
.steam:nth-child(2) {
  margin-left: 0;
  animation-delay: 1.2s;
}
.steam:nth-child(3) {
  margin-left: 30px;
  animation-delay: 2.4s;
}

/* アニメーション */
@keyframes steam {
  0% {
    transform: translate(-50%, 0) scale(0.8);
    opacity: 0;
  }
  30% {
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -80px) scale(1.2);
    opacity: 0;
  }
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
/*ベースページ*/
body {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
  color: #3f3203;
  background-color: #efe5ca;
/*
  background-image: url("../image/bac.png");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
*/
}
#main {
  max-width: 500px;
  margin: 0 auto;
  background-color: rgba(255,255,255,0.5);
  min-height: 100vh;
}
  /*ヘッダー  */
header {
  margin: 0;
  padding: 0;
}
#logo,#logo2 {
  margin: 0;
  padding: 1em;
}
#logo img {
  width: 50%;
  }
#logo2 img {
  width: 100px;
}
  /* ハンバーガー*/
#menu-btn {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 16px;
  right: 60px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
#menu-btn img {
  width: 70px;
}
#menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100vh;
  background-image: url("../image/Burger.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}
#menu.active {
  transform: translateX(0);
}
#close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.menu-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
}
#menu ul {
  list-style: none;
  padding: 80px 20px;
}

#menu li {
  margin-bottom: 20px;
}

#menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
#menu a:hover {
  opacity: 0.5;
  border-bottom: 1px solid #3f3203;
}
.menu {
  text-align: center;
  width: 100%;
  height: auto;
}
footer {
  padding-top: 20px;
  background-color: #e9b77b;
  text-align: center;
  width: 100vw;
  height: 160px;
}
.lower {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.lower a {
  margin-top: 5px;
  display: block;
  padding: 0 20px 0 20px;
  text-decoration: none;
  color: #3F3203
}
.lower a:hover {
  opacity: 0.5;
}
.lower {
  display: flex;
  justify-content: center;
}
aside {
  margin-top: 70px;
}
p.pagetop {
  width: 60px;
  margin-left: auto;
  }
.pagetop:hover {
  opacity: 0.7;
}
/*ベースここまで*/
/*トップページ↓*/
header.top {
  background-image: url("../image/top.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100vw;
  height: 40vh;
}
#more {
  display: block;
  width: 150px;
  margin-left: auto;
}
#more img {
  transition: transform 0.5s ease, opacity 0.5s ease;
  width: 150px;
}
#more img:hover {
  transform: translateX(-6px);
  opacity: 0.5;
}
h2 img {
  width: 400px;
  height: auto;
}
  /*News*/
#news {
  width: auto;
  height: auto;
  padding-top: 40px;
}
#news .news{
  width: 100%;
  height: 350px;
}
#news ul{
  list-style-type: none;
  padding-left: 50px;
}
#news ul li{
  padding: 20px 0 20px 0px;
  border-bottom: 1px dotted #3f3203;
  text-align: -175px;
  width: 400px;
}
#news ul li time {
  display: inline-block;
  width: 175px;
  font-weight: bold;
  text-indent: 0;
}
  /*メニュー*/
#menu1 {
  padding-left: 50px;
  padding-bottom: 50px;
}
.container {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: 2fr 1fr 1fr;
  gap: 10px;
  text-align: center;
  padding-right: 50px;
}
.pan1 {
  grid-column: 1/3;
  grid-row: 1/2;
}
.pan2 {
  grid-row: 2/3;
  grid-column: 1/2;
}
.pan3 {
  grid-row: 2/3;
  grid-column: 2/3;
}
.pan4 {
  grid-row: 3/4;
  grid-column: 1/2;
}
.pan5 {
  grid-row: 3/4;
  grid-column: 2/3;
}
#menu2 {
  margin-bottom: 30px;
  margin-top: 30px;
  padding-bottom: 100px;
}
.menu-box {
  text-align: center;
}
#menu2 p {
  padding: 0;
  margin: 0;
}
#menu2 p.menu-box2 {
  padding: 0 40px;
}
#menu2 h2 {
  padding: 0;
  margin: 0;
  font-size: 30px;
}
.pan6 {
  width: 350px;
}
  /*Shop*/
.shop {
  margin-bottom: 30px;
  margin-left: 50px;
}
.shop-img {
  padding: 0;
}
  /*オンラインショップ*/
.onlineshop {
  position: relative;
  width: 500px;
  height: 160px;
  display: block;
  margin-top: 50px;
}
.onlineshop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
    /* 通常時 */
.img-hover {
  opacity: 0;
}
    /* ホバー時 */
.onlineshop:hover .img-hover {
  opacity: 1;
}
.onlineshop:hover .img-normal {
  opacity: 0;
}
.onlineshop:hover img {
  transform: scale(1.02) translateX(-6px);
}
/*トップページここまで*/
/*メニューページ*/
header.menu-top {
  background-image: url("../image/menu-t.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100vw;
  height: 40vh;
}
#menu3 {
  margin-bottom: 30px;
  padding-bottom: 100px;
  padding-top: 40px;
}
.menu-box3 {
  text-align: center;
}
#menu3 p {
  padding: 0;
  margin: 0;
}
#menu3 p.menu-box4 {
  padding: 0 40px;
}
#menu3 h2 {
  padding: 0;
  margin: 0;
  font-size: 30px;
}
.pan-menu {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.pan-menu figure {
  margin: 15px;
  width: 180px;
}
.pan-menu figure:first-child{
  margin-left: 0;
}
.pan-menu figure img {
  width: 180px;
}
.pan-menu figure figcaption {
  text-align: center;
}
.pan-menu figure figcaption h3 {
  border-bottom: 1px dotted #3f3203;
  font-size: 20px;
}
.pan-menu figure figcaption p {
  margin: 0;
  padding: 0;
  font-size: 12px
}
#menu-title {
  padding-left: 10px;
  padding-top: 30px;
  text-align: center;
}
#drink ul {
  list-style-type: none;
  padding-left: 60px;
  padding-bottom: 30px;
}
#drink ul li {
  padding-top: 30px;
  border-bottom: 1px dotted #3f3203;
  width: 400px;
}
/*メニューページここまで*/
/*aboutページ*/
header.about {
  background-image: url("../image/about-t.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100vw;
  height: 40vh;
}
#commitment {
  text-align: center;
  padding-bottom: 50px;
  padding-top: 40px;
}
#commitment p {
  margin: 0 20px;
}
#commitment2 {
  background-image: url("../image/commitment01.png");
  padding: 50px;
  margin-bottom: 30px;
}
#commitment3 {
  background-image: url("../image/commitment02.png");
  padding: 50px;
  margin-bottom: 30px;
}
/*aboutページここまで*/
/*アクセスページ*/
header.access {
  background-image: url("../image/access-t.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100vw;
  height: 40vh;
}
.shop2 {
  margin-bottom: 30px;
  margin-left: 50px;
  padding-top: 40px;
}
.interior {
  list-style-type: none;
  width: 430px;
  display: flex;
  gap: 10px;
}
.interior img {
  width: 100%;
  height: auto;
}
/*アクセスページここまで*/
/*クリームボックスページ*/
header.box {
  background-image: url("../image/box-t.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100vw;
  height: 40vh;
}
#box {
  padding-bottom: 50px;
}
.box2 {
  padding-top: 40px;
  text-align: center;
}
.box2 h2 {
  border-bottom: 1px dotted #3f3203;
}
.box3 p {
  padding: 0 30px;
  font-size: 15px;
}
#box2 {
  padding-bottom: 50px;
}
#box2 h2 {
  padding-left: 20px;
}
#box2 h2 img {
  width: 480px;
}
#box2 p {
  font-size: 15px;
  padding: 0 30px;
}
#box2 img {
  display: block;
  margin-left: auto;
}
#box3 {
  background-image: url("../image/box4.png"), url("../image/box4.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right bottom;
  padding-bottom: 20px;
}
#box3 h2 {
  text-align: center;
  padding: 20px 0 10px 0;
}
#box3 img {
  width: 300px;
  display: block;
  margin: 0 auto;
}
#box3 p {
  padding-left: 30px;
  font-size: 15px;
}
#box3 p.box4 {
  font-size: 20px;
  text-align: right;
  padding-right: 30px;
  padding-top: 0;
}
.bold {
  font-size: 30px;
  font-weight: bold;
}
/*クリームボックスページここまで*/