@charset "UTF-8";

/*!
Theme Name: Cocoon Child Kyucon
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/*QA目次のボタン関連*/
/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  _font-size: 62.5%;/*rem算出をしやすくするために*/

  scroll-behavior: smooth; /* CSSでページ内リンクでスムーススクロール */
}



.btn,
a.btn,
button.btn {
  width: 100%;
  max-width: 860px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 2rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
/* ↑ボタンのベースCSSここまで */

a.btn--radius {
  border-radius: 100vh;
}

.btn--blue-01,
a.btn--blue-01 {
  color: #fff;
  background-color: #52bcc8;
}
.btn--blue-01:hover,
a.btn--blue-01:hover {
  color: #fff;
  background: #e79709;
}

.btn--blue-02,
a.btn--blue-02 {
  color: #fff;
  background-color: #166f87;
}
.btn--blue-02:hover,
a.btn--blue-02:hover {
  color: #fff;
  background: #e79709;
}


.btn--blue-03,
a.btn--blue-03 {
  color: #fff;
  background-color: #3db093;
}
.btn--blue-03:hover,
a.btn--blue-03:hover {
  color: #fff;
  background: #e79709;
}

.qa-btns-space {
  padding-top: 1.4em;
}

.btn-last {
  padding-bottom: 4em;
}


/* QAのアコーディオン */

section.qa h2 {
	padding-bottom: 0.5em;
}

section.qa h3 {
	padding: 0.5rem 1rem;
	border-left: 10px double #ea6b48;
}

details {
  border: none;
}
details:not(:last-child) {
  margin-bottom: 20px;
}

/**
 * list-style: none; ←デフォルト三角削除（Chrome非対応）
 * cursor: pointer; ←カーソルをポインターに
**/
details summary {
  list-style: none;
  cursor: pointer;
  padding: 1em;
  color: #333333;
  font-size: 1em;
  font-weight: bold;
  border-bottom: 1px solid #195d94;
}
/**
 * Chrome用のデフォルト三角削除
**/
details summary::-webkit-details-marker {
  display: none;
}
/**
 * Font Awesomeのプラスアイコン使用
**/
details summary::before {
  font-family: FontAwesome;
  content: '\f067';
  margin-right: 20px;
  color: #ea6f37;
}
/**
 * アコーディオンがオープン時はマイナスアイコンに変更
**/
details[open] summary::before {
  content: '\f068';
}

details p {
  margin: 0;
  padding: 20px;
  background: #f3f3f3;
}

/************************************
** ●記事中にフォームを設置した際の調整@240216
************************************/
#main table th { 
  color: #000;
}


/************************************
** ●ヘッダーメニュー幅調整　SNSアイコンを追加@220124
************************************/
#menu-item-2586, #menu-item-2585 { /*SNSアイコンメニュー幅変更*/
  width: 38px!important;
}
#menu-item-2586 .caption-wrap,
#menu-item-2585 .caption-wrap { /*アイコンサイズ*/
  font-weight: 500;
  font-size: 18px;
}

/************************************
** ●記事中の文字列リンクの調整@250110
************************************/
.entry-content a:link { 
  color: #1967d2;
  font-weight: bold;
}
.entry-content a:visited { 
  color: #1967d2;
  font-weight: bold;
}


.toc a:link {
	font-weight: 400;
}

/************************************
****　記事本文　ブログカード　ラベルが表示されない対策CSS
************************************/
.bct-related .blogcard-label,/*関連記事*/
.bct-reference .blogcard-label,/*参考記事*/
.bct-reference-link .blogcard-label,/*参考リンク*/
.bct-popular .blogcard-label,/*人気記事*/
.bct-together .blogcard-label,/*あわせて読みたい*/
.bct-detail .blogcard-label,/*詳細はこちら*/
.bct-check .blogcard-label,/*チェック*/
.bct-pickup .blogcard-label,/*ピックアップ*/
.bct-official .blogcard-label,/*公式サイト*/
.bct-dl .blogcard-label{/*ダウンロード*/
display: inline !important;
background-color: #90C31F;
margin-left:.5em;
}
@media screen and (max-width: 600px){
.blogcard-label{
margin-left:-0.3em!important;
}
}


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

}

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

	/*ヘッダーの文字と背景の色を変える*/
	.search-menu-button.menu-button,
	.navi-menu-button.menu-button{
		background-color: #156e8e;
		color: #FFFFFF;
	}

	.logo-menu-button.menu-button{
		background-color: #156e8e;
	}

	.mobile-menu-buttons .menu-button > a {
		color: white;
	}
	
}

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

	
	
}
