@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
/* ===============================
   底部広告バー（フッターメニューの1つ上に固定）
   =============================== */
.hkz-bottom-ad-wrapper{
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(56px + env(safe-area-inset-bottom)); /* ←フッターメニューの高さに合わせて調整 */
  z-index: 9500;
  pointer-events: none; /* 内側だけタップ可にするため */
}

.hkz-bottom-ad-track{
  pointer-events: auto;
  margin: 0 auto;
  max-width: 560px;
  height: 56px;
  box-sizing: border-box;
  background: #111;
  border-radius: 6px 6px 0 0;
  overflow: hidden;

  display: flex;
  transform: translateX(0);
  transition: transform 0.45s ease;
}

.hkz-bottom-ad-slide{
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  box-sizing: border-box;
  text-decoration: none;
  color: #fff;
}

.hkz-bottom-ad-inner{
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.hkz-bottom-ad-thumb{
  width: 64px;
  height: 40px;
  border-radius: 4px;
  background: #444; /* ここを画像に差し替えてOK */
  flex-shrink: 0;
}

.hkz-bottom-ad-text{
  font-size: 11px;
  line-height: 1.4;
  overflow: hidden;
}

.hkz-bottom-ad-title{
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hkz-bottom-ad-meta{
  font-size: 9px;
  opacity: 0.7;
  margin-top: 2px;
}

/* 小さい画面向け微調整 */
@media (max-width: 375px){
  .hkz-bottom-ad-track{
    height: 52px;
  }
  .hkz-bottom-ad-slide{
    padding: 4px 6px;
  }
  .hkz-bottom-ad-title{
    font-size: 10px;
  }
}
