@charset "UTF-8";

/*====================================
	Reset
====================================*/
abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}ins{text-decoration:none}ins,mark{background-color:#ff9;color:#000}mark{font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}
div, a, li, span, textarea, input{ -webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
input[type="text"], input[type="password"],textarea,button{ outline: none; vertical-align:middle;}
input[type="text"], input[type="password"],textarea{border: 1px solid #ccc;}

/*====================================
	font
====================================*/
html{
	font-size: 62.5%;
}
body, textarea, input, select, label{
	font-size: 16px;
	line-height: 1.6;
    font-family: 'Noto Sans JP', sans-serif;
    font-family: "zen-kaku-gothic-new", sans-serif;
    font-weight: 500;
    font-style: normal;
}

/*====================================
	base
====================================*/
a{
	color: #000;
    text-decoration: none;
    transition: all .2s;
}
a:hover {
    opacity: .7;
}
img {
    vertical-align: middle;
    object-fit: cover;
    max-width: 100%;
}
table {
    border-collapse: collapse;
    width: 100%;
    border-spacing: 0;
}
ul {
    list-style: none;
}
p {
    letter-spacing: 0.05em;
}

.sp{
    display: none;
}

.wrap {
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
}
@media only screen and (max-width: 1000px){
    .wrap {
        padding-left: 25px;
        padding-right: 25px;
    }
}
.wrap2 {
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
}
@media only screen and (max-width: 1100px){
    .wrap2 {
        padding-left: 25px;
        padding-right: 25px;
    }
}
.wrap3 {
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}
@media only screen and (max-width: 1500px){
    .wrap3 {
        padding-left: 25px;
        padding-right: 25px;
    }
}

/* ttl */
.ttl {
    margin-bottom: 60px;
    text-align: center;
}
    .ttl h2 {
        font-size: 52px;
        line-height: 1.5;
        letter-spacing: 0.03em;
        font-weight: 700;
        font-style: italic;
    }
    .ttl .en {
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: 0;
        font-weight: 700;
        display: block;
        color: #E30012;
    }
    .ttl .sankaku {
        width: auto;
        display: block;
        margin: 0 auto;
    }

/* btn */
.btn_area p {
    font-size: 18px;
    color: #E30012;
    line-height: 1.5;
    letter-spacing: 0;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}
.btn {
    width: 400px;
    margin: 0 auto;
    text-align: center;
}
    .btn a {
        background-color: #E30012;
        position: relative;
        display: block;
        padding: 15px;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 1.5;
        color: #fff;
        width: 100%;
        border-radius: 50px;
    }
        .btn a span {
            position: relative;
            z-index: 1;
        }
        .btn a span::after {
            content: "";
            display: inline-block;
            margin-left: 15px;
            width: 8px;
            height: 8px;
            border-top: 2px solid #fff;
            border-right: 2px solid #fff;
            transform: translateY(-25%) rotate(45deg);
        }

@media only screen and (max-width: 1000px){
    .btn_area p {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .btn a {
        padding: 10px;
        font-size: 16px;
    }
}


/* iframe */
.ifm {
    width: 100%;
    height: 2500px;
    overflow: hidden;
    padding-bottom: 57%;
    position: relative;
}
    .ifm iframe {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
    }
    .ifm iframe .p-request .m-form td:last-of-type {
        min-width: initial !important;
    }

/* pagetop */
#pagetop {
    position: fixed;
    z-index: 10;
    bottom: 3.5rem;
    right: 4rem;
    width: 14rem;
    height: 20rem;
    cursor: pointer;
}
    #pagetop img {
        width: 100%;
    }

/*====================================
	header
====================================*/
header {
    position: fixed;
    z-index: 9999;
    width: 100%;
    transition: all .2s; 
}
header.scrolled {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

header #header_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 15px 35px;
    transition: all .2s; 
}
    header #header_area h1 {
        transition: all .2s; 
    }
    header.scrolled #header_area h1 {
        display: block;
    }
        header #header_area h1 img {
            display: inline-block;
            max-width: 100%;
        }
    header #header_area .logo {
        display: none;
    }
    header #header_area nav {
        display: block;
    }
        header #header_area nav ul {
            display: flex;
            align-items: center;
            box-sizing: border-box;
            position: relative;
        }
        header #header_area nav li {
            display: block;
            text-align: left;
            margin-left: 50px;
        }
            @media only screen and (max-width: 1200px){
                header #header_area nav li {
                    margin-left: 30px;
                }
            }
            header #header_area nav li a {
                position: relative;
                width: 100%;
                display: block;
                font-size: 18px;
                line-height: 2;
                letter-spacing: 0.03em;
                font-weight: 700;
            }

            header #header_area nav li a.contact {
                letter-spacing: 0;
                line-height: 1.5;
                background-color: #fff;
                color: #E50012;
                border: 1.5px solid #E50012;
                border-radius: 100px;
                padding: 10px;
                width: 200px;
                text-align: center;
                margin: 0 auto;
            }
                header #header_area nav li a.contact span {
                    position: relative;
                }
                header #header_area nav li a.contact span::after {
                    content: "";
                    display: inline-block;
                    margin-left: 15px;
                    width: 8px;
                    height: 8px;
                    border-top: 2px solid #E50012;
                    border-right: 2px solid #E50012;
                    transform: translateY(-25%) rotate(45deg);
                }
        
        
    .nav-button_area {
        display: none;
    }

/*====================================
	fv
====================================*/
#fv {
    /* background: linear-gradient(252.25deg, rgba(250, 250, 250, 0.9) 5.72%, rgba(255, 255, 255, 0.9) 66.15%); */
}
#fv .fv_area {
    position: relative;
    overflow: hidden;
}

    #fv .fv_area .fv_txt.sp {
        display: none;
    }
    #fv .fv_area .fv_txt {
        width: 100%;
        position: relative;
    }
        #fv .fv_area .fv_txt img {
            width: 100%;
        }
        #fv .fv_area .fv_txt img.pc {
            display: block;
        }
        #fv .fv_area .fv_txt img.sp {
            display: none;
        }

    #fv .fv_area .btn_area {
        position: absolute;
        /* bottom: 14%; */
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        display: block;
    }

@media only screen and (max-width: 1400px){
    #fv .fv_area .btn_area {
        bottom: 5%;
    }
}

/*====================================
	about
====================================*/
#about {
    width: 100%;
    background: url(../img/about_bg.png) no-repeat center;
    background-size: cover;
    box-sizing: border-box;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}
@media only screen and (max-width: 1400px){
    #about {
        padding-left: 25px;
        padding-right: 25px;
    }
}

    #about .box {
        max-width: 1400px;
        margin: 0 auto;
        padding: 80px;
        position: relative;
        background: rgba(255, 255, 255, 0.9);
    }
    
        #about .box .ttl_area {
            margin: 0;
        }
            #about .box .ttl_area h2 {
                display: block;
                font-weight: 700;
                font-size: 16px;
                line-height: 1.5;
                letter-spacing: 0;
                margin-bottom: 10px;
                color: #E30012;
            }

        #about .box .item {
            display: flex;
            align-items: center;
        }
            #about .box .item .thumb {
                width: 37%;
                margin-right: 80px;
            }
                #about .box .item .thumb img {
                    max-width: 100%;
                    display: block;
                    margin: 0 auto;
                }
            #about .box .item .txt {
               width: 58%;
            }
                #about .box .item .txt p {
                    font-size: 18px;
                    font-weight: 500;
                    line-height: 2.15;
                    letter-spacing: 0;
                }


/*====================================
	special
====================================*/
#special {
    padding-top: 100px;
    padding-bottom: 100px;
    background: linear-gradient(180deg, #F1F1F1 31.41%, #FFFFFF 100%);

}
    #special .box {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 60px;
        padding-top: 60px;
    }
        #special .box .item {
            width: calc((100% - 150px) / 3);
            background-color: #fff;
            /* padding: 40px 50px 25px; */
            padding: 40px 40px 25px;
            position: relative;
            z-index: 1;
        }
        .circle-text {
            position: absolute;
            left: 50%;
            top: -60px;
            transform: translateX(-50%);
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            box-sizing: border-box;
            z-index: -1;
        }
            .circle-text .label {
                font-size: 18px;
                font-weight: 700;
                line-height: 1.5;
                letter-spacing: 0.05em;
                color: #646363;
            }
            .circle-text .number {
                font-size: 22px;
                font-weight: 600;
                line-height: 1.5;
                letter-spacing: 0.02em;
                color: #E50012;
        }

            #special .box .item .thumb {
                width: 100%;
                margin-bottom: 20px;
            }
                #special .box .item .thumb img {
                    max-width: 100%;
                    display: block;
                    margin: 0 auto;
                    height: 112px;
                }
            #special .box .item .txt {
                width: 100%;
                text-align: center;
            }
                #special .box .item .txt p {
                    font-size: 18px;
                    font-weight: 500;
                    line-height: 1.5;
                    letter-spacing: 0;
                }
                #special .box .item .txt span {
                    color: #E50112;
                    font-size: 24px;
                    line-height: 1.1;
                    letter-spacing: -0.05em;
                }

@media only screen and (max-width: 1300px){
    #special .box .item {
        width: calc((100% - 50px) / 3);
        background-color: #fff;
        padding: 40px 25px 25px;
    }
}

/*====================================
	program
====================================*/
#program {
    width: 100%;
    position: relative;
    /* padding-top: 100px;
    padding-bottom: 100px; */
}
    #program .bg_prog {
        background: url(../img/prog_bg.png) no-repeat center;
        background-size: cover;
        background-attachment: fixed;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    #program .time_table {
        margin-bottom: 120px;
        text-align: center;
    }
        #program .time_table .item {
            position: relative;
            background: rgba(255, 255, 255, 0.01);
            backdrop-filter: blur(7.5px);
            display: flex;
            justify-content: space-between;
            padding: 50px 50px 30px 50px;
            cursor: pointer;
            z-index: 1;
            margin-bottom: 55px;
            box-shadow: 0px 0px 60px rgba(218, 227, 227, 0.3);
            /* filter: drop-shadow(0px 4px 50px rgba(0, 0, 0, 0.1)); */
        }
        #program .time_table .item.kichou {
            border: 2px solid #E30012;
            margin-bottom: 75px;
        }
        #program .time_table .item.kichou.black {
            border: 2px solid transparent;
        }
        #program .time_table .item.kichou.black[data-id="6"] {
            margin-bottom: 55px;
        }
        #program .time_table .item.kichou::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            background: url(../img/prog_kichou.png) no-repeat right;
            background-size: 100%;
            width: 296px;
            height: 306px;
        }
        #program .time_table .item.kichou.black::after {
            background: url(../img/prog_kichou_b.png) no-repeat right;
            background-size: 100%;
            width: 296px;
            height: 306px;
        }
        #program .time_table .item::before {
            content: '';
            position: absolute;
            right: -30px;
            bottom: -30px;
            background: url(../img/icon_maru.svg) no-repeat center;
            background-size: 100%;
            width: 60px;
            height: 60px;
            z-index: 10;
        }
        @media only screen and (max-width: 1500px){
            
            #program .time_table .item::before {
                right: -25px;
                bottom: -25px;
                width: 50px;
                height: 50px;
            }
        }
                #program .time_table .item.kichou .tag {
                    position: absolute;
                    top: 0%;
                    transform: translateY(-50%);
                    left: -2px;
                    display: inline-block;
                    width: 265px;
                    background-color: #E30012;
                    color: #fff;
                    font-size: 24px;
                    line-height: 1.5;
                    letter-spacing: -0.03em;
                    font-weight: 700;
                    font-style: italic;
                    padding: 5px;
                    text-align: center;
                }
                #program .time_table .item.kichou.black .tag {
                    background-color: #403B3B;
                }
                #program .time_table .item .txt_area {
                    text-align: left;
                    width: 62%;
                    display: flex;
                    flex-direction: column;
                    /* justify-content: space-around; */
                    justify-content: space-between;
                }
                    #program .time_table .item .txt_area .time {
                        font-size: 30px;
                        font-weight: 700;
                        color: #E50012;
                        line-height: 1.2;
                        letter-spacing: 0.05em;
                        margin-bottom: 25px;
                    }
                    #program .time_table .item .txt_area h3 {
                        margin-bottom: 50px;
                        font-size: 32px;
                        line-height: 1.4;
                        letter-spacing: 0.03em;
                    }
                    #program .time_table .item .txt_area .logo img {
                        display: block;
                    }
                    #program .time_table .item.aw .txt_area .logo img,
                    #program .time_table .item.free .txt_area .logo img {
                        width: 113px;
                    }
                @media only screen and (max-width: 1000px){
                    #program .time_table .item .txt_area {
                        width: 100%;
                        margin-bottom: 20px;
                    }
                }
                #program .time_table .item .pic_area {
                    width: 35%;
                    position: relative;
                    z-index: 2;
                    display: flex;
                }
                @media only screen and (max-width: 1000px){
                    #program .time_table .item .pic_area {
                        width: 100%;
                    }
                }
                    #program .time_table .item .pic_area .pic {
                        width: 59%;
                    }
                        #program .time_table .item .pic_area .pic img {
                            display: block;
                            /* width: 100%; */
                            max-width: 100%;
                            margin-right: auto;
                        }
                    #program .time_table .item .pic_area .info {
                        /* width: 54%; */
                        width: 57%;
                        position: absolute;
                        bottom: 0;
                        /* right: 0; */
                        right: -10px;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: flex-start;
                        padding: 20px;
                        padding-right: 10px;
                        gap: 10px;
                        /* background: rgba(255, 255, 255, 0.3); */
                        background: rgba(255, 255, 255, 0.8);
                        /* backdrop-filter: blur(8.68941px); */
                    }
                        #program .time_table .item .pic_area .info .txt {
                            margin-bottom: 20px;
                        }
                                #program .time_table .item .pic_area .info p {
                                text-align: left;
                                font-size: 18px;
                                line-height: 1.2;
                                letter-spacing: 0;
                                font-weight: 500;
                            }
                            #program .time_table .item .pic_area p.name {
                                font-size: 26px;
                                font-weight: 700;
                            }
                            #program .time_table .item .pic_area p.small {
                                font-size: 14px;
                            }
        
/* modal */
#program .modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
#program .modal .wrap2 {
    position: relative;
}
    #program .modal .modal-content {
        max-height: 80vh;
        overflow-y: auto;
        background: #F4F6F6;
        width: 100%;
    }

    #program .modal .close {
        position: absolute;
        top: -55px;
        right: -65px;
        background: none;
        border: none;
        cursor: pointer;
    }
        #program .modal .close img {
            display: block;
        }

    @media only screen and (max-width: 1300px){
        #program .modal .modal-content {
            overflow-y: auto;
        }

            #program .modal .close {
                top: 20px;
                right: 45px;
            }
    }

    #program .modal .content {
        border-bottom: 1px solid #000;
        text-align: left;
        padding: 50px 50px 0;
    }
        #program .modal .content .time {
            margin-bottom: 15px;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: 0.05em;
            color: #E30012;
        }
        #program .modal .content h3 {
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.4;
            letter-spacing: 0.03em;
        }
        #program .modal .content p {
            margin-bottom: 15px;
            font-size: 14px;
            line-height: 1.4;
            letter-spacing: 0;
        }
    #program .modal .profile {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 15px 50px 0;
    }
    @media only screen and (max-width: 1300px){
        #program .modal .profile {
            /* align-items: center; */
        }
    }
        #program .modal .profile .text {
            width: 68%;
            text-align: left;
        }
            #program .modal .profile .text .msg {
                font-size: 14px;
                letter-spacing: 0;
                line-height: 1.4;
            }
            #program .modal .profile .text .info {
                margin-bottom: 15px;
            }
            #program .modal .profile .text .info.second {
                margin-top: 30px;
            }
                #program .modal .profile .text .kana {
                    font-size: 14px;
                    font-weight: 500;
                    letter-spacing: 0;
                    line-height: 1.2;
                    margin-bottom: 10px;
                }
                #program .modal .profile .text .name {
                    font-size: 22px;
                    font-weight: 700;
                    letter-spacing: 0;
                    line-height: 1.2;
                    margin-bottom: 10px;
                }
                #program .modal .profile .text .cmp_area {
                    display: flex;
                    flex-direction: column;
                }
                    #program .modal .profile .text .cmp_area p {
                        font-size: 16px;
                        font-weight: 500;
                        letter-spacing: 0;
                        line-height: 1.2;
                    }

        #program .modal .profile .image {
            width: 27%;
        }
            #program .modal .profile .image img {
                width: auto;
                max-width: 100%;
                display: block;
            }

    #program .modal .btn_area {
        padding: 20px 50px 50px;
    }


/*====================================
	sponsor
====================================*/
#sponsor {
    width: 100%;
    background: url(../img/sponsor_bg.png) no-repeat center;
    background-size: cover;
    box-sizing: border-box;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}
@media only screen and (max-width: 1400px){
    #sponsor {
        padding-left: 25px;
        padding-right: 25px;
    }
}

    #sponsor .box {
        max-width: 900px;
        margin: 0 auto;
        padding: 60px;
        position: relative;
        background: rgba(255, 255, 255, 0.9);
    }

        #sponsor .box .item {
            display: flex;
            flex-direction: column;
        }
            #sponsor .box .item .ttl {
                margin-bottom: 50px;
            }
            #sponsor .box .item .thumb {
                width: 100%;
            }
                #sponsor .box .item .thumb img {
                    max-width: 100%;
                    display: block;
                    margin: 0 auto;
                }



/*====================================
	gaiyou
====================================*/
#gaiyou {
    padding-top: 100px;
    padding-bottom: 50px;
    background: #F4F6F6;
}
#gaiyou .ttl {
    margin-bottom: 25px;
}
#gaiyou table {
    border-collapse: separate;
    border-spacing: 35px 0;
    margin-bottom: 115px;
}
    #gaiyou table th,
    #gaiyou table td {
        box-sizing: border-box;
        border-bottom: 1px solid #000;
        font-size: 18px;
        line-height: 1.7;
        letter-spacing: 0.03em;
    }
    #gaiyou table tr:last-child th,
    #gaiyou table tr:last-child td {
        border-bottom: none;
    }
    #gaiyou table th {
        width: 21%;
        position: relative;
        padding: 25px 0;
        /* vertical-align: middle; */
    }
    #gaiyou table td {
        width: 76%;
        padding: 25px 0;
    }
        #gaiyou table td ul {
            margin: 0;
        }
            #gaiyou table td li {
                position: relative;
                padding-left: 1em;
                word-break: break-all;
            }
            #gaiyou table td li::before {
                content: "・";
                position: absolute;
                left: 0;
                top: 0;
            }


/*====================================
	contact
====================================*/
#contact {
    background-color: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
}

/*====================================
	privacy
====================================*/
#privacy {
    padding-top: 100px;
    padding-bottom: 100px;
    background: url(../img/privacy_1.png) no-repeat center 100px;
    background-size: 1000px;
}
#privacy .stage_area {
    width: 100%;
    margin: 0 auto;
}
#privacy .stage_area.syusai {
    margin-top: 100px;
}
#privacy .stage_area ul {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px 40px;
}
#privacy .stage_area.syusai ul {
    gap: 70px;
}
    #privacy .stage_area ul li {
        text-align: center;
    }
        #privacy .stage_area.syusai ul li p {
            font-size: 18px;
            line-height: 1.2;
            letter-spacing: 0;
            margin-bottom: 20px;
        }
        #privacy .stage_area ul li a {
            font-size: 18px;
            line-height: 1.2;
            letter-spacing: 0;
            display: inline-block;
            transition: all .4s; 
            border-bottom: 1px solid transparent;
        }

        #privacy .stage_area.syusai ul li a {
            display: block;
            text-align: left;
            line-height: 2;
        }
        #privacy .stage_area ul li span {
            display: block;
            margin-bottom: 20px;
            font-size: 24px;
            line-height: 1.2;
            letter-spacing: 0.05em;
            font-weight: 700;
        }


/*====================================
	thanks
====================================*/
#thanks {
    width: 100%;
    background: url(../img/about_bg.png) no-repeat center;
    background-size: cover;
    box-sizing: border-box;
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
}
@media only screen and (max-width: 1400px){
    #thanks {
        padding-left: 25px;
        padding-right: 25px;
    }
}

    #thanks .box {
        max-width: 1400px;
        margin: 0 auto;
        padding: 80px;
        position: relative;
        background: rgba(255, 255, 255, 0.9);
    }
    
        #thanks .box .ttl_area {
            margin: 0;
        }
            #thanks .box .ttl_area span {
                display: block;
                font-weight: 700;
                font-size: 16px;
                line-height: 1.5;
                letter-spacing: 0;
                margin-bottom: 7px;
                color: #E30012;
            }
            #thanks .box .ttl_area h2 {
                font-weight: 500;
                font-size: 40px;
                line-height: 1.5;
                letter-spacing: 0;
                margin-bottom: 25px;
            }

        #thanks .box .item {
            display: flex;
            align-items: center;
        }
            #thanks .box .item .txt {
               width: 100%;
            }
                #thanks .box .item .txt p {
                    font-size: 18px;
                    font-weight: 500;
                    line-height: 2.15;
                    letter-spacing: 0;
                }


/*====================================
	footer
====================================*/
footer {
    width: 100%;
    position: relative;
    background-color: #000;
    padding-top: 50px;
    padding-bottom: 50px;
}
footer .logo_area img {
    display: block;
    margin: 0 auto;
}


@media only screen and (max-width: 1000px) {

/*====================================
	header
====================================*/
header #header_area {
    padding-left: 25px;
    padding-right: 25px;
}


/*====================================
	about
====================================*/
#about .box {
    padding: 30px;
}
#about .box .ttl_area {
    margin-bottom: 20px;
}
#about .box .item .thumb {
    width: 40%;
    margin-right: 30px;
}
#about .box .item .txt p {
    line-height: 1.7;
}


/*====================================
	program
====================================*/
#program .time_table .item {
    flex-direction: column;
}
#program .time_table .item.kichou::after {
    bottom: 0;
    top: inherit;
}


/*====================================
	sponsor
====================================*/
#sponsor .box {
    padding: 30px;
}
#sponsor .box .item .ttl {
    margin-bottom: 20px;
}


/*====================================
	thanks
====================================*/
#thanks .box {
    padding: 30px;
}
 #thanks .box .item .thumb {
    margin-right: 30px;
}

}




@media only screen and (max-width: 767px){

/*====================================
	font
====================================*/
body, textarea, input, select, label{
	font-size: 14px;
}

/*====================================
	base
====================================*/

.sp{
    display: block;
}
.pc{
    display: none;
}

html.is-fixed body {
    height: 100%;
    overflow: hidden;
}

.wrap {
    padding-left: 20px;
    padding-right: 20px;
}

.wrap3 {
    padding-left: 20px;
    padding-right: 20px;
}

/* ttl */
.ttl {
    margin-bottom: 30px;
}
    .ttl h2 {
        font-size: 30px;
    }
    .ttl .maru {
        margin: 0 auto 20px;
    }


/* btn */
.btn_area p {
    font-size: 14px;
}
.btn {
    width: 90%;
    max-width: 400px;
}
    .btn a {
        font-size: 16px;
        padding: 10px;
    }
    .btn a span::after {
        margin-left: 10px;
        width: 6px;
        height: 6px;
        transform: translateY(-30%) rotate(45deg);
    }


/* pagetop */
#pagetop {
    bottom: 3rem;
    right: 1.5rem;
    width: 5rem;
    height: 5rem;
}



/*====================================
	header
====================================*/
header #header_area {
    padding: 20px 20px;
    justify-content: flex-start;
}
header #header_area h1 img {
    width: 80px;
}
header #header_area nav {
    display: none;
}
header #header_area.sp-mode nav {
    display: flex;
}

header #header_area.sp-mode {
    margin: 0;
    padding: 40px 25px;
    height: 100vh;
    max-height: 100dvh;
    background-color: #fff;
    display: block;
}
header.scrolled #header_area.sp-mode {
    padding-top: 20px;
    padding-bottom: 20px;
}
    header #header_area.sp-mode .logo {
        display: block;
        margin: 0 auto 50px;
        width: 250px;
    }
    header #header_area.sp-mode nav {
    }
        header #header_area.sp-mode nav ul {
            flex-direction: column;
            width: 100%;
        }
        header #header_area.sp-mode nav li {
            width: 100%;
            margin: 0 auto 50px;
            text-align: center;
        }
            header #header_area nav li a {
                font-size: 18px;
            }
            header #header_area nav li a.contact::after {
                right: 45px;
            }


        

header #header_area.sp-mode {
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
        header #header_area.sp-mode h1 {
            display: none;
            position: absolute;
            top: 20px;
            left: 20px;
        }
            header #header_area h1 {
                width: 200px;
            }
        header #header_area.sp-mode .sp-mode-wrap {
            width: 100%;
        }

header .nav-button {
    display: block;
    cursor: pointer;
}

/*メニューボタンのエフェクト*/
.nav-button_area {
    display: block;
    z-index: 3;
    position: fixed;
    right: 25px;
    top: 20px;
    transition: all .2s; 
}
.nav-button_area.scrolled {
    top: 20px;
}
  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .nav-button {
	width: 40px;
    height: 35px;
    margin: 0 auto;
    position: relative;
  }
	.nav-button.active {
		height: 100px;
	}
	  .nav-button span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 3px;
		background-color: #000;
		border-radius: 2.5px;
	  }
	  .nav-button.bar_black span {
		background-color: #000;
	  }
	  .nav-button span:nth-of-type(1) {
		top: 0;
	  }
	  .nav-button span:nth-of-type(2) {
		  top: 10px;
	  }
	  .nav-button span:nth-of-type(3) {
		  top: 20px;
	  }
	  .nav-button.active span:nth-of-type(1) {
		  transform: translateY(20px) rotate(-45deg);
	  }
	  .nav-button.active span:nth-of-type(2) {
		opacity: 0;
	  }
	  .nav-button.active span:nth-of-type(3) {
		  transform: translateY(0) rotate(45deg);
	  }



/*====================================
	fv
====================================*/
#fv .fv_area .fv_txt img.pc {
    display: none;
}
#fv .fv_area .fv_txt img.sp {
    display: block;
}
#fv .fv_area .btn_area {
    width: 100%;
}

/*====================================
	about
====================================*/
#about {
    padding-top: 50px;
    padding-bottom: 50px;
}
    #about .box {
        padding: 20px;
    }
                
        #about .box .item {
            flex-direction: column;
        }
            #about .box .item .thumb {
                width: 80%;
                margin-bottom: 40px;
            }
            #about .box .item .txt {
               width: 100%;
            }
            #about .box .item .txt p {
                font-size: 16px;
            }


/*====================================
	special
====================================*/
#special {
    padding-top: 50px;
    padding-bottom: 50px;
}
#special .btn {
    width: 100%;
}
    #special .box {
        margin-bottom: 50px;
        padding-top: 50px;
    }
        #special .box .item {
            width: 100%;
            margin-bottom: 80px;
        }
        .circle-text {
            position: absolute;
            left: 50%;
            top: -50px;
            transform: translateX(-50%);
            width: 100px;
            height: 100px;
        }
            .circle-text .label {
                font-size: 16px;
            }
            .circle-text .number {
                font-size: 20px;
        }

            #special .box .item .thumb {
                margin-bottom: 20px;
            }
                #special .box .item .txt p {
                    font-size: 16px;
                }
                #special .box .item .txt span {
                    font-size: 20px;
                }


/*====================================
	program
====================================*/
#program {
    /* padding-top: 50px;
    padding-bottom: 100px; */
}
    #program .bg_prog {
        background: none;
    }
    #program .bg_prog2 {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../img/prog_bg.png) no-repeat center;
        background-size: contain; 
        background-position: center 30%;
        z-index: -1;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    #program .time_table {
        margin-bottom: 60px;
    }
            #program .time_table .item {
                padding: 20px;
            }
         #program .time_table .item.kichou::after {
            width: 200px;
            height: 240px;
        }
        #program .time_table .item::before {
            right: -20px;
            bottom: -20px;
            width: 40px;
            height: 40px;
        }
        #program .time_table .item {
            margin-bottom: 35px;
        }
        #program .time_table .item.kichou {
            margin-bottom: 55px;
        }
                #program .time_table .item.kichou .tag {
                    width: 150px;
                    font-size: 18px;
                    padding: 3px;
                }
                #program .time_table .item .txt_area {
                    width: 100%;
                    margin-bottom: 20px;
                }
                    #program .time_table .item .txt_area .time {
                        font-size: 22px;
                        margin-bottom: 20px;
                    }
                    #program .time_table .item .txt_area h3 {
                        margin-bottom: 20px;
                        font-size: 24px;
                    }
                    #program .time_table .item .txt_area .logo img {
                        max-width: 150px;
                    }

            #program .time_table .item .pic_area {
                flex-direction: column;
            }
                #program .time_table .item .pic_area .pic {
                    width: 80%;
                }
                    #program .time_table .item .pic_area img {
                        max-width: 350px;
                    }
                #program .time_table .item .pic_area .info {
                    /* max-width: 330px; */
                    padding: 15px 10px;
                    width: 80%;
                    position: relative;
                }
                    #program .time_table .item .pic_area .info p {
                        font-size: 14px;
                    }
                    #program .time_table .item .pic_area p.name {
                        font-size: 18px;
                    }

/* modal */
#program .modal {
    padding-left: 20px;
    padding-right: 20px;
}
#program .modal .wrap2 {
    padding-left: 0;
    padding-right: 0;
}
    #program .modal .close {
        top: 15px;
        right: 15px;
        width: 30px;
    }

    #program .modal .btn {
        padding-bottom: 0;
    }

    #program .modal .content {
        padding: 30px 20px 0;
    }
        #program .modal .content .time {
            font-size: 18px;
        }
        #program .modal .content h3 {
            font: 18px;
        }
    #program .modal .profile {
        flex-direction: column-reverse;
        padding: 30px 20px 0;
    }
        #program .modal .profile .text .btn {
            display: none;
        }
        #program .modal .profile .text {
            width: 100%;
            margin-bottom: 30px;
        }
            #program .modal .profile .text .msg {
                font-size: 14px;
                margin-bottom: 0;
            }
            #program .modal .profile .text .info {
                margin-bottom: 20px;
            }
                #program .modal .profile .text .kana {
                    font-size: 14px;
                }
                #program .modal .profile .text .name {
                    font-size: 24px;
                }
                #program .modal .profile .text .cmp_area {
                }
                    #program .modal .profile .text .cmp_area p {
                        font-size: 16px;
                    }


        #program .modal .profile .image {
            width: 100%;
            margin: 0 auto;
        }
        #program .modal .profile .image img {
            width: 80%;
            display: block;
            margin: 0 auto;
        }

    #program .modal .btn_area {
        padding: 20px 0 30px;
    }


/*====================================
	sponsor
====================================*/
#sponsor .box .item .thumb img {
    width: 80%
}


/*====================================
	gaiyou
====================================*/
#gaiyou {
    padding-top: 50px;
}
#gaiyou table {
    border-spacing: 0;
}
#gaiyou table tr {
    display: block;
    width: 100%;
}
    #gaiyou table th,
    #gaiyou table td {
        display: block;
        width: 100%;
        font-size: 16px;
        text-align: left;
    }
    #gaiyou table th {
        border-bottom: none;
        padding-top: 15px;
        padding-bottom: 0;
    }
    #gaiyou table td {
        padding: 15px 0;;
    }


/*====================================
	contact
====================================*/
#contact {
    padding-top: 50px;
    padding-bottom: 50px;
}


/*====================================
	privacy
====================================*/
#privacy {
    padding-top: 50px;
    padding-bottom: 50px;
    background: url(../img/privacy_1.png) no-repeat center 50px;
    background-color: #fff;
    background-size: contain;
}
#privacy .stage_area ul {
    flex-direction: column;
    gap: 20px;
}
#privacy .stage_area.syusai ul {
    flex-direction: row;
    gap: 40px;
}
    #privacy .stage_area.syusai ul li {
        width: 270px;
    }
    #privacy .stage_area ul li p {
        text-align: left;
    }
    #privacy .stage_area ul li a {
       font-size: 14px;
    }
    #privacy .stage_area ul li span {
        font-size: 14px;
        margin-bottom: 10px;
    }


/*====================================
	thanks
====================================*/
#thanks {
    padding-top: 100px;
    padding-bottom: 50px;
}
    #thanks .box {
        padding: 20px;
    }

        #thanks .box .ttl_area {
        }
            #thanks .box .ttl_area h2 {
                font-size: 30px;
            }
                
        #thanks .box .item {
            flex-direction: column;
        }
            #thanks .box .item .txt {
               width: 100%;
            }
            #thanks .box .item .txt p {
                font-size: 16px;
            }


/*====================================
	footer
====================================*/


}