* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 1画面固定（スクロールなし） */
body, html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #000;
  color: #fff;
  position: relative;
}

/* -----------------------------------
   1. 背景動画エリア
----------------------------------- */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* -----------------------------------
   2. 画面中央のメインコンテンツ
----------------------------------- */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 真中央配置 */
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 650px;
}

.content h1 {
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.logo-area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-logo {
  width: 100%;
  max-width: 450px; /* PCでのロゴの最大幅 */
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.7));
}

/* -----------------------------------
   3. 画面最下部に固定表示するSNSエリア
----------------------------------- */
.sns-container {
  position: absolute;
  bottom: 40px; /* 画面最下部からの距離 */
  left: 50%;
  transform: translateX(-50%); /* 水平中央配置 */
  z-index: 2;
  text-align: center;
  width: 100%;
}

.sns-title {
  font-size: 0.8rem;
  font-weight: bold; /* ← 【追加】文字を太字にする */
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  opacity: 0.9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
/* SNSリンク全体を【上揃え】に固定する */
.sns-links {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* ← 【最重要】すべてアイコンの上端を基準に揃える */
  gap: 24px;
}

/* リンクタグの下線・高さを強制リセット */
.sns-links a {
  display: inline-block;
  text-decoration: none !important; /* ← アンダーバー（下線）を強制的になくす */
  border-bottom: none !important;   /* ← ボーダー下線も念のため消去 */
  line-height: 0;                   /* ← 下のテキスト用隙間を完全に潰す */
  outline: none;
}

.sns-links a:hover {
  opacity: 0.8;
}

/* SNSアイコン共通サイズ */
.sns-links img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

/* SNSロゴごとの個別拡大調整 */
.sns-links img.icon-insta {
  transform: scale(1);
}
.sns-links img.icon-line {/* LINEロゴの拡大と高さを微調整 */
 
}/* リンク（aタグ）の下線を完全に消す */
.sns-links a {
  display: inline-block;
  text-decoration: none; /* ← 【重要】リンクのアンダーバーを消す */
  line-height: 1;        /* 文字の余計な高さをなくす */
  transition: transform 0.3s ease, opacity 0.3s ease;
.sns-links a:hover {
  opacity: 0.8;
}
}
.sns-links img.icon-ameblo {
  transform: scale(1);
margin-left: -18px;    /* ← 【追加】左に10px引き寄せて間隔を詰める */}
/* SNSアイコン共通設定 */
.sns-links img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;        /* ← 余計な下隙間を排除 */
  vertical-align: bottom;/* ← 画像の基準位置を下揃えにする */
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}
/* -----------------------------------
   スマートフォン向けの微調整 (768px以下)
----------------------------------- */
@media (max-width: 768px) {
  .content h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .main-logo {
    max-width: 80%;
  }

  .sns-container {
    bottom: 30px;
  }

  .sns-links img {
    width: 36px;
    height: 36px;
  }
}

