@charset "UTF-8";
/* 固定ヘッダー用のスタイルを書く **/

/***********************************
 * ヘッダー設定
 * ・固定ヘッダー化
 * ・JSにてクラス付与を行い挙動を変更する
 ***********************************/

.logo-header {
    z-index: 10;
}

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    line-height: 1;
    transition: all 0.4s ease-out;
    background-color: rgba(0, 0, 0, 0);
}

.navi {
    position: fixed;
    left: 0;
    right: 0;
    transition: all 0.4s ease-out;
    background-color: rgba(0, 0, 0, 0);
}

/* ヘッダーhover時の色 */

.navi-in > ul li :hover{
    background-color: rgba(0, 0, 0, 0);
}

.navi-scroll-mode > ul li :hover{
    background-color: rgba(207, 207, 207, 0);
}

/*scroll1時のヘッダー枠設定*/

.scroll-mode {
    top: 24px;
    left: 60px;
    right: 60px;
    background-color: #fff;
    border-radius: 16px;
}

/*scroll時のヘッダーメニュー位置変更*/

.navi-scroll-mode {
    margin-right: 80px;
}

/* 固定ページのTOP以外でh1タグ画像設定 */

.entry-header {
    margin-top: 1.8rem;
    padding: 10rem 0rem;
    border-radius: 70px;
    text-align: center;
    /* デフォルトヘッダー画像 必要あれば個別cssで上書き */
    background-image: url('/wp-content/uploads/2021/02/slide_03.jpg');
    background-size: cover;
}

.entry-header h1 {
    color: white;
    font-size: xx-large;
    text-shadow: 2px 2px 10px #777, -2px 2px 10px #777, 2px -2px 10px #777, -2px -2px 10px #777;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/

/*1023px以下*/

@media screen and (max-width: 1023px) {
    /* 固定ページのTOP以外でh1タグ画像設定 */
    .entry-header {
        border-radius: 50px;
    }
}

/*834px以下*/

@media screen and (max-width: 834px) {
    /* 固定ページのTOP以外でh1タグ画像設定 */
    .entry-header {
        border-radius: 30px;
    }
}

/*480px以下*/

@media screen and (max-width: 480px) {
    /* 固定ページのTOP以外でh1タグ画像設定 */
    .entry-header {
        border-radius: 20px;
    }
}

