/*
Theme Name: MOREARIA Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://generatepress.com/about
Description: GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
Tags: two-columns,three-columns,one-column,right-sidebar,left-sidebar,footer-widgets,blog,e-commerce,flexible-header,full-width-template,buddypress,custom-header,custom-background,custom-menu,custom-colors,sticky-post,threaded-comments,translation-ready,rtl-language-support,featured-images,theme-options
Version: 3.6.1.1779632744
Updated: 2026-05-24 23:25:44

*/
/* ===============================================
   MOREARIA Brand CSS
   =============================================== */

/* ---------------------------------------------
   1. デザイントークン（CSS変数）
   --------------------------------------------- */
:root {
    /* カラーパレット */
    --color-base: #FBFAF6;          /* ベース背景 */
    --color-base-alt: #F5F2EC;      /* ベース背景（少し暗） */
    --color-gold: #C9A961;          /* ゴールド（アクセント） */
    --color-gold-light: #F5EFE0;    /* ゴールド薄（背景グラデ用） */
    --color-gold-shadow: #E8E0C9;   /* ゴールド装飾（大数字背景用） */
    --color-dark: #2C2A26;          /* ダーク（フッター・本文） */
    --color-text-strong: #3D3B36;   /* 本文濃 */
    --color-text-mid: #5F5C56;      /* 本文中 */
    --color-text-sub: #8A8780;      /* 補助テキスト */
    --color-line: #E8E4DA;          /* 罫線 */

    /* フォント */
    --font-mincho: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
    --font-gothic: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;

    /* レイアウト */
    --max-width: 1200px;
    --content-width: 720px;
}

/* ---------------------------------------------
   2. リセット & ベース
   --------------------------------------------- */
body {
    background-color: var(--color-base);
    color: var(--color-text-strong);
    font-family: var(--font-gothic);
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.3px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 見出しは明朝 */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-mincho);
    color: var(--color-dark);
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 1.6;
}

/* リンク */
a {
    color: var(--color-gold);
    text-decoration: none;
    transition: opacity 0.3s, color 0.3s;
}
a:hover {
    opacity: 0.75;
}

/* ---------------------------------------------
   3. GeneratePress上書き（最低限）
   --------------------------------------------- */

/* サイトのコンテンツエリア */
.site {
    background-color: var(--color-base);
}

/* リード文用ユーティリティ */
.morearia-lead {
    font-family: var(--font-mincho);
    font-size: 17px;
    line-height: 2.3;
    letter-spacing: 1px;
    color: var(--color-text-strong);
}

/* 縦の金線 */
.morearia-gold-line {
    width: 1px;
    height: 60px;
    background: var(--color-gold);
    margin: 0 auto;
}

/* 横の金線（短いダッシュ） */
.morearia-gold-dash {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    vertical-align: middle;
}

/* ---------------------------------------------
   4. 共通の章番号スタイル
   --------------------------------------------- */
.morearia-chapter {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 60px;
}
.morearia-chapter-num {
    font-family: var(--font-mincho);
    font-size: 72px;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
    letter-spacing: 2px;
}
.morearia-chapter-bar {
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}
.morearia-chapter-label {
    font-size: 11px;
    color: var(--color-gold);
    letter-spacing: 3px;
}

/* ---------------------------------------------
   5. 引用ブロック
   --------------------------------------------- */
.morearia-quote {
    margin: 50px auto;
    padding: 40px 50px;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-base) 100%);
    border-left: 4px solid var(--color-gold);
    position: relative;
}
.morearia-quote-text {
    font-family: var(--font-mincho);
    font-size: 18px;
    line-height: 2;
    color: var(--color-dark);
    letter-spacing: 1.2px;
}

/* ---------------------------------------------
   6. ボタン（ゴールド・ピル形）
   --------------------------------------------- */
.morearia-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold) 0%, #B89548 100%);
    color: var(--color-base) !important;
    padding: 22px 60px;
    border-radius: 100px;
    font-family: var(--font-mincho);
    font-size: 15px;
    letter-spacing: 3px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
    transition: all 0.3s;
}
.morearia-btn:hover {
    transform: translateY(-2px);
    opacity: 1;
    box-shadow: 0 6px 24px rgba(201, 169, 97, 0.4);
}

/* ---------------------------------------------
   7. レスポンシブ（スマホ）
   --------------------------------------------- */
@media (max-width: 768px) {
    body {
        font-size: 13px;
    }
    .morearia-chapter-num {
        font-size: 48px;
    }
    .morearia-chapter-bar {
        width: 24px;
    }
    .morearia-chapter-label {
        font-size: 9px;
    }
    .morearia-gold-line {
        height: 40px;
    }
}