@charset "utf-8";

/* ------------------------------
 base root
------------------------------ */

:root {
    --viewWidth: 100vw;
    --headerHeight: 7.5vh;
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #DA6687;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #27AEDF;
    --white: #fff;
    --black: #000;
    --black-dark: #222;
    --black-medium: #444;
    --black-light: #666;
    --gray-dark: #999;
    --gray: #ccc;
    --gray-medium: #ebebeb;
    --gray-light: #f8f8f8;
    --gold:#D0A900;
    --platinum:#B5B5B5;

}

/* ------------------------------
 @f+
------------------------------ */

html {
    font-family: var(--ff-default);
    color: var(--c-default);
    font-size: var(--fz-default);
    font-weight: var(--fw-default);
    line-height: var(--lh-default);
    letter-spacing: var(--lts-default);
    -webkit-text-size-adjust: 100%;
    /* Prevent adjustments of font size after orientation changes in iOS */
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
}

*,
:before,
:after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
}

:before,
:after {
    pointer-events: none;
}

body,
div,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
form,
input,
button,
figure,
figcaption,
p,
pre,
a,
time {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: inherit;
    font-weight: var(--heading-fw-default);
    font-size: inherit;
    font-family: inherit;
    line-height: var(--heading-lh-default);
}

button,
input,
optgroup,
select,
textarea {
    padding: 0;
    color: inherit;
    line-height: inherit;
}

svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
}

button,
input,
optgroup,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    outline: 0;
    border-radius: 0;
    text-align: inherit;
    line-height: inherit;
    max-width: 100%;
}

[type="checkbox"] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
}

[type="radio"] {
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
    cursor: default;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

b,
strong {
    font-weight: bolder;
}

ol,
ul {
    list-style: none;
}

img {
    border-style: none;
    vertical-align: top;
    border: none;
    max-width: 100%;
    height: auto;
}

button,
[role="button"] {
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    vertical-align: top;
    padding: 0;
}

th {
    text-align: left;
    font-weight: inherit;
}

dt {
    font-weight: inherit;
}

a,
button {
    color: inherit;
    text-decoration: none;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
    max-width: 100%;
}

a:hover,
button:hover {
    opacity: 0.6;
    cursor: pointer;
    text-decoration: none;
}

a[href*="tel:"],
button[href*="tel:"] {
    pointer-events: none;
}

@media (max-width: 1024px) {
    a[href*="tel:"],
    button[href*="tel:"] {
        pointer-events: initial !important;
    }
}

@media (max-width: 767px) {}

/* ------------------------------
 font-size
------------------------------ */

.fz-size1 {
    font-size: var(--fz-size1);
}

.fz-size2 {
    font-size: var(--fz-size2);
}

.fz-size3 {
    font-size: var(--fz-size3);
}

.fz-size4 {
    font-size: var(--fz-size4);
}

.fz-size5 {
    font-size: var(--fz-size5);
}

.fz-size6 {
    font-size: var(--fz-size6);
}

.fz-size7 {
    font-size: var(--fz-size7);
}

.fz-size8 {
    font-size: var(--fz-size8);
}

.fz-small {
    font-size: var(--fz-small);
}

.fz-xsmall {
    font-size: var(--fz-xsmall);
}

/* ------------------------------
 object-fit
------------------------------ */

.object-fit {
    display: block;
}

.object-fit img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100% !important;
    -o-object-position: top center;
    object-position: top center;
}

/* ------------------------------
 heightLine
------------------------------ */

[class*="heightLine"] {
    display: block;
}

@media only screen and (max-width:1024px) {
    [class*="heightLine-tab"] {
        height: auto !important;
        -webkit-box-sizing: border-box !important;
                box-sizing: border-box !important;
    }
}

@media only screen and (max-width:767px) {
    [class*="heightLine-sp"] {
        height: auto !important;
        -webkit-box-sizing: border-box !important;
                box-sizing: border-box !important;
    }
}

/* ------------------------------
 common
------------------------------ */
.fw700 {
    font-weight: 700
}

.tac {
    text-align: center;
}

.tal {
    text-align: left;
}

.tar {
    text-align: right;
}

.tac767 {
    text-align: center;
}

.tar767 {
    text-align: right;
}

.talc767 {
    text-align: left;
}

.tarc767 {
    text-align: right;
}

.lhi {
    line-height: inherit !important;
}

.lh1 {
    line-height: 1;
}

.lh1\.1 {
    line-height: 1.1;
}

.lh1\.2 {
    line-height: 1.2;
}

.lh1\.3 {
    line-height: 1.3;
}

.lh1\.4 {
    line-height: 1.4;
}

.lh1\.5 {
    line-height: 1.5;
}

.lh1\.6 {
    line-height: 1.6;
}

.lh1\.7 {
    line-height: 1.7;
}

.lh1\.8 {
    line-height: 1.8;
}

.lh1\.9 {
    line-height: 1.9;
}

.lh2 {
    line-height: 2;
}

.lh2\.5 {
    line-height: 2.5;
}

.lh3 {
    line-height: 3;
}

.lts0 {
    letter-spacing: 0;
}

.lts\.1em {
    letter-spacing: .1em;
}

.lts\.2em {
    letter-spacing: .2em;
}

.db {
    display: block;
}

.dib {
    display: inline-block;
}

.content-inner {
    width: var(--content-inner-width-default);
    max-width: var(--content-inner-default);
    margin-left: auto;
    margin-right: auto;
}

.content-section {
    padding: var(--content-section-default) 0;
}

@media (max-width:1024px) {
    .br1024 br {
        display: none;
    }
}

@media (max-width:767px) {
    .tac767 {
        text-align: left;
    }

    .tar767 {
        text-align: left;
    }

    .talc767 {
        text-align: center;
    }

    .tarc767 {
        text-align: center;
    }

    .br767 br {
        display: none;
    }
}
