/*
---------------------------------------
base
---------------------------------------
*/
/*@import url('fonts/notosans/400regular.css');
@import url('fonts/notosans/600bold.css');
@import url('fonts/notosans/800black.css');*/
@import url('http://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

html {
    height: 100%;
    overflow-x: hidden;
}
body {
    height: 100%;
}

body,*:before,*:after{
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 13px;
    letter-spacing: 0.05em;
    font-weight: 400;
    color: #555;
    background: url(../../images/bg02.png) center top repeat-y,url(../../images/bg01.jpg) center top repeat-y;
}
input,select,button,textarea,table{
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    line-height: 1.85;
    color: #26292B;
}
[data-type="sp"] {
    display: none;
}
.main {
    opacity: 0;
    transition: opacity .4s;
}
.loaded .main {
    opacity: 1;
}
.inner {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/*** img / svg ***/
.img img {
    width: 100%;
}

.aspect {
    position: relative;
    width: 100%;
}
.aspect::before {
    content: "";
    display: block;
}
.aspect > * {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/*** flex ***/
.flex {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.justify--start {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.justify--center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.justify--end {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.items--start {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.items--center {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.items--end {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

@media screen and (max-width: 640px) {
    body,
    *:before,
    *:after {
        font-size: 3.125vw;
    }
    [data-type="pc"] {
        display: none!important;
    }
    [data-type="sp"] {
        display: block;
    }
    .inner {
        width: 100%;
    }
}
