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

/*フォント*/
body {
	font-family: "League Spartan", sans-serif;
}
/*PC固定ヘッダーロゴのサイズをPCヘッダーロゴと合わせる*/
.header-container-in.hlt-top-menu .logo-header img {
    height: 50px;
    width: auto;
}
/*モバイルヘッダーサイズ*/
.mobile-menu-buttons{
	height: 60px;
}
.mobile-menu-buttons>li {
	padding-top: 8px;
}
/*480px以下モバイルヘッダーロゴサイズ*/
@media screen and (max-width: 480px){
	.logo-menu-button img {
		width: 200px;
	}
	.mobile-menu-buttons>li {
    padding-top: 10px;
	}
}
/*モバイルメニューのキャプション文字非表示&サイズ・位置調整*/
.mobile-menu-buttons {
	font-size: 25px;
}
.mobile-menu-buttons .menu-caption {
	display: none;
}
.mobile-menu-buttons .menu-icon {
	padding-top: 3px;
}
/*フロント固定ページのタイトルを非表示*/
.home.page .entry-title{
  display: none;
}
/* 固定ページの不要情報を非表示 */
.page .date-tags, /*投稿日・更新日*/
.page .author-info, /*投稿者情報*/
.archive-title .fa, /*カテゴリー、タグごとのアーカイブページでのフォルダーのアイコン*/
.page .eye-catch-wrap { /*アイキャッチ*/
display: none;
}
/* モバイル端末（900px以下）でギャラリーを1カラムにする */
@media (max-width: 900px) {
    .wp-block-gallery.columns-2 {
        display: flex !important;
        flex-direction: column !important;
    }
    .wp-block-gallery.columns-2 .wp-block-image {
        width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}
/*モバイルサブメニューの閉じるボタンカスタマイズ（CSSで「極細の×」を描画する）*/
	/* 元のアイコンを消す */
	.navi-menu-close-button .fa-close {
		display: none !important;
	}
	/* ボタンの土台を調整 */
	.navi-menu-close-button {
		position: relative;
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		width: 44px;  /* クリックしやすいサイズ */
		height: 44px;
		cursor: pointer;
		margin-left: 8px;
	}
	/* 疑似要素で2本の線を引く */
	.navi-menu-close-button::before,
	.navi-menu-close-button::after {
		content: "";
		position: absolute;
		width: 20px;       /* 線の長さ */
		height: 1px;        /* 線の太さ（ここを2pxにすると少し太くなります） */
		background-color: currentColor; /* 文字色と同じ色 */
		transition: 0.3s;
	}
	/* 45度回転させて「×」にする */
	.navi-menu-close-button::before {
		transform: rotate(45deg);
	}
	.navi-menu-close-button::after {
		transform: rotate(-45deg);
	}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

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

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