@charset "UTF-8";
/**
 * MogMog Component
 * mogmogrecipe用汎用コンポーネント
 */

/* ==========================================================================
   セクションタイトル
   ========================================================================== */

/**
 * .mog-c-section-title
 * セクション見出し用クラス
 * 元: .p-cb__item-headline.p-cb__item-headline-bg-image
 */
.mog-c-section-title {
    font-size: 18px;
    font-weight: 400;
    position: relative;
    background-image: url('../img/logo_spoon.svg');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto 100%;
    padding-right: 40px;
    padding-bottom: 8px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    transform: translateX(16px);
}

/* ==========================================================================
   ボタン
   ========================================================================== */

/**
 * .mog-c-button-unit
 * ボタンを囲むユニット
 * 元: .p-cb__item-button
 */
.mog-c-button-unit {
    margin-top: 32px;
    text-align: right;
}

.mog-c-button-unit--center {
    text-align: center;
}

/**
 * .mog-c-button
 * ボタン本体
 * 元: .p-cb__item-button a
 */
.mog-c-button {
    border-radius: 9999px;
    text-align: center;
    display: inline-block;
    width: 200px;
    padding: 8px;
    font-size: 13px;
    border: 1px solid var(--tcd-content-link-color);
    letter-spacing: -0.05em;
    background: #FFFFFF;
}

.mog-c-button:hover {
    background-color: var(--tcd-content-link-color);
    color: #fff !important;
}

/**
 * .mog-c-button--m
 * ボタン本体（Mサイズ）
 */
.mog-c-button--m {
    width: 232px;
    padding: 10px;
    font-size: 14px;
}

/**
 * .mog-c-button--l
 * ボタン本体（Lサイズ）
 */
.mog-c-button--l {
    width: 264px;
    padding: 12px;
    font-size: 15px;
}

@media screen and (min-width: 768px) {
    .mog-c-section-title {
        font-size: 20px;
    }

    .mog-c-button {
        width: 214px;
        padding: 10px;
        font-size: 14px;
    }

    .mog-c-button--m {
        width: 247px;
        padding: 13px;
        font-size: 15px;
    }

    .mog-c-button--l {
        width: 280px;
        padding: 16px;
        font-size: 16px;
    }
}
