@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
/* --- 固定サイドメニュー：画面右端にしっかり表示 --- */
.fixed-side-menu {
  position: fixed;
  top: 35%;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 9999;
  background: transparent;
  pointer-events: auto;
}

/* --- サイドアイテムの共通スタイル --- */
.fixed-side-menu .menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 5px 0;
  border-radius: 6px 0 0 6px;
  text-decoration: none;
  font-size: 12px;
  transition: background-color 0.3s ease;
  color: white;
}

/* --- ラベル（下部テキスト） --- */
.fixed-side-menu .menu-item span {
  font-size: 11px;
  color: #fff;
  margin-top: 2px;
  line-height: 1;
}

/* --- アイコン（中央） --- */
.fixed-side-menu .menu-item i {
  font-size: 18px;
  margin-bottom: 4px;
  text-align: center;
}
/* ホーム：黄色 */
.fixed-side-menu .menu-item:nth-child(1) {
  background-color: #FFD700;
}
.fixed-side-menu .menu-item:nth-child(1):hover {
  background-color: #e6c200;
}
.fixed-side-menu .menu-item:nth-child(1) i {
  color: #fff;
}

/* メール：スカイブルー */
.fixed-side-menu .menu-item:nth-child(2) {
  background-color: #00BFFF;
}
.fixed-side-menu .menu-item:nth-child(2):hover {
  background-color: #009acd;
}
.fixed-side-menu .menu-item:nth-child(2) i {
  color: #fff;
}

/* YouTube：赤 */
.fixed-side-menu .menu-item:nth-child(3) {
  background-color: #FF0000;
}
.fixed-side-menu .menu-item:nth-child(3):hover {
  background-color: #cc0000;
}
.fixed-side-menu .menu-item:nth-child(3) i {
  color: #fff;
}

/* Instagram：ピンク */
.fixed-side-menu .menu-item:nth-child(4) {
  background-color: #FF69B4;
}
.fixed-side-menu .menu-item:nth-child(4):hover {
  background-color: #e0559d;
}
.fixed-side-menu .menu-item:nth-child(4) i {
  color: #fff;
}

/* X（Twitter）：黒 */
.fixed-side-menu .menu-item:nth-child(5) {
  background-color: #000000;
}
.fixed-side-menu .menu-item:nth-child(5):hover {
  background-color: #333333;
}
.fixed-side-menu .menu-item:nth-child(5) i {
  color: #fff;
}

/* LINE：ライムグリーン */
.fixed-side-menu .menu-item:nth-child(6) {
  background-color: #32CD32;
}
.fixed-side-menu .menu-item:nth-child(6):hover {
  background-color: #28b428;
}
.fixed-side-menu .menu-item:nth-child(6) i {
  color: #fff;
}

/* ラベル文字（span）を白に統一 */
.fixed-side-menu .menu-item span {
  font-size: 11px;
  color: #fff;
  line-height: 1;
  margin-top: 2px;
}
.thumbnail-slider {
  position: relative;
  top: -80px;
  z-index: 10;
  margin-bottom: -80px;
}
.mega-menu-container {
  position: relative;
  display: inline-block;
  margin: 0 12px;
}

.mega-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;     /* ✅ 下線をなくす */
  background-color: transparent;
  color: #0073aa;            /* ✅ 常時青文字 */
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 4px;
  line-height: 1.4;
}

