@charset "UTF-8"; /* CSS Document */ //ブレイクポイントを指定------ここから $xl: 1399px; $lg: 1199px; $md: 991px; $sm: 767px; $xs: 575px; .bg-topimg { background-image: url("../img/top-images.jpg"); background-position: center; background-repeat: no-repeat; background-size: cover; height: 700px; } .top-kabutogani { position: absolute; right: 0; left: 0; top: 20%; margin: 0 auto; width: 4%; z-index: 10; } @mixin xl { @media screen and (max-width: ($xl)) { @content; } } @mixin lg { @media screen and (max-width: ($lg)) { @content; } } @mixin md { @media screen and (max-width: ($md)) { @content; } } @mixin sm { @media screen and (max-width: ($sm)) { @content; } } @mixin xs { @media screen and (max-width: ($xs)) { @content; } } //ブレイクポイントを指定------ここまで //カラー指定 $color-main: #000000;