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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* 新着記事表示 */
.new-entry-cards.large-thumb {
display: flex;
flex-wrap: wrap;
}

.new-entry-cards.large-thumb a {
width: 33.333%;
}

/768px以下/
@media screen and (max-width: 768px){
.new-entry-cards.large-thumb a {
width: 50%;
}
}

/480px以下/
@media screen and (max-width: 480px){
.new-entry-cards.large-thumb a {
width: 100%;
}
}

/* 更新日非表示 */

.date-tags {
    display: none;
}

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

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

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

/************************************
skin-grayishのヘッダを表示させないカスタマイズ
************************************/

  .skin-grayish.front-top-page .container .header-container .header {
display:none;
  }


/************************************
MW WP Formのカスタマイズ
************************************/

.mwform-container {
        max-width: 600px;
        margin: 0 auto;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        font-family: Arial, sans-serif;
        line-height: 1.6;
    }
    .mwform-group {
        margin-bottom: 15px;
    }
    .mwform-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }
    .mwform-group input,
    .mwform-group textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-sizing: border-box;
    }
    .mwform-group input[type="tel"] {
        width: calc(100% - 22px);
        max-width: 200px;
    }
    .mwform-group textarea {
        resize: vertical;
    }
    .mwform-actions {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .mwform-actions input {
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-bottom: 10px;
    }
    .mwform-actions input[type="button"] {
        background-color: #ccc;
    }
    .mwform-actions input[type="submit"] {
        background-color: #007BFF;
        color: #fff;
    }
    @media (max-width: 600px) {
        .mwform-container {
            padding: 10px;
        }
        .mwform-actions {
            flex-direction: column;
            align-items: stretch;
        }
        .mwform-actions input {
            width: 100%;
            margin-bottom: 10px;
        }
    }