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

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

/*グローバルメニューの高さを変更*/
#navi .navi-in > ul li{
	height: 70px;
	line-height: 70px;
}

/************************************
** グローバルナビを強制的に横一列表示
************************************/
#navi ul li {
  float: left; /* 要素を左に寄せて横に並べる */
  margin: 0 !important; /* 余計なマージンをリセット */
}

/* スマホ表示の時に縦並びにならないよう、flex-wrapを無効にする */
.navi-in {
  flex-wrap: nowrap !important;
}

/* 念のため、子メニュー（ドロップダウン）も横並びにならないように設定 */
.navi ul ul li {
  float: none;
}


/* ===== 汎用 丸型CTAボタン ===== */
.cta-btn {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 14px auto;
  padding: 16px 0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: 0.2s;
}

.cta-btn:hover {
  opacity: 0.9;
}

/* ===== Yahoo!トラベル（赤） ===== */
.yahoo-travel {
  background: linear-gradient(135deg, #d40000 0%, #9c0000 100%);
}

/* ===== じゃらん（オレンジ） ===== */
.jalan {
  background: linear-gradient(135deg, #ff8d32 0%, #ff6f00 100%);
}





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

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

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




