.wrapper {
    width: 100%;
    max-width:1400px;
    display: flex;
    margin: 10px auto;
    position:relative;
    justify-content: center;
}

.burger {
	display:none;
}

.side, .main {
    padding: 5px;
}

.side {
    background: #e7e3df;
    width: 200px;
}

/*サイドメニューを固定*/
.side_fixed{
    position:fixed;
    margin:0px auto;
}

.main {
    background: #e7e3df;
    width: 70%;
    margin-right: 0px;
    padding-bottom:60px;
}

.footer {
    background: url("../img/grass.png?250412") top;
    height:60px;
    position:fixed;
    width: 100%;
    text-align:center;
    bottom:0;

}

/* mainを1カラムコンテンツにする */

.archive {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/*mainphoto*/
.archive div,textb {
    margin: 0.5rem;
    padding: 0rem;
    width: 100%; /*コンテンツ巾*/
    background-color: #e7e3df;
}

.archive img {
    display: block;
    margin-bottom: 1rem;
    height: auto;
    width:100%;
}

/* picを横配置*/
.archive pic,pic2 {
    margin-bottom: 0.5rem;
    padding: 0rem;
    width: 9%; /*コンテンツ巾*/
    background-color: #e7e3df;
}

/*
■■■■■■■■■■■■■■■■
■■■バーガーメニュー表示■■■
■■■■■■■■■■■■■■■■
*/
@media screen and (max-width: 650px) {
    .wrapper {
        flex-direction: column;
        margin: 0px auto;
	padding: 0px;
        position:relative;
        width: 100%;
    }
    .burger {
	width:100%;
	float:left;
	display:block;
	z-index:100;
    }
    .burger_fixed{
	background-color:#e7e3df;
	margin:0px 0px 0px 0px;
	padding:15px 0px 20px 15px;
    	position:fixed;
    	margin:0px auto;
    }
    .side {
	display:none;
    }
    .main {
        box-sizing: border-box;
        width: 100%;
	margin:0px 0px 0px 0px;
	padding:50px 0px 60px 0px;
    }

    .footer {
        background: url("../img/grass.png?250412") top;
	height:60px;
        width: 100%;
        position:fixed;
        text-align:center;
        bottom:0px;
    }

/*mainphoto*/
    .archive div {
        display:none;
    }

/*mainphoto*/
    .archive textb {
        width: 90%;
        margin: 20px auto;
    }

    .archive img {
        display: block;
        margin-bottom: 1rem;
        height: auto;
        width:100%;
    }

/* picを縦配置*/
.archive pic {
    margin:0px auto;
 
    padding: 0rem;
    width: 92%; /*コンテンツ巾*/
    background-color: #e7e3df;
}
/*ダミーを非常時*/
.archive pic2 {
    display:none;
}

}