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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
.blogcard-thumbnai, .external-blogcard-thumbnail {
	display: none;
}

.blogcard-content, .external-blogcard-content {
	margin-left: 0px;
}
.blogcard-footer.external-blogcard-footer.cf {
	display: none;
}

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

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

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

/******************************/
/** コンタクトフォームの装飾 **/
/******************************/
/*　見出し　*/
.cf7-heading {
	width: 100%;
	background-color: #00f;
	/*border-left: 1rem solid #6495ed;*/
	border-radius: 2px;
	color: #fff;
	font-weight: bold;
	padding: 1rem 2rem;
	margin: 0 0 2rem;
}
.cf7-heading p {
	margin: 0;
}

/* 必須マーク */
.cf7-must {
	background: #ff1a00;
}

/* 任意マーク */
.cf7-free {
	background: #666;
}

.cf7-must,
.cf7-free {
	color: #FFF;
	border-radius: 3px;
	font-size: 0.65rem;
	margin-left: 10px;
	padding: 2px 6px;
	letter-spacing: 0.2rem;
	vertical-align: middle;	
}

/*******************************
* コンタクトフォームのフォームの設定
********************************/
/* フォーム入力項目 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
	 width: 100%;
	 padding: 8px 15px;
	 margin-right: 10px;
	 margin-top: 10px;
	 border: 1px solid #66f;
	 border-radius: 3px;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
	outline: none;
	border: 2px solid #00f;
}
/* 送信ボタン */
input.sub-btn {
	width: 300px;
	height: 60px;
	background: #09f;
	color: #FFF;
	font-size: 1.1rem;
	font-weight: bold;
	letter-spacing: 0.2rem;
	border: 1px solid #66f;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;	
}

/* 送信ボタンホバー */
input.sub-btn:hover{
	background: #00f;
	color: #fff;  
}

/* 送信ボタン中央寄せ */
.cf7-center {
	text-align:center;
}

/* エラー表示を見やすくする */
.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
	color: #cc0000;
	font-weight: bold;
}

/*******************************
* 目次の表示
********************************/
.toc-list ul{
	display: flex;
} 


/*---------------------------------
アコーディオンボックス
--------------------------------*/
.acbox{
  width: auto;
  font-size:0px; /* ラベルと開く部分を分離する時は数値を入れる */
  margin:0 10px; /* ボックス全体の位置調整 */
}

.acbox label{
  width: auto;
  font-size: 16px; /* ラベルの文字サイズ */
  font-weight: bold;
  text-align: center;
  background: #8BC34A; /* ラベルの背景色 */
  position: relative;
  display: block;
  padding:8px;
  border-radius: 4px; /* ラベルの角の丸み */
  cursor: pointer;
  color: #fff;
}

.acbox label:hover{
  background: #8BC34A; /* ラベルにマウスを乗せた時の背景色 */
}

.acbox input{
  display: none;
}

.acbox label:after{
  color: #fff;
  content:"▼"; /* ラベルのアイコン */
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -14px;
}

.acbox input:checked ~ label::after {
  content:"▲"; /* ラベルをクリックした後のアイコン */
}

.acbox div{
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s; /* 開閉スピードの設定 */
}

.acbox input:checked ~ div{
  height: auto;
  padding: 18px; /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #F3F4F5; /* 開いた部分の背景色 */
  opacity: 1;
}

.acbox input:checked ~ label {
  background: #8BC34A; /* クリック後のラベルの背景色 */
}

.acbox-under{
  font-size: medium; /*15px; /* 開いた部分の文字サイズ */
  /*color: #555555;*/ /* 開いた部分の文字色 */
}

/******************************
 * 解説ボタン
*******************************/
.aco-str {
	border: dashed 1px #67c5ff;
	background: #f2fcff;
	border-radius: 3px;
	
	height: 0;
	padding: 0.5em 1em 0 1em;
	overflow: hidden;
	opacity: 0;
}

.aco-btn {
  display: inline-block;
  border: 1px solid #333;
  background-color: #ddd;
  padding: 0.1rem 0.3rem;
  border-radius: 0.2rem;
  line-height: 1rem;
  font-size: 0.8rem;
  margin-bottom: 0;
}
/*
 * button.aco-btn {
	display: inline-block;
	margin-bottom: 0;
	padding-right: 6px;
}
*/
button > img {
  height: 2rem;
  vertical-align: middle;
}

img {/*アイコン画像*/
  /*transition: 0.3s;*/ /*ここで指定すると、マウスカーソルがボタンから出ていくときrotateが元に戻る動きをする*/
}

button::hover img { /*ホバーでアイコン画像回転*/
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
  transition: 0.3s;
}

/*---------------------------------
吹き出し
--------------------------------*/
/* ----- 共通 ----- */
.talk {
margin-bottom: 40px;
}

.talk figure img {
width: 100%;
height: 100%;
border: 2px solid #9ce191;
border-radius: 50%;
margin: 0;
}

/* 画像の下のテキスト */
.talk-imgname {
padding: 5px 0 0;
font-size: 10px;
text-align: center;
}

p.talk-text {
margin: 0 0 0px;
}

p.talk-text::last-child {
margin-bottom: 0px;
}

/* 回り込み解除 */
.talk::after,.talk::before {
clear: both;
content: "";
display: block;
}

/* ----- 左からの場合 ----- */

/* 左画像 */
.talk-Limg {
margin-left: 4px;
margin-top: -1px;
float: left;
width: 60px;
height: 60px;
}

/* 左からの吹き出しテキスト */
.talk-Ltxt {
color: #444;
position: relative;
margin-left: 100px;
padding: 0.3em 0.6em;
border: 3px solid #9ce191;
/*background-color: #fff;*/
background-color: #ebffe7;
border-radius: 5px;
}

/* 左の三角形を作る */
.talk-Ltxt::before {
position: absolute;
content: '';
border: 8px solid transparent;
border-right: 12px solid #9ce191;
top: 6px;
left: -20px;
}

.talk-Ltxt::after {
position: absolute;
content: '';
border: 8px solid transparent;
border-right: 12px solid #ebffe7;
top: 6px;
left: -16px;
}

/* ----- 右からの場合 ----- */

/* 右画像 */
.talk-Rimg {
margin-right: 4px;
margin-top: -1px;
float: right;
width: 60px;
height: 60px;
}

/* 右からの吹き出しテキスト */
.talk-Rtxt {
position: relative;
margin-right: 100px;
padding: 0.3em 0.6em;
border: 3px solid #9ce191;
/*background-color: #fff;*/
background-color: #ebffe7;
border-radius: 5px;
}

/* 右の三角形を作る */
.talk-Rtxt::before {
position: absolute;
content: '';
border: 8px solid transparent;
border-left: 12px solid #9ce191;
top: 6px;
right: -20px;
}

.talk-Rtxt::after {
position: absolute;
content: '';
border: 8px solid transparent;
border-left: 12px solid #ebffe7;
top: 6px;
right: -16px;
}

/******************************
 * 汎用
*******************************/
iframe.games-iframe {
	display: block;
	position: relative; /* これで、width: 100%;が効く */
	width: 100%;
	overflow: hidden;
}

.bunsuu {
	display: inline-block;
	vertical-align: -45%;
	text-align: center;
	margin-top: -1rem;
	margin-bottom: 1.5rem;
}

.bunsuu>.bunsi, .bunsuu>.bunbo {
	display: block;
	padding-left: 0.3rem;
	padding-right: 0.3rem;
}

.bunsuu>.bunsi {
	margin-top: 1.5rem;
	line-height: 1.5rem;
	border-bottom: 1px solid #000;
}

.bunsuu>.bunbo {
	/*margin-top: -0.5rem;*/
	line-height: 1.5rem;
	margin-bottom: -1.5rem;
}
.bunsuu>.kigou {
	padding-left: 0;
	padding-right: 0;
	font-weight: bold;
	text-align: center;
	font-size: 1.5em;
	/*color: #0000ff;*/
}

.kaisetu-btn {
	display: inline-block;
	height: 2.2rem;
	padding: 0 0.3rem;
	margin-bottom: 0;
}

.kaisetu-btn > img {
	height: 2rem;
	vertical-align: middle;
}

.bold {
	font-weight: bold;
}

.red {
	color: red;
	font-weight: bold;
}

.blue {
	color: blue;
	font-weight: bold;
}

.round {
	border-radius: 0.5rem;
}

.midasi1 {
	display: inline-block;
	width: 100%;
	font-size: 1.5rem;
	font-weight: bold;
	background: #c2edff;
	padding: 0.3rem 1rem;
	margin-bottom: 1rem;
}

.midasi2 {
	display: inline-block;
	/*font-size: 1.1rem;*/
	font-weight: bold;
	/*color: blue;*/
	background-color: #cff;
	margin-bottom: 0.4rem;
	padding: 0rem 0.5rem;
	width: fit-content;
	border-top: solid 2px #99f;
	border-bottom: solid 2px #99f;
	/*border-radius: 0.5rem;*/
}
/*.midasi2::before {
	content: '● ';
	color: blue;
}*/

.midasi3 {
	display: inline-block;
	font-size: 1.1rem;
	font-weight: bold;
	color: white;
	background-color: blue;
	margin-bottom: 0.4rem;
	padding: 0.1rem 0.5rem;
	width: fit-content;
}
