﻿/* ================================
   基本設定
================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

body {
  margin: 0;
  padding: 0;
  text-align: center;
  background: #0d0d0d url(back.jpg) center center / cover no-repeat;
  background-attachment: scroll;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  font-size: 17px;
}

/* ================================
   レイアウトコンテナ
================================ */
.box,
.box2 {
  margin: 0 auto;
  max-width: 650px;
  width: 100%;
  padding: 0 18px;
}

.box {
  text-align: left;
}

.box2 {
  text-align: right;
}

/* ================================
   見出し（History / Live / Profile など）
================================ */
.section-title {
  font-size: 22px;
  font-weight: 600;
  margin: 40px 0 16px;
  padding-left: 10px;
  border-left: 4px solid #ffffff;
}

/* ================================
   画像のモダン化
================================ */
img {
  max-width: 100%;
  height: auto;
  border: 0;
  border-radius: 4px;
}

/* メニュー画像は角丸なし */
.menu-img {
  border-radius: 0;
}

/* メンバーアイコン（高さを統一） */
.member-icon {
  height: 80px;
  width: 40px;
  border-radius: 0; /* 必要なら角丸を無効化 */
}

/* ================================
   リンク
================================ */
a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

/* ================================
   区切り線（line_onpu.gif の代替も可能）
================================ */
.divider {
  width: 100%;
  max-width: 550px;
  margin: 30px auto;
  opacity: 0.85;
}

/* ================================
   スマホ用調整
================================ */
@media (max-width: 600px) {
  body {
    font-size: 16px;
    line-height: 1.75;
  }

  .box,
  .box2 {
    padding: 0 14px;
  }

  .section-title {
    font-size: 20px;
    margin: 32px 0 14px;
  }
}
