/* 
Theme Name: Arkhe Child
Template: arkhe
Description: Arkheの子テーマです。
Version: 3.12.0
*/
/* MV全体の設定 */
.mv-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  /* 背景画像：画像に合わせてcenter topかbottomを調整してください */
  background: url(http://tune.ichi-com.co.jp/wp-content/uploads/2026/02/mv-bg.jpg) no-repeat center bottom / cover;
}

.mv-container {
  position: relative;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}

/* テキスト（左寄り・中央付近） */
.mv-text {
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}

/* --- PC・タブレット共通 --- */
.mv-img {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 95%;
  max-width: 1200px;
  z-index: 2;
}

.mv-img img {
  /* PCでは180pxから可変、最小100pxまで */
  width: clamp(100px, 15vw, 180px);
  height: auto;
}

/* --- スマホ表示（2×2に固定） --- */
@media screen and (max-width: 768px) {
  .mv-img {
    flex-wrap: wrap;
    /* 100px × 2列 + 隙間10px = 210px 前後に幅を絞ることで3枚並びを阻止 */
    width: 220px; 
    gap: 10px;
    bottom: 20px;
  }

  .mv-img img {
    /* スマホ時は最小値の100pxで固定 */
    width: 100px;
    height: 100px;
    object-fit: contain; /* 画像が歪まないように */
  }
}
/* MV内ナビ（右中央固定） */
.mv-nav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
background-color: #fff;
}
.mv-nav ul { list-style: none; }
.mv-nav li { margin-bottom: 15px; }

/* 以前設定した「擬似・縁取り」シャドウの適用 */
.nav-item.is-active .nav-item-title {
  display: inline-block;
  font-weight: bold;
  text-shadow: 
    2px 2px 0 #fff, -2px -2px 0 #fff, 
    2px -2px 0 #fff, -2px 2px 0 #fff, 
    0 2px 0 #fff, 0 -2px 0 #fff, 
    2px 0 0 #fff, -2px 0 0 #fff, 
    3px 3px 0 #fff, -3px -3px 0 #fff, 
    4px 4px 6px rgba(0, 0, 0, 0.4);
}

/* 追従ボタン（画面右上に固定） */
.fix-btn {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  background: #4a5475; /* 紺色系 */
  border: 4px solid #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.fix-btn img{
	    width: 50px;
}