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

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

/* custum text */
/* こども文字 */
.cocoon-custom-text-1 {
  text-emphasis-style: Hachi Maru Pop;
  font-family: "Hachi Maru Pop", cursive;
  font-weight: 600;
  font-style: normal;
}
/* yellow */
.cocoon-custom-text-2{
	font-size:1.0em;
	font-weight: bold;
	color: #f8b62d;
}
/* pink */
.cocoon-custom-text-3{
	font-size: 1.0em;
	font-weight: bold;
	color: #f471bf;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('https://habitable-zone.com/wp-content/uploads/2026/06/background01-e1780559768752.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1; /* コンテンツの背面に配置 */
}

.main, 
.sidebar, 
.footer {
  background-color:rgb(255 255 255 / 0.7);
}

.header-container {
  background:none;
}

.huwahuwa {
  width: 100%;
	padding:20px 0;
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  justify-content: center;
}
.target {
  display: block;
  max-width: 200px;
  width: 70%;
  height: auto;
}

/* Animation */
.target {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}

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


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

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

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