/* モバイルスタイル */
.guest-header-pc__nav {
    display: none;
}

/* メニューボタン枠 */
.guest-header-mobile__toggle {
    position: fixed;
    top: 0;
    left: 0;
    text-align: right;
    width: 100%;
    height: 10px;
    z-index: 1000;
}

/* メニューボタン */
.guest-mobile__toggle-button {
    background-color: #ffffff;
    border: solid 1px #bbbbbb;
    border-radius: 50%;
    color: #777777;
    font-weight: 700;
    padding: 19px 6.875px;
    margin-top: 8px;
    margin-right: 8px;
}

/* タイトル枠 */
.guest-header__title {
    background: linear-gradient(
        to top,
        #a59aca,
        #cfa7cd,
        #ecc0c0,
        #fcd7a1,
        #fcf5ad,
        #b8da92,
        #a3bce2,
        #a59aca,
        #cfa7cd
    );
    text-align: center;
    font-family: Papyrus;
    padding: 50px 0;
}

.logo-link {
    text-decoration: none;
    color: #222222;
}

/* メインタイトル */
.guest-header__mein-title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
}

/* サブタイトル */
.guest-header__sub-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.guest-main {
    color: #222222;
}

/* サイドバー */
.guest-sidebar-mobile {
    /* 初期状態は非表示 */
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: linear-gradient(
        to bottom,
        #a59aca,
        #ecc0c0,
        #fcd7a1,
        #fcf5ad,
        #99dbb7,
        #9db8e0,
        #a59aca
    );
}

/* ×ボタン枠 */
.guest-sidebar-mobile__close {
    text-align: right;
    margin: 20px 10px 0 0;
}

/* ×ボタン */
.guest-sidebar-mobile__close-icon {
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    color: #777777;
    font-weight: 700;
    padding: 5px 10px;
}

/* サイドバータイトル */
.guest-sidebar-mobile__title {
    text-align: center;
    font-family: Papyrus;
    color: #222222;
}

/* サイドバー内容枠 */
.guest-sidebar-mobile__nav {
    text-align: center;
    margin: 0 30px;
    background-color: #ffffff;
    border-radius: 5px;
}

/* サイドバー内容行 */
.guest-sidebar-mobile__nav-item {
    padding: 25px 0 20px;
    border-bottom: solid 1px #bbbbbb;
}

/* サイドバー内容文字 */
.guest-sidebar-mobile__nav-link {
    text-decoration: none;
    color: #222222;
}

/* フッター内容枠 */
.guest-footer__list {
    width: 280px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
}

.guest-footer__item {
    border-bottom: solid 1px #bbbbbb;
}

/* フッター内容文字 */
.guest-footer__link {
    font-size: 10px;
    margin: 0 10px;
    text-decoration: none;
    color: #222222;
}

/* タブレットスタイル */
@media screen and (min-width: 768px) {
    /* メニューボタン */
    .guest-mobile__toggle-button {
        margin-top: 10px;
        margin-right: 10px;
    }

    /* メインタイトル */
    .guest-header__mein-title {
        font-size: 45px;
    }

    /* サブタイトル */
    .guest-header__sub-title {
        font-size: 25px;
    }

    /* フッター内容枠 */
    .guest-footer__list {
        width: 350px;
    }

    /* フッター内容文字 */
    .guest-footer__link {
        font-size: 12px;
    }
}

/* パソコンスタイル */
@media screen and (min-width: 1024px) {
    .guest-header-mobile__toggle {
        display: none;
    }

    /* タイトル枠 */
    .guest-header__title {
        padding: 40px 0;
    }

    /* メインタイトル */
    .guest-header__mein-title {
        font-size: 60px;
    }

    /* サブタイトル */
    .guest-header__sub-title {
        font-size: 35px;
    }

    /* メニュー枠 */
    .guest-header-pc__nav {
        display: block;
    }

    .guest-header-pc__nav-list {
        width: 900px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        padding: 10px 0;
    }

    .guest-header-pc__nav-item {
        border-bottom: solid 1px #bbbbbb;
    }

    .guest-header-pc__nav-link {
        text-decoration: none;
        color: #222222;
    }

    /* フッター内容枠 */
    .guest-footer__list {
        width: 450px;
    }

    /* フッター内容文字 */
    .guest-footer__link {
        font-size: 16px;
    }
}
