@charset "utf-8";
/*
Theme Name:tsuyazaki-ukigumo
Theme URI:
Description:
Author:
Version:1.0
*/


/* --------------------------------------------- */
/* ▼ 全体*/
/* --------------------------------------------- */




/* --------------------------------------------- */
/* ▼ 動的アニメーション */
/* --------------------------------------------- */

/*見本　サンプルコード*/
.animation-exsample {
	animation-name: animation-exsample ;	/*キーフレームの名前*/
	animation-duration: 5s;					/*アニメーションにかかる時間*/
	animation-timing-function: linear;		/*アニメーションの速度*/
	animation-delay: 1s;					/*アニメーション起動までの遅延時間*/
	animation-iteration-count: infinite;	/*アニメーション回数*/
}
/****** ↑ 同じ意味意味 ↓ ******/
/* ショートハンド */
.animation-exsample {
	animation: "animation-exsample" 5s linear 1s infinite;
  /* ①name ②duration ③delay ④timing-function ⑤iteration-count */
}

/*プロパティ各種参考　https://cotodama.co/animation-property/*/

/* --------------------------------------------- */


/*フェードインでふんわり表示*/
@keyframes anime-fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
.anime-fadeIn{
   animation-name: anime-fadeIn;
	animation-duration:2s;
	animation-timing-function: ease;
	animation-delay: 0s;
	animation-iteration-count: normal;
}


/* fadeInUp フェードインアップ*/
@keyframes anime-fadeInUp {
  0% {
    transform: translateY(20px);/*動く距離*/
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.anime-fadeInUp{
	animation-name: anime-fadeInUp;
	animation-duration:2s;
	animation-timing-function: ease;
	animation-delay: 0s;
	animation-iteration-count: normal;
}





/*雲ふわふわ*/
@keyframes anime-fuwafuwa {
  0%, 100% {
	transform: translateY(0);
  }
  50% {
	transform: translateY(-20px);/*動く距離*/
  }
}
.anime-fuwafuwa {
	animation-name: anime-fuwafuwa;
	animation-duration:3s;
	animation-timing-function: infinite;
	animation-delay: 1s;
	animation-iteration-count: infinite;
}





/* --------------------------------------------- */
/* ▼ 固定ページ（コンセプト） page_concept.php*/
/* --------------------------------------------- */

#page-concept .concept .full_img,
#page-concept .menu .full_img{
	padding: 100px 0;
}
#page-concept .img_concept img{
	width: 100%;
}
#page-concept .concept {
	padding-top: 60px;
	padding-bottom: 10px;
}
#page-concept .concept .flexbox {
	margin-bottom: 40px;
}
#page-concept .concept .block{
	margin-bottom: 150px;
}


/*----------------- 
レスポンシブ対応　768px 
------------------- */
@media screen and (max-width: 768px){
	#page-concept .concept .img_hidden, 
	#page-concept .concept .img_hidden img{
		height: 440px;
	}
	#page-concept .concept{
		margin-bottom: 0px;
		padding-top: 10px;
	}
	#page-concept .concept .flexbox{
		margin-bottom: 0px;
	}
	#page-concept .concept .block{
		margin-bottom: 0px;
		padding-bottom: 20px;
	}
	#page-concept .concept .textBox{
		margin: 20px 0px; 
	}

}/*768px*/

/*----------------- 
レスポンシブ対応　480px 
------------------- */
@media screen and (max-width: 480px){
	#page-concept .concept .img_hidden, 
	#page-concept .concept .img_hidden img{
		height: 300px;
	}
}/*480px*/





/* --------------------------------------------- */
/* ▼ 固定ページ（メニュー） page_menu.php*/
/* --------------------------------------------- */







/* --------------------------------------------- */
/* ▼ 通常投稿ページ single.php*/
/* --------------------------------------------- */
.kiji_title{
	margin-bottom: 30px;
}
h2.lineB {
	font-size: 1.8em;
	line-height: 1.2;
	font-family: serif;
	font-weight: bold;
	border-bottom: solid 3px #c1c1c1;
	position: relative;
	padding-bottom: 5px;
	margin-bottom: 30px;
}
#single h2.lineB {margin-bottom: 10px;}

h2.lineB:after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px #A01F24;
	bottom: -3px;
	width: 30%;
}
.kiji_title p {
	margin-bottom: 0px;
}

h3.lineL{
	font-size: 1.5em;
	border-left: 5px solid #A01F24;
	padding-left: 8px;
	margin-bottom: 10px;
	line-height: 1.25em;
}
/* --------------------------------------------- */
/* ▼ 一覧アーカイブページ archive.php*/
/* --------------------------------------------- */



/* --------------------------------------------- */
/* ▼ カスタム投稿ページ */
/* --------------------------------------------- */



/* --------------------------------------------- */
/* ▼ アニメーション */
/* --------------------------------------------- */


/*スムーズスクロール*/
#page-top {
	position: fixed;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,.5);
	min-width: 50px;
	min-height: 50px;
	line-height: 50px;
	text-align: center;
	color: #fff;
	border-radius: 50%;
	bottom: 3%;
	left: 2%;
	z-index: 10;
}