@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; } } .bg-yellow { background-color: #fbfde5; padding: 2rem; @include xs { padding: 1.5rem; } h4 { display: flex; align-items: center; font-size: 20px; font-size: 2rem; margin-bottom: 1.5rem; @include sm { align-items: flex-start; } @include xs { font-size: 18px; font-size: 1.8rem; } &::before { content: ""; display: inline-block; background-image: url(../img/exclamation.svg); background-repeat: no-repeat; width: 34px; height: 34px; margin-right: 1rem; @include md { width: 30px; height: 30px; } } } } .row img { width: 100%; } h3{ &:after{ background: url("../img/clover.svg"); bottom: -1rem; } } //#yotsuba-house #yotsuba-house { h3 { @include sm { font-size: 20px; font-size: 2rem; } &::after { @include xs { top: 0.5rem; } } } .row { margin-bottom: 4rem; @include sm { margin-bottom: 2rem; } } table { th { width: 33%; text-align: left; padding-left: 1rem; @include xs { display: table-cell; width: 30%; font-size: 15px; font-size: 1.5rem; padding-left: 0.5rem; } } td { border-right: solid 1px rgba(51,153,153,0.7); &:last-of-type { border-right: none; } @include xs { display: table-cell; width: 30%; padding: 0.5rem 1rem; } } p { margin-bottom: 0; &:last-of-type { text-indent: -1em; padding-left: 1em; } } } }