/* ===========================
   melt in sound — style.css
=========================== */

@import url('https://fonts.googleapis.com/css2?family=GFS+Didot&family=Noto+Sans+JP:wght@300;400;500&family=Raleway:wght@300;400;500;600&display=swap');

/* Variables */
:root {
  --black:      #0a0a0a;
  --white:      #f8f8f6;
  --jade:       #4A9E7F;
  --jade-mid:   #3a8f72;
  --jade-dark:  #2D7A5F;
  --gray-light: #ebebeb;
  --gray-mid:   #aaaaaa;
  --gray-dark:  #555555;
  --font-en:    'GFS Didot', 'Georgia', serif;
  --font-jp:    'Noto Sans JP', sans-serif;
  --font-label: 'Raleway', sans-serif;
  --transition: 0.35s ease;
  --nav-h:      64px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(248,248,246,0.96);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 32px; width: auto; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}
.nav.scrolled .nav-links a { color: var(--black); }
.nav-links a:hover,
.nav-links a.active { color: var(--jade); }
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active { color: var(--jade); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: background var(--transition);
}
.nav.scrolled .nav-hamburger span { background: var(--black); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-label);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--jade); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--black);
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 48px 56px;
}
.hero-title {
  font-family: var(--font-en);
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  text-align: left;
  cursor: pointer;
  animation: heroFloat 4s ease-in-out infinite;
  text-shadow:
    3px 3px 0px rgba(7,188,204,0.45),
    5px 5px 0px rgba(230,1,192,0.45),
    7px 7px 0px rgba(233,1,154,0.45),
    9px 9px 0px rgba(139,0,255,0.45);
  transition: text-shadow 0.3s ease;
}
.hero-title:hover {
  text-shadow: none;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-sns {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-sns a {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  writing-mode: vertical-rl;
  transition: color var(--transition);
}
.hero-sns a:hover { color: var(--jade); }

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.5);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
.scroll-indicator span {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
}

/* ===== WAVE SECTION ===== */
.wave-section {
  background: var(--black);
  height: 100px;
  position: relative;
  overflow: hidden;
}
#wave-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 96px 48px;
  background: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--jade);
  display: block;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-en);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 6px;
}
.section-title-ja {
  font-size: 12px;
  color: var(--gray-mid);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.section-line {
  width: 40px;
  height: 1px;
  background: var(--jade);
  margin: 0 auto;
}

/* ===== NEWS ===== */
.news-section { max-width: 900px; margin: 0 auto; }
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: grid;
  grid-template-columns: 120px 1fr 24px;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-light);
  color: var(--black);
  transition: background var(--transition);
  text-decoration: none;
}
a.news-item:hover { background: rgba(74,158,127,0.04); }
.news-date {
  font-family: var(--font-label);
  font-size: 12px;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
}
.news-tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--jade);
  border: 1px solid var(--jade);
  padding: 2px 8px;
  margin-right: 12px;
}
.news-title-text { font-size: 13px; }
.news-arrow {
  font-size: 14px;
  color: var(--gray-mid);
  transition: transform var(--transition), color var(--transition);
}
a.news-item:hover .news-arrow { transform: translateX(4px); color: var(--jade); }

.view-all-link {
  display: inline-block;
  margin-top: 40px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.view-all-link:hover { color: var(--jade); border-color: var(--jade); }

/* ===== INSTAGRAM ===== */
.instagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.instagram-follow-link {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.instagram-follow-link:hover { color: var(--jade); border-color: var(--jade); }

/* ===== SNS CLIP GRID ===== */
.clip-sns-section {
  background: var(--black);
  display: flex;
  flex-direction: column;
}
.clip-sns-row { display: grid; }
.clip-sns-row-2 { grid-template-columns: 1fr 1fr; }
.clip-sns-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.clip-sns-box {
  position: relative;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
}
.clip-sns-icon,
.clip-sns-hover {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.clip-sns-icon svg,
.clip-sns-hover svg { width: 22px; height: 22px; }
.clip-sns-icon {
  color: rgba(255,255,255,0.55);
}
.clip-sns-icon span {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.clip-sns-hover {
  position: absolute;
  inset: 0;
  background: var(--jade);
  color: var(--white);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clip-sns-hover span {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.clip-sns-box:hover .clip-sns-hover {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PAGE HERO ===== */
.page-hero {
  height: 260px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero-bg-text {
  position: absolute;
  font-family: var(--font-en);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 400;
  color: rgba(255,255,255,0.04);
  letter-spacing: 0.05em;
  user-select: none;
  white-space: nowrap;
}
.page-hero-content { text-align: center; position: relative; z-index: 1; }
.page-hero-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 8px;
}
.page-hero-title {
  font-family: var(--font-en);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
}

/* ===== ABOUT ===== */
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.about-photo-grid-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.about-photo-grid-item:hover img { transform: scale(1.03); }
.about-band-name {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.about-genre {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--jade);
  margin-bottom: 28px;
}
.about-description {
  font-size: 13.5px;
  line-height: 2;
  color: var(--gray-dark);
  margin-bottom: 36px;
}
.about-meta { display: flex; flex-direction: column; gap: 12px; }
.about-meta-item { display: flex; gap: 20px; align-items: baseline; }
.about-meta-label {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jade);
  min-width: 52px;
}
.about-meta-value { font-size: 13px; color: var(--gray-dark); }

/* ===== MEMBERS ===== */
.members-section {
  padding: 80px 48px;
  background: var(--black);
}
.members-section .section-label { color: var(--jade); }
.members-section .section-title { color: var(--white); }
.members-section .section-line { background: var(--jade); }
.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.member-card { text-align: center; }
.member-photo {
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 3/4;
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
  filter: grayscale(20%);
}
.member-card:hover .member-photo img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.member-role {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 4px;
}
.member-name {
  font-family: var(--font-en);
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.05em;
}

/* ===== MUSIC ===== */
.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.disc-card { }
.disc-jacket {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--gray-light);
}
.disc-jacket img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.disc-card:hover .disc-jacket img { transform: scale(1.04); }
.disc-year {
  font-family: var(--font-label);
  font-size: 10px;
  color: var(--gray-mid);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.disc-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.disc-links { display: flex; gap: 8px; flex-wrap: wrap; }
.disc-link {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jade);
  border: 1px solid var(--jade);
  padding: 4px 10px;
  transition: background var(--transition), color var(--transition);
}
.disc-link:hover { background: var(--jade); color: var(--white); }

/* MV */
.mv-section {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 80px;
}
.mv-section .section-header { margin-bottom: 32px; }
.mv-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--black);
}
.mv-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== LIVE ===== */
.live-section { max-width: 900px; margin: 0 auto; }
.live-list { display: flex; flex-direction: column; gap: 0; }
.live-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-light);
}
.live-date {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}
.live-info {}
.live-title { font-size: 14px; font-weight: 500; margin-bottom: 3px; }
.live-venue { font-size: 12px; color: var(--gray-mid); }
.live-ticket a {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jade);
  border: 1px solid var(--jade);
  padding: 6px 14px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.live-ticket a:hover { background: var(--jade); color: var(--white); }
.live-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--gray-mid);
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* ===== CONTACT ===== */
.contact-section { max-width: 700px; margin: 0 auto; }
.contact-note {
  text-align: center;
  font-size: 13px;
  line-height: 2;
  color: var(--gray-dark);
  margin-bottom: 48px;
}
.contact-form { display: flex; flex-direction: column; gap: 28px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}
.form-label span {
  font-size: 10px;
  color: var(--gray-mid);
  margin-left: 8px;
  text-transform: none;
  letter-spacing: 0;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-jp);
  font-size: 13px;
  border: 1px solid var(--gray-light);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--jade); }
.form-textarea { height: 160px; resize: vertical; }
.form-submit { text-align: center; }
.submit-btn {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: none;
  padding: 16px 56px;
  cursor: pointer;
  transition: background var(--transition);
}
.submit-btn:hover { background: var(--jade); }

/* ===== THANKS ===== */
.thanks-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
}
.thanks-section h2 {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
}
.thanks-section p { font-size: 14px; color: var(--gray-dark); line-height: 2; }

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  padding: 48px 48px 24px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-img { height: 28px; width: auto; margin-bottom: 8px; }
.footer-tagline {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gray-mid);
}
.footer-nav {
  display: flex;
  gap: 28px;
}
.footer-nav a {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-copy {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-label);
  letter-spacing: 0.05em;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ADMIN ===== */
.admin-wrap {
  min-height: 100vh;
  background: #f0f0f0;
  padding: 40px 20px;
  font-family: var(--font-jp);
}
.admin-box {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.admin-box h1 {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 28px;
  text-align: center;
}
.admin-container { max-width: 900px; margin: 0 auto; }
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--jade);
}
.admin-header h1 { font-family: var(--font-en); font-size: 22px; font-weight: 400; }
.admin-logout {
  font-family: var(--font-label);
  font-size: 11px;
  color: var(--gray-mid);
  text-decoration: underline;
}
.admin-section {
  background: #fff;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.admin-section h2 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-light);
}
.admin-form { display: flex; flex-direction: column; gap: 12px; }
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  padding: 8px 12px;
  font-size: 13px;
  border: 1px solid var(--gray-light);
  font-family: var(--font-jp);
  outline: none;
}
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus { border-color: var(--jade); }
.admin-form textarea { height: 80px; resize: vertical; }
.admin-btn {
  align-self: flex-start;
  background: var(--black);
  color: #fff;
  border: none;
  padding: 8px 24px;
  font-size: 12px;
  font-family: var(--font-label);
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s;
}
.admin-btn:hover { background: var(--jade); }
.admin-btn-danger {
  background: transparent;
  color: #c00;
  border: 1px solid #c00;
  padding: 4px 12px;
  font-size: 11px;
  cursor: pointer;
}
.admin-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.admin-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: #f8f8f8;
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .section { padding: 72px 28px; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .discography-grid { grid-template-columns: repeat(2, 1fr); }
  .live-item { grid-template-columns: 1fr; gap: 6px; }
  .live-ticket { margin-top: 6px; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 640px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 56px 20px; }
  .news-item { grid-template-columns: 90px 1fr; }
  .news-arrow { display: none; }
  .members-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .clip-sns-row-3 { grid-template-columns: 1fr 1fr 1fr; }
  .clip-sns-box { height: 90px; }
  .hero-sns { display: none; }
  .members-section { padding: 56px 20px; }
  .footer-inner { padding: 0 0 24px; }
  footer { padding: 40px 20px 20px; }
  .admin-box { padding: 24px 20px; }
}
