@charset "utf-8"; //========================================================================== //_table.scss //========================================================================== //----------------------------------------------------------------- //.c-table-01 //----------------------------------------------------------------- .c-table-01 { width: 100%; th { padding: 20px 35px; font-size: 18px; font-weight: 500; text-align: left; border-left: 1px solid #fff; border-bottom: 1px solid #ccc; background-color: #ddd; @include smMax { padding: sm_vw(20) sm_vw(15); font-size: sm_vw(24); font-weight: 400; } &:first-child { border-left: 0; } } td { padding: 20px 35px; font-size: 16px; font-weight: 400; text-align: left; border-left: 1px solid #ccc; border-bottom: 1px solid #ccc; background-color: #fff; @include smMax { padding: sm_vw(20) sm_vw(15); font-size: sm_vw(24); } &:first-child { border-left: 0; } &.is-middle { vertical-align: middle; } } tr:last-child { td { border-bottom: none; } } }