/* -----------------------------
  告知スペース　HOT, UPDATE
----------------------------- */

/* HOT & UPDATE Section - 横並びベース */
.hot-update-container {
  display: flex;              /* 横並び */
  justify-content: space-between; /* 左右に配置 */
  align-items: center;        /* 高さ中央揃え */
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  box-sizing: border-box;
}

.hot-update-container {
  background-color: #ececec; /* 薄いグレー */
  padding: 50px 20px;        /* 余白も確保 */
  display: flex;             /* 横並びにする場合はフレックス */               /* 子要素間のスペース */
  box-sizing: border-box;
  position: relative;
}
/* 背景文字 */
.hot-update-container::after {
  position: absolute;
  font-size: 8rem;               /* 大きめ */
  font-weight: bold;
  color: #fff; /* 薄いイエローグレー */
  z-index: 0;                     /* 背景に回す */
  pointer-events: none;           /* 文字に触れない */
  content: "UPDATE";
  right: 20px;
  bottom: 20px;                  /* 下方向の位置調整 */
}

/* 動画ラッパー */
.hot-video-wrapper {
  flex: 0 0 50%;             /* 左半分 */
  display: flex;
  justify-content: center;  /* 動画右寄せ */
}

.hot-video-wrapper video {
  max-width: 400px;           /* 最大幅400px */
  width: 100%;                /* 余白に合わせて縮小 */
  height: auto;               /* 比率維持 */
  border-radius: 16px;
  display: block;
  z-index: 10;
}

/* UPDATEリスト */
.update-wrapper {
  flex: 0 0 50%;          /* 右半分 */
  display: flex;
  justify-content: flex-start;  /* 左寄せ */
  align-items: center;          /* 高さ中央揃え */
}

.update-list {
  list-style: none;       /* 黒丸を消す */
  padding: 0;
  margin: 0;
  text-align: left;       /* 左寄せ */
  z-index: 20;
}

.update-list li {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #111;
  line-height: 1.4;
}

.update-list .update-date {
  font-weight: bold;
  margin-right: 6px;
  color: #555;
}



/* -----------------------------
  ABOUTももやまかねちち
----------------------------- */
/* 見出しを大きく */
.section.about h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}
.section.about h2 br {
  display: none; /* デフォルトは非表示 */
}


/* コンテンツ横並び */
.about-content {
  display: flex;
  align-items: center;       /* 縦方向中央揃え */
  justify-content: flex-start; /* 左寄せにして間隔を調整 */
  gap: 40px;                 /* 左右の余白 */
  max-width: 900px;          /* 横幅を制限 */
  margin: 0 auto;            /* 中央寄せ */
  flex-wrap: wrap;           /* スマホで縦並び */
}

/* 左側テキスト */
.about-text {
  flex: 1 1 400px;    /* 最小500pxで伸縮 */
  text-align: left;
  padding: 0 20px; /* 上下は0、左右に20px */
}

.about-icon {
  flex: 0 0 200px;    /* 固定サイズ */
  text-align: center;
}

.about-icon img {
  width: 180px;
  height: 180px;
  border-radius: 50%; /* 丸く切り抜き */
  object-fit: cover;
}
/* SNSアイコン */
.about-sns {
  margin-top: 8px;       /* アイコン下の余白 */
  display: flex;
  justify-content: center;
  gap: 10px;
}

.about-sns a img {
  width: 24px;            /* 小さく表示 */
  height: 24px;
  display: block;
}
/* SNSアイコンホバーで少し拡大 */
.about-sns a img {
  width: 24px;
  height: 24px;
  display: block;
  transition: transform 0.2s ease;  /* スムーズに拡大 */
}

.about-sns a img:hover {
  transform: scale(1.2);  /* 1.2倍に少し拡大 */
}
/* QRコード */
.about-qr{
  flex: 0 0 140px;   /* 横幅固定 */
  text-align: center;
}

.about-qr img{
  width: 180px;      /* QRサイズ */
  height: 180px;
  transition: transform 0.2s ease;
  cursor:pointer;
}
/* サブテキスト共通 */
.qr-sub_pc,
.qr-sub_mb{
  font-size:11px;
  color:#888;
  margin-top:2px;
}

/* デフォルト（PC） */
.qr-sub_mb{
  display:none;
}

/* ホバー拡大 */
.about-qr img:hover{
  transform: scale(1.15);
}

.qr-text{
  font-size: 12px;
  margin-top: 6px;
  color: #666;
}


/* -----------------------------
  Commission
----------------------------- */

.commission-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.commission-icons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.commission-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 0.8rem;
}

.commission-icon img {
  width: 40px; /* 小さく表示 */
  height: 40px;
  border-radius: 50%; /* 丸く */
  margin-bottom: 5px;
  transition: transform 0.2s ease;
}

.commission-icon:hover img {
  transform: scale(1.1);
}

/* -----------------------------
  Follow Me セクション専用
----------------------------- */

.follow-me-intro {
  padding-left: 20px;
  padding-right: 20px;
  line-height: 1.5;
  color: #000;             /* 黒文字 */
  text-align: center;
  margin-bottom: 30px;     /* アイコンとの間隔 */
}

.follow-me-menu {
  display: flex;
  flex-wrap: wrap;       /* スマホでは折り返す */
  justify-content: center;
  gap: 20px;             /* アイコン間の余白 */
  padding: 40px 0;         /* 上下に余白を追加 */
}

.follow-me-row {
  display: flex;
  justify-content: center;
  gap: 40px;             /* アイコン間 */
  flex-wrap: wrap;        /* 小さい画面でも折り返す */
}

.follow-me-item {
  width: 100px;
  flex: 0 0 auto;      /* 高さはアイコンとテキストに合わせる */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.follow-me-item a {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(128,128,128,0.5);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.follow-me-item a img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.follow-me-item a span {
  position: absolute;
  color: #000;
  font-size: 0.9rem;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  text-align: center;
  width: 100%;
}

.follow-me-item a:hover img {
  opacity: 0.2;
}

.follow-me-item a:hover span {
  opacity: 1;
}

.follow-me-item .label {
  font-size: 0.85rem;
  font-weight: bold;
  color: #000; 
  text-align: center;
}

/* -----------------------------
  Contact セクション専用
----------------------------- */


.contact-btn-wrapper {
  display: flex;
  justify-content: center; /* 横方向中央 */
}



@media (max-width: 600px) {
  /* ---------- Hot Update ---------- */
  .hot-update-container {
    flex-direction: column;
    align-items: center;
    padding: 30px 10px;
  }
  .hot-video-wrapper {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    padding-top: 40px;
  }
  .hot-video-wrapper video {
    max-width: 90%;
    height: auto;
  }
  .update-wrapper {
    flex: 0 0 auto;
    width: 100%;
    padding-left: 0;
  }
  .hot-update-container::before,
  .hot-update-container::after {
    font-size: 3rem;
  }
  .hot-update-container::before {
    left: 10px;
    top: 10px;
    transform: none;
  }
  .hot-update-container::after {
    right: 10px;
    bottom: 10px;
    transform: none;
    text-align: right;
  }
  .update-list li {
    width: 100%;
    margin-bottom: 12px;
    font-size: 0.9rem;
  }
  .update-list .update-date {
    font-size: 0.85rem;
  }

  /* ---------- ABOUT ---------- */
  .section.about h2 br {
    display: inline;
  }
  .about-text {
    flex: 1 1 auto;
    text-align: center;
    padding: 0;
  }
  .about-content {
    flex-direction: column;
    gap: 15px;
  }
  .about-icon img {
    width: 160px;
    height: 160px;
  }
  .about-qr {
    padding-top: 50px;
  }
  .about-qr img {
    width: 160px;
    height: 160px;
  }
  .qr-sub_pc {
    display: none;
  }
  .qr-sub_mb {
    display: block;
  }
  .qr-modal-img {
    width: 320px;
  }

  /* ---------- Commission ---------- */
  .commission-links {
    flex-direction: row; /* 横並びに戻す */
    padding-left: 20px;
    padding-right: 20px;
    gap: 0;
  }
  .commission-icons {
    flex-direction: row;
    justify-content: center;
    margin-top: 10px;
  }
  .contact-btn {
    width: calc(100% - 40px);
    max-width: 300px;
    margin: 30px auto;
 
  }

}

