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

/************************************
** MEN'S@のためにカスタムした内容
************************************/
/* トップページのキャッチフレーズ表示設定 */
.tagline{
font-size: 14pt;
color: #fff;
}
/* トップページのキャッチフレーズ表示設定 ここまで */

/* トップページのタイトル表示設定 */
    .skin-grayish.front-top-page .header-in .site-name-text {
        color: #fff;
    }
/* トップページのタイトル表示設定 ここまで */

/* 固定ページの投稿日・更新日を非表示 */
.page .date-tags {
display: none;
}
/* 固定ページの投稿日・更新日を非表示 ここまで */

/* パンくずリストを記事下部に移動 */
.page .article .breadcrumb {
    display: none;  /* 元の位置のパンくずリストを非表示 */
}

/* 記事下部に新しいパンくずリストのスタイルを設定 */
.page .article-footer .breadcrumb {
    display: block !important;  /* 強制的に表示 */
    margin: 10px 0;  /* 上下の余白 */
    padding: 10px 0;
}

/* 検索アイコンメニューを非表示 */
.search-menu-icon {
    display: none !important;
}

.search-box {
    display: none;
}

#search-menu-open {
    display: none;
}

/* フッターモバイルボタン調整 */
.mobile-footer-menu-buttons {
  background-color: rgba(228, 228, 227, 0.3) !important;
}


/* 見出しの共通スタイル */
.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
    color: #3A3A3A;
    letter-spacing: 0.2px;
    background: none; /* COCOONデフォルトの背景を削除 */
    border: none;     /* COCOONデフォルトのボーダーを削除 */
    padding-left: 0;  /* COCOONデフォルトの左パディングを削除 */
}

/* グラデーションの下線 */
.article h2::after,
.article h3::after,
.article h4::after,
.article h5::after,
.article h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, 
        #C2B3B3,
        #C2BAB3,
        #B3B8B3,
        #B3B8C2,
        #BAB3C2,
        #C2B3BA
    );
    opacity: 0.8;
}

/* COCOONのデフォルトの見出し装飾を削除 */
.article h2::before,
.article h3::before,
.article h4::before,
.article h5::before,
.article h6::before {
    display: none;
}

/* 見出しごとのサイズ調整 */
.article h1 {
    font-size: 2.5em;
}

.article h2 {
    font-size: 2em;
    padding: 0 0 12px; /* COCOONデフォルトのパディングを上書き */
    margin: 40px 0 20px; /* 適切な余白を設定 */
}

.article h3 {
    font-size: 1.75em;
    border-left: none; /* COCOONデフォルトの左ボーダーを削除 */
    padding: 0 0 12px; /* パディングを調整 */
    margin: 35px 0 20px;
}

.article h4 {
    font-size: 1.5em;
    padding: 0 0 12px;
    margin: 30px 0 20px;
}

.article h5 {
    font-size: 1.25em;
    padding: 0 0 12px;
    margin: 25px 0 20px;
}

.article h6 {
    font-size: 1.1em;
    padding: 0 0 12px;
    margin: 20px 0 20px;
}

/* モバイル対応 */
@media screen and (max-width: 480px) {
    .article h1 {
        font-size: 2em;
    }
    
    .article h2 {
        font-size: 1.75em;
    }
    
    .article h3 {
        font-size: 1.5em;
    }
    
    .article h4 {
        font-size: 1.25em;
    }
    
    .article h5 {
        font-size: 1.1em;
    }
    
    .article h6 {
        font-size: 1em;
    }
}
/* 見出しの共通スタイル ここまで */

/* アピールエリアの表示設定 */
/* トップページでアピールエリアを非表示 */
body.home .appeal {
    display: none;
}

/* 特定の固定ページでアピールエリアを非表示 */
body.page-id-74 .appeal {
    display: none;
}
/* アピールエリアの表示設定 ここまで */


/* プロフィールスライドショー用スタイル */
/* スライドショー全体のコンテナ */
.slideshow-container {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 40px;
}

/* メインスライダー */
.profile-slideshow {
    margin-bottom: 10px;  /* 大きい画像と小さい画像郡の隙間調整 */
}

.profile-slideshow .slide {
    padding: 0;
}

.profile-slideshow img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* サムネイルナビゲーション */
.thumbnail-nav {
    margin: 10px -5px 0;
}

/* 以下は既存のスタイルをそのまま維持 */
.thumbnail-item {
    padding: 0 5px;
}

.thumbnail-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.thumbnail-item img:hover {
    opacity: 0.7;
}

.thumbnail-nav .slick-current img {
    border: 4px solid #182D42;
}

/* スライダーの矢印 */
.slick-prev,
.slick-next {
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

/* 矢印アイコン自体の色を変更 */
.slick-prev:before,
.slick-next:before {
    color: #333;  /* ここを変更して矢印の色を変更 */
    opacity: 0.85;
}

/* ホバー時の矢印の色 */
.slick-prev:hover:before,
.slick-next:hover:before {
	color: #fff;
    opacity: 1;
}
/* プロフィールスライドショー用スタイル ここまで */