@charset "utf-8";

:root {
    --saiyu-gp-page-gradient: linear-gradient(
        173deg,
        #ffffff 4%,
        #e2edfe 23%,
        #f4e8ff 47%,
        #f1effe 55%,
        #ebfffd 74%,
        #dbe1ff 97%
    );
}

/* ==================== ベース ==================== */
.ogurayui {
    font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    background-color: #FFFFFF;
    max-width: 960px;
    overflow: hidden;
    margin: auto;
    background: var(--saiyu-gp-page-gradient);
}

.ogurayui img {
    max-width: 100%;
    height: auto;
    display: block;
}

.ogurayui a {
    color: inherit;
    text-decoration: none;
}

.ogurayui__inner {
    max-width: 960px;
    margin: 0 auto;
}

/* ==================== KV ==================== */
.ogurayui__kv {
    width: 100%;
}

.ogurayui__kv-image {
    width: 100%;
}

/* ==================== セクション共通 ==================== */
.ogurayui__section {
    padding: 40px 24px;
}

/* セクションごとの背景色を2色で交互に繰り返し、境目を明確にする */
.ogurayui__section:nth-of-type(odd) {
    background: linear-gradient(180deg, rgb(255 255 255 / 0) 0%, rgb(226 237 254 / 0.6) 100%);
}

.ogurayui__section:nth-of-type(even) {
    background-color: rgb(255 255 255 / 0.55);
}

/* ==================== スクロールスライドイン ==================== */
.ogurayui__section--from-right,
.ogurayui__section--from-left {
    opacity: 0;
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    will-change: opacity, transform;
}

.ogurayui__section--from-right {
    transform: translateX(48px);
}

.ogurayui__section--from-left {
    transform: translateX(-48px);
}

.ogurayui__section--from-right.is-visible,
.ogurayui__section--from-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    .ogurayui__section--from-right,
    .ogurayui__section--from-left {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.ogurayui__section-title {
    font-family: "M PLUS Rounded 1c", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 24px;
    line-height: 1.5;
}

.ogurayui__section-title.under_subtitle {
    margin: 0 !important;
}

.ogurayui__section-subtitle {
    font-family: "M PLUS Rounded 1c", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
    font-size: 19px;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    margin: 0 0 24px;
}

/* ==================== 概要 ==================== */
.ogurayui__section--intro {
    padding-top: 32px;
}

.ogurayui__intro-text {
    margin: 0;
    font-size: 15px;
}

/* ==================== ブックライブ特典① ==================== */
.ogurayui__book {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto 8px;
    text-align: left;
}

.ogurayui__book-image {
    flex: 0 0 auto;
    width: fit-content;
    min-width: 173px;
}

.ogurayui__book-abstract {
    flex: 1 1 auto;
    margin: 0;
    font-size: 14px;
}

/* ==================== 限定特典（シークレット） ==================== */
.ogurayui__secret-image {
    margin: 0 auto;
}

.ogurayui__secret-image img {
    width: 100%;
}

/* ==================== ボタン ==================== */
.ogurayui__btn-area {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.ogurayui__btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
}

.ogurayui__btn--buy {
    background-color: var(--color-brand);
    color: #FFFFFF !important;
}

.ogurayui__btn--sub {
    background-color: #FF8C42;
    color: #FFFFFF !important;
}

/* ==================== プロフィール＆公開リスト ==================== */

.ogurayui__profile-body {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 600px;
    margin: auto;
    gap: 16px;
}

.ogurayui__profile-photo {
    width: 100px;
    height: auto;
    flex: 0 0 auto;
}

.ogurayui__profile-name {
    font-weight: bold;
    margin: 0;
}
.ogurayui__profile-info-text {
    font-size: 15px;
}

.ogurayui__share-list {
    margin-top: 18px;
    text-align: center;
}

.ogurayui__share-list-text {
    margin: 0;
}

.ogurayui__menu {
    text-align: center;
    max-width: 600px;
    margin: 48px auto 0;
    border: 1px solid var(--color-text-disabled);
    border-radius: 3px;
}

.ogurayui__menu-inner {
    line-height: 14px;
    width: 100%;
    background-color: rgb(255 255 255 / 0.55);
}

.ogurayui__menu-inner a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 14px;
    padding: 17px 16px;
}

.ogurayui__menu-btnset {
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    gap: 16px;
}

.ogurayui__menu-btnset li {
    width: 100%;
}

.ogurayui__list-btn-link-icon {
    background-color: transparent;
    background-image: url(/resources/a/pc/common/images/bg_arrow_orange.png?date=140618);
    background-repeat: no-repeat;
    content: " ";
    display: inline-block;
    height: 14px;
    vertical-align: text-top;
    width: 14px;
}

/* ==================== SP (〜767px) ==================== */
@media screen and (max-width: 950px) {
    .ogurayui__section {
        padding: 28px 16px;
    }

    .ogurayui__book {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ogurayui__book-image {
        width: 200px;
    }

    .ogurayui__book-abstract {
        text-align: left;
    }

    .ogurayui__profile-body {
        gap: 12px;
    }

    .ogurayui__profile-info-text {
        font-size: 12px;
    }
}
