@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
*/

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

/*スクロールアニメーション*/
.in-header {
  position: absolute;
  bottom: 40px; /* ← ここを下げた（元: 30px） */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.in-header .scroll-text {
  font-size: 14px;
  color: #ffffff; /* 白寄りに */
  font-family: "EB Garamond", serif;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4); /* 黒背景にも映える */
}

.in-header .scroll-arrow {
  width: 16px;
  height: 16px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
  animation: bounceDown 1.8s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0) rotate(-45deg); }
  50%      { transform: translateY(8px) rotate(-45deg); }
}









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

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

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