@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){
  /*必要ならばここにコードを書く*/
}


.post-856 .date-tags,
.post-854 .date-tags,
.post-851 .date-tags,
.post-223 .date-tags,
.post-218 .date-tags,
.post-212 .date-tags,
.post-171 .date-tags,
.post-6 .date-tags,
.post-2 .date-tags {
display: none;
}


/* =========================
   MORE BUTTON
========================= */

.more-button {
    text-align: center;
    margin: 40px 0;
}

.more-button a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 32px;

    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;

    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03em;

    text-decoration: none;

    border-radius: 999px;

    box-shadow:
        0 8px 24px rgba(124, 58, 237, 0.28),
        0 2px 8px rgba(0,0,0,0.15);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

/* Hover */
.more-button a:hover {
    transform: translateY(-3px) scale(1.03);

    box-shadow:
        0 14px 32px rgba(124, 58, 237, 0.38),
        0 4px 12px rgba(0,0,0,0.2);

    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

/* Icon */
.more-button i {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.more-button a:hover i {
    transform: translateX(4px);
}

/* スマホ */
@media screen and (max-width: 768px) {

    .more-button a {
        width: 90%;
        justify-content: center;

        padding: 16px 20px;

        font-size: 15px;
    }
}


