@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: #ffffff;
    color: #3e3a39;
    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: 1279px), (min-width: 1280px) and (max-height: 859px) {
    body {
        font-size: calc( 16rem / var(--themeval-root-font-size) ); /* $body-font-size-pc rem / $base-font-size */
    }
}
@media (max-width: 1079px), (min-width: 1080px) and (max-height: 767px) {
    body {
        font-size: calc( 15rem / var(--themeval-root-font-size) ); /* $body-font-size-pc rem / $base-font-size */
    }
}
@media (max-width: 767px), (min-width: 768px) and (max-height: 639px) {
    body {
        font-size: calc( 14rem / var(--themeval-root-font-size) ); /* $body-font-size-pc rem / $base-font-size */
    }
}
@media (max-width: 479px), (max-height: 511px) {
    body {
        font-size: calc( 13rem / var(--themeval-root-font-size) ); /* $body-font-size-pc rem / $base-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: 90%;
    /* width: calc(100% - 30px); */
    max-width: var(--themeval-container-width);
}
/* @media all and (min-width: 480px) {
    .content-container {
        width: calc(100% - 40px);
    }
}
@media all and (min-width: 640px) {
    .content-container {
        width: calc(100% - 50px);
    }
}
@media all and (min-width: 768px) {
    .content-container {
        width: calc(100% - 60px);
    }
}
@media all and (min-width: 960px) {
    .content-container {
        width: calc(100% - 80px);
    }
}
@media all and (min-width: 1080px) {
    .content-container {
        width: calc(100% - 120px);
    }
}
@media all and (min-width: 1280px) {
    .content-container {
        width: calc(100% - 180px);
    }
}
@media all and (min-width: 1440px) {
    .content-container {
        width: calc(100% - 240px);
    }
} */

.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-frame-container {
    display: block;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 0;
    clear: both;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
    max-width: var(--themeval-frame-container-width);
}

.content-inner-container {
    display: block;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 0;
    clear: both;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: var(--themeval-container-width);
}


/*
================================================================
 サイトデザインの反映
================================================================
*/

p {
    margin: 0;
}
.p-break {
    margin-top: 2em;
}

a {
    transition: opacity var(--themeval-hover-transition);
}
html:not(.agent-prop--Touch) a:hover {
    opacity: var(--themeval-hover-opacity);
}

.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;
}

.table-wrapper {
    display: block;
    width: 100%;
    padding: 0;
    overflow: auto;
}

@media all and (max-width: 1279px) {
    .line-break-span-mb span {
        display: inline-block;
    }

    .line-break-span-mb br:not(.set--force) {
        display: none;
    }
}


/* 印刷用設定 */
@media print {
    .table-wrapper > table {
        white-space: normal !important;
        width: 100% !important;
        min-width: initial !important;
    }
}

/*
================================================================
 表示領域とスクロール領域
================================================================
*/
.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%;
}
.page-structure-fixed-nav {
    position: fixed;
    z-index: 8999;
    bottom: 0px;
    display: block;
    box-sizing: content-box;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
}
.page-structure-fixed-nav.blend-difference {
    mix-blend-mode: difference;
}

.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;
    }
    
    .page-structure-fixed-header {
        position: absolute;
    }
    .page-structure-fixed-nav {
        position: absolute;
    }

    *[data-print-text]::before {
        content: attr(data-print-text);
    }
    *[data-print-text] img {
        display: none;
    }

}

/*
================================================================
 エフェクト
================================================================
*/

/*
================================================================
 表示
================================================================
*/
.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;
}

/*
================================================================
 メイン領域
================================================================
*/
main.main-content {
    box-sizing: border-box;
    min-height: calc(100vh - var(--themeval-global-header-height));
    min-height: calc(100svh - var(--themeval-global-header-height));
}

.sticky-lock-top:not(.sticky-lock-disabled),
.sticky-lock-bottom:not(.sticky-lock-disabled) {
    display: block;
}
.sticky-lock-top:not(.sticky-lock-disabled)::after,
.sticky-lock-bottom:not(.sticky-lock-disabled)::before {
    content: "";
    display: block;
    width: 100%;
    height: 5vh;
}
.sticky-lock-top:not(.sticky-lock-disabled) > *:first-child:last-child {
    position: sticky;
    top: var(--themeval-global-header-height);
}
.sticky-lock-bottom:not(.sticky-lock-disabled) > *:first-child:last-child {
    position: sticky;
    bottom: 0;
}

/* 印刷用設定 */
@media print {
    /* for print color */
    .sticky-lock-top:not(.sticky-lock-disabled)::after,
    .sticky-lock-bottom:not(.sticky-lock-disabled)::before {
        height: 0;
    }
    .sticky-lock-top:not(.sticky-lock-disabled) > *:first-child:last-child,
    .sticky-lock-bottom:not(.sticky-lock-disabled) > *:first-child:last-child {
        position: relative;
    }
}

/*
================================================================
 スクロールバー非表示
================================================================
*/

/* 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-02) !important;
    box-shadow: 0 0 2px 3px var(--themeval-color-theme-02) !important;
}



/*
================================================================
 挙動改善
================================================================
*/

a, button, summary {
    pointer-events: auto;
}


/*
================================================================
 一時処理
================================================================
*/

.html-prev-comment {
    font-size: 80%;
    color: var(--themeval-color-theme-red);
}



