@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){
  /*必要ならばここにコードを書く*/
}

/* FV CTAボタン */
.fv-cta-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: absolute;
  bottom: 180px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
}
.fv-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
  min-width: 200px;
  text-align: center;
}
.fv-cta-btn:hover {
  opacity: .9;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.fv-cta-btn--primary {
  background: #333;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.fv-cta-btn--secondary {
  background: #fff;
  color: #333 !important;
  border: 2px solid #333;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
@media (max-width: 640px) {
  .fv-cta-wrap {
    flex-direction: column;
    align-items: center;
    bottom: 180px;
    max-width: 320px;
    gap: 20px;
  }
  .fv-cta-btn {
    width: 100%;
    font-size: 13px;
    padding: 12px 20px;
    min-width: unset;
  }
}

/* iPhone SE対応（375px以下） */
@media (max-width: 375px) {
  .fv-cta-wrap {
    bottom: 180px !important;
    gap: 16px;
    max-width: 280px;
  }
  .fv-cta-btn {
    font-size: 11px;
    padding: 8px 12px;
  }
}

/* FVロゴ画像を上に移動 */
.header-in .logo-header {
  position: relative !important;
  top: -80px !important;
}