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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
.header{
	background-color: #d4f4dd;
	height:55px;
}
.header-logo {
    font-size: 24px;
    padding: 33px 20px;
	float:left;
	
}
.header-list a{
  list-style:none;
	float:right;
	
	
	
}
.contact-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #4CAF50; /* 緑色：変更OK */
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
	float:right;
}

/* ホバー時のアニメーション */
.contact-btn:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}
.box-btn {
  display: inline-flex;         /* フレックスに変更 */
  align-items: center;          /* 縦中央揃え */
  justify-content: center;      /* 横中央揃え */
  width: 200px;
  height: 30px;                 /* 高さ固定 */
  background-color: #f0f0f0;
  color: #333;
  font-weight: bold;
  border: 2px solid #ccc;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 14px;   /* 文字サイズ調整 */
　;
}

.box-btn:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
  border-color: #999;
}







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

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

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