@charset "UTF-8";
/*
================================================================
 ノーマライズ
================================================================
*/
/* ---------------------------------------------------------- */
/* compass/reset */
/* html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

html {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption, th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}

q, blockquote {
    quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none;
}

a img {
    border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
} */

/* ---------------------------------------------------------- */
html, body {
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;
}
/* ---------------------------------------------------------- */
button, input, select, textarea {
    font-size: 100%;
    font-family: inherit;
}
em, address {
    font-style: normal;
}

/*
================================================================
 ベースレイアウト
================================================================
*/
html {
    background: var(--themeval-color-theme-white);
    color: var(--themeval-color-theme-text-black);
    font-size: calc( 1px * var(--themeval-root-font-size) ); /* $base-font-size */
    line-height: var(--themeval-root-line-height);
    font-family: var(--themeval-font-default);
    font-weight: var(--themeval-font-weight-default);
    font-style: normal;
    scroll-behavior: smooth;
}
body {
    font-size: calc( 1rem * var(--themeval-font-size-normal) / var(--themeval-root-font-size) ); /* $body-font-size-pc rem / $base-font-size */
}
@media (max-width: 1079px){
    body {
        font-size: calc( 1rem * var(--themeval-font-size-normal-tb) / var(--themeval-root-font-size) );
    }
}
@media (max-width: 767px){
    body {
        font-size: calc( 1rem * var(--themeval-font-size-normal-sp) / var(--themeval-root-font-size) );
    }
}


@media print {
    html {
        font-size: calc( 1px * var(--themeval-root-font-size) ); /* $base-font-size */
    }
}

/*
================================================================
 端末ごとの表示変更
================================================================
*/
@media all and (max-width: 1279px) {
    .mb-hide,
    .pc-only {
        /* タブレット、スマートフォン時非表示 */
        display: none !important;
    }
}
@media all and (max-width: 767px) {
    .sp-hide,
    .tb-only {
        /* スマートフォン時非表示 */
        display: none !important;
    }
}
@media all and (min-width: 1280px) {
    .pc-hide,
    .mb-only,
    .tb-only {
        /* PC時非表示 */
        display: none !important;
    }
}
@media all and (min-width: 768px) {
    .sp-only {
        /* PC、タブレット時非表示 */
        display: none !important;
    }
}
@media all and (min-width: 768px) and (max-width: 1279px) {
    .tb-hide {
        /* タブレット時非表示 */
        display: none !important;
    }
}
/*
================================================================
 コンテナ
================================================================
*/
.content-container {
    position: relative;
    display: block;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 0;
    clear: both;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 120px);
    max-width: var(--themeval-container-width);
}
@media (max-width: 959px), (max-height: 767px) {
    .content-container {
        width: calc(100% - 100px);
    }
}

@media (max-width: 639px) {
    .content-container {
        width: 90%;
    }
}

.content-container.content-container--narrow {
    max-width: var(--themeval-container-width-narrow);
}
.content-container.content-container--wide {
    max-width: var(--themeval-container-width-wide);
}
.content-container.content-container--ex-wide {
    max-width: var(--themeval-container-width-ex-wide);
}


/*
================================================================
 サイトデザインの反映
================================================================
*/

a {
    transition: opacity var(--themeval-hover-transition);
}
html:not(.agent-prop--Touch) a:hover {
    opacity: var(--themeval-hover-opacity);
}

small {
    font-size: 80%;
}

.set-call-link a {
    color: inherit;
    text-decoration: inherit;
}

ruby rt {
    transform: translateY(0.5em);
}

.twitter-tweet {
    margin-left: auto;
    margin-right: auto;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.text-justify {
    text-align: justify !important;
}

.line-break-span span {
    display: inline-block;
}

.half-char-after {
    display: inline-block;
    margin-right: -0.4em;
}
.half-char-before {
    display: inline-block;
    margin-left: -0.4em;
}

.this--no-br br {
    display: none;
}

@media all and (max-width: 1279px) {
    .line-break-span-mb span {
        display: inline-block;
    }

    .line-break-span-mb br:not(.set--force) {
        display: none;
    }
}

/*
================================================================
 表示領域とスクロール領域
================================================================
*/
.page-structure-wrapper {
    position: relative;
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    min-height: 100dvh;
}

.page-structure-fixed-header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9000;
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.page-structure-scroll-content {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.page-structure-scroll-content__main {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.page-structure-scroll-content__sticky-nav {
    position: sticky;
    z-index: 8900;
    bottom: 0px;
    display: block;
    box-sizing: content-box;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
}
.page-structure-scroll-content__footer {
    position: relative;
    z-index: 8990;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.display-width-container {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: var(--themeval-max-display-width);
}


/* 印刷用設定 */
@media print {
    /* for print color */
    html {
        background: transparent;
    }
}

/*
================================================================
 エフェクト
================================================================
*/

/*
================================================================
 表示
================================================================
*/
.disp-blend-multiply {
    mix-blend-mode: multiply;
}

.disp-clip-box {
    overflow: hidden;
}

html.agent-prop--SP .is-PC-only {
    display: none !important;
}

html:not(.agent-prop--SP) .is-SP-only {
    display: none !important;
}

/*
================================================================
 操作
================================================================
*/
.jsctrl--disable-events {
    pointer-events: none !important;
}

/*
================================================================
 メイン領域
================================================================
*/

:root {
    --main-content-bottom: 100px;
}

main.main-content {
    box-sizing: border-box;
    min-height: 100vh;
    padding-bottom: var(--main-content-bottom);
}
.main-content-bottom {
    margin-top: var(--main-content-bottom);
    margin-bottom: calc( -1 * var(--main-content-bottom) );
}

@media (max-width: 1079px) {
    :root {
        --main-content-bottom: 70px;
    }
}

@media (max-width: 639px), (max-height: 550px) {
    :root {
        --main-content-bottom: 50px;
    }
}


/*
================================================================
 スクロールバー非表示
================================================================
*/

/* Hide scrollbar for Chrome, Safari, Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge, Firefox */
.no-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}



/*
================================================================
 フォーカス表示
================================================================
*/

*:not([tabindex="-1"]):focus-visible {
    outline: 1px solid var(--themeval-color-theme-05) !important;
    box-shadow: 0 0 2px 3px var(--themeval-color-theme-05) !important;
}



/*
================================================================
 挙動改善
================================================================
*/

a, button, summary {
    pointer-events: auto;
}


/*
================================================================
 一時処理
================================================================
*/

.html-prev-comment {
    font-size: 80%;
    color: var(--themeval-color-theme-red);
}



