@charset "UTF-8";
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../font/CormorantGaramond-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../font/CormorantGaramond-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../font/CormorantGaramond-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
:root {
    --font-en: 'Cormorant Garamond', serif;
    --font-ja: 'YuGothic', '游ゴシック体', 'Yu Gothic', sans-serif;

    --color-logo: #505C60;
    --color-text: #647378;
    --color-bg: #ffffff;
    --color-accent: #d63059;
}

/*--------------------------------------------------------------
# Custom Header Logo & Navigation Styles
--------------------------------------------------------------*/
.site-header {
    .site-logo {
        font-family: "Cormorant Garamond";
        font-size: 3rem;
        font-style: normal;
        font-weight: 400;
        letter-spacing: 0.12rem;
        line-height: 140%;
    }

    .main-navigation {
        a {
            font-family: YuGothic;
            font-size: 1rem;
            font-style: normal;
            font-weight: 500;
            letter-spacing: normal;
            line-height: 240%;
        }
    }
}

/* Sticky Footer */
html {
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
}

#content {
    flex-grow: 1;
}
