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

}
 
/* ------------------------------
  Information .html
------------------------------ */

/* ===== お知らせセクション ===== */

h2 {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-size: 30px;
  color: #6b5438; 
  margin-bottom: 40px;
  text-align: center; 
}


.news-section {
  max-width: 300px;
  margin: 30px auto;
  padding: 60px 30px 80px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-image: url('image/decorative-flower.svg'); 
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 100px;
}

.news-title {
  font-family: "Rounded Mplus 1c", sans-serif; 
  font-weight: 600;
  font-size: 15px;
  color: #c16464;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  margin-top: 30px;
  position: relative;
}

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

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

/* お知らせ項目 */
.news-item {
  margin-bottom: 30px;
  border-bottom: 1px solid #B56969;
  padding-bottom: 15px;
  position: relative;
  transition: all 0.3s ease;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item:hover {
  background-color: #f9f0f0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.news-date {
  font-family: "Rounded Mplus 1c", sans-serif; 
  font-weight: 400;
  font-size: 14px;
  color: #B56969;
  margin-bottom: 5px;
}

.news-link {
  font-family: "Rounded Mplus 1c", sans-serif; 
  font-weight: 500;
  font-size: 14px;
  color: #B56969;
  display: block;
  margin-top: 10px;
  text-align: right;
  text-decoration: none;
}

.news-link:hover {
  text-decoration: underline;
  color: #CC7777;
}

/* 次のページボタン */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.pagination a {
  font-family: "Rounded Mplus 1c", sans-serif; 
  font-weight: 500;
  font-size: 16px;
  color: #CC7777;
  padding: 10px 20px;
  background-color: #F6D7D7;
  border-radius: 20px;
  margin: 0 10px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.pagination a:hover {
  background-color: #B56969;
  color: white;
}

.pagination .disabled {
  background-color: #f0f0f0;
  color: #d3d3d3;
  pointer-events: none;
}

/* ------------------------------
 news SP
------------------------------ */



@media screen and (max-width: 768px) {
  .news-section {
    width: 400px;
    padding: 40px 20px;
    margin-top: 10px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 14px; /
    margin-bottom: 90px;
  }

  h2 {
    font-size: 20px; 
    text-align: center;
    color: #6b5438;
    margin-bottom: 20px; 
  }


  .news-item {
    margin-bottom: 18px;
    padding-bottom: 10px;
    font-size: 16px; 
  }

  .news-link {
    font-size: 14px; 
    display: inline-block;
    margin-top: 5px;
  }

  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px; 
  }

  .pagination a {
    font-size: 14px;
    padding: 8px 15px;
    background-color: #F6D7D7;
    border-radius: 15px;
    margin: 0 8px;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px; 
  }

  .hero-btn {
    padding: 12px 25px; 
    font-size: 14px; 
    border-radius: 20px;
  }

  .yellow {
    background-color: #F6D7D7;
    color: #6B5438;
  }
}


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

  
}


