@charset "utf-8";

body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  background-color: #FFEFE1;
  color: #005D48;
  overflow-x:hidden;
}
img {
  max-width:100%;
}

/*ヘッダー*/

header {
  background-color: #FFEFE1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  border-bottom: 1px solid #ccc;
  height: 80px;
  box-sizing: border-box;
  z-index: 50;
  position: relative;
}
.logo img {
  height: 50px;
width: auto;
  display:block;
  max-width: none; /* 勝手に縮まないようにする */
  flex-shrink: 0;  /* flexの圧縮対象から外す */
}
.menu-container {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  max-width: 900px;
}
.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #005D48;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s;
  width: 90px;
  padding: 10px 0;
  line-height: 1.5;
}
.menu-item:hover {
  opacity: 0.6;
}
.menu-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 0.3rem;
  flex-shrink: 0;
}
.divider {
  width: 1px;
  height: 40px;
  background-color: #ccc;
  margin: 0 6px;
}
.sns-icons {
  display: flex;
  flex-direction: row;
  gap: 0.7rem;
  margin-left: 1rem;
  align-items: center;
}
.sns-icons a {
  width: 24px;
  height: 24px;
  opacity: 0.8;
}
.sns-icons a:hover {
  opacity: 1;
}
.sns-icons img {
  width: 100%;
  height: auto;
}

/* ハンバーガーボタン */
.hamburger {
  display: none; /* PC時は非表示 */
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1rem;
  color: #005D48;
}


/*メイン*/
main {
  max-width: 960px;
  margin: 0 auto 3rem auto;
  padding: 0 1rem;
}
section {
  margin-bottom: 3rem;
}
h2 {
  font-size: 1.5rem;
  color: #005D48;
  display: inline-block;
  position: relative;
  margin-bottom: 1rem;
}
h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 60%;
  height: 3px;
  background-color: #005D48;
  border-radius: 2px;
}

/*フッター*/
footer {
  background:#005D48;
  color:#fff;
  padding:2rem 1rem;
  font-size:0.9rem;
}
.footer-content {
  max-width:960px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:1rem;
}
.footer-content-div {
  min-width:150px;
}
.footer-content h3 {
  margin-top:0;
  font-weight:700;
  font-size:1.1rem;
}
.footer-sns {
  min-width:120px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:0.5rem;
}
.footer-sns div {
  display:flex;
  gap:0.7rem;
}
.footer-sns a {
  display:inline-block;
  width:24px;
  height:24px;
}
.footer-sns img {
  width:100%;
  height:auto;
  filter: brightness(0) invert(1);
}

/*準備中*/
.coming-soon-page .hero {
  background: #FFEFE1;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #005D48;
}

.coming-soon-page .hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.coming-soon-page .hero p {
  font-size: 1.2rem;
}

.coming-soon-page .navigation-hint {
  margin: 2rem auto;
  text-align: center;
}

.coming-soon-page .navigation-hint p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.coming-soon-page .link-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #005D48;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}


@media (max-width: 768px) {
  .menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: #FFEFE1;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    transition: right 0.3s ease;
    z-index: 1100;
  }

  .menu-container.active {
    right: 0;
  }

  .hamburger {
    display: block;
    margin-left: 0.5rem;
    z-index: 1101;
  }

  header {
    justify-content: space-between;
padding:1rem;
  }

  .sns-icons {
    padding-right:50px;
    margin-left: auto;
    display: flex;
    align-items: center;
  }

  .menu-item {
    flex-direction:row;
    width:80%;
    font-size:0.9rem;
    margin-bottom:10px;
    gap:10px;
  }

  .divider {
    display: none;
  }
  main {
    padding: 0 1rem;
  }
  .footer-content {
    flex-direction: column;
    align-items: center; /* 中央寄せ */
    text-align: center;
  }

  .footer-content-div {
    width: 100%;
    min-width: auto;
    margin-bottom: 1.5rem;
  }

  .footer-sns {
    align-items: center;
  }

  .footer-sns div {
    justify-content: center;
  }

}