
/* ------------------------------
   Reset
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ------------------------------
   Base
------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Playfair+Display:wght@500;700&family=Rounded+Mplus+1c:wght@400;500;700&display=swap');

body {
  background-color: #EFD2D2;
  font-family: "Rounded Mplus 1c", "Poppins", sans-serif;
  color: #4b3b3b;
  line-height: 1.5;       
  letter-spacing: 0.08em; 
  overflow-x: hidden;
}

/* ------------------------------
   Header
------------------------------ */

.header {
  width: 100%;
  padding: 20px 80px 20px 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end; 
  background-color: #EFD2D2;
  position: relative;
  z-index: 100;
}

.logo {
  position: relative;
  display: inline-block;
  width: 200px; 
  margin-right: auto; 
}

.logo-frame {
  width: 100%;
  height: auto;
  display: block;
}

.logo-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: auto;
  pointer-events: none; 
}

.en-title {
  font-family: "Playfair Display", serif;
  font-size: 15px; 
  color: #C04A4A;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin: 0;
}

.jp-title {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-size: 10px;
  color: #5c4a3d;
  margin-top: 3px;
  line-height: 1;
  white-space: nowrap;
}

.navi {
  display: flex;
  align-items: center;
  gap: 70px; 
  margin-right: 40px;
}


.navi a {
  text-decoration: none;
  color: #665f57;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  transition: color 0.3s;
}

.navi a:hover {
  color: #C04A4A;
}

.sns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sns-icon img {
  width: 50px;
  height: 50px;
  transition: opacity 0.3s ease;
}

.sns-icon:hover img {
  opacity: 0.7;
}
/* ==============================
   ロゴsnsSP
============================== */
@media (max-width: 768px) {
  .sns-icon img {
    width: 35px;  
    height: 35px; 
  }
}
.logo {
    width: 100px; 
  }

  .en-title {
    font-size: 10px; 
  }

  .jp-title {
    font-size: 6px;   
  }


/* ==============================
   ハンバーガーメニュー（SP）
============================== */
@media (max-width: 768px) {
  .hamburger {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 24px;
  cursor: pointer;
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 10000;
}

.navi {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background-color: #EFD2D2;
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  transition: transform 0.4s ease;
  transform: translateX(100%);
  z-index: 9999; 
}

.hamburger span {
    height: 5px; 
    width: 100%;
    background-color: #5a4d45;
    border-radius: 3px; 
    transition: all 0.3s ease;
  }
  .navi.active {
    transform: translateX(0);
  }

  .navi a {
    font-size: 20px;
    color: #665f57;
    font-family: "Rounded Mplus 1c", sans-serif;
    font-weight: 500;
    transition: opacity 0.3s;
  }

  .navi a:hover {
    opacity: 0.7;
  }
  
/* ✖アイコン */
.hamburger.active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}


}



.hero-buttons {
  position: fixed;       
  top: 25%;              
  right: 0;              
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 999;         
}

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 93px;
  background-color: #FFF0B9!important;
  border-radius: 100px 0 0 100px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #6b5438;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-btn:hover {
  opacity: 0.9;
  transform: translateX(-4px);
}

.hero-btn.yellow {
  background-color: #f7e88d;
}
/* ------------------------------
   WEBボタン(SP)
------------------------------ */

@media (max-width: 768px) {
  
  .hero-image {
    width: 100%;  
    height: 100%;
    object-fit: cover;  
    object-position: top;  
    margin-top: -60px;
  }

  .hero-text h1 {
    font-size: 14px;  
    margin-bottom: 100px;
  }

  .frame-bg {
    width: 60%;  
    height: 60%; 
    border-radius: 80% / 85%;
    margin-left: 50px;
    margin-top: 50px;
  }

  .frame-image {
    width: 70%;  
    height: 70%;
    margin-left: 50px;
    margin-top: 50px;
  }

  .hero-text-center {
    font-size: 18px;  
    margin-left: -5px;
    margin-bottom: 30px;
    position: absolute; 
  }


.hero-buttons {
  position: fixed;
  top: 25%;        
  right: -18px;       
  z-index: 9999;    
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-right: 0; 
}


.hero-btn {
  width: 95px;
  height: 50px;
  font-size: 10px;
  border-radius: 80px 0 0 80px;
  white-space: nowrap;
}

}

/* ================================
   MENU PAGE 
================================ */
body.menu-page {
  background-color: #E6C2C2;
}

/* ===== 共通レイアウト ===== */
.menu-section {
  padding: 60px 0 80px;
  text-align: center;
}

.menu-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 30px;
  color: #FFFFFF;
  letter-spacing: 0.1em;
}

.menu-title .m-letter {
  color: #CC7777;
  font-size: 40px;
}

.menu-subtitle {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-size: 18px;
  color: #B03F3F;
  margin-top: 6px;
  margin-bottom: 50px;
}

/* ===== メニューBOX ===== */
.menu-box {
  width: 1000px;
  max-width: 92%;
  margin: 0 auto 40px;
  background-color: #FFFFFF;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 30px 50px;
  position: relative;
  scroll-margin-top: 200px;
}

/* 中央の点線 */
.menu-divider {
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    #744B1B 0,
    #744B1B 4px,
    transparent 4px,
    transparent 8px
  );
  position: absolute;
  left: 50%;
  top: 30px;
  bottom: 30px;
  transform: translateX(-50%);
}

/* ===== 左カラム ===== */
.menu-left {
  width: 48%;
  text-align: center;
}

.menu-name {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #C04A4A;
  margin-bottom: 15px;
  text-align: center;
}

.menu-img {
  width: 130px;
  height: 170px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  margin: 0 auto 15px;
}

/* 効果とシール数（左右並び） */
.menu-effect,
.menu-seal {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px; /* ← これで間隔を取る */
  margin-bottom: 10px;
}

.menu-effect .info-tag,
.menu-seal .info-tag {
  background-color: #B03F3F;
  color: #FFFFFF;
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 5px;
  width: 85px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0; /* タグの幅固定 */
}

.menu-effect .info-text,
.menu-seal .info-text {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #6B5438;
  line-height: 1.6;
  text-align: left;
  white-space: normal;
  word-break: break-word;
  flex: 1; /* テキストを自然に流す */
}

/* ===== 右カラム ===== */
.menu-right {
  width: 48%;
  text-align: left;
}

.price-title {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #6B5438;
  text-align: center;
  margin-bottom: 12px;
}

.price-detail {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-size: 18px;
  color: #6B5438;
  line-height: 1.8;
  margin-left: 40px;
  text-align: left;
  white-space: nowrap;
}

.price-calc {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #C28369;
  line-height: 1.4;
  margin-top: 50px;
  margin-left: 40px;
}

.price-total {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #C28369;
  text-align: right;
  margin-top: 50px;
}

.menu-note {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #B03F3F;
  margin-top: 40px;
}

/* ================================
   MENU PAGE SP
================================ */
@media screen and (max-width: 768px) {

/* --- 全体ボックス --- */
 .menu-box {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 360px;
    margin: 0 auto 50px;
    background-color: #fff;
    border: 3px solid #d2a09b;
    border-radius: 20px;
    padding: 30px 25px 40px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.05);
    box-sizing: border-box;
  }

  /* --- タイトル（中央寄せ） --- */
  .menu-name {
    font-family: "Rounded Mplus 1c", sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #C04A4A;
    margin: 0 auto 20px;   /* ← 自動左右マージンで中央 */
    margin-left: 80px;
    text-align: center;    /* ← 中央寄せ */
    width: 100%;
    align-self: center;    /* ← 親がflex-startでも中央に */
    white-space: nowrap; 
  }

  /* --- 画像（中央寄せ） --- */
  .menu-img {
    display: block;
    width: 180px;
    height: auto;
    margin: 0 auto 20px;   /* ← 自動左右マージンで中央 */
    border-radius: 10px;
    align-self: center;    /* ← flex内でも中央に配置される */
    margin-left: 75px
  }


.menu-effect,
.menu-seal {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin: 10px 0;
  padding-left: 0;
  text-align: left;
}

/* タグ */
.menu-effect .info-tag,
.menu-seal .info-tag {
  background-color: #B03F3F;
  color: #fff;
  border-radius: 5px;
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 600;
  font-size: 13px;
  height: auto;
  padding: 4px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  flex-shrink: 0;
}

/* テキスト（改行なしバージョン） */
.menu-effect .info-text,
.menu-seal .info-text {
  font-size: 14px;
  line-height: 1.6;
  color: #4b3b3b;
  text-align: left;
  white-space: nowrap;     /* ← 改行を禁止 */
  letter-spacing: 0.03em;
}


/* --- 中央点線を横線に変更 --- */
.menu-divider {
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #744B1B 0,
    #744B1B 4px,
    transparent 4px,
    transparent 8px
  );
  position: relative;
  left: 0;
  transform: none;
  margin: 25px 0;
}

/* --- 料金エリア --- */
.menu-right {
  width: 100%;
  text-align: center;
}

.price-title {
  font-size: 16px;
  color: #B03F3F;
  margin: 15px 0;
  text-align: center;
}

.price-detail,
.price-calc {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  width: 100%;
  margin: 0;
  color: #6B5438;
}

.price-detail {
  margin-top: -10px;
}

.price-calc {
  color: #C28369;
  margin-top: 20px;
}

.price-total {
  font-size: 16px;
  font-weight: 700;
  color: #B03F3F;
  text-align: center;
  margin-top: 20px;
}

/* --- ボックス内共通 --- */
.menu-box * {
  max-width: 100%;
  overflow-wrap: break-word;
  box-sizing: border-box;
}
}


/* ------------------------------
   Bottom 
------------------------------ */
.bottom-area {
  background-color: #D2A09B;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative; 
}

/* ===== 白いライン（境目） ===== */
.divider-bottom {
  position: absolute;
  top: 0; 
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent, #fff 40%, transparent);
  border-radius: 50px;
  z-index: 20;
}


.divider-bottom::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 10px;
  background: radial-gradient(circle, rgba(255,255,255,0.8), transparent 70%);
  animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
  0%,100% {opacity: 0.3; transform: translateX(-50%) scale(1);}
  50% {opacity: 1; transform: translateX(-50%) scale(1.3);}
}

.bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.bottom-menu {
  display: flex;
  gap: 70px;
}

.bottom-menu a {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}

.bottom-menu a:hover {
  opacity: 0.8;
}

.bottom-sns {
  display: flex;
  align-items: center;
  gap: 40px;
}

.bottom-sns img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.bottom-sns img:hover {
  opacity: 0.8;
}

/*SP*/
@media screen and (max-width: 768px) {
  .bottom-area {
    height: auto;
    padding: 40px 0;
  }

  .bottom-inner {
    flex-direction: column;
    gap: 25px;
  }

  .bottom-menu {
    gap: 40px;
  }

  .bottom-menu a {
    font-size: 14px;
  }

  .bottom-sns img {
    width: 26px;
    height: 24px;
  }
}

/* ------------------------------
   Footer
------------------------------ */
.footer-info {
  background-color: #EFD2D2;
  padding: 90px 0 90px;
  position: relative;
  text-align: center;
}

/* ===== 白いライン（境目） ===== */
.divider-footer {
  position: absolute;
  top: 0px; 
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent, #fff 40%, transparent);
  border-radius: 50px;
  z-index: 20;
}


.divider-footer::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 10px;
  background: radial-gradient(circle, rgba(255,255,255,0.8), transparent 70%);
  animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
  0%,100% {opacity: 0.3; transform: translateX(-50%) scale(1);}
  50% {opacity: 1; transform: translateX(-50%) scale(1.3);}
}


.footer-main {
  display: flex;
  justify-content: center;    
  align-items: center;        
  gap: 30px;                 
  max-width: 600px;         
  margin: 0 auto 30px;      
}

.footer-info .logo {
  position: relative;
  width: 200px;
}

.footer-info .logo-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-info .address-text {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-size: 18px;
  color: #6B5438;
  line-height: 1.8;
}

.footer-info .tel-box {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  transform: translateX(-20px);
}

.footer-info .tel-icon {
  width: 60px;
  height: auto;
}

.footer-info .tel-number {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 500;
  font-size: 36px;
  color: #6B5438;
}

.copyright {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #6B5438;
  margin-top: 60px;
  text-align: right;
  margin-right: 20px;
}

/* === SP=== */
@media screen and (max-width: 768px) {
  .footer-info .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px; 
    max-width: 100%;
  }

  .footer-info .logo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }

  .footer-info .logo img {
    width: 180px;   
    height: auto;
  }

  .footer-info .address-text {
    font-size: 14px;  
    line-height: 1.6;
  }

  .footer-info .tel-number {
    font-size: 26px;  
  }

  .copyright {
    text-align: center;
    margin-right: 0;
    margin-top: 40px;
    font-size: 14px; 
  }
  
  

  
}


