/*
Theme Name: Lightning Child
Theme URI:
Template: lightning
Description:
Author: Vektor,Inc.
Author URI: https://www.vektor-inc.co.jp
Tags:
Version: 0.6.1
*/

/***** 著作 *****/
.site-footer-copyright p:nth-child(2) {
    display:none;
}
/* ページヘッダーを非表示 */
.page-header { display:none; }

/* 会員注意書き */
p.swpm-note {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 14px;
}
/* Earthページの最初のカバーブロックの背景画像の引き伸ばしを防止 */
.page-id-XX .wp-block-cover.alignfull.has-background-dim {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center top !important;
}

.btn-detail {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0073aa;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s, background-color 0.4s;
}

.btn-detail::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background-color: #005f8a;
  transition: width 0.4s, height 0.4s, top 0.4s, left 0.4s;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.btn-detail:hover::before {
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
}

.btn-detail:hover {
  color: #fff;
  background-color: #005f8a;
}

.btn-detail span {
  position: relative;
  z-index: 1;
}

/* ==========================
   会員ログインボタン装飾
   ========================== */
#menu-item-3730 a {
  background-color: #38b6c8; /* ボタン背景色 */
  color: #fff;                /* 文字色 */
  padding: 14px 20px;         /* ボタン内余白 */
  border-radius: 40px;        /* 丸み */
  transition: all 0.3s ease;  /* ホバー時アニメーション */
  text-decoration: none;      /* 下線消去 */
  display: inline-block;      /* ボタン化 */
}

#menu-item-3730 a:hover {
  background-color: #2fa1b0; /* ホバー時背景色 */
}

/* ==========================
   左5つ通常メニュー文字ホバー色
   ========================== */
#global-nav ul.menu li.menu-item:not(#menu-item-3730) a:hover strong {
  color: #38b6c8; /* ホバー時水色文字 */
}

/* ==========================
   Lightningテーマデフォルト下線消去
   擬似要素によるラインも完全に消す
   ========================== */
.global-nav-list > li:before {
  border-bottom: none !important;  /* 下線消去 */
  content: none !important;        /* 擬似要素自体消去 */
}