@charset "utf-8";

/* reset */
*{
    margin:0;
    padding:0;
    max-width: 100%;
    box-sizing: border-box;
}

ol,ul,li{list-style:none;}
img{border:none;transition: 0.2s;max-width: 100%;vertical-align: middle;}
a{text-decoration: none;transition: 0.3s;}
a:hover img{opacity: 0.8;}
table{border-collapse:collapse;}

:root{
    --bg-color:#f2fffd;
    --main-color:#52bcb5;
    --sub-color:#27b9b2;
    --vivid-color:#52bcb5;
}

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

body {
    background:repeating-linear-gradient(to bottom,#f3feff,#c8fbff);
    padding:0px;
    margin:0 auto;
    font-size: 16px;
    line-height: 1.6;
}

/* menu */
nav {
    width: 100%;
    background:#fff;

    ul {
        display: flex;
        width: 1200px;
        margin: 0 auto;

        li {
            width: calc(100% / 3);
            font-size: 18px;
            text-align: center;

            a {
                display: block;
                width: 100%;
                height: 100%;
                padding: 20px 0;
                text-decoration: none;
                color: #000;
                transition: 0.2s;

                &:hover{
                    color: var(--vivid-color);
                }
            }
        }
    }
}

/*main*/
.cen{
    text-align: center;
    margin: 0 auto;
    text-align: center;
}
main{
    width: 1200px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    background: var(--main-color);
    color: #fff;
    font-size: 40px;
    padding: 1em;
    letter-spacing: 0.1em;
}

.midashi{
    font-size: 32px;
    color: var(--vivid-color);
    text-align: center;
    letter-spacing: 0.1em;
    margin: 10px 0;
}

.section_title{
    width: 100%;
    margin: 2em auto 1em;
    padding: 0.5em 1em;
    font-size: 20px;
    font-weight: bold;
    background: var(--main-color);
    color: #fff;
    border-radius: 2em;
}

header{
    width:100%;
    background-color:var(--bg-color);
    padding:0;
    margin:0;
    height: auto;
    text-align: center;

    .flex{
        display: flex;
        justify-content: center;
        gap: 1em;
        max-width: 1500px;
        width: 90%;
        margin: 1em auto;
        max-height: 95dvh;

        figure{
            width: calc((100% - 1em) / 2);
            max-height: 100%;
        }
        img{max-height: 100%;}
    }
}



/*概要*/
.about{
    margin: 3em auto;
    font-size: 110%;
    line-height: 1.8;
}

/*ボタン*/
.btn {
    width: fit-content;
    margin: 30px auto;

    a {
        display: block;
        width: 100%;
        padding: 20px 30px;
        border: 5px solid var(--vivid-color);
        color: #fff;
        background: var(--vivid-color);
        border-radius: 0.5em;
        font-size: 130%;
        text-align: center;
        font-weight: bold;
        transition: 0.2s;

        &:hover {
            color: var(--vivid-color);
            background: #fff;
        }
    }
}

/*アクセス*/
.map {
    display: flex;
    border-top: 2px dotted var(--main-color);
    padding: 30px 0;
    align-items: center;

    iframe {
        width: 60%;
        height: 400px;
    }

    dl {
        padding: 10px;
        width: 40%;

        dt {
            padding: 0px 10px 15px;
            margin: 0px;
            font-size: 22px;
            font-weight: bold;
        }

        dd {
            padding: 5px 10px;
            margin: 0px;
            font-size: 14px;
        }
    }
}

.date {
    padding: 4em 1em;
    margin: 1.5em 0;
    border-radius: 1em;
    background: var(--main-color);

    h2 {
        font-family: "Sawarabi Mincho";
        color: #fff;
        font-size: 200%;
        letter-spacing: 0.1em;
        text-align: center;
        width: 100%;
        margin-bottom: 2em;
        font-weight: normal;
    }

    .cen {
        font-size: 20px;
        color: #fff;
        margin: 1em auto;
        font-weight: bold;
    }

    ul {
        display: flex;
        gap: 1em;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        li {
            width: 70%;
            background: rgba(255, 255, 255, 0.95);
            background: #fff;
            border-radius: 0.5em;
            display: flex;
            border: 5px solid #fff;
            overflow: hidden;
            .step,.text{
                padding: 25px;
            }
            .step{
                background: var(--vivid-color);
                color: #fff;
                font-size: 120%;
                font-weight: bold;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 15%;
                flex-shrink: 0;
            }
            .text{font-size: 150%;}
        }
    }
}

/*店舗紹介*/
#shoplist {
    padding: 0 0 30px;
}

.shoplist {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    counter-reset: shop-num;
    align-items: flex-start;

    li {
        width: calc((100% - 30px * 2) / 3);
        counter-increment: shop-num;
        position: relative;
        background: #fff;
        transition: 0.2s;
        color: var(--main-color);
        border-radius: 1em;
        border: 2px solid var(--vivid-color);
        overflow: hidden;

        a {
            color: #000;
        }

        .shop_name {
            padding: 10px;
            font-size: 21px;
            font-weight: bold;
            text-align: center;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5em;

            &::before {
                content: counter(shop-num);
                font-size: 1em;
                height: 100%;
                aspect-ratio: 1/1;
                font-weight: bold;
                color: #fff;
                background: var(--main-color);
                flex-shrink: 0;
                padding: 0.5em;
                border-radius: 50%;

                display: flex;
                justify-content: center;
                align-items: center;
            }
        }
        .shop_img{
            padding: 0 1em;
        }
        .food_name{
            background: #fff6a4;
            margin: 0.5em 1em 1em;
            padding: 1em;
            border-radius: 3em;
            text-align: center;
            position: relative;

            &::before{
                content: '';
                background: #fff6a4;
                height: 1.5em;
                width: 1.5em;
                display: block;
                position: absolute;
                clip-path: polygon(100% 0%,100% 100%,0% 100%);
                bottom: 100%;
                left: 2.5em;
            }
        }
    }
}

.lb-container{
    max-width: 90vw;
}

/*レポート入れるブロック*/
.report_box{
    width: 100%;
    padding: 2em;
    background: rgba(255, 240, 190, 0.8);
}
.report_box h3{
    margin: 0 auto 0.5em;
    font-size:200%;
    letter-spacing: 0.05em;
    text-align: center;
    width:100%;
    color:var(--main-color);
    background: none;
}
.repo{
    margin: 5em auto 2em;
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap:2em;
    align-items: center;
}
.repo li{
    width: calc((100% - 2em * 3) / 4);
    text-align: center;
}
.repo li a img{
    transition: 0.2s;
}
.repo li a:hover img,
.repo li a:active img{
    opacity: 0.7;
}
.repomore{
    display: block;
    margin: 0 auto;
    text-align: center;
    text-decoration: none; 
    font-size: 120%;
    padding:10px 30px;
    font-weight: bold;
    background-color:#FFF;
    border-radius: 7px;
    color: var(--main-color); 
    border: solid 1px var(--main-color);
    transition: 0.2s;
    cursor: pointer;
}
.repomore:hover,
.repomore:active{
    background: var(--main-color);
    color: #fff;
}


/*下の方*/
.bg01{
    background: var(--main-color);
    padding: 1em 0 3em;
    margin-bottom: 3em;
}
.contact{
    width: 980px;
    margin: 2em auto 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.con{
    font-size: 1.2em;
    color: var(--bg-color);
}
.con span{
    display: inline-block;
    font-size: 1.1rem;
    padding: 0.3em;
    margin-bottom: 0.3em;
    border: 1px solid var(--bg-color);
}
.con a{
    color: #fff;
    font-weight: bold;
    font-size: 1.4em;
}

.syusai{
    margin: 0 auto;
    font-size:14px;
    line-height: 1.6em;
    color: var(--bg-color);
    text-align: center;
}

.spring .con,.spring .syusai{
    color: #FDFAFA;
}


/*外部リンク組*/

.events{
    width: 100%;
    padding: 1em;
    margin: 20px auto 30px;
    border-radius: 1em;
}
.archive{
    width: 1200px;
    padding: 1em;
    margin: 20px auto 30px;
    background: rgba(255,255,255,0.8);
    border-radius: 1em;
}
.events h3,.archive h3{
    background: none;
    text-align: center;
    color: var(--main-color);
}

.sub_ul{
    display: flex;
    width: 80%;
    margin: 1em auto;
    gap:1.5em;
    flex-wrap: wrap;
    justify-content: start;
}
.sub_ul li{
    width: calc((100% - 1.5em * 2) / 3);
    text-align: center;
    border: 1px solid var(--main-color);
}
.sub_ul li a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 1em 0.5em;
    color: var(--main-color);
    transition: 0.2s;
}
.events .sub_ul li a{
    background: rgba(255,255,255,0.8);
}
.sub_ul li a:hover,
.sub_ul li a:active{
    background: var(--bg-color);
}


/*--------------------footer--------------------*/

footer{
	padding: 3em 3em 1em;
    background: #fff;
}
footer .sns{
	display: flex;
	justify-content: center;
	margin: 2em auto 3em;
}
footer .sns li{
	width: 60px;
	text-align: center;
}
footer .sns li a{
	transition: .2s;
}
footer .sns li a:hover{
	opacity: 0.8;
}

.fotbox{
	text-align: center;
	border-top: 1px solid #ccc;
	padding: 1em 1em 1.5em;
}
.fotmenu{
	display: flex;
	flex-wrap: wrap;
	width: 50%;
	margin: 2em auto 0;
    gap:1em;
}
.fotmenu li{
	width: calc((100% - 1em * 2) / 3);
}
.fotmenu li a{
	display: inline-block;
    color: #403F41;
    transition: 0.2s;
}
.fotmenu li a:hover{
    color: #EA8D20;
}

.copy{
	font-size: 10pt;
	line-height: 3vh;
	color: #fff;
	background: #3dae70;
	width: 100%;
	text-align: center;
}


@media (max-width: 1200px) {

    body{font-size: 14px;}
    section{
        max-width: 900px;
        width: 90%;
        margin: 2em auto;
    }
    /*アクセス*/
    .map{
        flex-direction: column;
    }
    .map iframe,.map dl{
        width: 100%;
    }

    /*参加方法*/
    .date ul li{
        width: 90%;
    }
    
    /*店舗紹介*/
.shoplist{
li{
    width: calc((100% - 30px) / 2);

    .shop_name{
        font-size: 18px;
    }
}
}

 /*レポート入れるブロック*/
    .report_box{
    padding: 2em 0;
}
.report_box h3{
    font-size: 130%;
}
.repo{
    width: 95%;
    gap:1em;
    margin: 2em auto;
}
.repo li{
    width: calc((100% - 1em) / 2);
}

/*下の方*/
.bg01{
    width: 100%;
    max-width: 100%;
}
.contact{
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin: 2em auto 0;
    gap:1.5em;
}
    .con{
        text-align: center;
    }

/*外部リンク組*/
.archive{
    width: 90%;
}

.sub_ul{
    width: 95%;
    flex-wrap: wrap;
}
    .sub_ul li{
        width: calc((100% - 1.5em) / 2);
    }

/*footer*/
footer{
	padding: 1em;
}
footer .sns{
	margin: 1em auto 3em;
}

.fotbox{
	padding: 1em 0;
}
    .fotbox .sp{
        width: 80%;
        margin: 0 auto;
    }
.fotmenu{
    width: 100%;
	}
.fotmenu li{
	width: calc((100% - 1em) / 2);
}
.fotmenu li a{
	display: inline-block;
}
	.copy{
		font-size: 8pt;
	}
    .w90{
        width: 90%;
    }

}

@media (max-width: 600px) {

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

    header{
        .flex{
            flex-direction: column;
            max-height: none;
            figure{width: 100%;}
        }
        h1{font-size: 24px;}
    }

    nav{
        ul{
            flex-direction: column;
            li{
                width: 100%;
                &:not(:last-child){border-bottom: 1px dotted var(--vivid-color);}
            }
        }
    }

    .midashi{
        font-size: 24px;
    }
    .intro{
        text-align: justify;
    }

    .date{
        padding: 2em 1em;
        h2{font-size: 22px;}

        ul{
            li{
                flex-direction: column;
                .step{width: 100%;padding: 0.5em 1em;}
                .text{padding: 1em;font-size: 105%;text-align: justify;}
            }
        }
    }

    .shoplist{
        padding: 1em 0;
        gap: 10px;
        li{width: 100%;}
    }




    .sub_ul{
        flex-direction: column;
    }
    .sub_ul li{
        width: 100%;
    }

    
}
