@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Yomogi&family=Zen+Maru+Gothic:wght@400;500;700;900&family=Noto+Sans+JP:wght@400;500;700&display=swap");
/* ==========================================================================
   Reset / base
   ========================================================================== */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fdfbf7;
  color: #2c2620;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* 全ページ共通のセクション見出しパターン */
section {
  padding: 96px 0;
}

.section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 16px;
  margin-bottom: 48px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section-num {
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: #e8917a;
}

h2 {
  font-family: "Yomogi", "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.8vw, 34px);
  margin: 0;
  letter-spacing: 0.02em;
}

.section-sub {
  color: #8a8073;
  font-size: 13.5px;
  margin-left: auto;
}
@media (max-width: 600px) {
  .section-sub {
    margin-left: 0;
    width: 100%;
  }
}

/* 稜線モチーフの区切り線（ロゴのグラデーションを踏襲） */
.ridge-rule {
  height: 2px;
  border: none;
  margin: 0;
  background: linear-gradient(100deg, #6fb3a0, #e8917a 55%, #dfb15a);
  opacity: 0.7;
}

/* ==========================================================================
   Header
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 251, 247, 0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e7ddc9;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 72px;
}

.brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img {
  height: 80px;
  width: auto;
}

nav.links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 13.5px;
  letter-spacing: 0.03em;
}
nav.links a {
  text-decoration: none;
  color: #8a8073;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  white-space: nowrap;
}
nav.links a:hover {
  color: #e8917a;
}

.nav-toggle {
  display: none;
}

@media (max-width: 760px) {
  nav.links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #ffffff;
    padding: 20px 24px 28px;
    gap: 16px;
    border-bottom: 1px solid #e7ddc9;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  nav.links.open {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle {
    display: block;
    background: none;
    border: 1px solid #e7ddc9;
    border-radius: 8px;
    color: #2c2620;
    width: 38px;
    height: 34px;
    font-size: 16px;
  }
}
/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  padding: 64px 0 40px;
  background: #f5efe4;
}

.foot-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 8px;
}

.foot-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.foot-brand img {
  height: 80px;
  width: auto;
}

.foot-info {
  color: #8a8073;
  font-size: 13.5px;
  margin-top: 12px;
  line-height: 2;
}

.foot-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 13.5px;
}
.foot-links a {
  text-decoration: none;
  color: #8a8073;
}
.foot-links a:hover {
  color: #e8917a;
}

.copyright {
  margin-top: 40px;
  font-size: 12px;
  color: #8a8073;
  letter-spacing: 0.02em;
}/*# sourceMappingURL=common.css.map */