@charset "UTF-8";

/*
 * フロントヘッダー
 */

/* フロントページのヘッダー */
#front-header {
  display: block !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* 他の要素よりも前面に */
  visibility: visible;
}
/* フロントロゴ画像 */
#front-header .navbar-brand img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

/* フロントヘッダーメニューの位置 */
#front-header .nav {
  display: flex;
  justify-content: left; /* 左寄せのまま */
  margin-top: 10px; /* ロゴとの間隔 */
}
/* フロントヘッダーメニューのリストスタイル */
#front-header ul li {
  list-style: none;
}
/* フロントページのヘッダーメニューとフッターのSNSメニュー*/
#front-header ul li a , #sns-footer ul li a{
  font-size: 39px;
  line-height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 1.5rem;
  padding-left: 0.3rem;
  opacity: 0.85;
  color: #fff;
  font-weight: 600;
}
#sns-footer ul.nav {
  padding-right: 1rem;
}
/*
 * フロントフッター
 */
/* フロントフッターの矢印 */
#front-footer-arrow{
 opacity: 0.85;
}

/* フロントページのSNSフッター */
#sns-footer {
  position: fixed;
  width: 100%;
  bottom: 0.2rem; /* フッターの高さに応じて調整 */
  left: 0;
  z-index: 999; /* 他の要素よりも前面に */
  visibility: visible;
}
/* フロントページのフッターのサブスク */
.front-subsc{
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
/* フロントページのフッター最後 */
#front-footer-end{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  flex-wrap: wrap;
  display: flex; /* 念のため明示 */
  background-color: transparent; /* ← これが追加される！ */
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 1px) !important;
}
/* コピーライト */
#copylight{
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  white-space: normal;
  word-break: break-word;
}

/* スマホ対応 */
@media screen and (max-width: 1023px) {

  /* SNSメニュー全体に左右余白を追加 */
  #sns-footer ul.nav {
    padding-right: 0.5rem;
  }

  /* フロントフッターの矢印 */
  #front-footer-arrow{
    transform: scale(0.6); /* 80%のサイズに縮小 */
    transform-origin: center; /* 中心から縮小 */
  }

  /* フロントヘッダーのロゴ画像 */
  #front-header .navbar-brand img {
    max-width: 215px; /* スマホ用に適切なサイズを指定 */
    margin-bottom: 7px;
  }
  /* フロントページのヘッダーメニューとフッターのSNSメニュー */
  #front-header ul li a , #sns-footer ul li a {
    font-size: 22px;
    line-height: 26px;
    padding-right: 6px;
    padding-left:6px;
    opacity: 1;
  }
  /* フロントページのフッター最後 */
  #front-footer-end {
    margin-top: 1rem;
    font-size: smaller;
  }

  .front-subsc, #copylight{
    font-size: 11px;
    line-height: 22px;
    margin-right: -0.25rem;
  }
  
}
