@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-pink: #ed848b; $color-blue: #007ac5; $color-yellow: #fff2cb; $color-orange: #f8ad4e; //recreation---------------------------------- #recreation { .frame { background-color: #FFFFFF; border: solid 1px $color-pink; margin: 1.5rem 2rem 5rem 2rem; display: flex; justify-content: center; align-items: center; dl { padding-bottom: 2rem; @include xs { padding-bottom: 0.5rem; } } dt { font-size: 18px; font-size: 1.8rem; color: $color-blue; padding-bottom: 0.5rem; &::before { font-family: "Font Awesome 5 Free"; content: "\f138"; padding-right: 5px; } } dd { padding-left: 1.5em; padding-bottom: 0rem; @include xs { font-size: 14px; font-size: 1.4rem; line-height: 2.2rem; } } } .inner { margin-top: 4rem; margin-bottom: 1rem; width: 87%; @include sm { margin-top: 2rem; margin-bottom: 0; width: 90% } @include xs { margin-bottom: 0.5rem; } } .pdf-link { width: 50%; margin: auto; @include lg { width: 60%; } @include sm { width: 70%; } @include xs { width: 100%; } a { display: flex; align-items: center; background: #ffffff; border: 1px solid #CACACA; color: inherit; margin-top: 2rem; margin-bottom: 1rem; @include xs { margin-top: 0.5rem; } &::before { font-family: "Font Awesome 5 Free"; content: "\f1c1"; font-weight: 900; font-size: 27px; font-size: 2.7rem; padding: 10px 20px; color: #BF272D; display: inline-block; @include xs { padding: 10px 15px; } } &:hover{ background: #E4E4E4; } } } .excel-link { width: 50%; margin: auto; @include lg { width: 60%; } @include sm { width: 70%; } @include xs { width: 100%; } a { display: flex; align-items: center; background: #ffffff; border: 1px solid #CACACA; color: inherit; margin-top: 2rem; margin-bottom: 1rem; @include xs { margin-top: 0.5rem; } &::before { font-family: "Font Awesome 5 Free"; content: "\f1c3"; font-weight: 900; font-size: 27px; font-size: 2.7rem; padding: 10px 20px; color: #13891f; display: inline-block; @include xs { padding: 10px 15px; } } &:hover{ background: #E4E4E4; } } } }