@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){
  /*必要ならばここにコードを書く*/
}
/* ロゴを左端、メニューを右端に強制する */
.header-container-in {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* メニューが重ならないように横に並べる */
.menu-lucy {
    display: flex !important;
}
/* --- アピールエリアの文字とボタンのデザイン --- */

/* タイトルを大きくする */
.appeal-title {
    font-size: 50px !important; /* お好みの大きさに調整 */
    font-weight: bold !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3) !important; /* 文字に影をつけて読みやすく */
}

/* メッセージ（サブタイトル）の調整 */
.appeal-message {
    font-size: 20px !important;
    margin-bottom: 30px !important;
}

/* ボタンをボタンらしくする */
.appeal-button {
    background-color: #333 !important; /* ボタンの色（黒系） */
    color: #fff !important; /* ボタンの文字色 */
    padding: 15px 40px !important;
    font-size: 18px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    border-radius: 50px !important; /* 角を丸くして今っぽく */
    transition: 0.3s !important;
    display: inline-block !important;
}

/* ボタンにマウスを乗せた時の動き */
.appeal-button:hover {
    background-color: #555 !important;
    transform: translateY(-3px) !important; /* 少し浮き上がる */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
}
/* --- 温かみのあるデザインへの変更 --- */

/* 1. フォントを丸みのある優しいものに */
body {
    font-family: "Hiragino Sans", "Meiryo", sans-serif !important;
}

/* 2. タイトルの文字（大きく、少し丸く） */
.appeal-title {
    font-size: 48px !important;
    color: #5d4037 !important; /* 真っ黒ではなく、温かいダークブラウン */
    letter-spacing: 0.05em !important;
}

/* 3. ボタンを明るく、暖かみのある色に */
.appeal-button {
    background-color: #f5a623 !important; /* 明るいオレンジ・ハニーイエロー */
    color: #fff !important;
    border-radius: 30px !important; /* 角を丸くして柔らかく */
    padding: 18px 45px !important;
    font-size: 19px !important;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3) !important; /* 柔らかい光の影 */
    border: none !important;
}

/* ボタンにマウスを置いたとき */
.appeal-button:hover {
    background-color: #ffb84d !important; /* 少しだけ明るく */
    transform: scale(1.05) !important; /* ぷくっと少し大きく */
}

/* 4. メッセージ（サブタイトル）の色 */
.appeal-message {
    color: #6d4c41 !important;
    font-weight: 500 !important;
}
/* アピールエリアのボックスをかわいくする */
.appeal-content {
    background-color: rgba(255, 255, 255, 0.7) !important; /* 真っ白ではなく、70%くらい透けさせる */
    border-radius: 40px !important; /* 角を大きく丸くして柔らかい印象に */
    border: 3px solid #ffffff !important; /* 白いふちどりをつけて「くるみ」っぽく */
    padding: 40px 60px !important; /* 中にゆとりを持たせる */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important; /* 影をうっすらつけて浮かせる */
    backdrop-filter: blur(5px); /* ボックスの後ろを少しぼかす（今風のおしゃれな加工） */
}

/* タイトルの色を優しいブラウンに */
.appeal-title {
    color: #5d4037 !important;
    font-size: 32px !important; /* 少しサイズを整えます */
    margin-bottom: 15px !important;
}

/* キャッチコピーの色 */
.appeal-message {
    color: #8d6e63 !important;
    font-size: 16px !important;
}