/*
Theme Name: AMY Inc. Theme
Theme URI: https://example.com/
Author: AMY Inc.
Author URI: https://example.com/
Description: AMYコーポレートサイト用WordPressテーマ
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
License: GPL-2.0-or-later
Text Domain: amy
*/

:root {
    --bg: #ffffff;
    --ink: #111111;
    --ink-weak: #555;
    --accent-1: #ffa424; /* ロゴの黄色寄り */
    --accent-2: #ff3b1f; /* ロゴの赤寄り   */
    --cta: #ff6a00;
    --cta-end: #ff2d00;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --max: 1200px;
    --grad1:linear-gradient(300deg, #FF5611, #FFB300);
    --grad2:linear-gradient(300deg, #FFB300, #FF5611);
}

/* Reset (最小限) */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    margin: 0;
    font-family: 'Noto Sans JP',sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    letter-spacing: 0.01em;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: var(--ink-weak);
    text-decoration: none;
}