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

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

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

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

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


#main {
	background: #fff;
}

/* メニューバー背景の高さ */
.navi-in>ul li {
height: 40px;
line-height: 40px;
}

/*CTAボックスの背景変更*/
.cta-box {
border: solid 4px #000066;
border-radius: 8px;
background-color: #f7f7f7;
color:#000066;
}
/* CTAボックスの全体サイズと背景設定 */
.cta-box {
    width: 100%; /* 幅をコンテンツ幅いっぱいに */
    padding: 30px; /* 内側の余白を調整 */
    margin: 20px 0; /* 上下の余白 */
    box-sizing: border-box; /* パディングを含めたサイズ計算 */
}

/* CTAタイトルのサイズ */
.cta-box h3 {
    font-size: 24px; /* タイトルの文字サイズ */
    margin-top: 0;
}

/* CTAメッセージのサイズ */
.cta-box p {
    font-size: 16px; /* メッセージの文字サイズ */
}


/*CTAボタン*/
.btn {
background: linear-gradient(#000066);
height:60px;
border: solid 2px #000066;
font-size:20pt;
color:#fff
}
.cta-heading{
border-bottom:2px solid #000066;
color:#000066;
}



/*768px以下*/
@media screen and (max-width: 768px){
  .column-wrap{
    flex-direction: row;
  }
}

/*480px以下*/
@media screen and (max-width: 480px){
  .column-wrap{
    flex-direction: column;
  }
}