:root {
    /* Font Family */
    --ff-serif: 'Noto Serif JP', serif;
    --ff-inter: 'Inter', sans-serif;
    --ff-sans: "Noto Sans JP", sans-serif;

    /* Font Weight */
    --fw-300: 300;
    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
  
    /* Font Size */
    --fs-10: 10px;
    --fs-12: 12px;
    --fs-14: 14px;
    --fs-15: 15px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-19: 19px;
    --fs-20: 20px;
    --fs-21: 21px;
    --fs-24: 24px;
    --fs-27: 27px;
    --fs-30: 30px;
    --fs-32: 32px;
    --fs-36: 36px;
    --fs-40: 40px;
    --fs-48: 48px;
    --fs-54: 54px;
    --fs-64: 64px;
  
    /* Letter Spacing */
    --ls-01: 0.1em;
    --ls-02: 0.2em;
    --ls-03: 0.3em;
  
    /* Line Height */
    --lh-100: 100%;
    --lh-150: 150%;
    --lh-200: 200%;

    /* Margin */
    --m-0: 0;
    --m-2: 2px;
    --m-4: 4px;
    --m-6: 6px;
    --m-8: 8px;
    --m-10: 10px;
    --m-12: 12px;
    --m-14: 14px;
    --m-16: 16px;
    --m-17: 17px;
    --m-19: 19px;
    --m-20: 20px;
    --m-22: 22px;
    --m-24: 24px;
    --m-28: 28px;
    --m-29: 29px;
    --m-30: 30px;
    --m-31: 31px;
    --m-32: 32px;
    --m-35: 35px;
    --m-36: 36px;
    --m-40: 40px;
    --m-44: 44px;
    --m-47: 47px;
    --m-48: 48px;
    --m-50: 50px;
    --m-52: 52px;
    --m-56: 56px;
    --m-60: 60px;
    --m-64: 64px;
    --m-72: 72px;
    --m-76: 76px;
    --m-80: 80px;
    --m-88: 88px;
    --m-89: 89px;
    --m-96: 96px;
    --m-100: 100px;
    --m-103: 103px;
    --m-120: 120px;
    --m-123: 123px;
    --m-136: 136px;
    --m-140: 140px;
    --m-160: 160px;
    --m-180: 180px;
    --m-200: 200px;

    /* Padding */
    --p-0: 0;
    --p-4: 4px;
    --p-8: 8px;
    --p-10: 10px;
    --p-12: 12px;
    --p-15: 15px;
    --p-16: 16px;
    --p-18: 18px;
    --p-19: 19px;
    --p-20: 20px;
    --p-21: 21px;
    --p-22: 22px;
    --p-24: 24px;
    --p-27: 27px;
    --p-30: 30px;
    --p-32: 32px;
    --p-35: 35px;
    --p-40: 40px;
    --p-48: 48px;
    --p-50: 50px;
    --p-74: 74px;
    --p-81: 81px;
    --p-120: 120px;
    --p-175: 175px;

    /* Color */
    --color-primary: #0070f3;   /* ブランドのメインカラー */
    --color-secondary: #00b894; /* 補助カラー */
    --color-accent: #ff7675;    /* アクセントカラー */
    --color-bg: #ffffff;        /* 背景色 */
    --color-bg-alt: #f5f5f5;    /* サブ背景色 */
    --color-text: #000000;      /* メインテキスト */
    --color-text-light: #666666;/* サブテキスト */
    --color-text-inverse: #ffffff; /* 反転用テキスト */
    --color-border: #000000;    /* 枠線カラー */
    --color-price: #DC2626;    /* 価格カラー */
    --color-btn: #E46229;    /* ボタンカラー */
}

section {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.pc {
    display: block;
}

.sp {
    display: none;
}
  

.inner {
    max-width: 1266px;
    margin: 0 auto;
    width: 90%;
}

.heading {
    text-align: center;
    margin-bottom: var(--m-89);
    display: inline-block;
}

.heading h2 {
    font-size: var(--fs-48);
    line-height: var(--lh-100);
    margin-bottom: var(--m-31);
    line-height: var(--lh-150);
}

.heading p {
    font-size: var(--fs-30);
    line-height: var(--lh-100);
    line-height: var(--lh-150);
}

.none {
    display: none;
}

.fw30 {
    font-weight: var(--fw-300);
}

.fw40 {
    font-weight: var(--fw-400);
}

.fw50 {
    font-weight: var(--fw-500);
}

.fw60 {
    font-weight: var(--fw-600);
}

.fw70 {
    font-weight: var(--fw-700);
}

.mb0 {
    margin-bottom: var(--m-0);
}

.mb4 {
    margin-bottom: var(--m-4);
}

.mb8 {
    margin-bottom: var(--m-8);
}

.mb16 {
    margin-bottom: var(--m-16);
}

.mb24 {
    margin-bottom: var(--m-24);
}

.mb30 {
    margin-bottom: var(--m-30);
}

@media screen and (max-width: 768px) {
    section {
        width: 100%;
    }

    .pc {
        display: none;
    }
    
    .sp {
        display: block;
    }

    .heading h2 {
        font-size: var(--fs-24);
    }

    .heading p {
        font-size: var(--fs-20);
    }
}