/*=======================================
リセット
=======================================*/
@charset "utf-8";

html,body,h1,h2,h3,h4,h5,h6,ul,ol,dl,li,dt,dd,p,div,span,img,a,table,tr,th,td {
  border: 0;
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

article,header,sitemap,footer,aside,figure,figcaption,nav,section {
  display: block;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center; /* 中央寄せ */
  position: relative;
}

body {
  margin: 0;
  padding: 9;
  overflow-x: hidden; /* 横スクロール防止 */
  line-height: 1;
}

ol,ul {
  list-style: none;
}

main {
  display: block; /* for IE11 */
}

/* Safari用ハック 文字サイズ調整 */
html:first-child body {
  font-size: 85%;
}

/*=======================================
共通部分
=======================================*/
gNavi_update_date.clearfix:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
}

body {
  font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ','Meiryo', 'Osaka', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

#wrap {
  margin: 0 auto;
  width: 1060px;
}

header,
main,
sitemap,
footer {
  width: 100%;   /* ← 全幅にする */
  margin: 0;     /* ← 中央寄せを解除 */
}


/* ナビゲーション */
.site-nav {
  display: flex;
  align-items: center;       /* 縦方向を揃える */
  justify-content: space-between; /* 左・中央・右に配置 */
  position: relative;
  height: 60px;
}

.menu-toggle {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

.site-title {
  position: absolute;        /* 中央固定 */
  left: 50%;
  transform: translateX(-50%);
  font-family: "Bradley Hand ITC", cursive;
  font-size: 24px;
  font-weight: bold;
  color: #c0c0c0;
  text-align: center;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  margin: 0;
}

#wrap {
  flex: 1;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}

.menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: #333;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.menu.active {
  max-height: 300px;
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
}

/*=======================================
Swiper用スライダー
=======================================*/

/* Swiper本体 */
.swiper {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
  transition: opacity 1.5s ease; /* speedに合わせる */
}

.swiper-slide-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  max-width: 1060px;
  height: auto;
}


/* テキストオーバーレイ */
.text-overlay {
  position: absolute;
  top: 73%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;        /* ← 親要素を画面幅いっぱいに */
  max-width: 100vw;   /* ← 制限を画面幅に合わせる */
  text-align: center;
}

/* ロゴオーバーレイ */
.logo-overlay {
  position: absolute;
  top: 0;
  left: 0; /* ← 0にするとズレない */
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 15;
  opacity: 0.1;
}

.logo-overlay img {
  max-width: 100%;   /* ロゴの最大幅を固定 */
  height: auto;       /* 縦横比を維持 */
  display: block;
  margin: 0 auto;     /* 中央寄せ */
}


h2 {
  position: static;
  margin: 3em auto;
  z-index: 20;
  color: #333;
  font-size: 1.4rem;
  text-align: center;
  max-width: 100%;
  margin-left: 3%;
  white-space: normal;
}

/* メッセージ */
.welcome_Message_jp,
.welcome_Message_en {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  font-family: 'Meiryo', 'MS PGothic', sans-serif;
  max-width: 100vw;         /* ← 親が広がったのでこれで十分 */
  word-break: keep-all;    /* ← 日本語の不自然な改行を防ぐ */
  overflow-wrap: break-word;
  white-space: normal;
  padding: 0 1em;
}


/* サイドメニュー*/

.side-menu {
  position: fixed;
  top: 0;
  left: -250px;   /* 初期状態は隠す */
  width: 250px;
  height: 100%;
  background-color: #1e1e1e;
  color: #fff;
  transition: left 0.3s ease;
  z-index: 1000;
  padding: 20px;
}

.side-menu.active {
  left: 0;        /* 左からスライドイン */
}

.side-menu ul {
  padding: 0;
  list-style: none;
}

.side-menu li {
  margin: 20px 0;
}

.side-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

/* メニューが開いた状態 */
.side-menu.active {
  left: 0;               /* 左からスライドイン */
}

/*メニュー表示させたときに背景を暗くする*/

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 900;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-toggle {
  position: absolute;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  padding: 10px;
}

.logo {
  font-family: "Bradley Hand ITC", cursive;
  font-size: 24px;
  font-weight: bold;
  padding: 10px;
}

.sitepolicy,
.copy {
  font-size: 14px;
  color: #666;
}

/* スライド時の変化 */
body.menu-open .side-menu {
  left: 0;
}

body.menu-open .main-content {
  transform: translateX(250px);
}

/* 各スライド */


/* Swiperのカーソル制御 */

.swiper {
  width: 100%;
  height: auto;
}

a:link{
	color: #ccc;
    text-decoration : none;	
}

a:focus, .menu-toggle:focus {
  outline: 2px solid #90caf9;
}

a:visited{
    color: #c0c0c0;
    text-decoration : none;	
}

a:active{
    text-decoration : none;
	}

a:hover{
	color: #dfdfdf;
    text-decoration: none;
}

.history_box{
    clear: both;
    float: left;
    margin: 0 auto;
    margin-top: 30px;
    height: 220px;/** 高さを必ず指定 **/
    overflow: auto;/** スクロールバーが自動表示**/
}

/** コンテンツメニュー部分 **/

/** foot部分 **/
footer{
    clear: both;
    width: 100%;
    margin-top: auto;    /* ← これで常に最下部 */
    bottom: 0;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    background-color: #f5f5f5;
    background-image: url(../images/back_img.gif);
    background-repeat: repeat;
}

* {
  box-sizing: border-box;
}

/** 著作権表示 **/
.sitepolicy{
    width: 95%;
    margin: 0 auto;
    font-size: 12px;
    padding-top:30px;
    line-height: 20px;
    text-align: center;
}

.copy{
    clear: both;
    font-size: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
} 

.gNavi_update_date {
  margin-top: 20px;
  font-size: 12px;
  color: #333;
  padding: 6px 12px;
  display: inline-block;
  border-radius: 4px;
}

.gNavi_update_date a {
  color: #333;
  text-decoration: none;
  margin-right: 8px;
}

.latest_update {
  color: #333;
}

#Scene_visual,
  #Scene_visual .slick-list,
  #Scene_visual .slick-track,
  #Scene_visual .slick-slide,
  #Scene_visual .slick-slide * {
    cursor: default !important;
    pointer-events: none !important;
  }

/** original_music **/

#Original_Music_Box {
  display: flex;
  margin: 0 auto;
  padding: 0 1em;
  flex-direction: column; /* 縦並び */
  align-items: center;    /* 中央寄せ */
  gap: 1rem;              /* 画像とテキストの間に余白 */
  background: #0b1a2e;
}

#Msg_box {
  width: 85%;
  margin: 0 auto;
  text-align: center;
}

.Msg_jp, .Msg_en {
  line-height: 1.6;
  color: #666;
  text-align: center;
  margin: 1em auto;
}

#Original_Music_Box p{
    width: 70%;
    border-bottom: solid 0.5px #888;
    padding-bottom: 1%;
    line-height: 22px;
    color: #666
}

#Original_Music_Box audio {
    display: block;
    margin: 1% auto;   /* 上下に少し余白を入れて中央寄せ */
    padding: 0;        /* 左右のpaddingは不要 */
    max-width: 100%;   /* はみ出し防止 */
}

.album-heading {
  color: #fff;
  text-align: center;
  margin: 40px 0 10px;
  font-size: 1.2rem;
  font-family: "Georgia", serif;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  background-position: center;
  background-size: cover;
  background: linear-gradient(90deg, rgba(39,74,120,1) 20%, rgba(193,228,233,1) 60%, rgba(255,255,255,1) 100%);
}

#Music_Box{
    position: relative;
    max-width: 900px;
    margin: 0 auto;

}

#Music_Box p {
    line-height: 1.8;        /* 固定値40px → 相対値に変更 */
    width: 100%;             /* 90% → 100% にしてはみ出し防止 */
    margin: 0 auto 20px;     /* 下に余白を追加 */
    padding: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 6px;
    background: rgba(255,255,255,0.6);
    box-sizing: border-box;  /* ← はみ出し防止の決定打 */
}


h3{
    width: 100%;
    font-size: 16px;
    color: #555;
    padding-top: 30px;
    padding-bottom: 5px;
    margin-top: 3%;
    margin-bottom: 3%;
    text-align: center;
    background: rgb(39, 116, 120);
    background: linear-gradient(90deg, rgba(39,74,120,1) 0%, rgba(193,228,233,1) 80%, rgba(255,255,255,1) 100%); 
    z-index: 10;
}

h4{
  margin-top: 100px;
  text-align: center;
  font-size: 26px;
}

.track-title {
  margin-top: 1%;
  font-size: 19px;
  font-family: 'Fredericka the Great', cursive;
  color: #666;
  margin-left: 0%;
}


/** Impacted musian **/
#musician_box {
  max-width: 900px;
  margin: 0 auto;
}

.album-box {
  width: 100%;
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center; /* 中央寄せ */
  border-radius: 8px;
}

.album-box p {
  line-height: 1.8;
  font-size: 1rem;
}



.album-block {
  display: flex;
  width: 100%;
  gap: 2rem;
  min-height: 300px;
}

.album-art{
  width: 500px;
  padding: 20px;
}

.album-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 縦中央 */
  align-items: center;     /* 横中央 */
  padding-right: 0.8rem;
  border-right: 1px solid #ccc;
}

.album-right {
  flex: 1;
  line-height: 1.57;
}

.main-img {
  width: 300px;
  max-width: 100%;
  border-radius: 6px;
}

.thumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.thumb {
  width: 60px;
  cursor: pointer;
  border-radius: 4px;
  opacity: 0.8;
  transition: 0.2s;
}

.thumb:hover {
  opacity: 1;
}
.h6-fixed {
    position: fixed;
    top: 20px;
    left: 1%;
    width: 95%;
    z-index: -1;
}

h6{
    margin-top: 1%;
    font-size: 16px;
    font-family: 'Fredericka the Great', cursive;
    color: #666;
    margin-left: 12%;
}

.history{
    position: relative;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #666;
    line-height: 25px;
}

.history-wrapper {
  display: flex;
  justify-content: center;
  gap: 5%;
  margin: 0 auto;
  max-width: 900px;
}

.Hp_history_L,
.Hp_history_R {
  width: 45%;
  font-size: 12px;
  color: #666;
  line-height: 20px;
}


:root {
  --bg-light: #f5f5f5;
  --bg-dark: #121212;
  --text-light: #333;
  --text-dark: #e0e0e0;
}

body {
  background-color: var(--bg-light);
  color: var(--text-light);

}
    
@media (prefers-color-scheme: dark) {
  body {
    background-color: var(--bg-dark);
    color: var(--text-dark);
  }
}

/**アニメーションの統一**/
:root {
  --transition-fast: 0.3s ease;
}
.menu, .side-menu, .main-content {
  transition: var(--transition-fast);
}

/* about me */
  .page-wrapper {
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 20px 80px;
      background-color: #ffffff;
      font-family: "Noto Sans JP", sans-serif;

    }
  .page-wrapper p{
    line-height: 1.9;
  }

    h1 {
      text-transform: uppercase;
      margin-top: 30px;
      margin-bottom: 30px;
      font-family: "Oswald", sans-serif;
      font-weight: 600;
      font-size: 1.9rem;
      letter-spacing: 0.08em;
    }

    h2{
      font-family: "Montserrat", "Noto Sans JP", sans-serif;
    }

    .intro {
      margin-bottom: 2.5em;
      font-size: 0.98rem;
    }


    .section {
      margin-bottom: 2.5em;
    }

    .equipment-list {
      margin: 0 0 1.2em 1.2em;
      padding: 0;
      list-style: disc;
    }

    .equipment-list li {
      margin-bottom: 0.4em;
    }

    .photo-block {
      margin: 2em 0;
      text-align: center;
      color: #666;
      font-size: 0.9rem;
    }

    .photo-block img {
      max-width: 85%;
      height: auto;
      display: block;
      margin: 0 auto 0.7em;
      box-shadow: 0 12px 28px rgba(0,0,0,0.25);
      border-radius: 4px;
    }

/* ================================
   Personal Classics – Album Card
   ================================ */

/* 全体の余白 */
.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* アーティスト紹介 */
.artist-intro p {
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 40px;
  color: #333;
}

/* アーティスト名 */
.artist-name {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

.artist-name a {
  color: #222;
  text-decoration: none;
  border-bottom: 2px solid #ccc;
  padding-bottom: 4px;
}

/* ================================
   固定見出し（h5）
   ================================ */

.fixed-heading {
  font-size: 1.2rem;
  margin: 20px 0 30px;
  padding-bottom: 6px;
  border-bottom: 2px solid #ccc;
  color: #333;
  background: #fff;
  z-index: 1000;
}

/* 固定された状態 */
.fixed-heading.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 20px;
  margin: 0;
  border-bottom: 2px solid #aaa;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}



/* ================================
   アルバムカード
   ================================ */

.album-card {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-bottom: 60px;
  padding: 25px;
  border-radius: 12px;
  background: #fafafa;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}


/* ダークモード対応 */

@media (prefers-color-scheme: dark) {
  body {
    background-color: #121212;
    color: #e0e0e0;
  }
  .page-wrapper {
        background-color: #181818;
      }
      h2 {
        border-bottom-color: #333;
      }
      .photo-block {
        color: #aaa;
      }
    
  header, footer, .menu {
    background-color: #1e1e1e;
  }
  a, .menu a, .title, h2, .banner_title, h2.sitepolicy, .copy {
    color: #e0e0e0;
  }

    
}

/*ダークモードアニメーション */
body,
header,
footer,
.menu,
.menu a,
.title,
h2,
.banner_title,
.sitepolicy,
.copy {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/*ダークモードここまで*/



