@charset "utf-8"; //========================================================================== //_main.scss //========================================================================== //----------------------------------------------------------------- //.l-main //----------------------------------------------------------------- .l-main { position: relative; display: block; padding-top: 88px; background-color: #f2f2f2; @include lgMax { padding-top: 60px; @include smMax { padding: sm_vw(120) 0 0; } } .js-pagetop { position: absolute; bottom: 0; right: 0; width: 90px; height: 90px; padding: 0 20px 20px 0; font-size: 0; z-index: 50; display: none; @include smMax { width: sm_vw(120); height: sm_vw(120); padding: 0 sm_vw(20) sm_vw(20) 0; } &.is-fixed { position: fixed; } a { position: relative; width: 100%; height: 100%; display: block; border-radius: 35px; background-color: $colorBlue; &::before { content: ""; position: absolute; bottom: 50%; right: 50%; transform: translate(50%,50%) rotate(90deg); width: 14px; height: 24px; background: transparent url("../images/ico_arrow01_w.svg") 0 0 no-repeat; @include smMax { width: sm_vw(16); height: sm_vw(28); } } @include hover { opacity: 0.7; } } } } @media print{ .is-print { .l-main { padding-top: 0; } .js-pagetop { display: none !important; opacity: 0 !important; } } }