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

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

/* タイトル非表示 */
.page .entry-title{
	display: none;
}

/* タイトルフォント */
.title {
	font-size: 30px;
	text-align: center;
}

@media screen and (max-width: 1023px){
	.title {
		font-size: 20px;
	}
}

/* テキストフォント */
.text {
	font-size: 20px;
	text-align: center;
}

@media screen and (max-width: 1023px){
	.text {
		font-size: 10px;
	}
}

/* 下線 */
.underbar {
	border-bottom: solid thin;
}

/* フェードイン */
.FadeInAnimation {
	opacity: 0;
	transform: translatey(20px);
	transition: opacity 1s, transform .5s;
}

.FadeInAnimation.open {
	opacity: 1;
	transform: translatey(0);
}

/* タイトル背景 */
#title_msg {
	padding-top: 10px;
	padding-bottom: 10px;
	background: radial-gradient(rgb(169, 214, 255), rgb(0, 80, 159));
}

/* 概要 */
.top_link {
	position: relative;
	display: block;
	width: 30%;
	left: 50%;
	transform: translatex(-50%);
}

@media screen and (max-width: 1023px){
	.top_link {
		width: 100%;
	}
}

.top_link img {
	position: relative;
	width: 100%;
}

.top_link .link_title{
	text-decoration: none;
	color: orange;
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
	z-index:1;
}


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

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

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