/* common */
html,
body {
    margin: 0;
    padding: 0;
    font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    width: 100vw;
    height: 100vh;
    font-size: 4vw;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    width: 100%;
    height: auto;
    font-size: 0;
    line-height: 0;
}
ul,ol,li,dl,dt,dd {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}
li + li {
    margin-top: 10px;
}

/* タブレット縦 /スマートフォン横 */
/* @media screen and (min-width: 481px) { */
@media screen and (max-width: 480px) {
    html,
    body {
        /* width: 100%; */
        font-size: 12px;
    }
}
/* デスクトップ/タブレット横 */
@media screen and (min-width: 769px) {
    html,
    body {
        font-size: 16px;
    }
}

ul.ls-cnt_num {
    margin-left: 1.2em;
}
ul.ls-cnt_num li {
    list-style: decimal;
    line-height: 1.5;
}
ul.ls-cnt_num li + li {
    margin-top: 10px;
}

/* parts design */
.common_header {
    display: block;
    margin: 0;
    padding: 1px;
    width: 100%;
    text-align: center;
    color: white;
    background-color: black;
    box-sizing: border-box;
}
.contents {
    color: white;
    margin: 0 auto;
    max-width: max-content;
}
.contents article {
    margin: 5px;
    box-sizing: border-box;
}

.qr.line {
    margin: 0 auto;
    padding: 10px;
    width: max-content;
    text-align: center;
    /* background-color: #1dcd00;*/
    border-radius: 10px;
}
.qr.line figcaption {
    font-weight: bold;
    text-align: center;
}
.qr.line figcaption + .inner {
    margin-top: 5px;
}
.qr.line a {
    display: inline-block;
}
.qr.line img {
    width: 125px;
    height: auto;
}

.table {
    padding: 5px;
    background-color: rgba(0,0,0,.5);
}
.table.default caption {
    padding: 10px 0;
    margin-bottom: 1px;
    font-weight: bold;
    background-color: rgba(0,0,0,.8);
}
.table.default caption + tbody {
    margin-top: 5px;
}
.table.default th {
    min-width: 5em;
}
.table.default th,
.table.default td {
    padding: 15px;
}
.table.default tr + tr th,
.table.default tr + tr td {
    border-top: 1px solid rgba(255,255,255,.2);
}


/* page custom */
#Home {
    background-color: black;
    background-image: url(https://s3-ap-northeast-1.amazonaws.com/nikuman.co.jp/assets/images/corp/top/bg_top.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}