/*=======================
	root 
=====================*/

:root {
    --color-gray-1: #666;
    --color-brown-1: #643700;
    --color-beige-1: #efe4d0;
    --color-yellow-1: #fffbe8;
    --color-green-1: #8b9451;
    --color-green-2: #b5bf76;
    --color-orange-1: #d45c1d;
}

/* gray*/
.text-gray {
    color: var(--color-gray-1);
}

/* brown*/
.text-brown {
    color: var(--color-brown-1);
}

/* green */
.border-green {
    border-color: var(--color-green-1);
}

.border-green2 {
    border-color: var(--color-green-2);
}

.text-green {
    color: var(--color-green-1);
}

.bg-green {
    background-color: var(--color-green-1);
}

/* beige */
.bg-beige {
    background-color: var(--color-beige-1);
}

/* orange */
.text-orange {
    color: var(--color-orange-1);
}

.border-orange {
    border-color: var(--color-orange-1);
}


/* yellow */
.bg-yellow {
    background-color: var(--color-yellow-1);
}


/* border */
.b-solid {
    border-style: solid;
}

.b-dotted {
    border-style: dotted;
}

.b-w1 {
    border-width: 1px;
}

.b-w2 {
    border-width: 2px;
}

.b-w3 {
    border-width: 3px;
}

/* border bottom */
.bb-solid {
    border-bottom-style: solid;
}

.bt-dotted {
    border-top-style: dotted;
}

.bb-dotted {
    border-bottom-style: dotted;
}

.bt-w1 {
    border-top-width: 1px;
}

.bb-w1 {
    border-bottom-width: 1px;
}

.bb-w3 {
    border-bottom-width: 3px;
}


/* grade color */
.icon span {
    color: #fff;
    font-weight: normal !important;
    border-radius: 3px;
    margin-right: 3px;
    padding: 2px 10px 0;
    display: inline-block;

}

.bg-beginner {
    /* background: #bda171; */
    background: #a89169;
}

.bg-advanced {
    background: #8c5a46;
}



/*===========================
 // overwrite
=============================*/

.bread {
    background: none;
    padding-bottom: 0;
}

.bread__inner.inner {
    max-width: 1080px;
}

.bread__text:not(:last-child)::after {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    top: 15%;
    right: -10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
}



/*===========================
  add common
=============================*/

.w-95per {
    width: 95%;
}

.w-98per {
    width: 98%;
}


.fs-32 {
    font-size: 32px;
}


@media screen and (min-width: 640px) {
    .w-sm-95per {
        width: 95%;
    }

    .w-sm-98per {
        width: 98%;
    }

    .fs-sm-32 {
        font-size: 32px;
    }



}



/*===========================
web font
=============================*/


.courier-prime-regular {
    font-family: "Courier Prime", serif;
    font-weight: 400;
    font-style: normal;
}

.courier-prime-bold {
    font-family: "Courier Prime", serif;
    font-weight: 700;
    font-style: normal;
}

.courier-prime-regular-italic {
    font-family: "Courier Prime", serif;
    font-weight: 400;
    font-style: italic;
}

.courier-prime-bold-italic {
    font-family: "Courier Prime", serif;
    font-weight: 700;
    font-style: italic;
}

/*===========================
  common
=============================*/

.after-slash::after {
    content: "\FF0F";
    margin-left: 5px;
}

.cheer::before {
    content: '\FF3C';
    margin-right: 5px;
}

.cheer::after {
    content: "\FF0F";
    margin-left: 5px;
}


/* img mask */

img.fit {
    object-fit: cover;
    object-position: center top;
}

.fit.img-h250 {
    width: 100%;
    height: 250px;
}

.fit.img-h300 {
    width: 100%;
    height: 300px;
}

.fit.img-h360 {
    width: 100%;
    height: 360px;
}

.img_pc {
    display: none;
}

.img_mob {
    max-width: 328px;
    display: block;
}

@media screen and (min-width: 1024px) {
    .img_pc {
        display: block;
    }

    .img_mob {
        display: none;
    }
}

/*=================================
	link
===================================*/

.btn-link a {
    padding: 10px 30px 10px;
    border-radius: 3em;
    display: inline-block;
    text-align: center;
}

.btn-link a.small {
    padding: 5px 30px 3px;
}

.btn-link a.line.green {
    color: var(--color-green-1);
    border: 1px solid var(--color-green-1);
}


.btn-place {
    padding: 2px 10px 0;
    border-radius: 3px;
    color: var(--color-green-1);
    border: 1px solid var(--color-green-1);
    /**/
    display: inline-block;
    vertical-align: middle;
}



.apply a {
    padding: 10px 0 10px;
    color: #fff;
    background: #d45c1d;
    border-radius: 2em;
    text-align: center;
}


.apply a.large {
    border-radius: 3em;
    padding: 30px 0 30px;
}

.apply.end a {
    color: #fff;
    background: #ddd;
    cursor: default;
}

.apply.end a:hover {
    opacity: 1 !important;
}

.apply.soon span {
    width: 100%;
    padding: 10px 30px 10px;
    color: #fff;
    background: #c5b491;
    border-radius: 3em;
    display: inline-block;
    text-align: center;
}

.report-link a {
    padding: 10px 0 10px;
    color: #fff;
    background: #8c5a46;
    border-radius: 2em;
    text-align: center;
}

@media screen and (min-width: 900px) {

    .btn-link a.small {
        padding: 3px 30px 0px;
    }

}

/*===========================
  link-arrow
=============================*/

.link-arrow {
    display: inline-block;
    vertical-align: middle;
    width: 8px;
    height: 8px;
}

.link-arrow-left {
    border-left: 4px solid #000;
    border-bottom: 4px solid #000;
    transform: rotate(45deg);
}

.link-arrow-top {
    border-top: 4px solid #000;
    border-left: 4px solid #000;
    transform: rotate(45deg);
}

.link-arrow-right {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-right: 10px;
    margin-bottom: 3px;
}

.link-arrow-bottom {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}


.link-arrow-right.green {
    border-top: 2px solid #8b9451;
    border-right: 2px solid #8b9451;
    transform: rotate(45deg);
    margin-right: 10px;
    margin-bottom: 3px;
}


/*===========================
  parts
=============================*/

.border_bottom_beige {
    border-bottom: #d8c6af thin solid;
}

/*===========================
  #contents
=============================*/

#contents {
    padding-top: 61px;
    color: #666;
    background: #fff;
}

#contents .lv_02 {
    width: 100%;
    /* padding: 30px 0; */
    background: #8b9451 url(../img/1x/bg_contents.png) repeat top center;
}

#contents .category {
    width: 95%;
    max-width: 1200px;
    position: relative;
}

#contents a:hover {
    opacity: 0.6;
}



@media screen and (min-width: 1000px) {

    #contents {
        padding-top: 100px;
    }


}

@media screen and (min-width: 640px) {

    #contents .lv_02 {
        padding: 60px 0;
    }


}

/*===========================
 // #title
=============================*/

#title {
    background: url(../img/1x/bg_title_pc.png) no-repeat top center;
    position: relative;
}

#title h1 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#h1_pc {
    display: none;
}

#h1_mob {
    display: block;
}

#lead {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}


@media screen and (min-width: 900px) {
    #title h1 {
        width: 98%;
        max-width: 1300px;
    }

    #h1_pc {
        display: block;
    }

    #h1_mob {
        display: none;
    }
}

/*===========================
	.scroll_bar 
=============================*/
.scroll_bar {
    overflow-y: scroll;
}

.scroll_bar::-webkit-scrollbar {
    width: 10px;
}

.scroll_bar::-webkit-scrollbar-track {
    background-color: #ccc;
}

.scroll_bar::-webkit-scrollbar-thumb {
    background-color: #8b9451;
}

/*===========================
	event_detail
=============================*/

.detail_box {
    color: #643700;
    width: 100%;
    position: relative;
    border-radius: 10px;
}

.detail_box .inside {
    width: 100%;
    background: #fff;
    position: relative;
}

.sub_category .detail_box .inside {
    padding: 30px;
}

.detail_box .inside.bar {
    border-top: 20px solid #8c5a46;
}



.top .detail_box .txtbox {
    width: 100%;
    /* border: #f00 thin solid; */
}


.detail_box h3 {
    position: relative;
}

.detail_box h3 .frame {
    /* width: 100px;
    height: 94px; */


    /* width: 150px;
    height: 142px; */

    /* width: 110px;
    height: 103px; */


    width: 120px;
    height: 113px;


    background: url(../img/SVG/frame.svg) no-repeat top center;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.1;
    margin-bottom: 10px;
    /**/
    position: absolute;
    top: -70px;
    right: -10px;
    z-index: 1;
}

.detail_box h3 .frame.minus80 {
    top: -80px;
}

.detail_box h3 .frame.minus90 {
    top: -90px;
}

.detail_box h3 .frame.minus95 {
    top: -95px;
}

.detail_box h3 .frame .plus {
    width: 10px;
}

.detail_box h3 .title {
    width: 100%;
    /* padding-top: 15px; */
    /* width: calc(100% - 110px); */
}

.detail_box .detail {
    width: 90%;
    margin: auto;
}


.detail_list dt span {
    /* padding: 3px 20px 4px; */
    padding: 5px 20px 5px;
    color: #fff;
    background: #8b9451;
    border-radius: 3px;
}

.detail_list dl.sub {
    padding-top: 5px;
}

.detail_box .note li {
    position: relative;
}

.detail_box .note li::before {
    content: "\203B";
    color: #643700;
    position: absolute;
    top: 0;
    left: -1.2em;
}

.profile.detail_box figure {
    width: 60%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}


/*スマホのみ*/
@media screen and (max-width: 640px) {

    .detail_box h3 .frame.minus90-smp {
        top: -90px;
    }

    .detail_box h3 .frame.minus95-smp {
        top: -95px;
    }

    .detail_box h3 .frame.minus120-smp {
        top: -120px;
    }
}


@media screen and (min-width: 640px) {



    .detail_box h3 .frame {
        width: 150px;
        height: 142px;
        /**/
        position: absolute;
        top: -90px;
        right: -10px;
        z-index: 1;
    }

}


/* min 640 or 900*/
@media screen and (min-width: 900px) {

    .detail_box h3 .frame {
        /* width: 150px;
        height: 142px; */
        background: url(../img/SVG/frame.svg) no-repeat top center;
        background-size: contain;
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 1.6;
        margin-bottom: 0;


        /**/
        position: relative;
        top: auto;
        right: auto;
        z-index: 0;
        /**/

    }

    .detail_box h3 .frame .plus {
        width: 14px;
    }

    .detail_box h3 .title {
        width: calc(100% - 165px);
    }

    .detail_box h3 .frame.minus90,
    .detail_box h3 .frame.minus80 {
        top: auto;
    }

    .detail_list .time_table li {
        display: inline-block;
    }

    .detail_list .time_table li::after {
        content: "\FF0F";
        color: #777;
    }

    .detail_list .time_table li:last-child::after {
        content: none;
    }

}


@media screen and (min-width: 1024px) {


    .detail_list dt span {
        padding: 1px 8px 1px;
    }


    .top .detail_box figure {
        width: 35%;
    }

    .top .detail_box .txtbox {
        width: 60%;
    }

    .profile.detail_box figure {
        width: 25%;
        margin-left: 0;
        margin-right: 0;
    }

    .profile.detail_box .txtbox {
        width: 70%;
    }


}





/*===========================
sub_category
=============================*/

.sub_category .detail_box .detail {
    width: 90%;
}

.sub_category .detail_box .inside {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
}

.sub_category h4 {
    font-size: 2rem;
    font-weight: bold;
    color: #755532;
    display: block;
}

.sub_category .inside h5.flag {
    width: 300px;
    position: absolute;
    top: -25px;
    left: 15px;
    z-index: 1;
}

.sub_category h4 small {
    font-size: 1.6rem;
}

.sub_category ul.maru li::before {
    content: "\25CF";
    color: #e85a56;
}

/*===========================
koganei
=============================*/

#koganei .detail_box .inside {
    background: url(../img/bg_koganei_2.png) bottom right no-repeat #fff;
}

#koganei .link.koganei {
    width: 90%;
    padding-top: 45px;
    border-top: #d8c6af thin solid;
    text-align: center;
}

#koganei .link.koganei a {
    width: 100%;
    max-width: 300px;
    padding: 5px 30px 5px;
    color: #d45c1d;
    /* background: #fff; */
    background: rgba(255, 255, 255, 0.5);
    border: #d45c1d 1px solid;
    border-radius: 2em;
    display: inline-block;
    text-align: center;
}


/*===========================
 #place
=============================*/



#place .place-box {
    margin-bottom: 60px;
}

#place.single .place-box.detail_list {
    width: 89%;
}

#place.double .detail_list {
    min-height: 250px;
}


#place.double .map {
    width: 89%;
    margin-left: auto;
    margin-right: auto;
}


@media screen and (min-width: 640px) {

    #place .map iframe {
        width: 100%;
        height: 360px;
    }

    #place.single .place-box {
        width: 100%;
        margin-bottom: 0;
    }

    #place.single .place-box .detail_list {
        width: 50%;
    }

    #place.single .map {
        width: 48%;
    }

    #place.double .place-box {
        width: 48.6%;
        margin-bottom: 0;
    }

}

/*===========================
event-header
=============================*/
.event-header {
    background: url(../img/1x/bg_title_pc.png) no-repeat top center;
}

.event-header .inside {
    width: 100%;
    background: url(../img/1x/bg_title_pc.png) no-repeat top center;
}

.event-header .header-logo-mob {
    width: 100%;
    display: block;
    margin-bottom: -5px;
}

.event-header .header-logo {
    display: none;
}

.event-header a {
    display: inline-block;
}

/* @media screen and (min-width: 1000px) {

    .event-header .header-logo {
        width: 100%;
        max-width: 790px;
    } }*/




@media screen and (min-width: 640px) {


    .event-header .inside {
        width: 98%;
        max-width: 1200px;
        margin: auto;
    }

    .event-header .header-logo {
        width: 100%;
        display: block;
    }

    .event-header .header-logo-mob {
        display: none;
    }

}


@media screen and (min-width:768px) and (max-width:1000px) {
    .event-header .header-logo {
        width: 80%;
    }

}






/*===========================
sub
=============================*/

.sub #contents {
    padding-top: 61px;
}

.sub #contents .lv_02 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.sub .detail_box h3 {
    min-height: 142px;
    /**/
    display: flex;
    justify-content: center;
    align-items: center;
    /**/
    position: relative;
}

.sub h3 .frame {
    position: absolute;
    top: -90px;
    left: -10px;
    /* right: -10px; */
    z-index: 1;
}


.sub h3 .frame.minus70 {
    top: -70px;
}

.sub h3 .frame.minus80 {
    top: -80px;
}


.sub h3 .frame.minus90 {
    top: -90px;
}

.sub h3 .frame.minus95 {
    top: -95px;
}


.sub .detail_box h3 .title {
    width: 100%;
    text-align: center;
}




@media screen and (min-width: 900px) {

    .sub #contents .lv_02 {
        padding-top: 30px;
        padding-bottom: 30px;
    }




}


@media screen and (min-width: 1000px) {



    .sub #contents {
        padding-top: 100px;
    }

}



@media screen and (min-width: 1280px) {

    .sub h3 .frame {
        position: absolute;
        top: -70px;
        left: -10px;
        /* right: -10px; */
        z-index: 1;
    }

}




/* min 1280 or 1024*/
@media screen and (min-width: 1024px) {

    .sub .detail_box h3 {
        /* min-height: 142px; */
        min-height: 169px;
        /**/
        display: flex;
        justify-content: center;
        align-items: center;
        /**/
        position: relative;
    }

    .sub .detail_box h3 .frame {
        position: absolute;
        top: 0;
        left: -10px;
        z-index: 1;

        width: 180px;
        height: 169px;
    }


}