header {
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    padding: 0 1.5rem;
    z-index: 7777;
    background: #fff;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
}
header #searchBtn {
    width: 2rem;
}
header #searchBtn img {
    width: 100%;
}
header #menuBtn {
    width: 2.5rem;
}
header #menuBtn img {
    width: 100%;
}
header #backBtn {
    width: 1.2rem;
    display: none;
}
header #backBtn img {
    width: 100%;
}
header #exitBtn {
    width: 2rem;
    display: none;
}
header #exitBtn img {
    width: 100%;
}

.navBg {
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 8888;
}
nav {
    background-color: #fff;
    padding: 10rem 1.5rem 0;
    display: flex;
    flex-flow: column nowrap;
    width: 70%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
nav button {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 4rem;
}
nav button img {
    width: 100%;
}
nav a {
    border-radius: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
nav a img {
    width: 1.5rem;
    margin-right: 2rem;
}
.bottomNav {
    background: #fff;
    z-index: 8887;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 7rem;
    box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
}
.bottomNav a {
    width: 25%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}
.bottomNav a img {
    height: 3rem;
    margin-bottom: 1rem;
}
.bottomNav a span {
    font-size: 1.4rem;
    font-weight: 600;
    color: #cacaca;
}

/* 오늘 일정 추가 */
.type {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 45%;
    background: #fff;
    padding: 2rem 1.5rem;
    z-index: 8889;
    display: none;
    flex-flow: column nowrap;
    justify-content: space-between;
}
.type > p {
    font-size: 1.2rem;
    line-height: 1.4;
    color: #adadad;
    text-align: center;
}
.type .plan {}
.type .plan h2 {
    font-size: 1.8rem;
    font-weight: 600;
}
.type .plan .planSwiper {
    height: max-content;
    overflow: hidden;
    padding: 1rem 0;
}
.type .plan .planSwiper .swiper-wrapper {}
.type .plan .planSwiper .swiper-wrapper .swiper-slide {
    box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    height: 6rem;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.type .plan .planSwiper .swiper-wrapper .swiper-slide.selected {
    border: 1px solid #000;
}
.type .plan .planSwiper .swiper-wrapper .swiper-slide h3 {
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.type .plan .planSwiper .swiper-wrapper .swiper-slide:nth-of-type(1) {
    background: #fcf1e3;
}
.type .plan .planSwiper .swiper-wrapper .swiper-slide:nth-of-type(2) {
    background: #e3fce5;
}
.type .plan .planSwiper .swiper-wrapper .swiper-slide:nth-of-type(3) {
    background: #cacafc;
}
.type .plan .planSwiper .swiper-wrapper .swiper-slide:nth-of-type(4) {
    background: #cde6fc;
}
.type .plan .planSwiper .swiper-wrapper .swiper-slide:nth-of-type(5) {
    background: #ffdcdc;
}
.type .plan .planSwiper .swiper-wrapper .swiper-slide h3 img {
    width: 2.5rem;
    margin-right: 0.5rem;
}
.type .plan .planSwiper .swiper-wrapper .swiper-slide p {
    font-size: 1.4rem;
}
.type .plan .planSwiper .swiper-wrapper .swiper-slide a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.type .iconWrap {}
.type .iconWrap h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.type .iconWrap .icon {
    display: flex;
    flex-flow: row wrap;
    gap: 1.5rem;
}
.type .iconWrap .icon .sticker {
    background-color: #fff;
    background-size: 4rem;
    background-position: center center;
    background-repeat: no-repeat;
    width: 4rem;
    height: 4rem;
    border-radius: 100%;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
}
.type .iconWrap .icon .sticker.selected {
    border: 1px solid #000;
}
.type .iconWrap .icon a:nth-of-type(1) {
    background-image: url(../img/icon-7.png);
}
.type .iconWrap .icon a:nth-of-type(2) {
    background-image: url(../img/icon-8.png);
}
.type .iconWrap .icon a:nth-of-type(3) {
    background-image: url(../img/icon-9.png);
}
.type .iconWrap .icon a:nth-of-type(4) {
    background-image: url(../img/icon-10.png);
}
.type .iconWrap .icon a:nth-of-type(5) {
    background-image: url(../img/icon-11.png);
}
.type .iconWrap .icon a:nth-of-type(6) {
    background-image: url(../img/icon-12.png);
}
.type .iconWrap .icon a:nth-of-type(7) {
    background-image: url(../img/icon-13.png);
}
.type .iconWrap .icon a:nth-of-type(8) {
    background-image: url(../img/icon-14.png);
}
.type > button {
    font-size: 1.6rem;
    color: #fff;
    height: 15%;
    background: #630cf0;
    width: 100%;
    border-radius: 1rem;
}

/* 날짜선택 */
.dateSelBg {
    height: max-content;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 8888;
    padding: 0 1.5rem;
}
.dateSelBg .dateSel {
    width: 100%;
    height: 50%;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
}
.dateSelBg .dateSel .swiperWrap {
    display: flex;
    align-items: center;
    height: 85%;
    padding: 4rem 1.5rem;
}
.dateSelBg .dateSel .dateSwiper {
    overflow: hidden;
}
.dateSelBg .dateSel .yearSwiper {
    width: 55%;
}
.dateSelBg .dateSel .monthSwiper {
    width: 45%;
}
.dateSelBg .dateSel .yearSwiper .swiper-slide {
    padding-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}
.dateSelBg .dateSel .monthSwiper .swiper-slide {
    padding-left: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}
.dateSelBg .dateSel .dateSwiper .swiper-wrapper {}
.dateSelBg .dateSel .dateSwiper .swiper-wrapper .swiper-slide {
    font-size: 2rem;
    color: #cccccc;
    font-weight: 600;
}
.dateSelBg .dateSel .dateSwiper .swiper-wrapper .swiper-slide-active {
    background: #f4f4f4;
    color: #333;
}
.dateSelBg .dateSel button {
    font-size: 1.6rem;
    color: #fff;
    height: 15%;
    background: #630cf0;
    width: 100%;
}

main {
    padding: 0 1.5rem 10rem;
}
main .calendar {}
main .calendar .dateWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0 1rem;
    position: relative;
}
main .calendar .dateWrap button {
    width: 1rem;
}
main .calendar .dateWrap button img {
    width: 100%;
}
main .calendar .dateWrap #planBtn {
    width: 2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 18%;
}
main .calendar .dateWrap #planBtn img {
    width: 100%;
}
main .calendar .dateWrap .date {
    font-size: 1.8rem;
    font-weight: 600;
    padding: 0 2rem;
}
main .calendar table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    table-layout: fixed;
}
main .calendar table thead {
    display: table;
    width: 100%; /* thead의 너비를 테이블에 맞춤 */
    table-layout: fixed; /* 셀 너비를 고정 */
}
main .calendar table thead tr {}
main .calendar table thead tr th {
    font-size: 1.6rem;
    font-weight: 800;
    padding: 1.5rem 0;
    border-bottom: 1px solid #630cf0;
    width: calc(100% / 7);
}
main .calendar table tbody {
    display: block; /* 블록 요소로 만들어 스크롤 가능하게 */
    overflow-y: scroll; /* 세로 스크롤 활성화 */
    width: 100%;
}
main .calendar table tbody tr {
    border-bottom: 1px solid #f2f2f2;
    display: flex;
    width: 100%; /* tr도 전체 너비에 맞춤 */
    table-layout: fixed; /* 셀 너비를 고정 */
}
main .calendar table tbody tr:last-child {
    border: none;
}
main .calendar table tbody tr td {
    border-right: 1px solid #f2f2f2;
    border-left: 1px solid #f2f2f2;
    width: calc(100% / 7);
    padding-top: 0.5rem;
    background: #fcfcfc;
    height: 8rem;
    display: flex; /* Flexbox 활성화 */
    flex-direction: column; /* 세로 방향으로 정렬 */
    gap: 0.5rem;
    align-items: center; /* 수평 중앙 정렬 */
    box-sizing: border-box; /* 패딩과 테두리가 요소의 너비/높이에 포함되도록 설정 */
}
main .calendar table tbody tr td.today {
    background-color: #630cf0;
}
main .calendar table tbody tr td.today > span {
    color: #fff;
}
main .calendar table tbody tr td > span {
    font-size: 1.4rem;
    display: inline-block;
}
main .calendar table tbody tr td .work-info {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-end;
    gap: 0.5rem;
    height: 100%;
    width: 100%;
    position: relative;
}
main .calendar table tbody tr td .work-info span {
    border-radius: 0.1rem;
    padding: 0.1rem 0;
    width: 100%;
}
main .calendar table tbody tr td .work-info img {
    width: 2.5rem;
    position: absolute;
    bottom: 0;
    right: 0;
}
.planBg {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 8888;
    top: 0;
    background: rgba(0, 0, 0, 0.2);
    padding: 0 1.5rem;
}
.planWrap {
    background: #fff;
    padding: 3rem 1.5rem;
    border-radius: 1rem;
    width: calc(100% - 3rem);
    height: 55%;
    display: none;
    z-index: 8889;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.planWrap .day {
    font-size: 2rem;
    font-weight: 800;
}
.planWrap .dayPlan {
    padding: 2rem 0;
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
}
.planWrap .dayPlan a {
    height: 10rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    background: #cacafc;
    position: relative;
}
.planWrap .dayPlan a .left {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    height: 100%;
    width: 70%;
}
.planWrap .dayPlan a .left h3 {
    font-size: 1.8rem;
    font-weight: 800;
}
.planWrap .dayPlan a .left p {
    font-size: 1.6rem;
    overflow: hidden;
    white-space: nowrap; 
    text-overflow: ellipsis;
}
.planWrap .dayPlan a .left p span {
    font-size: 1.6rem;
    overflow: hidden;
    white-space: nowrap; 
    text-overflow: ellipsis;
}
.planWrap .dayPlan a .right {}
.planWrap .dayPlan a .right p {
    font-size: 1.6rem;
    font-weight: 600;
}
.planWrap .dayPlan a .right p span {
    font-size: 1.6rem;
    font-weight: 600;
}
.planWrap .dayPlan a button {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 2rem;
}
.planWrap .dayPlan .noResult {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding-top: 4rem;
}
.planWrap .dayPlan .noResult img {
    width: 10rem;
}
.planWrap .dayPlan .noResult span {
    font-size: 1.6rem;
    color: #aaaaaa;
}
.planWrap > button {
    width: 4rem;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}
.planWrap button img {
    width: 100%;
}

main #addBtn {
    margin: 3rem 0;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 2rem;
    width: 100%;
    border-radius: 1rem;
    font-size: 2rem;
    font-weight: 600;
}
main #addBtn img {
    width: 5rem;
    margin-right: 2rem;
}
main .memoWrap {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    gap: 1.5rem;
}
main .memoWrap .memoItem {
    position: relative;
    padding: 1.5rem 4rem 1.5rem 1.5rem;
    border-radius: 1rem;
}
main .memoWrap p {
    font-size: 1.6rem;
    line-height: 1.4;
    word-break: break-all;
}
main .memoWrap p button {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}
main .memoWrap p button img {
    width: 2rem;
}
.addBg {
    position: fixed;
    z-index: 8888;
    top: 0;
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    display: none;
    flex-flow: column nowrap;
    justify-content: flex-end;
}
.addBg .add {
    width: 100%;
    height: 60%;
    background: #fff;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    padding: 3rem 1.5rem 2rem;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
}
.addBg .add .memo {}
.addBg .add .memo .memoTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.addBg .add .memo .memoTop h2 {
    font-size: 2rem;
    font-weight: 600;
}
.addBg .add .memo .memoTop h2 span {
    font-size: 1.4rem;
    margin-left: 0.5rem;
}
.addBg .add .memo .memoTop #memoCloseBtn {
    width: 3.5rem;
}
.addBg .add .memo .memoTop #memoCloseBtn img {
    width: 100%;
}
.addBg .add .memo input {
    width: 100%;
    border-bottom: 1px solid #e3e3e3;
    padding: 1rem 0;
    font-size: 1.6rem;
}
.addBg .add .memo input::placeholder {
    color: #f0f0f0;
}
.addBg .add .colorWrap {}
.addBg .add .colorWrap h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.addBg .add .colorWrap .color {
    display: flex;
    flex-flow: row wrap;
    gap: 1rem;
    row-gap: 2rem;
}
.addBg .add .colorWrap .color a {
    border-radius: 100%;
    width: 4rem;
    height: 4rem;
    color: #848484;
}
.addBg .add .colorWrap .color a.selected {
    background-image: url(../img/colorcheck-icon.png);
    background-size: 2rem;
    background-position: center center;
    background-repeat: no-repeat;
}
.addBg .add > button {
    font-size: 1.6rem;
    font-weight: 600;
    background: #630cf0;
    border-radius: 1rem;
    padding: 2rem 0;
    color: #fff;
    width: 100%;
}

/* 근무형태 */
main > h2 {
    padding: 3rem 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 2rem;
    font-weight: 600;
}
main > h2 a {
    width: 3rem;
}
main > h2 a img {
    width: 100%;
}
main .typeWrap {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    gap: 1.5rem;
}
main .typeWrap a {
    height: 10rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
}
main .typeWrap a:nth-of-type(1) {
    background: #fcf1e3;
}
main .typeWrap a:nth-of-type(2) {
    background: #e3fce5;
}
main .typeWrap a:nth-of-type(3) {
    background: #cacafc;
}
main .typeWrap a:nth-of-type(4) {
    background: #cde6fc;
}
main .typeWrap a:nth-of-type(5) {
    background: #ffdcdc;
}
main .typeWrap a .left {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
}
main .typeWrap a .left h3 {
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
main .typeWrap a .left h3 img {
    width: 2.5rem;
    margin-right: 0.5rem;
}
main .typeWrap a .left p {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
main .typeWrap a .left p span {
    font-size: 1.6rem;
}
main .typeWrap a .right {}
main .typeWrap a .right p {
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}
main .typeWrap a .right p span {
    font-size: 1.6rem;
    font-weight: 600;
}
main #customBtn {
    width: 5rem;
    position: fixed;
    z-index: 6666;
    bottom: 10rem;
    right: 1.5rem;
}
main #customBtn img {
    width: 100%;
}

/* 검색 */
main label {
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 6rem;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    display: inline-block;
    margin-top: 3rem;
}
main label input {
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    padding: 0 2rem;
}
main label input::placeholder {
    color: #acacac;
}
main label button {
    width: 2.5rem;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}
main label button img {
    width: 100%;
}
main #searchResults {
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
    padding-top: 1.5rem;
}
main #searchResults .typePlan {
    height: 7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 0 1.5rem;
}
main #searchResults .typePlan .left {
    display: flex;
}
main #searchResults .typePlan .left h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-right: 1rem;
}
main #searchResults .typePlan .left p {
    font-size: 1.6rem;
}
main #searchResults .typePlan .right {
    width: 3rem;
}
main #searchResults .typePlan .right img {
    width: 100%;
}
main #searchResults .noResult {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding-top: 10rem;
}
main #searchResults .noResult img {
    width: 10rem;
}
main #searchResults .noResult span {
    font-size: 1.6rem;
    color: #adadad;
}

/* 근무형태 상세 페이지 */
main #typeFrm {}
main #typeFrm .typeTitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
}
main #typeFrm .typeTitle input {
    font-size: 2rem;
    font-weight: 600;
    width: 100%;
    background-image: url(../img/retouch-icon.png);
    background-size: 2.5rem;
    background-position: right center;
    background-repeat: no-repeat;
}
main #typeFrm .periodWrap {
    margin-bottom: 3rem;
}
main #typeFrm .periodWrap h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
main #typeFrm .periodWrap .period {}
main #typeFrm .periodWrap .period .startTime {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
main #typeFrm .periodWrap .period .startTime h3 {
    font-size: 1.6rem;
    font-weight: 600;
}
main #typeFrm .periodWrap .period .startTime .timeWrap {
    border-radius: 1rem;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
main #typeFrm .periodWrap .period .startTime .timeWrap input {
    width: 50%;
    padding: 1rem 0;
    text-align: center;
    font-size: 1.6rem;
}
main #typeFrm .periodWrap .period .startTime .timeWrap span {
    margin: 0 0.5rem;
    font-size: 1.6rem;
}
main #typeFrm .periodWrap .period .endTime {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
main #typeFrm .periodWrap .period .endTime h3 {
    font-size: 1.6rem;
    font-weight: 600;
}
main #typeFrm .periodWrap .period .endTime .timeWrap {
    border-radius: 1rem;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
main #typeFrm .periodWrap .period .endTime .timeWrap input {
    width: 50%;
    padding: 1rem 0;
    text-align: center;
    font-size: 1.6rem;
}
main #typeFrm .periodWrap .period .endTime .timeWrap span {
    margin: 0 0.5rem;
    font-size: 1.6rem;
}
main #typeFrm .salaryWrap {
    margin-bottom: 3rem;
}
main #typeFrm .salaryWrap h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
main #typeFrm .salaryWrap .salary {}
main #typeFrm .salaryWrap .salary .timeForSalary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
main #typeFrm .salaryWrap .salary .timeForSalary h3 {
    font-size: 1.6rem;
    font-weight: 600;
}
main #typeFrm .salaryWrap .salary .timeForSalary .wonWrap {
    border-radius: 1rem;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
main #typeFrm .salaryWrap .salary .timeForSalary .wonWrap input {
    width: 80%;
    padding: 1rem;
    font-size: 1.6rem;
}
main #typeFrm .salaryWrap .salary .timeForSalary .wonWrap span {
    font-size: 1.6rem;
    width: 20%;
}
main #typeFrm .salaryWrap .salary .workTime {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
main #typeFrm .salaryWrap .salary .workTime h3 {
    font-size: 1.6rem;
    font-weight: 600;
}
main #typeFrm .salaryWrap .salary .workTime .wonWrap {
    border-radius: 1rem;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
main #typeFrm .salaryWrap .salary .workTime .wonWrap input {
    text-align: center;
    font-size: 1.6rem;
    padding: 1rem 0;
    width: 25%;
}
main #typeFrm .salaryWrap .salary .workTime .wonWrap span {
    font-size: 1.6rem;
    width: 25%;
    text-align: center;
}
main #typeFrm .salaryWrap .salary .totalPrice {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
main #typeFrm .salaryWrap .salary .totalPrice h3 {
    font-size: 1.6rem;
    font-weight: 600;
}
main #typeFrm .salaryWrap .salary .totalPrice .wonWrap {
    border-radius: 1rem;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
main #typeFrm .salaryWrap .salary .totalPrice .wonWrap input {
    width: 80%;
    padding: 1rem;
    font-size: 1.6rem;
}
main #typeFrm .salaryWrap .salary .totalPrice .wonWrap span {
    font-size: 1.6rem;
    width: 20%;
}
main #typeFrm .color {
    margin-bottom: 3rem;
}
main #typeFrm .color h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
main #typeFrm .color .colorSwiper {
    height: max-content;
    overflow: hidden;
}
main #typeFrm .color .colorSwiper .swiper-wrapper {}
main #typeFrm .color .colorSwiper .swiper-wrapper .swiper-slide {
    border-radius: 100%;
    aspect-ratio: 1 / 1;
    color: #848484;
}
main #typeFrm .color .colorSwiper .swiper-wrapper .swiper-slide.selected {
    background-image: url(../img/colorcheck-icon.png);
    background-size: 2rem;
    background-position: center center;
    background-repeat: no-repeat;
}
main #typeFrm .content {
    margin-bottom: 3rem;
}
main #typeFrm .content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
main #typeFrm .content h2 span {
    font-size: 1.4rem;
}
main #typeFrm .content textarea {
    border-radius: 1rem;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    border: none;
    width: 100%;
    font-size: 1.6rem;
    padding: 1.5rem;
}
main #typeFrm #checkBtn {
    font-size: 1.6rem;
    font-weight: 600;
    background: #630cf0;
    border-radius: 1rem;
    padding: 2rem 0;
    color: #fff;
    width: 100%;
}

/* 근무 분석 */
main > h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
main h2.center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 3rem 0;
}
main h2.center a {
    width: 1rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
main h2.center a img {
    width: 100%;
}
main .category {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 4rem;
}
main .category a {
    width: 50%;
    background: #f0f0f0;
    color: #8b8b8b;
    text-align: center;
    border-radius: 1rem;
    padding: 1.5rem 0;
    font-size: 1.8rem;
}
main .category a.on {
    background: #630cf0;
    color: #fff;
}
main .chartWrap {
    border-radius: 1rem;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    display: inline-block;
    padding: 2rem;
    margin-bottom: 4rem;
    width: 100%;
}
main .chartWrap > p {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
main .chartWrap > p span {
    font-size: 2rem;
    font-weight: 800;
}
main .chartWrap #workHoursChart {
    width: 100%;
}
main .dateSelect {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}
main .dateSelect > p {
    font-size: 1.6rem;
    font-weight: 600;
    width: 20%;
}
main .dateSelect select {
    text-align: center;
    border: none;
    padding: 1.5rem 0;
    width: 40%;
    font-size: 1.6rem;
    border-radius: 1rem;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
}
main .dateSelect select option {
    font-size: 1.6rem;
}
main #week-schedule {}
main #week-schedule .noResult {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding-top: 4rem;
}
main #week-schedule .noResult img {
    width: 10rem;
}
main #week-schedule .noResult span {
    font-size: 1.6rem;
    color: #aaaaaa;
}
main #week-schedule ul {
    height: 20rem;
    overflow: scroll;
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
}
main #week-schedule ul li {
    border-radius: 1rem;
}
main #week-schedule ul li a {
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    border-radius: 1rem;
    align-items: center;
    padding: 1.5rem 2rem;
}
main #week-schedule ul li a .left {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-flow: column nowrap;
    gap: 1rem;
}
main #week-schedule ul li a .left p {
    font-size: 1.6rem;
    font-weight: 800;
}
main #week-schedule ul li a .left p span {
    font-size: 1.4rem;
    margin-left: 1rem;
}
main #week-schedule ul li a .left p em {
    font-size: 1.6rem;
}
main #week-schedule ul li a .left h3 {
    font-size: 2rem;
    font-weight: 800;
}
main #week-schedule ul li a .left h3 span {
    font-size: 1.6rem;
    font-weight: 600;
}
main #week-schedule ul li a .left h3 span:first-child {
    margin-left: 0.5rem;
}
main #week-schedule ul li a .right {
    width: 1rem;
}
main #week-schedule ul li a .right img {
    width: 100%;
}