@charset "utf-8";

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

:root {
    --viewWidth: 100vw;
}

/* ------------------------------
 @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";
}

html, 
body {
    height: 100vh;
    margin: 0;
    scroll-snap-type: y mandatory;
}

*,
: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 {
    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;
    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;
}

img:not([src*="."]) {
    display: none;
}

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;
    color: inherit;
    text-decoration: none;
}

a:focus,
button:focus {
    outline: none;
}

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

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


/* ------------------------------
 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;
}

/* ------------------------------
 common
------------------------------ */

.sp-br {
    display: none;
}

.tb-br {
    display: none;
}

@media (max-width: 1025px) {

    .sp-br { 
        display: block;
    }

    .tb-br {
        display: block;
    }
}

@media (max-width:767px) {

    .sp-br { 
        display: block;
    }

    .tb-br {
        display: block;
    }

    .pctb-only-br {
        display: none;
    }
}
