* {
    margin: 0;
    padding: 0;
    list-style: none;
    word-wrap: break-word;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    vertical-align: baseline;
    background-color: transparent;
    border: none;
}

body {
    color: rgba(0, 0, 0, 0.9);
    max-width: 1920px;
    font-size: 14px;
    background-color: #ffffff;
    margin: 0 auto;
}

input,
button,
textarea,
select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
}

select::-ms-expand {
    display: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(https://pos-tec.jp/speio/img/chevron-down-solid.svg);
    background-repeat: no-repeat;
    background-size: 12px 12px;
    background-position: right 8px center;
    padding: 2px 32px 2px 4px;
}

select,
button {
    cursor: pointer;
}


/* チェック&ラジオボックス */

input[type=checkbox],
input[type=radio] {
    display: none;
}

input[type=checkbox]+label,
.iopt_checkbox_label input[type=checkbox]+span,
input[type=radio]+label,
.iopt_radio_label input[type=radio]+span {
    box-sizing: border-box;
    display: inline-block;
    padding-left: 24px;
    position: relative;
    width: auto;
}

input[type=checkbox]+label::before,
.iopt_checkbox_label input[type=checkbox]+span::before,
input[type=radio]+label::before,
.iopt_radio_label input[type=radio]+span::before {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.9);
    content: '';
    display: block;
    height: 12px;
    left: 2px;
    margin-top: -7px;
    position: absolute;
    top: 50%;
    width: 12px;
}

input[type=checkbox]+label::after,
.iopt_checkbox_label input[type=checkbox]+span::after,
input[type=radio]+label::after,
.iopt_radio_label input[type=radio]+span::after {
    border-right: 2px solid rgba(0, 0, 0, 0.9);
    border-bottom: 2px solid rgba(0, 0, 0, 0.9);
    content: '';
    display: none;
    height: 7px;
    left: 6.5px;
    margin-top: -4.25px;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 3px;
}

.iopt_checkbox_label input[type=checkbox]+span::after,
.iopt_radio_label input[type=radio]+span::after {
    margin-top: -5.5px;
}

input[type=checkbox]:checked+label::after,
.iopt_checkbox_label input[type=checkbox]:checked+span::after,
input[type=radio]:checked+label::after,
.iopt_radio_label input[type=radio]:checked+span::after {
    display: block;
}

abbr[title],
acronym[title] {
    border-bottom-width: 0;
    text-decoration: none;
}

.animation,
a,
a *,
a *:before,
a *:after,
input,
select,
textarea,
button,
label,
.imgHover,
.pagenavi:hover,
.navToggle {
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

a:link,
a:visited,
a:active {
    color: inherit;
    text-decoration: none;
    outline: none;
}

a.urlLink:link,
a.urlLink:visited,
a.urlLink:active {
    color: #0073aa;
}

a.whLink:link,
a.whLink:visited,
a.whLink:active {
    color: #fff;
}

.animationHover:hover,
a:hover,
a img:hover,
input:hover,
select:hover,
button:hover,
textarea:hover,
label:hover,
.imgHover:hover,
.pagenavi:hover {}

img {
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}

table {
    table-layout: fixed;
}

th {
    text-align: left;
}


/* SINGLE STYLE */

.flexBetween {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.flexBetweenReverse {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
}

.flexBetweenCenter {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

.flexTop {
    display: flex;
    display: -webkit-flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flexBottom {
    display: flex;
    display: -webkit-flex;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.flexLeft {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    flex-direction: row;
}

.flexRight {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flexStartWrap {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.flexStartWrapReverse {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
}

.flexCenterCenter {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}

.flexCenter {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
}

.flexColumn {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    align-items: flex-start;
    -webkit-align-items: flex-start;
}

.flexColumnReverse {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
}

.flexReverse {
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
}

.backgroundGray {
    background: rgba(0, 0, 0, 0.05);
}

.text1Line {
    display: table;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    line-height: 125%;
}

.textalignCenter {
    text-align: center;
}

.textalignLeft {
    text-align: left;
}

.textalignRight {
    text-align: right;
}

.fontSize10px {
    font-size: 10px;
    line-height: 15px;
}

.fontSize12px {
    font-size: 12px;
    line-height: 18px;
}

.fontSize14px {
    font-size: 14px;
    line-height: 21px;
}

.fontSize16px {
    font-size: 16px;
    line-height: 24px;
}

.fontSize18px {
    font-size: 18px;
    line-height: 27px;
}

.fontSize20px {
    font-size: 20px;
    line-height: 30px;
}

.fontSize24px {
    font-size: 24px;
    line-height: 36px;
}

.lineHeight125P {
    line-height: 125%;
}

.lineHeight150P {
    line-height: 150%;
}

.lineHeight175P {
    line-height: 175%;
}

.lineHeight200P {
    line-height: 200%;
}

.lineHeight225P {
    line-height: 225%;
}

.lineHeight0 {
    line-height: 0;
}

.lineHeight24px {
    line-height: 24px;
}

.lineHeight28px {
    line-height: 28px;
}

.lineHeight32px {
    line-height: 32px;
}

.lineHeight35px {
    line-height: 35px;
}

.lineHeight40px {
    line-height: 40px;
}

.lineHeight64px {
    line-height: 64px;
}

.fontWeightBold {
    font-weight: bold;
}

.fontWeightNormal {
    font-weight: normal;
}

.letterSpacing1px {
    letter-spacing: 1px;
    margin-right: -1px;
}

.letterSpacing2px {
    letter-spacing: 2px;
    margin-right: -2px;
}

.letterSpacing4px {
    letter-spacing: 4px;
    margin-right: -4px;
}

.borderTopDotted {
    border-top: 2px dotted rgba(0, 0, 0, 0.3);
}

.borderBottomDotted {
    border-bottom: 2px dotted rgba(0, 0, 0, 0.3);
}

.borderNone {
    border: none;
}

.width15P {
    width: 15%;
}

.width20P {
    width: 20%;
}

.width25P {
    width: 25%;
}

.width30P {
    width: 30%;
}

.width35P {
    width: 35%;
}

.width37_5P {
    width: 37.5%;
}

.width47_5P {
    width: 47.5%;
}

.width49_8P {
    width: 49.8%;
}

.width50P {
    width: 50%;
}

.width60P {
    width: 60%;
}

.width75P {
    width: 75%;
}

.width100P {
    width: 100%;
    height: auto;
}

.widthAuto {
    width: auto;
    height: auto;
}

.height100P {
    height: 100%;
}

.heightAuto {
    height: auto;
}

.textEllipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.positionRelative {
    position: relative;
}

.positionAbsolute {
    position: absolute;
}

.cursorPointer {
    cursor: pointer;
}

.cursorDefault {
    cursor: default;
}

.colorRed {
    color: red;
}

.colorWhite {
    color: #fff;
}

.textVertical {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.objectFitCover {
    object-fit: cover;
    font-family: 'object-fit: cover;'
}

.objectFitContain {
    object-fit: contain;
    font-family: 'object-fit: contain;'
}

.lineThrough {
    text-decoration: line-through;
}

.listStyleDec {
    list-style-type: decimal;
}

.linkBox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
    background-color: rgba(255, 255, 255, 0);
    z-index: 2;
}

.bgPositionCC {
    background-position: center center;
}

.requiredMark {
    color: red;
    font-size: 10px;
    margin: 0 0 0 2px;
    position: absolute;
}

.requiredMarkBlack {
    color: rgba(0, 0, 0, 0.8);
    font-size: 10px;
    margin: 0 0 0 2px;
    position: absolute;
}

.clearfix:after {
    content: " ";
    display: block;
    clear: both;
}

.linkGr {
    background: rgba(0, 0, 0, 0.05);
    padding: 4px 16px;
    border-radius: 1.5px;
    -webkit-border-radius: 1.5px;
    -moz-border-radius: 1.5px;
}

.linkBk {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 16px;
    border-radius: 1.5px;
    -webkit-border-radius: 1.5px;
    -moz-border-radius: 1.5px;
}

.linkGrW100P {
    background: rgba(0, 0, 0, 0.05);
    width: 100%;
    display: block;
    padding: 4px 0;
    text-align: center;
    border-radius: 1.5px;
    -webkit-border-radius: 1.5px;
    -moz-border-radius: 1.5px;
}

.spanGr {
    padding: 6px 12px;
    display: inline-block;
    background: #ededed;
    font-weight: bold;
    border-radius: 1.5px;
    -webkit-border-radius: 1.5px;
    -moz-border-radius: 1.5px;
}

.spanDgr {
    padding: 4px 16px;
    display: inline-block;
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    font-weight: bold;
    border-radius: 1.5px;
    -webkit-border-radius: 1.5px;
    -moz-border-radius: 1.5px;
}

.obFit {
    object-fit: cover;
}

.maxWidth {
    margin: 0 calc(50% - 50vw + 16px);
}

.borderRadius3px {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.borderRadius6px {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
}

body .marginAuto {
    margin-right: auto;
    margin-left: auto;
}

body .margin0 {
    margin: 0;
}

.marginLeft4px {
    margin-left: 4px;
}

.marginLeft8px {
    margin-left: 8px;
}

.marginLeft16px {
    margin-left: 16px;
}

.marginLeft24px {
    margin-left: 24px;
}

.marginRight2px {
    margin-right: 2px;
}

.marginRight4px {
    margin-right: 4px;
}

.marginRight8px {
    margin-right: 8px;
}

.marginRight16px {
    margin-right: 16px;
}

.marginRight24px {
    margin-right: 24px;
}

.marginRight40px {
    margin-right: 40px;
}

.marginRight56px {
    margin-right: 56px;
}

.marginRight64px {
    margin-right: 64px;
}

.marginLeftRight4px {
    margin-left: 4px;
    margin-right: 4px;
}

.marginLeftRight8px {
    margin-left: 8px;
    margin-right: 8px;
}

.marginLeftRight16px {
    margin-left: 16px;
    margin-right: 16px;
}

.marginTop8px {
    margin-top: 8px;
}

.marginTop24px {
    margin-top: 24px;
}

.marginTop40px {
    margin-top: 40px;
}

.marginTop48px {
    margin-top: 48px;
}

.marginTop64px {
    margin-top: 64px;
}

.marginTop80px {
    margin-top: 80px;
}

.marginTop96px {
    margin-top: 96px;
}

.marginTop120px {
    margin-top: 120px;
}

.marginBottom4px {
    margin-bottom: 4px;
}

.marginBottom8px {
    margin-bottom: 8px;
}

.marginBottom12px {
    margin-bottom: 12px;
}

.marginBottom16px {
    margin-bottom: 16px;
}

.marginBottom24px {
    margin-bottom: 24px;
}

.marginBottom32px {
    margin-bottom: 32px;
}

.marginBottom40px {
    margin-bottom: 40px;
}

.marginBottom48px {
    margin-bottom: 48px;
}

.marginBottom56px {
    margin-bottom: 56px;
}

.marginBottom64px {
    margin-bottom: 64px;
}

.marginBottom80px {
    margin-bottom: 80px;
}

.marginBottom96px {
    margin-bottom: 96px;
}

.marginBottom120px {
    margin-bottom: 120px;
}

.marginBottom160px {
    margin-bottom: 160px;
}

.marginBottom240px {
    margin-bottom: 240px;
}

.marginTopBottom8px {
    margin-top: 8px;
    margin-bottom: 8px;
}

body .padding0 {
    padding: 0;
}

.paddingTop24px {
    padding-top: 24px;
}

.paddingTop48px {
    padding-top: 48px;
}

.paddingBottom0px {
    padding-bottom: 0;
}

.paddingTopBottom2px {
    padding-top: 2px;
    padding-bottom: 2px;
}

.paddingRight16px {
    padding-right: 16px;
}

.paddingLeft16px {
    padding-left: 16px;
}

.paddingBottom16px {
    padding-bottom: 16px;
}

.paddingBottom48px {
    padding-bottom: 48px;
}

.paddingTopBottom4px {
    padding-top: 4px;
    padding-bottom: 4px;
}

.paddingRightLeft8px {
    padding-right: 8px;
    padding-left: 8px;
}

.paddingRightLeft16px {
    padding-right: 16px;
    padding-left: 16px;
}

.fontFamilyMincho {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", 'Noto Serif JP', serif;
}

.fadeIn {
    -webkit-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    -ms-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    visibility: visible !important;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeInUp {
    -webkit-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -ms-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    visibility: visible !important;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -ms-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    visibility: visible !important;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInLeft {
    -webkit-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -ms-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -ms-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    visibility: visible !important;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}


/* Column Code */

.colWrap {
    margin-left: -1.25%;
    margin-right: -1.25%;
    width: calc(100% + 2.5%);
}

.col1,
.col2to1,
.col2to2,
.col3to1,
.col3to2,
.col4to1,
.col4to2,
.col5to1,
.col5to2,
.col6to1,
.col6to2 {
    margin-left: 1.25%;
    margin-right: 1.25%;
}

.col1 {
    width: calc(100% / 1 - 2.5%);
}

.col2to1,
.col2to2 {
    width: calc(100% / 2 - 2.5%);
}

.col3to1,
.col3to2 {
    width: calc(100% / 3 - 2.5%);
}

.col4to1,
.col4to2 {
    width: calc(100% / 4 - 2.5%);
}

.col5to1,
.col5to2 {
    width: calc(100% / 5 - 2.5%);
}

.col6to1,
.col6to2 {
    width: calc(100% / 6 - 2.5%);
}


/* 960px */

@media screen and (max-width: 960px) {
    .col2to1 {
        width: calc(100% / 1 - 2.5%);
    }
    .col3to1,
    .col3to2 {
        width: calc(100% / 2 - 2.5%);
    }
    .col4to1,
    .col4to2 {
        width: calc(100% / 3 - 2.5%);
    }
    .col5to1,
    .col5to2 {
        width: calc(100% / 4 - 2.5%);
    }
    .col6to1,
    .col6to2 {
        width: calc(100% / 5 - 2.5%);
    }
    .col3to1 {
        margin-bottom: 64px;
    }
    .colWrap {
        margin-bottom: -64px;
    }
}


/* 800px */

@media screen and (max-width: 800px) {
    .col3to1 {
        width: calc(100% / 1 - 2.5%);
    }
    .col4to1,
    .col4to2 {
        width: calc(100% / 2 - 2.5%);
    }
    .col5to1,
    .col5to2 {
        width: calc(100% / 3 - 2.5%);
    }
    .col6to1,
    .col6to2 {
        width: calc(100% / 4 - 2.5%);
    }
}


/* 640px */

@media screen and (max-width: 640px) {
    .col4to1 {
        width: calc(100% / 1 - 2.5%);
    }
    .col5to1,
    .col5to2 {
        width: calc(100% / 2 - 2.5%);
    }
    .col6to1,
    .col6to2 {
        width: calc(100% / 3 - 2.5%);
    }
}


/* 560px */

@media screen and (max-width: 560px) {
    .col5to1 {
        width: calc(100% / 1 - 2.5%);
    }
    .col6to1,
    .col6to2 {
        width: calc(100% / 2 - 2.5%);
    }
}


/* 480px */

@media screen and (max-width: 480px) {
    .col6to1 {
        width: calc(100% / 1 - 2.5%);
    }
}


/* レスポンシブディスプレイ */

.displayInline {
    display: inline;
}

.displayBlock {
    display: block;
}

.displayIB {
    display: inline-block;
}

.displayNone {
    display: none;
}

.displayFlex {
    display: flex;
    display: -webkit-flex;
}


/* 1760px */

@media screen and (max-width: 1760px) {
    body .display1760 {
        display: inline;
    }
    body .displayBlock1760 {
        display: block;
    }
    body .displayNone1760 {
        display: none;
    }
    body .displayFlex1760 {
        display: flex;
        display: -webkit-flex;
    }
}


/* 1600px */

@media screen and (max-width: 1600px) {
    body .display1600 {
        display: inline;
    }
    body .displayBlock1600 {
        display: block;
    }
    body .displayNone1600 {
        display: none;
    }
    body .displayFlex1600 {
        display: flex;
        display: -webkit-flex;
    }
}


/* 1440px */

@media screen and (max-width: 1440px) {
    body .display1440 {
        display: inline;
    }
    body .displayBlock1440 {
        display: block;
    }
    body .displayNone1440 {
        display: none;
    }
    body .displayFlex1440 {
        display: flex;
        display: -webkit-flex;
    }
}


/* 1280px */

@media screen and (max-width: 1280px) {
    body .display1280 {
        display: inline;
    }
    body .displayBlock1280 {
        display: block;
    }
    body .displayNone1280 {
        display: none;
    }
    body .displayFlex1280 {
        display: flex;
        display: -webkit-flex;
    }
}


/* 1120px */

@media screen and (max-width: 1120px) {
    body .display1120 {
        display: inline;
    }
    body .displayBlock1120 {
        display: block;
    }
    body .displayNone1120 {
        display: none;
    }
    body .displayFlex1120 {
        display: flex;
        display: -webkit-flex;
    }
}


/* 960px */

@media screen and (max-width: 960px) {
    body .display960 {
        display: inline;
    }
    body .displayBlock960 {
        display: block;
    }
    body .displayNone960 {
        display: none;
    }
    body .displayFlex960 {
        display: flex;
        display: -webkit-flex;
    }
}


/* 800px */

@media screen and (max-width: 800px) {
    body .display800 {
        display: inline;
    }
    body .displayBlock800 {
        display: block;
    }
    body .displayNone800 {
        display: none;
    }
    body .displayFlex800 {
        display: flex;
        display: -webkit-flex;
    }
}


/* 640px */

@media screen and (max-width: 640px) {
    body .display640 {
        display: inline;
    }
    body .displayBlock640 {
        display: block;
    }
    body .displayNone640 {
        display: none;
    }
    body .displayFlex640 {
        display: flex;
        display: -webkit-flex;
    }
}


/* 560px */

@media screen and (max-width: 560px) {
    body .display560 {
        display: inline;
    }
    body .displayBlock560 {
        display: block;
    }
    body .displayNone560 {
        display: none;
    }
    body .displayFlex560 {
        display: flex;
        display: -webkit-flex;
    }
}


/* 480px */

@media screen and (max-width: 480px) {
    body .display480 {
        display: inline;
    }
    body .displayBlock480 {
        display: block;
    }
    body .displayNone480 {
        display: none;
    }
    body .displayFlex480 {
        display: flex;
        display: -webkit-flex;
    }
}


/* 400px */

@media screen and (max-width: 400px) {
    body .display400 {
        display: inline;
    }
    body .displayBlock400 {
        display: block;
    }
    body .displayNone400 {
        display: none;
    }
    body .displayFlex400 {
        display: flex;
        display: -webkit-flex;
    }
}