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

/*サイトのテーマカラーを設定*/
:root {
  --ThemeColorA: #c75100;
  --ThemeColorB: #dd6e21;
  --ThemeColorC: #ffffff;
  --ThemeColorD: #000000;
  --SysColorA1: #c75100;
  --SysColorA2: #c75100;
  --SysColorB1: #dd6e21;
  --SysColorB2: #dd6e21;
  --SysColorC1: #ffffff;
  --SysColorC2: #ffffff;
}


/*固定ページの投稿日、更新日、投稿者名を非表示にする*/
.post-8 .date-tags, /* トップページ */
.post-85 .date-tags, /* コンテンツ */
.post-10 .date-tags, /* ブログ */
.post-12 .date-tags, /* リンク */
.post-21 .date-tags, /* 組織について */
.page .author-info {
  display: none;
}

/*アンカーリンク着地点を少し上に*/
html {
	scroll-snap-type: y proximity;
	scroll-padding-top: 80px;
 	scroll-behavior: smooth;
}

/*ロゴにRocknRollフォントを使用*/
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&family=RocknRoll+One&display=swap');
.site-name-text {
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*アピールエリアの最小高さを解除*/
.appeal .appeal-in {
  min-height: unset;
}

/*アピールエリアを画像の縦横比に合わせる*/
.appeal {
  aspect-ratio: 1920 / 480;
  background-size: cover;
}

/*メインカラムのまるみ*/
#main {
  border-radius: 8px;
}

/*サイドバーのまるみ*/
#sidebar{
  border-radius: 8px;
}

/*  ◆◆◆◆◆◆◆◆◆◆◆◆◆
/* ◆                        ◆
/*  ◆ システム - radio     ◆
/* ◆                        ◆
/*  ◆◆◆◆◆◆◆◆◆◆◆◆◆

/* システム - カスタムradio */
.uksys input[type="radio"] + label {
  display: inline-flex;
  width: 160px;
  height: 32px;
  line-height: 32px;
  color: var(--SysColorA1);
  background-color: var(--SysColorC1);
  border: 2px solid var(--SysColorA1);
  border-radius: 32px;
  margin: 4px 2px 4px 2px;
  transition-duration: 0.2s;
}

/* システム - カスタムradio:hover */
.uksys input[type="radio"]:hover + label {
  color: var(--SysColorC1);
  background-color: var(--SysColorB1);
  transition-duration: 0.2s;
}

/* システム - カスタムradio:checked */
.uksys input[type="radio"]:checked + label {
  color: var(--SysColorC1);
  background-color: var(--SysColorA1);
  transition-duration: 0.2s;
}

/* システム - カスタムradio 元のradioを非表示 */
.uksys input[type="radio"] {
  display: none;
}

/* システム - カスタムradio 書式設定 */
.uksys input[type="radio"] + label span {
  display: inline-block;
  width: 100%;
  height: 32px;
  line-height: 28px;
  text-align: center;
  font-size: 0.9em;
}

/*  ◆◆◆◆◆◆◆◆◆◆◆◆◆
/* ◆                        ◆
/*  ◆ システム - checkbox  ◆
/* ◆                        ◆
/*  ◆◆◆◆◆◆◆◆◆◆◆◆◆

/* システム - カスタムcheckbox */
.uksys input[type="checkbox"] + label {
  display: inline-flex;
  width: 160px;
  height: 32px;
  line-height: 32px;
  color: var(--SysColorA1);
  background-color: var(--SysColorC1);
  border: 2px solid var(--SysColorA1);
  border-radius: 32px;
  margin: 4px 2px 4px 2px;
  transition-duration: 0.2s;
}

/* システム - カスタムcheckbox:hover */
.uksys input[type="checkbox"]:hover + label {
  color: var(--SysColorC1);
  background-color: var(--SysColorB1);
  transition-duration: 0.2s;
}

/* システム - カスタムcheckbox:checked */
.uksys input[type="checkbox"]:checked + label {
  color: var(--SysColorC1);
  background-color: var(--SysColorA1);
  transition-duration: 0.2s;
}

/* システム - カスタムcheckbox 元のcheckboxを非表示 */
.uksys input[type="checkbox"] {
  display: none;
}

/* システム - カスタムcheckbox 書式設定 */
.uksys input[type="checkbox"] + label span {
  display: inline-block;
  width: 100%;
  height: 32px;
  line-height: 28px;
  text-align: center;
  font-size: 0.9em;
}

/* ==========================================
   ウキス観光協会様向け：見出しメリハリCSS
========================================== */

/* h2（大見出し）：優先度を最強化して確実に反映 */
.main .article h2,
#main .article h2,
div.article h2 {
    background: #e66a00 !important; /* ディープなオレンジ */
    color: #ffffff !important; /* 文字色白 */
    font-size: 1.4em !important;
    padding: 14px 20px !important;
    border-radius: 5px !important;
    border: none !important;
    margin-top: 2.5em !important;
    font-weight: bold !important;
}

/* h3（中見出し）：左側にオレンジの太線 ＋ 優しいベージュの背景 */
.article h3 {
    background: #fff8f2 !important; /* ほんのりオレンジがかった優しいベージュ */
    color: #333333;
    font-size: 1.25em;
    border-left: 6px solid #ff7c00 !important; /* 明るいオレンジの縦線 */
    border-bottom: none !important; /* デフォルトの下線を消す */
    padding: 12px 16px;
    margin-top: 2em;
    border-radius: 0 4px 4px 0; /* 右側の角だけ少し丸く */
}

/* h4（小見出し）：すっきりしたオレンジのドット下線 */
.article h4 {
    background: none !important;
    color: #444444;
    font-size: 1.15em;
    border-left: none !important;
    /* スタイリッシュで少しポップな水玉（ドット）のアンダーライン */
    border-bottom: 3px dotted #ff9d42 !important; 
    padding: 8px 4px;
    margin-top: 1.8em;
}

/* アシスターカード装飾 */
.uksys img.ancient_normal {
  width: 88px;
  padding : 4px;
  border-radius: 8px;
  border: 1px solid #32362e;
  background: linear-gradient(to right bottom, #ffffff, #32362e)
}

.uksys img.ancient_magic {
  width: 88px;
  padding : 4px;
  border-radius: 8px;
  border: 1px solid #052b7f;
  background: linear-gradient(to right bottom, #97e1ff, #052b7f)
}

.uksys img.ancient_unique {
  width: 88px;
  padding : 4px;
  border-radius: 8px;
  border: 1px solid #7e1c0e;
  background: linear-gradient(to right bottom, #ffbea7, #7e1c0e)
}

.uksys img.ancient_legend {
  width: 88px;
  padding : 4px;
  border-radius: 8px;
  border: 1px solid #7e7706;
  background: linear-gradient(to right bottom, #fff798, #7e7706)
}
