/*------------------------------------------------------------
	COURSE ARCHIVES
------------------------------------------------------------*/
.wrap1280 {
    max-width: 1280px;
    padding: 0 15px;
    margin: 0 auto;
}

.courseArchiveBox {
    width: 100%;
    -webkit-box-shadow: 0 0 26px rgba(0, 0, 0, .15);
    box-shadow: 0 0 26px rgba(0, 0, 0, .15);
    background: #fff;
}

#tabSet {}

.tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tabs li {
    width: 50%;
    height: 50px;
    list-style-type: none;
    letter-spacing: .1em;
}

.tabs li a {
    color: #fff;
    background: #B2BEC3;
    text-align: center;
    display: block;
    font-size: 16px;
    font-weight: bold;
    line-height: 50px;
}

.tabs li a.on {
    background: #FF8016;
}

.panels {
    padding: 20px 20px 0;
}

.classList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.classList li {
    width: 100%;
    margin: 0 0 10px 0;
    border: 2px solid #707070;
    border-radius: 3px;
    list-style-type: none;
    padding: 11px 15px 9px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

.classList li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 10;
}

.cTitleArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 8px;
    border-bottom: 1px solid #333;
    margin-bottom: 12px;
}

.cLang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 98px;
    margin-right: 17px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cLang span {
    width: auto;
    height: 26px;
    border: 1px solid #333;
    color: #333;
    text-align: center;
    font-size: 14px;
    line-height: 26px;
    font-weight: bold;
    border-radius: 13px;
    display: block;
    padding: 0 15px;
    white-space: nowrap;
}

.cTitle {
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
    letter-spacing: .05em;
display:inline-flex;
flex-wrap:wrap;
align-items:center;
gap:5px 19px;
}
.cTitle span.renewal{
color: #fff;
height: 26px;
background: #cc2728;
text-align: center;
font-size: 14px;
line-height: 26px;
font-weight: bold;
border-radius: 13px;
letter-spacing: 0;
font-weight: 500;
line-height:1;
display:flex;
align-items:center;
justify-content:center;
padding: 0 15px;
white-space: nowrap;
width:60px;
}


.schoolArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.schoolmd {
    font-size: 12px;
    font-weight: bold;
    line-height: 20px;
    width: 56px;
    height: 20px;
    display: block;
    color: #333;
    letter-spacing: .1em;
    margin-right: 5px;
    white-space: nowrap;
}

.schools {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 3px;
    width: 100%;
}

.schools li {
    border: none;
    list-style-type: none;
    display: inline-block;
    margin: 0 2% 6px 0;
    width: auto;
    height: 20px;
    line-height: 20px;
    font-size: 10px;
    font-weight: bold;
    background: #FF8016;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.schools li:nth-child(2n) {
    margin: 0 2% 6px 0;
}

.schools li:last-child {
    margin-right: 0;
}



.cCaption {
    font-size: 10px;
    font-weight: bold;
    padding-left: 1.2em;
    position: relative;
    tranform: scale(.8);
}

.cCaption::before {
    content: '※';
    position: absolute;
    top: 0;
    left: 0;
}

/*------------------------------------------------------------
	REFINED SEARCH
------------------------------------------------------------*/
.refinedSearch {
    padding: 18px 20px 0;
}

.refinedSearchWrap {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 21px;
    border-bottom: 1px solid #707070;
    text-align: center;
}

select.csort {
    margin-bottom: 5px;
}


.searchLabel {
    font-size: 16px;
    font-weight: bold;
    margin-right: 12px;
    line-height: 20px;
    display: block;
    margin-bottom: 10px;
    position: relative;
}

.refinedSearch select {
    width: auto;
    border: 1px solid #ccc;
    padding: 5px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 20px;
    z-index: 9999;
    font-size: 16px;
}

input[type=submit].sortSbm {
    background: #B2BEC3 url(../images/searchbtn_wh.svg) no-repeat 8px 6px;
    background-size: 20px;
    text-indent: -9999px;
    padding: 0 10px;
    border-radius: 4px;
    border: 0;
    position: relative;
    width: 36px;
    vertical-align: top;
    border: 1px solid #ccc;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 33px;
}


.searchResults {
    padding: 20px 20px 0;
}

.resultTitle {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 20px;
    font-weight: bold;
    letter-spacing: .1em;
    text-align: center;
}


/*------------------------------------------------------------
	COURSE SINGLE
------------------------------------------------------------*/
.courseContent {
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 15px;
}


.courseTitleArea {
    border-bottom: 1px solid #000;
    padding: 0 0 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.courseLang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px;
}

.courseLang span {
    width: auto;
    border: 1px solid #FF8016;
    height: 28px;
    border-radius: 14px;
    color: #FF8016;
    font-size: 14px;
    line-height: 28px;
    text-align: center;
    font-weight: bold;
    padding: 0 15px;
}

.courseTitle {
    font-size: 30px;
    line-height: 40px;
    font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-weight: 900;
    letter-spacing: .1em;
display:inline-flex;
align-items:center;
gap:1rem 2rem;
flex-wrap:wrap;
}

.courseTitle span.renewal {
    color: #fff;
    background: #cc2728;
    font-size: .875rem;
    padding: .5rem 1.5rem;
    text-align: center;
    border-radius: 2rem;
    letter-spacing: 0;
    font-weight: 500;
line-height:1;
}


.courseLevel {
    padding: 25px 0 32px;
    border-bottom: 1px solid #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.courseLevelTitle {
    font-size: 16px;
    font-weight: bold;
    margin-right: 16px;
    line-height: 21px;
    letter-spacing: .1em;
}

.courseLevelContent {
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    letter-spacing: .1em;
}

.courseDescription {
    padding: 30px 0;
    border-bottom: 1px solid #000;
    margin-bottom: 30px;
}

.courseDescription div.renewal {
    color: #cc2728;
    font-size: .875rem;
    border-radius: 2rem;
    letter-spacing: 0;
    font-weight: 600;
line-height:1;
margin-bottom:1rem;
display:block;
}

.courseSchedule {
    margin-bottom: 80px;
}


.courseSchedule dt {
    width: 100%;
    background: #B2BEC3;
    color: #fff;
    font-weight: bold;
    font-size: 28px;
    line-height: 37px;
    padding: 10px 15px 10px;
    margin-bottom: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    letter-spacing: .1em;
}

.courseSchedule dt::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 3px solid #333;
    border-bottom: 3px solid #333;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 20px;
    right: 15px;
}

.courseSchedule dt.open::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 3px solid #333;
    border-bottom: 3px solid #333;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    position: absolute;
    top: 25px;
    right: 15px;
}



.courseSchedule dd {
    display: none;
    margin-bottom: 35px;
}

.twrap {
    overflow: auto;
}


.scheduleT {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.scheduleT th {
    background: #B2BEC3;
    text-align: center;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    border: 1px solid #fff;
    padding: 5px;
    white-space: nowrap;
}

.scheduleT td {
    min-height: 60px;
    height: 60px;
    vertical-align: middle;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 0 12px;
    border-top: 0;
    border-right: 1px solid #ccc;
    border-bottom: 8px solid #ccc;
    white-space: nowrap;
}

.scheduleT td:first-child {
    border-left: 0;
}

.scheduleT td:last-child {
    border-right: 0;
}

.appBtn a {
    width: auto;
    margin: 0 auto;
    height: 72px;
    background: #FF8016;
    color: #fff;
    text-align: center;
    font-family: 'Montserrat';
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    letter-spacing: .1em;
    display: block;
    padding: 10px 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

.appBtn a span {
    display: block;
    font-size: 15px;
    line-height: 20px;
    font-weight: bold;
}

.appBtn a::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 29px;
    right: 32px;
}



/*------------------------------------------------------------
	WORKSHOP ARCHIVES
------------------------------------------------------------*/
.wsArchives {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 15px;
}

.wsList {
    max-width: 1020px;
    margin: 0 auto 30px;
}

.wsList li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wsList li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 10;
}

.wsList li:last-child {
    margin-bottom: 0;
}

.wsDateBox {
    background: #FF8016;
    width: 100%;
    position: relative;
}

.wsDate {
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wsSche {
    font-size: 20px;
    line-height: 27px;
    font-weight: bold;
    letter-spacing: .1em;
    padding: 0 20px;
}

.wsDate::after {
    content: '';
    width: 16px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    margin-left: -8px;
    left: 50%;
}

.wsSche2 {
    font-size: 20px;
    line-height: 27px;
    font-weight: bold;
    letter-spacing: .1em;
    padding: 0 20px;
}

.wsSche span,
.wsSche2 span {
    font-family: 'Montserrat';
    font-size: 14px;
    line-height: 18px;
    color: #FF8016;
    font-weight: 500;
    background: #fff;
    padding: 0;
    display: inline-block;
    height: 18px;
    width: 54px;
    margin: 4px 0 0 10px;
    letter-spacing: 0;
}

.wsTitle {
    background: #B2BEC3;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    padding: 5px 15px;
    width: 70%;
    min-height: 60px;
    letter-spacing: .1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wsRecepOn {
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: .1em;
    width: 30%;
    min-height: 60px;
    background: #51A5B2;
    padding: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.wsRecepOff {
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: .1em;
    width: 30%;
    min-height: 60px;
    background: #A5A5A5;
    padding: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}



/*------------------------------------------------------------
	WORKSHOP SINGLE
------------------------------------------------------------*/
.wsContent {
    max-width: 1020px;
    margin: 0 auto;
    padding: 50px 15px;
}


.wsTitleArea {
    margin: 0 auto 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wsTitle2 {
    background: #B2BEC3;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    padding: 10px 20px;
    width: 100%;
    letter-spacing: .1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.wsmd {
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    pading-bottom: 6px;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
    letter-spacing: .1em;
}

.wsCont {
    font-size: 16px;
    line-height: 21px;
    font-weight: 500;
    margin-bottom: 60px;
}





/*------------------------------------------------------------
	FOR PC LAYOUT CSS
------------------------------------------------------------*/
@media screen and (min-width:768px) {

    /*------------------------------------------------------------
	RESPONSIVE
------------------------------------------------------------*/
    .pconly {
        display: block;
    }

    .sponly {
        display: none;
    }


    /*------------------------------------------------------------
	COURSE ARCHIVES
------------------------------------------------------------*/
    .wrap1280 {
        max-width: 1280px;
        padding: 0 15px;
        margin: 0 auto;
    }

    .courseArchiveBox {
        width: 100%;
        -webkit-box-shadow: 0 0 26px rgba(0, 0, 0, .15);
        box-shadow: 0 0 26px rgba(0, 0, 0, .15);
        background: #fff;
    }

    #tabSet {}

    .tabs {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .tabs li {
        width: 50%;
        height: 50px;
        list-style-type: none;
        letter-spacing: .1em;
    }

    .tabs li a {
        color: #fff;
        background: #B2BEC3;
        text-align: center;
        display: block;
        font-size: 16px;
        font-weight: bold;
        line-height: 50px;
    }

    .tabs li a.on {
        background: #FF8016;
    }

    .panels {
        padding: 20px 20px 0;
    }

    .classList {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .classList li {
        width: 49%;
        margin: 0 2% 20px 0;
        border: 2px solid #707070;
        border-radius: 3px;
        list-style-type: none;
        padding: 11px 15px 9px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        position: relative;
    }

    .classList li:nth-child(2n) {
        margin: 0 0 20px 0;
    }

    .classList li a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        z-index: 10;
    }

    .cTitleArea {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-bottom: 8px;
        border-bottom: 1px solid #333;
        margin-bottom: 12px;
    }

    .cLang {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        max-width: 98px;
        margin-right: 17px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .cLang span {
        width: auto;
        height: 26px;
        border: 1px solid #333;
        color: #333;
        text-align: center;
        font-size: 14px;
        line-height: 26px;
        font-weight: bold;
        border-radius: 13px;
        display: block;
        padding: 0 15px;
        white-space: nowrap;
    }

    .cTitle {
        font-size: 24px;
        line-height: 30px;
        font-weight: bold;
        letter-spacing: .05em;
    }


    .schoolArea {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .schoolmd {
        font-size: 12px;
        font-weight: bold;
        line-height: 20px;
        width: 56px;
        height: 20px;
        display: block;
        color: #333;
        letter-spacing: .1em;
        margin-right: 5px;
        white-space: nowrap;
    }

    .schools {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 3px;
        width: 100%;
    }

    .schools li {
        border: none;
        list-style-type: none;
        display: inline-block;
        margin: 0 2% 6px 0;
        width: auto;
        height: 20px;
        line-height: 20px;
        font-size: 10px;
        font-weight: bold;
        background: #FF8016;
        border-radius: 10px;
        text-align: center;
        color: #fff;
        padding: 0 20px;
    }

    .schools li:nth-child(2n) {
        margin: 0 2% 6px 0;
    }

    .schools li:last-child {
        margin-right: 0;
    }



    .cCaption {
        font-size: 10px;
        font-weight: bold;
        padding-left: 1.2em;
        position: relative;
        tranform: scale(.8);
    }

    .cCaption::before {
        content: '※';
        position: absolute;
        top: 0;
        left: 0;
    }

    /*------------------------------------------------------------
	REFINED SEARCH
------------------------------------------------------------*/
    .refinedSearch {
        padding: 18px 20px 0;
    }

    .refinedSearchWrap {
        width: 100%;
        margin: 0 auto;
        padding: 0 0 21px;
        border-bottom: 1px solid #707070;
        text-align: center;
    }

    .searchLabel {
        font-size: 16px;
        font-weight: bold;
        margin-right: 12px;
        line-height: 20px;
        display: block;
        margin-bottom: 10px;
        position: relative;
    }

    .refinedSearch select {
        width: auto;
        border: 1px solid #ccc;
        padding: 5px 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        line-height: 20px;
        z-index: 9999;
        font-size: 16px;
    }

    input[type=submit].sortSbm {
        background: #B2BEC3 url(../images/searchbtn_wh.svg) no-repeat 8px 6px;
        background-size: 20px;
        text-indent: -9999px;
        padding: 0 10px;
        border-radius: 4px;
        border: 0;
        position: relative;
        width: 36px;
        vertical-align: top;
        border: 1px solid #ccc;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        line-height: 33px;
    }


    .searchResults {
        padding: 20px 20px 0;
    }

    .resultTitle {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 20px;
        font-weight: bold;
        letter-spacing: .1em;
        text-align: center;
    }


}

/*------------------------------------------------------------
	FOR PC LAYOUT CSS
------------------------------------------------------------*/
@media screen and (min-width:1024px) {

    /*------------------------------------------------------------
	RESPONSIVE
------------------------------------------------------------*/
    .pconly {
        display: block;
    }

    .sponly {
        display: none;
    }


    /*------------------------------------------------------------
	COURSE ARCHIVES
------------------------------------------------------------*/
    .wrap1280 {
        max-width: 1280px;
        padding: 0 15px;
        margin: 0 auto;
    }

    .courseArchiveBox {
        width: 100%;
        -webkit-box-shadow: 0 0 26px rgba(0, 0, 0, .15);
        box-shadow: 0 0 26px rgba(0, 0, 0, .15);
        background: #fff;
    }

    #tabSet {}

    .tabs {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .tabs li {
        width: 50%;
        height: 50px;
        list-style-type: none;
        letter-spacing: .1em;
    }

    .tabs li a {
        color: #fff;
        background: #B2BEC3;
        text-align: center;
        display: block;
        font-size: 16px;
        font-weight: bold;
        line-height: 50px;
    }

    .tabs li a.on {
        background: #FF8016;
    }

    .panels {
        padding: 20px 20px 0;
    }

    .classList {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .classList li {
        width: 49%;
        margin: 0 2% 20px 0;
        border: 2px solid #707070;
        border-radius: 3px;
        list-style-type: none;
        padding: 11px 15px 9px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        position: relative;
    }

    .classList li:nth-child(2n) {
        margin: 0 0 20px 0;
    }

    .classList li a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        z-index: 10;
    }

    .cTitleArea {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-bottom: 8px;
        border-bottom: 1px solid #333;
        margin-bottom: 12px;
    }

    .cLang {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 98px;
        margin-right: 17px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .cLang span {
        width: 98px;
        height: 26px;
        border: 1px solid #333;
        color: #333;
        text-align: center;
        font-size: 14px;
        line-height: 26px;
        font-weight: bold;
        border-radius: 13px;
        display: block;
        padding: 0;
    }

    .cTitle {
        font-size: 25px;
        line-height: 37px;
        font-weight: bold;
        letter-spacing: .05em;
    }

    .schoolArea {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .schoolmd {
        font-size: 12px;
        font-weight: bold;
        line-height: 20px;
        width: 56px;
        height: 20px;
        display: block;
        color: #333;
        letter-spacing: .1em;
        margin-right: 5px;
        white-space: nowrap;
    }




    .schools {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 3px;
        width: 100%;
    }

    .schools li {
        border: none;
        list-style-type: none;
        display: inline-block;
        margin: 0 2% 6px 0;
        width: auto;
        height: 20px;
        line-height: 20px;
        font-size: 10px;
        font-weight: bold;
        background: #FF8016;
        border-radius: 10px;
        text-align: center;
        color: #fff;
        padding: 0 20px;
    }

    .schools li:nth-child(2n) {
        margin: 0 2% 6px 0;
    }

    .schools li:last-child {
        margin-right: 0;
    }



    .cCaption {
        font-size: 10px;
        font-weight: bold;
        padding-left: 1.2em;
        position: relative;
        tranform: scale(.8);
    }

    .cCaption::before {
        content: '※';
        position: absolute;
        top: 0;
        left: 0;
    }

    /*------------------------------------------------------------
	REFINED SEARCH
------------------------------------------------------------*/
    .refinedSearch {
        padding: 18px 20px 0;
    }

    .refinedSearchWrap {
        width: 100%;
        margin: 0 auto;
        padding: 0 0 21px;
        border-bottom: 1px solid #707070;
        text-align: center;
    }

    .searchLabel {
        font-size: 16px;
        font-weight: bold;
        margin-right: 12px;
        line-height: 20px;
        display: inline-block;
        padding-right: 16px;
        position: relative;
    }

    .searchLabel::after {
        content: '';
        width: 2px;
        height: 16px;
        position: absolute;
        right: 0;
        top: 2px;
        background: #333;
    }


    .refinedSearch select {
        width: auto;
        border: 1px solid #ccc;
        padding: 5px 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        line-height: 20px;
        z-index: 9999;
        font-size: 16px;
    }

    input[type=submit].sortSbm {
        background: #B2BEC3 url(../images/searchbtn_wh.svg) no-repeat 8px 6px;
        background-size: 20px;
        text-indent: -9999px;
        padding: 0 10px;
        border-radius: 4px;
        border: 0;
        position: relative;
        width: 36px;
        vertical-align: top;
        border: 1px solid #ccc;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        line-height: 33px;
    }


    .searchResults {
        padding: 20px 20px 0;
    }

    .resultTitle {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 20px;
        font-weight: bold;
        letter-spacing: .1em;
        text-align: center;
    }



    /*------------------------------------------------------------
	COURSE SINGLE
------------------------------------------------------------*/
    .courseContent {
        max-width: 1030px;
        margin: 0 auto;
        padding: 0 15px;
    }


    .courseTitleArea {
        border-bottom: 1px solid #000;
        padding: 0 0 5px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .courseLang {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-right: 17px;
    }

    .courseLang span {
        width: 100px;
        border: 1px solid #FF8016;
        height: 28px;
        border-radius: 14px;
        color: #FF8016;
        font-size: 14px;
        line-height: 28px;
        text-align: center;
        font-weight: bold;
    }

    .courseTitle {
        font-size: 45px;
        line-height: 60px;
        font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
        font-weight: 900;
        letter-spacing: .1em;
    }

    .courseLevel {
        padding: 25px 0 32px;
        border-bottom: 1px solid #000;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .courseLevelTitle {
        font-size: 16px;
        font-weight: bold;
        margin-right: 16px;
        line-height: 21px;
        letter-spacing: .1em;
    }

    .courseLevelContent {
        font-size: 16px;
        line-height: 21px;
        font-weight: bold;
        letter-spacing: .1em;
    }

    .courseDescription {
        padding: 30px 0;
        border-bottom: 1px solid #000;
        margin-bottom: 30px;
    }

    .courseSchedule {
        margin-bottom: 80px;
    }


    .courseSchedule dt {
        width: 100%;
        background: #B2BEC3;
        color: #fff;
        font-weight: bold;
        font-size: 28px;
        line-height: 37px;
        padding: 16px 20px 17px;
        margin-bottom: 30px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        position: relative;
        letter-spacing: .1em;
    }

    .courseSchedule dt::after {
        content: '';
        width: 6px;
        height: 6px;
        border-right: 3px solid #333;
        border-bottom: 3px solid #333;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
        top: 28px;
        right: 20px;
    }

    .courseSchedule dt.open::after {
        content: '';
        width: 6px;
        height: 6px;
        border-right: 3px solid #333;
        border-bottom: 3px solid #333;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
        position: absolute;
        top: 32px;
        right: 20px;
    }



    .courseSchedule dd {
        display: none;
        margin-bottom: 70px;
    }

    .scheduleT {
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .scheduleT th {
        background: #B2BEC3;
        text-align: center;
        font-size: 16px;
        color: #fff;
        font-weight: bold;
        border: 1px solid #fff;
        padding: 5px;
    }

    .scheduleT td {
        min-height: 80px;
        height: 80px;
        vertical-align: middle;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        padding: 0 12px;
        border-top: 0;
        border-right: 1px solid #ccc;
        border-bottom: 8px solid #ccc;
    }

    .scheduleT td:first-child {
        border-left: 0;
    }

    .scheduleT td:last-child {
        border-right: 0;
    }

    .appBtn a {
        width: 480px;
        margin: 0 auto;
        height: 72px;
        background: #FF8016;
        color: #fff;
        text-align: center;
        font-family: 'Montserrat';
        font-size: 25px;
        line-height: 30px;
        font-weight: 700;
        letter-spacing: .1em;
        display: block;
        padding: 10px 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        position: relative;
    }

    .appBtn a span {
        display: block;
        font-size: 15px;
        line-height: 20px;
        font-weight: bold;
    }

    .appBtn a::after {
        content: '';
        width: 8px;
        height: 8px;
        border-right: 4px solid #fff;
        border-bottom: 4px solid #fff;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        position: absolute;
        top: 29px;
        right: 32px;
    }





    /*------------------------------------------------------------
	WORKSHOP ARCHIVES
------------------------------------------------------------*/
    .wsArchives {
        max-width: 1020px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .wsList {
        max-width: 1020px;
        margin: 0 auto 52px;
    }

    .wsList li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 20px;
        position: relative;
        height: 93px;
    }

    .wsList li a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        z-index: 10;
    }

    .wsList li:last-child {
        margin-bottom: 0;
    }

    .wsDateBox {
        background: #FF8016;
        width: 20%;
        padding-top: 6px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .wsDate {
        color: #fff;
        font-weight: bold;
        text-align: center;
        display: block;
        position: relative;
        padding: 0 5px;
    }

    .wsDate::after {
        content: '';
        width: 2px;
        height: 16px;
        background: #fff;
        position: absolute;
        top: 50%;
        margin-top: -8px;
        margin-left: -1px;
        left: 50%;
    }

    .wsSche {
        font-size: 20px;
        line-height: 27px;
        font-weight: bold;
        letter-spacing: .1em;
        display: block;
        padding-bottom: 27px;
    }

    .wsSche2 {
        font-size: 20px;
        line-height: 27px;
        font-weight: bold;
        letter-spacing: .1em;
        display: block;
    }

    .wsSche span,
    .wsSche2 span {
        font-family: 'Montserrat';
        font-size: 14px;
        line-height: 18px;
        color: #FF8016;
        font-weight: 500;
        background: #fff;
        padding: 0;
        display: inline-block;
        height: 18px;
        width: 54px;
        margin: 4px 0 0 10px;
        letter-spacing: 0;
    }

    .wsTitle {
        background: #B2BEC3;
        color: #fff;
        font-size: 28px;
        font-weight: bold;
        line-height: 1.2em;
        padding: 0 15px;
        width: 60%;
        height: 93px;
        letter-spacing: .1em;
    }

    .wsRecepOn {
        text-align: center;
        color: #fff;
        font-size: 15px;
        line-height: 93px;
        font-weight: bold;
        letter-spacing: .1em;
        width: 20%;
        height: 93px;
        background: #51A5B2;
    }

    .wsRecepOff {
        text-align: center;
        color: #fff;
        font-size: 15px;
        line-height: 93px;
        font-weight: bold;
        letter-spacing: .1em;
        width: 20%;
        height: 93px;
        background: #A5A5A5;
    }




    /*------------------------------------------------------------
	WORKSHOP SINGLE
------------------------------------------------------------*/
    .wsContent {
        max-width: 1020px;
        margin: 0 auto;
        padding: 112px 15px 100px;
    }


    .wsTitleArea {
        margin: 0 auto 68px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .wsTitle2 {
        background: #B2BEC3;
        color: #fff;
        font-size: 28px;
        font-weight: bold;
        line-height: 93px;
        padding: 0 33px;
        width: 791px;
        height: 93px;
        letter-spacing: .1em;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .wsmd {
        font-size: 18px;
        font-weight: bold;
        line-height: 24px;
        pading-bottom: 6px;
        border-bottom: 1px solid #333;
        margin-bottom: 20px;
        letter-spacing: .1em;
    }

    .wsCont {
        font-size: 16px;
        line-height: 21px;
        font-weight: 500;
        margin-bottom: 60px;
    }





    /*------------------------------------------------------------
	END PC LAYOUT CSS
------------------------------------------------------------*/
}
