/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* スムーズスクロール */
html {
  scroll-behavior: smooth;
}

:root {
  --gold: #FFD700;
  --gold-dark: #daba27;
  --sage-green: #a2b5a0;
  --sumi: #333333;
  --light-gray: #f8f8f8;
  --white: #ffffff;
  --font-noto-serif-jp: "Noto Serif JP", serif;
  --font-zen-kaku-gothic-new: "Zen Kaku Gothic New", sans-serif;
  --font-noto-sans-jp: "Noto Sans JP", sans-serif;
}

body {
  height: 100vh;
  place-items: center;
  font-family: var(--font-noto-serif-jp);
  line-height: 1.6;
  color: var(--sumi);
  background-image: url('../images/washi-background.png');
}

/* メニュー開時のスクロール制御 */
body.menu-open {
  overflow: hidden;
}

/* レイアウト */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* メインコンテナ */
.main-container {
  background-image: url('../images/washi-background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-blend-mode: multiply;
}

/* トップセクション */
.top-section {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.top-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  padding-top: 4rem;
  width: 100%;
  max-width: none;
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.logo-image {
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .logo-image {
    width: 21rem;
    height: 21rem;
  }

  .top-content {
    padding: 0;
  }

  .logo-container {
    margin-top: 5rem;
  }
}


.fade-in {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 4s cubic-bezier(0.4, 1, 0.5, 1) forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ヘッダー */
.header-nav {
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--sumi);
  font-family: var(--font-noto-serif-jp);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--gold-dark);
  background-color: rgba(255, 215, 0, 0.1);
}

.nav-link.active_ {
  color: var(--gold-dark);
  background-color: rgba(255, 215, 0, 0.15);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle-line {
  width: 25px;
  height: 1.8px;
  background-color: var(--sumi);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {

  .nav-container {
    padding: 0;
    justify-content: center;
  }

  .nav-menu {
    gap: 7px;
    justify-content: center;
  }

  .nav-link {
    font-size: 9px;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(162, 181, 160, 0.4);
  }
}


/* Footer */
.footer {
  background-image: url('../images/washi-background.png');
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-info {
  text-align: center;
}

.footer-text {
  font-family: var(--font-noto-sans-jp);
  color: var(--sumi);
  font-size: 1.25rem;
}

.footer-contact {
  text-align: center;
}

.footer-link {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
}

.footer-link:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo {
  text-align: center;
}

.footer-logo-img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.footer-copyright {
  font-family: var(--font-noto-sans-jp);
  color: var(--sage-green);
  font-size: 0.75rem;
}

.line-icon {
  position: static !important;
  bottom: auto !important;
  right: auto !important;
  z-index: auto !important;
}

@media (max-width: 768px) {
  .footer-content {
    gap: 0;
  }

  .footer {
    padding: 0;
    margin-top: 175px;
  }
}