/* ------------------------------
   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;
  }

}


/* ------------------------------
   WEBボタン(reservation.html)
------------------------------ */
.web-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
  margin-bottom: 80px;
}

.web-btn {
  display: inline-block;
  background-color: #F7E4A9;
  color: #6B5438;
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
  padding: 18px 50px;
  border-radius: 40px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

.web-btn:hover {
  background-color: #F4D87E;
  transform: translateY(-2px);
}


@media (max-width: 768px) {
  .reservation-box {
    width: 90%;
    padding: 40px 25px;
  }

  .reservation-note {
    font-size: 28px;
  }

  .reservation-heading {
    font-size: 16px;
    text-align: center;
    margin: 30px 0 15px;
  }

  .reservation-list {
    text-align: center;
    list-style: none;
    padding-left: 0;
  }

  .reservation-list li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
  }

  .frame-img img {
    width: 100%;
  }

  .web-buttons {
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
  }

  .web-btn {
    width: 80%;
    text-align: center;
    font-size: 18px;
    padding: 15px 0;
  }
}

/* ------------------------------
   reservation,html
------------------------------ */

.reservation-section {
  text-align: center;
  background-color: #EFD2D2;
  padding: 120px 0 50px;
}

/* --- タイトル --- */
.reservation-main {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 26px;
  color: #FFFFFF;
}

.reservation-main .r-letter {
  color: #CC7777;
  font-size: 36px;
}

.reservation-sub {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #B03F3F;
  margin-top: 10px;
}

.reservation-box {
  width: 1168px;
  min-height: 900px;
  background-color: #FFFFFF;
  border-radius: 20px;
  margin: 60px auto 0;
  padding: 60px 80px;
  box-sizing: border-box;
  text-align: left;
}

.reservation-note {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #6B5438;
  text-align: center;
  margin-bottom: 10px;
}

.frame-img {
  text-align: center;
  margin-bottom: 0px;
}

.frame-img img {
  width: 40%;
  height: auto;
  object-fit: contain;
  display: inline-block;
  margin-top: -20px;
}

.reservation-heading {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #6B5438;
  margin: 40px 0 15px;
}

.reservation-list {
  list-style-type: "・";
  padding-left: 1.5em;
  margin: 0;
}

.reservation-list li {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #6B5438;
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ------------------------------
  Reservation SP
------------------------------ */
@media (max-width: 768px) {

  .reservation-section {
    text-align: center;
    background-color: #EFD2D2;
    margin-top: -80px;
  }

  .reservation-main {
    font-size: 22px;
    color: #ffffff;
  }

  .reservation-main .r-letter {
    color: #CC7777;
    font-size: 32px;
  }

  .reservation-sub {
    font-size: 18px;
    color: #B03F3F;
    margin-top: 6px;
  }

  .reservation-box {
    width: 90%;
    background-color: #ffffff;
    border-radius: 16px;
    margin: 50px auto 0;
    padding: 30px 22px 50px;
    box-sizing: border-box;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .reservation-note {
    font-size: 22px;
    text-align: center;
    margin-bottom: 25px;
    color: #6B5438;
  }

  .frame-img {
    text-align: center;
    margin-bottom: 10px;
  }

  .frame-img img {
    width: 90%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }

  .reservation-heading {
    font-size: 15px;
    text-align: center;
    margin: 30px 0 15px;
    color: #6B5438;
  }

  .reservation-list {
    list-style-type: "・";
    list-style-position: inside;
    padding-left: 0;
    margin: 0 auto;
    text-align: left;
  }

  .reservation-list li {
    font-size: 14px;
    line-height: 1.9;
    color: #6B5438;
    margin-bottom: 10px;
    text-indent: 0;
  }

  .web-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    /* margin-top: -60px; */
  }

  .web-btn {
    width: 80%;
    background-color: #F7E4A9;
    color: #6B5438;
    font-size: 17px;
    padding: 14px 0;
    border-radius: 40px;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    font-family: "Rounded Mplus 1c", sans-serif;
    font-weight: 500;
    transition: 0.3s;
  }

  .web-btn:hover {
    background-color: #F4D87E;
    transform: translateY(-2px);
  }
}




/* ------------------------------
   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;
  }



}