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

/*リンク関連色*/
.entry-content a{
	text-decoration: none;
}
.entry-content a:hover{
	color: #666262;
	opacity: 0.8;
}

/*固定ページの投稿日、更新日、投稿者名を非表示にする*/
.page .date-tags,
.page .author-info {
    display: none;
}

/*投稿ページのヘッダー非表示*/
.single #header{
	display:none;
}

/*モバイルメニュー非表示*/
.mobile-footer-menu-buttons {
  display: none;
}

/*WORKS CARD*/
.works-card {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.column {
	margin: 0 5px;
	padding: 10px;
	width: 90%;
	position: relative;
}
@media (min-width: 1024px) {
  .column {
	  width: 48%;
  }
}
.column .box-title {
	font-weight: bold; /* タイトル文字の太さ */
	font-size: 22px;/* タイトル文字の大きさ */
}
.a-wrap:hover{
    opacity: 0.7;
}

/*WORKS DEETAILS*/
.works-details{
	margin: 0 auto;
	width: 70%;
}

/*見出し*/
.article h2{
	background: none;
	border-bottom: #fdeeef 5px solid;
	color: #ff9999;
	text-align: center;
	font-size: 40px;
	padding: 3px;
	margin: 0 auto;
	width: 40%;
}

.article h3{
	background: #fdeeef;
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: #666262 3px solid;
	text-align: center;
	font-size: 28px;
	padding: 8px;
	margin: 1em 0;
}

.article h4{
	border-bottom: none;
	border-top: #ff9999 1.5px solid;
	padding: 14px 0;
	margin: 10px 0 0 0;
}