@charset "utf-8";

@import url("./default.css");

@font-face {
    font-family: 'ONE-Mobile-Title';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/ONE-Mobile-Title.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OneMobile';
    font-weight: 300;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/onestore/OneMobileLight.eot');
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/onestore/OneMobileLight.eot?#iefix') format('embedded-opentype'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/onestore/OneMobileLight.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/onestore/OneMobileLight.woff') format('woff'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/onestore/OneMobileLight.ttf') format("truetype");
    font-display: swap;
}
@font-face {
    font-family: 'OneMobile';
    font-weight: 500;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/onestore/OneMobileRegular.eot');
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/onestore/OneMobileRegular.eot?#iefix') format('embedded-opentype'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/onestore/OneMobileRegular.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/onestore/OneMobileRegular.woff') format('woff'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/onestore/OneMobileRegular.ttf') format("truetype");
    font-display: swap;
}
@font-face {
    font-family: 'OneMobile';
    font-weight: 700;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/onestore/OneMobileBold.eot');
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/onestore/OneMobileBold.eot?#iefix') format('embedded-opentype'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/onestore/OneMobileBold.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/onestore/OneMobileBold.woff') format('woff'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/onestore/OneMobileBold.ttf') format("truetype");
    font-display: swap;
}
.calendar_box { 
    display: flex;
    gap: 50px;
}
.calendar_wrap,
.info_wrap_all { 
    font-family: 'OneMobile', sans-serif;
}
.calendar_wrap { 
    width: 60%;
}
.info_wrap_all { 
    width: calc(40% - 50px);
}
.calendar_wrap table {
    width: 100%;
    clear: both;
}
.calendar_wrap table .calendar_thDate th {
    height: 70px;
    font-family: 'OneMobile-Title', sans-serif;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
    border-right: none;
    background: var(--white);
}
.calendar_wrap table .calendar_thDay th {
    padding: 12px 12px 13px 13px;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid #bcbec0;
}
.calendar_wrap table .calendar_thDay th:first-child,
.calendar_wrap table .calendar_thDay th:last-child {
    color: #2e8c5a;
}
.calendar_wrap table input {
    height: 35px;
    width: 35px;
    font-size: 30px;
    color: rgba(0, 0, 0, 0);
    border: 1px solid #bcbec0;
    border-radius: 50%;
    background:  #fff url(images/arw_off.svg) center no-repeat;
    background-size: 55%;
    transition: all .2s;
}
.calendar_wrap table input.preMon {
    transform: rotate(-180deg);
}
.calendar_wrap table input:hover {
    border: 1px solid #2e8c5a;
    background:  #fff url(images/arw_on.svg) center no-repeat;
    background-size: 55%;
    box-shadow: 1px 2px 5px rgb(0 0 0 / 20%);
}
.calendar_wrap table input.preMon:hover {
    box-shadow: -1px -2px 5px rgb(0 0 0 / 20%);
}

.calendar_wrap .year_mon{
    font-size: 20px;
    color: #191919;
}
.calendar_wrap table td { 
    width: 14.2857142857%;
    padding: 3px 5px 5px 5px;
    vertical-align: top;
    font-family: 'OneMobile';
    font-size: 14px;
    font-weight: 700 !important;
    text-align: left;
    border-right: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    background-color: #fff;
    box-sizing: border-box;  
}
.calendar_wrap table td:first-child {
    background-color: #f7f7f7;
}
.calendar_wrap table td:last-child {
    background-color: rgba(159, 209, 139, .1);;
}
.calendar_wrap table td a { 
    color: rgba(153,153,153,0.7);
    font-size: 12px;
}
.calendar_wrap table td:first-child a{
    color: rgba(159, 209, 139, .9);
}
.calendar_wrap table td:last-child a {
    color: rgba(159, 209, 139, 1);
    border-right: 0; 
    /* background-color: rgba(159, 209, 139, .15); */
}
.calendar_wrap table td .cTitle {
    font-size: 14px;
    color: #999999;
    margin-top: 3px;
}
.calendar_wrap table td .calAmProgramWrap,
.calendar_wrap table td .calPmProgramWrap {
    /* font-weight: 300; */
}
.calendar_wrap table td .calAmProgramWrap {
    padding-bottom: 5px;
    margin-top: 3px;
    /* border-bottom: 1px dotted #dbdbdb; */
}
.calendar_wrap table td .calAmProgramWrap > div {
    color: #2e8c5a;
    font-size: 14px;
    font-weight: 700;

}
.calendar_wrap table td .calPmProgramWrap {
    padding-top: 5px;
}
.calendar_wrap table td .calPmProgramWrap > div {
    color: #f15b40;
    font-size: 14px;
    font-weight: 700;

}
.calendar_wrap table .aName,
.calendar_wrap table .pName { 
    font-weight: 500;
    color: #666666 !important;
    text-align: center;
    line-height: 18px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    padding: 2px 3px 3px;
    margin-top: 2px;
    transition: all .2s ease-in-out;
}
.calendar_wrap table .aName {
    border: 1px solid rgba(159, 209, 139, 7);
    background-color: rgba(159, 209, 139, .2);

}
.calendar_wrap table .pName {
    border: 1px solid rgba(241, 91, 64, .3);
    background-color: rgba(241, 91, 64, .1);

}
.calendar_wrap table .aName:hover {
    border: 1px solid rgba(159, 209, 139, 1);
    background-color: rgba(159, 209, 139, .5);
}
.calendar_wrap table .pName:hover {
    border: 1px solid rgba(241, 91, 64, .3);
    background-color: rgba(241, 91, 64, .2);
}
.calendar_wrap.colToday{
    background-color: #FFA07A;
}

.info_wrap_all .info_title {
    height: 71px;
    font-family: 'OneMobile-Title', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #191919;
    text-align: center;
    border-bottom: 2px solid #333;
    padding-top: 25px;
    padding-bottom: 10px;
}
.info_wrap_all .info_wrap { 
    padding: 15px 15px 5px;
    background-color: #f7f7fa;
}
.info_wrap_all .info_wrap table {
    width: 100%;
    margin: 15px 0 13px;
    font-family: 'OneMobile', sans-serif;
    font-size: 16px;
	/* border: 1px solid #bcbec0; */
    background-color: #fff;
}

.info_wrap_all .info_wrap table th,
.info_wrap_all .info_wrap table td { 
    padding: 5px;
    border: 1px solid #dbdbdb;
 }
 .info_wrap_all .info_wrap table th {
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    width: 30%;
    padding-left: 15px;
    position: relative;
 }
 .info_wrap_all .info_wrap table th::before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #68813c;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
 }
 .info_wrap_all .info_wrap table th strong { 
    padding-right: 3px;
    font-size: 14px;
    position: relative;
    top: 2px;
 }
 .info_wrap_all .info_wrap table td {
    font-weight: 500;
    color: #666;
 }
 .info_wrap_all .info_wrap table td select {
    width: 100%;
    font-size: 14px;
    color: #666666;
    background: url(images/arw_01.svg) right 5px top 50% no-repeat;
    background-size: 15px;
}
.info_wrap_all .info_wrap table .amImg, 
.info_wrap_all .info_wrap table .pmImg {
    border: none;
    width: 100%;
    height: 150px;
    padding-left: 5px;
    padding-bottom: 10px;
    background-color: #f7f7fa;
}
.info_wrap_all .info_wrap table .amImg img, 
.info_wrap_all .info_wrap table .pmImg img { 
    border-radius: 10px;
    width: 100%;
    height: 150px;
}
.info_wrap_all .info_wrap table .amImg::before, 
.info_wrap_all .info_wrap table .pmImg::before {
    display: none;
}
.am_wrap,
.pm_wrap { 
    font-size: 16px;
}
.am_wrap {
    border-bottom: 1px dotted #bcbec0;
    padding-bottom: 13px;
    margin-bottom: 23px;
}
.am_title, 
.amNameTxt {
    font-weight: 700;
    color: #2e8c5a;
}
.pm_title, 
.pmNameTxt{
    font-weight: 700;
    color: #f15b40;
}
.am_wrap a,
.pm_wrap a {
    display: inline-block;
    height: 40px;
    line-height: 38px;
    font-size: 14px;
    color: #333333;
    border:1px solid #333333;
    background:#ffffff;
    padding: 0 20px;
    word-break: keep-all;
    border-radius: 40px;
}
.am_wrap a:hover,
.pm_wrap a:hover {
    color: #ffffff;
    background: rgb(66,66,66);
	background: linear-gradient(127deg, rgba(66,66,66,1) 31%, rgba(102,102,102,1) 68%);
}
.am_wrap a:last-child{
    color: #ffffff;
    border:1px solid #607c4f;
    background:#68813c;
}
.pm_wrap a:last-child {
    color: #ffffff;
    border:1px solid #f16a40;
    background:#f15b40;
}
.am_wrap a:last-child:hover {
    color: #ffffff;
    background: rgb(96,124,79);
	background: linear-gradient(127deg, rgba(96,124,79,1) 50%, rgba(104,129,60,1) 100%);
}
.pm_wrap a:last-child:hover {
    background: rgb(241,106,64);
    background: linear-gradient(127deg, rgba(241,106,64,1) 50%, rgba(241,91,64,1) 100%);
}
    .info_wrap{
	z-index: 1000;
	/* background: #ff9d9d; */
}
.am_wrap{
	display:none;
}
.pm_wrap{
	display:none;
}
.amTitle_box,
.pmTitle_box {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    justify-content: space-evenly;
}
.orderNo,
.orderOk {
    font-size: 14px;
    /* color: #fff; */
    text-align: center;
    border-radius: 30px;
    background: rgba(0, 0, 0, .01);
    /* padding: 5px 10px; */
    min-width: 72px;
    display: inline-block;
    height: 40px;
    line-height: 38px;
    border: 1px solid rgba(0, 0, 0, .2);
}
@media all and (max-width:1023px){

    .contents_box,
    .calendar_box {
        display: block !important;
        gap: unset;
    }
    .calendar_wrap, .info_wrap_all {
        width: 100%;
    }
    .info_wrap {
        display: flex;
        gap: 30px;
    }
    .am_wrap {
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    /* .amTitle_box, .pmTitle_box {
        justify-content: space-between;
    } */
}
@media all and (max-width:600px){
    .info_wrap {
        display: block;
        gap: 0;
    }
    .am_wrap {
        border-bottom: 1px dotted #bcbec0;
        padding-bottom: 13px;
        margin-bottom: 23px;
    }
}