@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@500&display=swap");

@import url("../font/icomoon/style.css");

@import url("./reset.css");

@import url("./layout.css");

@import url("./component.css");

:root {
    --c-red: #a40000;
    --c-blue: #285da9;
    --c-both: #af8547;
    --c-neutral: #f5f5f5;
    --c-neutral-both: #ede9e6;
    --c-black: #333333;
    --c-white: #ffffff;
    --c-text: #333333;
    --c-text-sub: #b1b1b1;
    --c-border: #d1d1d1;
    --c-bg-blue: #20357b;
}

:root {
    --border: 1px solid var(--c-border);

    --bg-paper: url(/assets/img/cmn/bg-paper.png) repeat center;
    --font-en: "Poppins", sans-serif;
    --vw: 100vw;
    --inner-width: 1240px;
    --margin-offset: min(-40px, calc((var(--vw) * -50) + (var(--inner-width) / 2) - 40px));
}

:focus-visible {
    outline: 2px solid;

    outline-offset: 2px;
}

::selection {
    background: rgba(0, 0, 0, 0.1);
}

html {
    font-size: 16px;
    scroll-padding-top: 80px;
}

body {
    background: var(--bg-paper);
    color: var(--c-text);
    font-style: normal;
    font-weight: 500;
    line-height: 1.875;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    letter-spacing: 0.03em;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border-width: 0;
    white-space: nowrap;
    clip: rect(0, 0, 0, 0);
}

.visible-tb,
.visible-sp {
    display: none;
}

[class^="icon-"] {
    font-size: var(--size);
}

@media screen and (max-width: 1239.98px) {
    :root {
        --inner-width: calc(100 * var(--vw));
    }

    .visible-tb {
        display: block;
    }

    .hidden-tb {
        display: none;
    }
}

@media screen and (max-width: 767.98px) {
    :root {
        --margin-offset: -24px;
    }

    html {
        scroll-padding-top: 0;
    }

    body {
        min-width: 375px;
        line-height: 1.6;
    }

    .visible-sp {
        display: block;
    }

    .hidden-sp {
        display: none !important;
    }
}

@media screen and (max-width: 374.98px) {
}

@media print {
    body {
        -webkit-print-color-adjust: exact;

        zoom: 0.68;
    }
}
