@charset"utf-8";



*{
  margin: 0;
  padding: 0 ;
  box-sizing: border-box;
  font-family: "Kaisei Opti", serif;
 
}




html, body {
  margin: 0;
  padding: 0;
}

/* ヘッダー */
.header {
  position: relative;
  height: 100vh;
 
}


.go {
  position: fixed;   
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;      
}


.go img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  animation: fade 25s infinite;
}

/* スライド */
.go img:nth-child(1) { animation-delay: 0s; }
.go img:nth-child(2) { animation-delay: 5s; }
.go img:nth-child(3) { animation-delay: 10s; }
.go img:nth-child(4) { animation-delay: 15s; }
.go img:nth-child(5) { animation-delay: 20s; }

@keyframes fade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  20%  { opacity: 1; }
  25%  { opacity: 0; }
  100% { opacity: 0; }
}





.header h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  text-align: center;
  width: 100%;

  color: #101010;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.3;
  font-family: 'Cormorant Garamond', serif;
  text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}



.header nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  height: 50px;         
  display: flex;
  align-items: center;      
  justify-content: center;
  background: rgba(218, 208, 208, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0 60px;            
  border-bottom-left-radius: 10px;
  border: 1px solid rgba(14, 13, 13, 0.3);
  border-top: none;
  border-right: none;
  width: 100%;
}



.header nav ul {
  display: flex;
  align-items: center;
  gap: 40px;

  margin: 0;
  padding: 0;
  list-style: none;
}



.header nav ul li a {
  text-decoration: none;
  color: #f7f1f1;

  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  line-height: 1;

  position: relative;
  transition: 0.3s;
}


.header nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #101010;
  transition: 0.3s;
}

.header nav ul li a:hover::after {
  width: 100%;
}


.site-menu > ul {
  display: flex;
  gap: 30px;
}


.has-sub {
  position: relative;
}


.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;

  min-width: 140px;
  padding: 8px 0;
background: rgba(218, 208, 208, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
 
  background: transparent;
  box-shadow: none;


  display: block;


  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;

  transition: all 0.8s ease;
  line-height: 10px;
}


.sub-menu li {
  display: block;
  padding: 6px 0;
  white-space: nowrap;
}


.sub-menu li a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.sub-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #8BBF9F;
  transition: width 0.2s ease;
}

.sub-menu li a:hover::after {
  width: 100%;
}


.has-sub:hover .sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sub-menu {
  display: block !important;
}

.sub-menu li {
  display: block !important;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .sub-menu {
    position: static;
    display: block;
    background: none;
    padding-left: 15px;
  }
}


/* ピュン紹介 */

.aisastu {
  width: 100%;
  margin: 60px auto;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 3px solid #2b1d14;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  padding: 32px;
}


.aisatsu1 {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 16px;
 
}

.aisastu p{
  text-align: center;
  margin: 0 auto;
  font-size: 12px;
  line-height: 25px;
}
#pyun5 {
  position: relative;
  display: inline-block;       /* 下線が文字幅に沿うように */
  font-size: 18px;
  
  color: #0f0f0f;              /* 文字色 */
  padding-bottom: 10px;        /* 下線用スペース */
  text-align: center;           /* 中央寄せ */
  margin: 0 auto; 
  margin-left: 270px;              /* ブロック要素として中央に配置 */
}

/* 下線アニメーション */
#pyun5::after {
  content: '';
  position: absolute;
  left: 50%;                    /* 中央からスタート */
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ff7f50);
  border-radius: 2px;
  transform: translateX(-50%);  /* 中央揃え */
  transition: width 0.6s ease;
}

/* ホバーで下線が伸びる */
#pyun5:hover::after {
  width: 250%;
}


.head-all{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  position:relative;
  overflow:hidden;
  min-height:400px;
  background-color:#6b4b2a;
  color:#fff;
  border:1px solid #d4af37;
  box-shadow:0 0 0 1px #f9e27d inset;
}

.head-img{
  width:40%;
  height:300px;
  margin-left:50px;
  margin-top:70px;
  object-fit:cover;
  position:absolute;
  left:0;
  top:0;
  opacity:0;
  animation:headFade 18s infinite;
}

.head-img:nth-child(1){animation-delay:0s;}
.head-img:nth-child(2){animation-delay:6s;}
.head-img:nth-child(3){animation-delay:12s;}

@keyframes headFade{
  0%{opacity:0;transform:scale(1.1);}
  10%{opacity:1;transform:scale(1);}
  30%{opacity:1;}
  40%{opacity:0;}
  100%{opacity:0;}
}

@keyframes headFloat{
  0%{transform:translateY(40px);opacity:0;}
  50%{transform:translateY(0);opacity:1;}
  100%{transform:translateY(40px);opacity:0;}
}

.head-coment{
  font-size: 15px;
  line-height: 30px;
  width:50%;
  margin-left:auto;
  position:relative;
  z-index:2;
}




/* ピュン紹介エンド */


/* 牡蠣種類紹介 */

#kaki {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #f5e6b3; /* 柔らかいクリーム色 */
  text-align: center;
  margin: 40px 0;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* 立体感 */
  transition: color 0.5s ease;
}

#kaki:hover {
  color: #d4af37; /* ホバーでゴールドに変化 */
}

/* 下線アニメーション */
#kaki::after {
  content: '';
  display: block;
  width: 0%;
  height: 0.5px;
  background: #d4af37;
  margin: 8px auto 0;
  border-radius: 2px;
  transition: width 0.6s ease;
}

#kaki:hover::after {
  width: 60%;
}

/* フェードイン */
@keyframes fadeInSlide {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

#kaki {
  animation: fadeInSlide 1s ease forwards;
}


.namakaki {
  width: 80%;
  margin: 80px auto 40px;
  padding: 20px 30px;
  text-align: center;
  background-color: #6b4b2a;
  color: #fff;
  border: 1px solid #d4af37;
  box-shadow: 0 0 0 1px #f9e27d inset;
}

.namakaki h3 {
  font-size: 26px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #f5e6b3;
}
.kaki-text55 {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.kaki-text40 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.kaki-text40 img{
  max-width: 300px;
  width: 100%;
  height: auto;
}

.kaki-text40 p {
  margin-left: 40px;
  margin-top: 8px;
  font-size: 14px;
  color: #eeebe9;
}

.kaki-text50 img {
  max-width: 350px;
  width: 100%;
  height: auto;
}

.kaki-ryouri {
  position: relative;
  width: 100%;
  height: 350px; /* 好きな高さに調整 */
  overflow: hidden;
}

.kaki-slide {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  opacity:0;

}

.kaki-slide img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.kaki-slide p {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  color:#fff;
  background-color: rgba(0,0,0,0.5);
  padding:8px 12px;
  border-radius:6px;
}

.kaki-slide.active {
  opacity:1;
  z-index: 2;
}

/* 牡蠣種類紹介エンド */

/* おつまみのｃｓｓ */


.tumami{
  width: 80%;
  margin: 80px auto 40px;
  height: 430px;
  padding: 40px;
  text-align: center;
  color: #fff;

  /* 居酒屋風 */
  background: url("./images/common/bg-washi.jpg") center/cover no-repeat;
  background-color: #6b4b2a;
  border: 1px solid #d4af37;
  box-shadow: 0 0 0 1px #f9e27d inset;
}


/* タイトル */
.menu-menu h3{
  font-size: 28px;
  letter-spacing: 0.2em;
  border-bottom: 2px solid #c9a646;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 30px;
}


.tumami-all{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}






.img-box img{
  width: 90%;
  height: auto;
  display: block;
  border-radius: 20px;
}


.img-text{
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  background: rgba(0,0,0,0.55);
  padding: 6px 10px;
  font-size: 14px;
  letter-spacing: 0.1em;
}


.img-left img{
  transform: rotate(-3deg);
}

.img-right img{
  transform: rotate(3deg);
  margin-top: 40px;
}

.otumami-gazou{
  position: relative;
  width: 55%;
  height: 260px; /* 画像の高さに合わせて調整 */
}


.otumami-gazou{
  position: relative;
  width: 55%;
  height: 320px; /* ← 必ず入れる（画像より少し大きく） */
}


.otumami-gazou img{
  position: absolute;
  width: 45%;
  height: auto;
  box-shadow: 4px 6px 10px rgba(0,0,0,0.4);
}


.menu-img1{
  left: 0;
  top: 0;
  transform: rotate(-3deg);
  z-index: 1;
}


.menu-img2{
  left: 35%;   /* ← %にするのがポイント */
  top: 60px;
  transform: rotate(3deg);
  z-index: 100;
}

.img-text{
  position: absolute;
  color: #fff;
  background: rgba(0,0,0,0.55);
  padding: 6px 10px;
  font-size: 14px;
  letter-spacing: 0.1em;
  z-index: 3;
}


.menu-area{
  width: 20%;
  text-align: center;
}

.menu{
  margin-left: -10px;
  width: 350px;
  max-width: none;
  cursor: pointer;
  transition: 0.3s;
  transform: translateX(-190px);
}

.menu:hover{
  opacity: 0.7;
}

/* =====================
   ポップアップ
===================== */
.popup{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup img{
  max-width: 80%;
  max-height: 80%;
}

.close{
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}




/* おつまみのｃｓｓエンド */


/* ドリンクのｃｓｓ */


.drink{
  width: 80%;
  margin: 80px auto 40px;
  padding: 40px;
  text-align: center;
  color: #fff;

  /* 居酒屋風 背景 */
  background: url("./images/common/bg-washi.jpg") center/cover no-repeat;
  background-color: #6b4b2a;

  /* 金枠 */
  border: 1px solid #d4af37;
  box-shadow: 0 0 0 1px #f9e27d inset;
}

/* 全体 */
.drink-all{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* 左：画像エリア */
.drink-img-box{
width: 1000px;
margin-top: 50px;
margin-left: 10px;
}

.drink-img{

 width: 500px;
  display: block;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.drink-img:hover{
  opacity: 0.8;
}

/* 右：メニューエリア */


.drink10{
 width: 400px;
 margin-left: 30px;

  cursor: pointer;
  transition: 0.3s;
  transform: translateX(-190px); /* tumamiと同じ位置 */
}

.drink10:hover{
  opacity: 0.7;
}

/* 画像エリア中央配置 */
.otumami-gazou{
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

/* 画像サイズ */
.drink-img{
  width: 320px;
  height: auto;
  display: block;
  cursor: pointer;
  transition: 0.3s;
}

.drink-img:hover{
  opacity: 0.8;
}



/* ポップアップ背景 */
.popup2{
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

/* ポップアップ画像 */
.popup2 img{
  max-width: 90%;
  max-height: 90%;
}

/* 閉じるボタン */
.close2{
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}


/* ......店舗 ......*/
.tempo-menu {
  text-align: center;
  margin: 60px 0; /* 上下余白 */
  background-color: rgba(255, 236, 209, 0.9); /* 半透明で柔らかく */


}

#tempo5 {
  font-size: 36px;
  font-weight: 700;
  padding: 20px 50px;
  border-radius: 15px;
  border: 1px solid #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);

  color: #ffd700; /* 黄金色文字 */
  background-color: rgba(191, 138, 64, 0.9); /* 背景色 */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}


.tempo-pyun {
  margin-top: 80px;
  width: 90%;
  margin: 0 auto;
}

/* 店名 */
.tempo-name {
  background: #2b1d14;
  color: #f5e6c8;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  padding: 14px 20px;
  letter-spacing: 2px;
  border: 3px solid #c9a063;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* カード全体：画像＋右側横並び */
.pyun-1 {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #f4efe6;
  border: 3px solid #2b1d14;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* 左：店舗画像 */
.tempo-img {
  width: 400px;
  height: auto;
  object-fit: cover;
  border: 4px solid #2b1d14;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* 右側まとめ（テキスト＋SNS＋MAP） */
.tempo-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

/* テキスト */
.tempo-text {
  background: #fffdf8;
  border-left: 6px solid #c9a063;
  padding: 16px 18px;
  font-size: 10px;
  line-height: 1.9;
  color: #2b1d14;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.08);
}

/* 下段：インスタ＋マップ横並び */
.tempo-sns-map {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* インスタ固定 */
.insta {
  flex-shrink: 0;
}

.insta1 {
  width:70px;
  height: 70px;
  transition: transform 0.2s ease;
  margin-top: 20px;
}

.insta1:hover {
  transform: scale(1.15);
}

/* マップは横に広がる */
.map {
  width: 100%;
  max-width: 800px; /* 任意 */
  height: 130px;    /* 任意 */
  margin: 40px auto;
  border: 3px solid #d4af37; /* 金枠 */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
margin-top: -10px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
/* 下の余白 */


.tempo-pyunkichi {
  margin-top: 100px;
  width: 90%;
  margin-left: 50px;
}


/* フッター */
.footer {
  background: #1f140d;
  color: #f5e6c8;
  padding: 50px 20px 20px;
  margin-top: 80px;
  border-top: 3px solid #c9a063;
}

.footer-inner {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* ロゴ */
.footer-title {
  font-size: 22px;
  letter-spacing: 3px;
  font-weight: bold;
  margin-bottom: 8px;
}

.footer-sub {
  font-size: 10px;
  color: #c9a063;
  letter-spacing: 2px;
}

/* 会社情報 */
.footer-info p {
  margin: 4px 0;
  font-size: 14px;
}

/* ナビ */
.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  color: #f5e6c8;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #c9a063;
}

/* SNS */
.footer-sns img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s;
}

.footer-sns img:hover {
  transform: scale(1.15);
}

/* コピー */
.footer-copy {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: #c9a063;
  letter-spacing: 2px;
}
/* フッターエンド
 */
/* スマホ */


@media (max-width: 768px) {
  .footer-inner {
    width: 100%;
    flex-direction: column;
    gap: 24px;
  }

  .footer {
    padding: 40px 16px 16px;
  }
}

/* スマホ対応 */
@media (max-width: 768px) {
  .tempo-pyun {
    width: 100%;
  }

  .pyun-1 {
    flex-direction: column;
  }

  .tempo-img {
    width: 100%;
  }

  .map iframe {
    max-width: 100%;
  }
}
/* 店舗エンド */