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

/************************************
** 子テーマ用のスタイルを書く
************************************/

/* ----------------------------------------------------------
   トップページのスタイル
---------------------------------------------------------- */
/* トップページのヘッダー・フッター非表示 */
.front-top-page .article-header,
.front-top-page .article-footer {
  display: none;
}

/* セクションの余白 */
.section-wrap {
  padding-top: 5em;
  padding-bottom: 5em;
  margin-bottom: 0;
}

/* ----------------------------------------------------------
   見出しスタイル
---------------------------------------------------------- */
.heading {
  --heading-color: #7a7a72; /* メインカラー */
  text-align: center; /* 中央揃え */
  font-size: 4em; /* フォントサイズ */
  color: var(--heading-color); /* メイン色を適用 */
  letter-spacing: 2px; /* 字間調整 */
  line-height: 1.4; /* 行の高さ */
  font-weight: bold; /* 太字 */
  position: relative; /* ラインの起点 */
  padding-bottom: 1rem; /* ラインとの距離 */
  margin-bottom: 3rem; /* 下の要素との余白 */
}

@media screen and (max-width: 480px) {
  .heading {
    font-size: 3em; /* SP用フォントサイズ */
  }
}

/* サブ見出し */
.heading span {
  display: block; /* ブロック要素化 */
  font-size: 0.9rem; /* サイズ */
  font-weight: normal; /* 太字を解除 */
}

/* 見出し下のライン */
.heading::after {
  content: ""; /* 疑似要素 */
  position: absolute; /* 絶対配置 */
  bottom: 0; /* 下端に配置 */
  left: 50%; /* 左から50% */
  width: 2.5rem; /* ライン幅 */
  height: 1px; /* ラインの太さ */
  background-color: var(--heading-color); /* ラインの色 */
  transform: translateX(-50%); /* 中央寄せ */
}

/*--------------------------------------
   リンクボタン
---------------------------------------*/
/* ボタン配置エリア */
.link-btn {
  --link-btn-color: #7a7a72; /* ボタン色 */
  display: block; /* ブロック化 */
  text-align: center; /* 中央揃え */
}

/* ボタン本体 */
.link-btn a {
  display: inline-block; /* インラインブロック */
  box-sizing: border-box; /* 枠線込み計算 */
  width: auto; /* 幅自動 */
  min-width: 300px; /* 最小幅 */
  max-width: 100%; /* はみ出し防止 */
  padding: .7em 3em; /* 余白 */
  border: 1px solid var(--link-btn-color); /* 枠線 */
  border-radius: 0; /* 角丸なし */
  color: var(--cocoon-text-color); /* 文字色 */
  text-decoration: none; /* 下線除去 */
  font-weight: 500; /* 太字 */
  /* 修正: all を、変化する background-color, border-color, color に置き換え */
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease; /* ホバーアニメーション */
  position: relative; /* 矢印の起点 */
}

/* 矢印 */
.link-btn a:after {
  content: ""; /* 疑似要素 */
  border-bottom: 1px solid var(--cocoon-text-color); /* 下線 */
  border-right: 1px solid var(--cocoon-text-color); /* 右線 */
  width: 15px; /* 横幅 */
  height: 3px; /* 高さ */
  transform: skewX(45deg); /* 斜め変形 */
  position: absolute; /* 絶対配置 */
  right: 20px; /* 横位置 */
  bottom: 50%; /* 縦位置 */
  transition: border-color .3s ease, right .3s ease; /* 矢印アニメーション */
}

/* ホバー */
.link-btn a:hover {
  background-color: var(--link-btn-color); /* 背景色 */
  border-color: var(--link-btn-color); /* 枠線色 */
  color: var(--cocoon-white-color); /* 文字色 */
  opacity: 1; /* 透過防止 */
}

/* 矢印ホバー */
.link-btn a:hover:after {
  border-color: var(--cocoon-white-color); /* 矢印色 */
  right: 15px; /* 移動 */
}

@media screen and (max-width: 480px) {
  .link-btn a {
    width: 100%;
    min-width: unset; /* 最小幅解除 */
  }
}

/* ----------------------------------------------------------
   記事カード
---------------------------------------------------------- */
.widget-entry-cards.card-large-image .a-wrap {
  max-width: 600px;
  width: 100%;
}

/* グリッドレイアウト */
.widget-entry-cards.large-thumb {
  display: grid;
  justify-items: center;
  gap: 16px;
}

/* 新着記事グリッド */
.new-entry-cards.large-thumb {
  grid-template-columns: repeat(2, 1fr);
}

/* 人気記事グリッド */
.popular-entry-cards.large-thumb {
  grid-template-columns: repeat(3, 1fr);
}

/* モバイルレイアウト */
@media screen and (max-width: 834px) {
  .new-entry-cards.large-thumb {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cate-area .new-entry-cards.large-thumb,
  .popular-entry-cards.large-thumb {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .cate-area .large-thumb .new-entry-card-title,
  .popular-entry-card-title {
    font-size: 14px !important;
  }
}

/* ----------------------------------------------------------
   タブ切り替え
---------------------------------------------------------- */
.tab-switch {
  --active-tab-color: #7a7a72;
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin: auto;
  justify-content: center;
  gap: 10px 5px;
}

/* タブボタン */
.tab-switch > label {
  flex: 1 1 auto;
  order: -1;
  position: relative;
  padding: 0.7em 1em;
  border-bottom: 1px solid var(--active-tab-color);
  color: var(--active-tab-color);
  text-align: center;
  cursor: pointer;
  transition: 0.3s all;
}

/* ホバー・選択状態 */
.tab-switch > label:hover,
.tab-switch label:has(:checked) {
  background-color: var(--active-tab-color);
  color: #fff;
}

/* 選択タブの下の三角形 */
.tab-switch label:has(:checked)::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 18px;
  height: 9px;
  background-color: var(--active-tab-color);
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* ラジオボタン非表示 */
.tab-switch input {
  display: none;
}

/* タブ内容 */
.tab-switch > div {
  display: none;
  width: 100%;
  padding: 1.5em 0;
}

/* チェック時に表示 */
.tab-switch label:has(:checked) + div {
  display: block;
}

/* トップページのスタイルここまで------ */

/* トップページヘッダー・フッター非表示 */
.front-top-page .article-header,
.front-top-page .article-footer {
   display: none;
}


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

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

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

