:root{
  --bg:#0e0f11;
  --panel:#0b0c0d;
  --muted:#bfc3c6;
  --accent:#e6e6e6;
  --line: #cfcfcf;
  --maxwidth: 1100px;
  --gap: 20px;
  --nav-gap: 28px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Noto Sans", "Helvetica Neue", Arial, sans-serif;
}

html, body{
  margin: 0;
  padding: 0;
  background-image: url("/images/WallPaper.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  font-family: 'Helvetica Neue', sans-serif;
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* align-items: center; ←この行を削除またはコメントアウト */
  justify-content: flex-start;
}

/* レスポンシブ（スマホ） */
@media (max-width:640px){
  .site{ padding:18px; }
  header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 0 18px 0;
  }
  .logo {
    width: 80px;
    min-width: 80px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  .logo img {
    height: 80px;
    width: auto;
    display: block;
    margin: 0 auto;
  }
  nav {
    gap: 18px;
    font-size: 16px;
    letter-spacing: 4px;
    margin-left: 0;
    justify-content: center;
    width: 100%;
  }
  .insta-cta{ font-size:18px; }
}

.site {
  max-width: 1100px; /* ← 1100pxから広げる、または削除してみる */
  width: 100%;       /* ← 横幅いっぱいに広げる */
  margin: 0 auto;
  padding: 28px 32px; /* ← 余白を調整（必要なら減らす） */
  display: flex;
  flex-direction: column;
  align-items: stretch; /* ← stretchで横幅いっぱいに */
}

/* ヘッダー */
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start; /* ←左寄せ */
  gap: var(--gap);
  padding: 6px 0 18px 0;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}
.logo img {
  height: 90px;
  width: auto;
  display: block;
  margin: 0;
}
nav {
  display: flex;
  gap: var(--nav-gap);
  margin-left: 12px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
  letter-spacing: 6px;
  text-transform: uppercase;
}
nav a{
  color:var(--accent);
  text-decoration:none;
  opacity:0.95;
  transition:opacity .18s, transform .12s;
}
nav a:hover{ opacity:1; transform: translateY(-1px); }

/* フッター */
footer.sitefoot {
  margin-top: 48px;
  padding: 24px 0 12px 0;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 2px;
  border-top: 1px solid var(--line);
  background: rgba(14,15,17,0.7);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.insta-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  font-size: 18px;
  margin-top: 8px;
  opacity: 0.95;
  transition: opacity .18s;
}
.insta-cta:hover {
  opacity: 1;
}
.insta-cta img {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

.slider {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.slides {
  display: flex;
  transition: transform 0.7s cubic-bezier(.77,0,.18,1);
  width: 100%;
}
.slides img {
  width: 100%;
  object-fit: cover;
  flex-shrink: 0;
  aspect-ratio: 16/9;
  display: block;
}