*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --shu: #C23A2B;
  --shu-light: #D94F40;
  --shu-pale: rgba(194, 58, 43, 0.06);
  --shu-border: rgba(194, 58, 43, 0.15);
  --gold: #B8975A;
  --gold-light: #D4B97A;
  --cream: #FBF6EE;
  --cream-dark: #F0E8DA;
  --white: #FFFFFF;
  --text-main: #2E2424;
  --text-body: #4A3F3F;
  --text-sub: #7A6E6E;
  --font-mincho: 'Zen Old Mincho', 'Yu Mincho', serif;
  --font-sans: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.8;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.hero {
  position: relative;
  padding: 0;
  background: transparent;
}

.hero-main-image {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding: 72px 24px;
  max-width: 580px;
  margin: 0 auto;
}

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-heading {
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  line-height: 1.7;
}

.section-heading--center { text-align: center; }

.divider {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 24px;
}

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.35;
}

.message-text {
  font-family: var(--font-mincho);
  font-size: 16px;
  line-height: 2.5;
  color: var(--text-main);
  letter-spacing: 0.04em;
}

.message-text p { margin-bottom: 28px; }
.message-text p:last-child { margin-bottom: 0; }

.message-highlight {
  color: var(--shu);
  font-weight: 700;
}

.message-image,
.story-image {
  margin: 36px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(46, 36, 36, 0.06);
}

.profile-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
}

.profile-photo-wrap {
  width: 260px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 0;
}

.profile-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-right {
  width: 100%;
}

.profile-facts {
  text-align: left;
  font-size: 18px;
  color: #4f5f74;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 22px;
  font-family: var(--font-mincho);
  font-weight: 700;
}

.profile-facts p {
  margin: 0 0 10px;
}

.profile-line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #06C755;
  color: var(--white);
  padding: 0 28px;
  min-width: 300px;
  min-height: 74px;
  border-radius: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font-sans);
}

.profile-line-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.3);
}

.profile-sns {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.profile-sns a {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  border: 0;
  background: #7a7a7a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.profile-sns a:hover {
  opacity: 0.9;
}

.profile-sns svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.profile-sns .sns-instagram { background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 70%, #515bd4 100%); }
.profile-sns .sns-youtube { background: #ff0000; }
.profile-sns .sns-tiktok { background: #121212; }
.profile-sns .sns-facebook { background: #1877f2; }
.profile-sns .sns-blog { background: #2cbf13; }

.story-text {
  font-size: 15px;
  line-height: 2.4;
  color: var(--text-body);
  letter-spacing: 0.02em;
}

.story-text p { margin-bottom: 28px; }
.story-text p:last-child { margin-bottom: 0; }

.story-accent {
  font-family: var(--font-mincho);
  font-weight: 700;
  color: var(--shu);
}

.gallery-section {
  max-width: 580px;
  margin: 0 auto;
  padding: 72px 24px 88px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(46, 36, 36, 0.06);
}

.footer {
  padding: 28px 16px 40px;
  border-top: 1px solid rgba(184, 151, 90, 0.28);
}

.footer-text {
  text-align: center;
  font-size: 11px;
  color: var(--text-sub);
  letter-spacing: 0.04em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .section { padding: 88px 40px; }
  .section-heading { font-size: 26px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .section--profile {
    max-width: 1100px;
    background: #f0f0f0;
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .profile-card {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 64px;
    text-align: left;
    align-items: start;
  }
  .profile-photo-wrap {
    width: 300px;
    margin: 0;
  }
  .profile-facts {
    font-size: 24px;
    max-width: none;
    margin: 0 0 24px;
  }
  .profile-line-btn {
    margin-bottom: 20px;
  }
  .profile-sns {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .section--profile {
    background: #f0f0f0;
    padding-top: 36px;
    padding-bottom: 40px;
  }
  .profile-photo-wrap {
    width: 220px;
  }
  .profile-facts {
    font-size: 18px;
    line-height: 1.75;
  }
  .profile-line-btn {
    min-width: 260px;
    min-height: 58px;
    font-size: 22px;
  }
}
