/**
 * Concept Page Styles
 *
 * @package NONKE_SPA
 * @since 1.0.0
 */

/* ==========================================================================
   コンセプト詳細
   ========================================================================== */
.p-conceptDetail {
    background: rgba(0, 0, 0, 0.1);
}

/* エディターコンテンツ全幅セクション */
.p-conceptDetail--fullwidth {
    padding: 0;
}

/* 予約セクション */
.p-conceptDetail--reserve {
    padding: 0 0 80px;
}

.p-conceptDetail__inner {
    max-width: 900px;
    margin: 0 auto;
}

/* WordPressエディターコンテンツ */
.p-conceptDetail--fullwidth .p-conceptDetail__content {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", serif;
    font-size: 16px;
    line-height: 2.2;
    color: #333;
    letter-spacing: 0.05em;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.p-conceptDetail--fullwidth .p-conceptDetail__content p {
    margin-bottom: 30px;
}

.p-conceptDetail--fullwidth .p-conceptDetail__content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #303c09;
    border-bottom: 2px solid #303c09;
    padding-bottom: 10px;
}

.p-conceptDetail--fullwidth .p-conceptDetail__content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #303c09;
}

.p-conceptDetail--fullwidth .p-conceptDetail__content strong {
    font-weight: 700;
    color: #303c09;
}

.p-conceptDetail--fullwidth .p-conceptDetail__content em {
    font-style: normal;
    background: linear-gradient(transparent 60%, #fff5b8 60%);
}

/* ブロックエディターのブロック対応 */
.p-conceptDetail--fullwidth .p-conceptDetail__content .wp-block-quote {
    border-left: 4px solid #303c09;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.p-conceptDetail--fullwidth .p-conceptDetail__content .wp-block-group {
    background: #f8f8f8;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
}

.p-conceptDetail--fullwidth .p-conceptDetail__content .has-text-align-center {
    text-align: center;
}

.p-conceptDetail--fullwidth .p-conceptDetail__content .has-large-font-size {
    font-size: 20px;
}

.p-conceptDetail--fullwidth .p-conceptDetail__content .has-background {
    padding: 20px;
    border-radius: 8px;
}

/* 予約セクション */
.p-conceptDetail__reserve {
    background: #f8f8f8;
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
}

.p-conceptDetail__reserveTitle {
    font-size: 28px;
    font-weight: 700;
    color: #303c09;
    margin-bottom: 40px;
    position: relative;
}

.p-conceptDetail__reserveTitle::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #303c09;
}

.p-conceptDetail__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.p-conceptDetail__buttons .c-button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* レスポンシブ */
@media (max-width: 768px) {
    /* エディターコンテンツ全幅表示（モバイル） */
    .p-conceptDetail--fullwidth .p-conceptDetail__content {
        padding: 0;
        max-width: 100%;
        font-size: 14px;
        line-height: 2;
    }
    
    .p-conceptDetail--reserve {
        padding: 0 0 60px;
    }
    
    .p-conceptDetail--fullwidth .p-conceptDetail__content h2 {
        font-size: 20px;
    }
    
    .p-conceptDetail--fullwidth .p-conceptDetail__content h3 {
        font-size: 18px;
    }
    
    .p-conceptDetail__reserve {
        padding: 40px 20px;
    }
    
    .p-conceptDetail__reserveTitle {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .p-conceptDetail__buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .p-conceptDetail__buttons .c-button {
        width: 100%;
    }
}