@charset "UTF-8";

/* ==========================================================================
   01. 変数定義 (:root) と全体・共通リセット
   ========================================================================== */
:root {
    --main-color: #5ba1b4;
    --main-color-rgb: 91, 161, 180;
    --accent-color: #e67e00;
    --accent-color-rgb: 230, 126, 0;
    --text-color: #2c3e50;
    --text-color-dark: #333333;
    --white-color: #fff;
    --bg-light: #edf3f5;
    --gray-light: #e2e8f0;
    --shadow-color-base: 160, 160, 160;
    --img-shadow: drop-shadow(12px 12px 12px rgba(var(--shadow-color-base), 0.8));
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --featured-shadow: 0 20px 25px -5px rgba(91, 161, 180, 0.15);

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.25rem;
    --fs-lg: 1.5rem;
    --fs-xl: 2rem;
    --fs-xxl: 2.3rem;
    --fs-max: 3rem;

    --radius-none: 0;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    --radius-circle: 50%;

    --space-xxs: 4px;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 60px;
    --space-xxl: 100px;
    --space-max: 150px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

img,
picture {
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

body {
    -webkit-font-smoothing: antialiased;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

a:hover {
    color: var(--main-color);
}

p {
    line-height: 1.6;
}

.text-accent {
    color: var(--accent-color);
}

.text-right {
    text-align: right;
}

.br-small-vsual {
    display: none;
}