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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* ボタンを縦並びに統一 */
.button-wrapper {
  display: flex;
  flex-direction: column; 
  align-items: center;     
  gap: 16px;               
}

.button-wrapper .button,
.button-wrapper a {
  width: 220px;
  text-align: center;
}


.hero-cta {
  display:flex;
  max-width: 240px;
  height:80px;
  padding: 12px 28px;
  background-color: #0066FF;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  border-radius: 12px;
  text-decoration: none;
  align-items: center;
  transition: 0.3s;
}

.wp-block-button a:hover,
.button:hover,
.hero-cta:hover {
  background-color: #00CCFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#navi .navi-in a:hover {
  background-color: #00CCFF;
  transition: all 0.1s ease-in-out;
  color: #ffffff;
}

#footer a:hover {
	color: red;
}

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

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

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