@charset "UTF-8"; /* CSS Document */ //ブレイクポイントを指定------ここから $xl: 1399px; $lg: 1199px; $md: 991px; $sm: 767px; $xs: 575px; @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-g1: #6bc2b4; $color-g2: #339999; section { padding-bottom: 10rem; @include md { padding-bottom: 8rem; } @include xs { padding-bottom: 6rem; } } h3{ font-size: 30px; font-size: 3rem; @include sm { font-size: 23px; font-size: 2.3rem; } @include xs { font-size: 20px; font-size: 2rem; } } h4 { font-size: 20px; font-size: 2rem; font-weight: 600; color: #000; margin-bottom: 1rem; } //sign-language #sign-language { } //attempt #attempt { &>div { &>a { margin-bottom: 6rem; } } .row { &>div { margin-bottom: 6rem; @include xs { margin-bottom: 2rem; } } } } //information #information { h4 { margin-top: 6rem; } }