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

/************************************
** 子テーマ用のスタイルを書く
************************************/
.downloadButton1 {
    display: flex;
    /* ボタン外観 */
    width: 100%;
    height: 2.5em;
    border-radius: 0.5em;
    background-color: rgb(63, 127, 255);
    /* 文字 */
    color: white;
    font-weight: bold;
    font-size: 0.9em;
    text-decoration: none;
    white-space: nowrap;            /* テキストを改行しない */
    /* 位置 */
    justify-content: center;        /* ブロック内でテキストを左右中央に*/
    align-items: center;            /* ブロック内でテキストを上下中央に */
    margin: 0 auto;	                /* エリア内でブロックを左右中央に */
	margin-top: 0.3em;
    /* 幅1024以下の場合 */
}
.downloadButton1:hover {
	color: white;
    background-color: rgb(127, 191, 255);
}
/* 画面width1255px以下の場合 */
@media screen and (max-width: 1255px){
    .downloadButton1 {
        font-size: 1.3vw;
    }
}
/* 画面width1023px以下の場合 */
@media screen and (max-width: 1023px){
    .downloadButton1 {
        font-size: 1.8vw;
    }
}

/* アイキャッチ画像左上に表示されるラベルを非表示に変更 */
.cat-label {
    display: none;
}

.marginTopM16 {
    margin-top: -1.6rem;
}

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

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

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