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

/*フッターロゴサイズ*/
.footer-bottom-logo .logo-image {
	padding: 0;
	max-width: 300px;
}

.footer-bottom-logo img {
	height: 150px;
	width: auto;
}

/*ハートボタンに置き換えたメニューボタンを独自画像に変更*/
.fa-heart:before {
	background-image: url(https://honiko-illust.com/wp-content/uploads/2025/06/A7A2857D-453C-4B78-B51C-956A07026546.png);
	background-position: center -2px;
	background-size: cover;
	content: '';
	display: block;
	height: 65px; /*アイコンの高さを指定*/
	width: 65px; /*アイコンの横幅を指定*/
}

/*りんごボタンに置き換えたホームボタンを独自画像に変更*/
.fa-apple:before {
	background-image: url(https://honiko-illust.com/wp-content/uploads/2025/06/768AAA10-F8A6-456C-84B6-24385344DF2F.png);
	background-position: center -2px;
	background-size: cover;
	content: '';
	display: block;
	height: 65px; /*アイコンの高さを指定*/
	width: 65px; /*アイコンの横幅を指定*/
}

/*モバイルメニューの影を消す*/
@media screen and (max-width: 1023px) {
	.mobile-header-menu-buttons {
	    box-shadow: none;
	}
}
.mobile-menu-buttons {
    box-shadow: none;
}

/*モバイルメニューの文字を削除*/
/*1023px以下*/
@media screen and (max-width: 1023px){
  .mobile-menu-buttons .menu-caption{
    display: none;
  }
  .mobile-menu-buttons{
    align-items: center;
  }
}

/*ヘッダーの背景色を変えて影を消す追加CSS*/
.menu-button-in{
	background-color: transparent!important;
	box-shadow: none !important;
    border-bottom: none !important;
}

/*ヘッダーモバイルボタンの文字色と背景色を変更*/
.search-menu-button.menu-button,
.navi-menu-button.menu-button{
	background: transparent;
	color: #E2DBCD;
}

.logo-menu-button.menu-button{
	background-color: transparent;
	height: 60px;
}

.mobile-menu-buttons{
	background: transparent;
}

/*ヘッダー上部余白をなくす*/
.mblt-header-mobile-buttons {
margin-top: 0;
}

/*モバイルメニュー右から出現させる*/
.navi-menu-content {
  left: auto;
  right: 0;
  transform: translateX(105%);
}

/*グローバルナビメニューに境界線を追加*/
#navi .navi-in > ul > li {
position: relative;
display: flex; /* ← 横並び＆高さ整えるために追加 */
align-items: center; /* ← 縦方向に中央寄せ */
padding: 10px 15px; /* ← 適宜調整 */
background-color: #C0B191; /* ← 元の背景色を戻してね */
}

#navi .navi-in > ul > li:not(:last-child)::after {
content: "";
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 0;
width: 1px;
height: 20px; /* ← 短くしたい線の長さ */
background-color: #eee;
}