@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,
blockquote,pre,abbr,address,cite,code,del,dfn,em,img,
ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,
ol,ul,li,fieldset,form,label,legend,table,caption,
tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,
section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    font-family: "Helvetica", "Roboto", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
}

p {
    line-height: 1.8;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    color: #444;
}

img {
    width: 100%;
    display: block;
}

html {
    height: 100%;
    font-size: 62.5%;
}

body {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    color: #444;
    position: relative;
    -webkit-text-size-adjust: 100%;
}

@media only screen and (min-width: 769px) {
    .sp {
        display: none!important;
    }
}

@media only screen and (max-width: 768px) {
    .pc {
        display: none!important;
    }
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

ul {
    list-style: none;
}


/*========================================================
▼ヘッダー
========================================================*/

#header {
    width: 100%;
    background-color: #000;
    height: 80px;
    top: 0;
    left: 0;
}

#header .headerInner {
    height: 80px;
    position: relative;
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.headerInner{
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
    #header {
        height: 50px;
    }

    #header .headerInner {
        padding: 2% 5%;
        height: 50px;
    }
}


/*
ロゴ部分
--------------------------------------------------------*/

#header .headerInner h1 {
    height: 50px;
	padding-left: 2%;
}

#header .headerInner h1 a:hover img {
    opacity: 0.8;
}

#header .headerInner h1 img {
    width: 100px;
    max-height: 50px;
}

@media screen and (max-width: 768px) {
    #header .headerInner h1 {
        height: 35px;
    }

    #header .headerInner h1 img {
        width: auto;
        max-height: 35px;
    }
}


/*
SNSボタン部分
--------------------------------------------------------*/

#header .headerInner .sns {
    /*color: #fff;*/
}

#header .headerInner .sns li {
    display: inline-block;
}

#header .headerInner .sns a {
    color: #fff;
    font-size: 3rem;
    padding: 0.5em;
}

#header .headerInner .sns a:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    #header .headerInner .sns a {
        padding: 0 0.5em;
    }
}

/*========================================================
▼メインビジュアル
========================================================*/

#mv {
    position: relative;
    z-index: 9998;
}

#mv .mv-img {
    max-width: 2500px;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    #mv {
        width: 100%;
    }
}

/*========================================================
▼メインコンテンツ
========================================================*/

#contents {
    width: 100%;
    margin: 0 auto;
}
section {
    width: 100%;
    margin: 0 auto;
}
.container{
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
	padding: 0 2%;
}


@media only screen and (max-width: 768px) {
    html,
    body {
        height: 100%;
        min-width: 320px;
    }
    section {
        width: 100%;
        margin: 0 auto;
    }
	.container,.map_group{
		max-width: 700px;
		width: 100%;
		padding: 0 5%;
	}
	
}


/*----------------------------------------
メニューボタン
----------------------------------------*/

#menu {
    position: fixed;
    top: 0;
    right: -412px;
    z-index: 999;
    -webkit-transition: left 0.5s, right 0.5s, opacity 0.5s;
    -o-transition: left 0.5s, right 0.5s, opacity 0.5s;
    transition: left 0.5s, right 0.5s, opacity 0.5s;
    opacity: 0;
}

#menu.open {
    right: 0px;
}

#menu.active {
    opacity: 1;
}

#menu .menu-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#menu .menu-inner .menu-btn {
    width: 2em;
    background-color: #b3a36b;
    color: #fff;
    font-size: 2rem;
    padding: 0 0.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#menu .menu-inner .menu-btn span{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    display: block;
    text-align: center;
}

#menu .menu-inner .menu-btn:hover {
    cursor: pointer;
}

#menu .menu-inner ul,
#menu .menu-inner ul a {
    color: #411c2e;
    font-size: 1.5rem;
}
.menu-body li{
	 margin-bottom: 30px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.menu-body li {
	line-height: 1.0;
}
#menu .menu-inner ul>li span {
	font-size: 1.8rem;
	font-weight: bold;
}


#menu .menu-inner ul>li>a span {
    height: 16px;
    display: block;
}

.menu-body li a span:hover,.menu-body li a:hover{
    opacity: 0.7;
}

#menu .menu-inner>ul {
    background-color: #edf2c5;
    padding: 40px;
    width: 412px;
}
.menu-body li a{
	display: block;
}

@media only screen and (max-width: 768px) {
    #menu {
    	width: 100%;
        position: fixed;
        top: 10%;
        right: -90%;
        opacity: 0;
    }

    #menu.open {
        right: 0px;
    }

    #menu.active {
        opacity: 1;
    }

    #menu .menu-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
    }

    #menu .menu-inner .menu-btn {
    	width: 11%;
        min-width: 32px;
        font-size: 1.8rem;
        -ms-flex-item-align:start;
        align-self:flex-start;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    #menu .menu-inner .menu-btn span{
        width: 1em;
        padding: 3em 0;
    }

    #menu .menu-inner ul,
    #menu .menu-inner ul a {
        font-size: 1.5rem;
    }

    #menu .menu-inner ul>li>a:hover{
        opacity: 0.7;
    }

    #menu .menu-inner>ul {
        padding: 20px 0 20px 15px;
        width: 90%;
    }

}


/*----------------------------------------
リードテキスト
----------------------------------------*/

.lead {
    margin: 60px auto 0;
	padding: 60px 0;
}
.lead-ttl {
    text-align: center;
    max-width: 1080px;
    margin: 0 auto;
	width: 100%;
}
.pc_lead_img{
	width: 75%;
	margin: 0 auto;
}
.lead_txt {
	text-align: center;
	font-size: 2.3rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	margin-top: 3%;
	margin-bottom: -8.625px;

}
.ttl_txt{
	font-size: 2.3rem;
	line-height: 1.6;
	margin: -8.625px 0;
}

@media only screen and (max-width: 768px) {
    .lead {
        margin: 10% auto 0;
		padding: 5% 5%;
    }

    .lead-ttl {
        width: 100%;
    }
    .lead_txt {
        line-height: 1.6;
		font-size: 1.4rem;
		text-align: left;
		margin-top: 5%;
		margin-bottom: -5.25px;
    }
	.sp_lead_img{
		width: 45%;
		margin: 0 auto;
	}
	.ttl_txt{
	font-size: 1.4rem;
	}
}


/*----------------------------------------
セクションtitle共通
----------------------------------------*/
.section_ttl {
	background: #8e1537;
	width: 100%;
	padding: 45px 0;
	margin: 60px 0;
}
.section_ttl_inner{
	text-align: left;
	margin-left: 13%;
}
.section_ttl p{
	color: #fff;
	text-align: left;
}
.ttl_txt_trail{
	font-size: 2.3rem;
	font-weight: bold;
	line-height: 1.6;
	margin: -8.625px 0;
	padding: 25px 0;
}
.trail_ttl_img{
	width: 54%;
	margin-bottom: 9px;
}
.section_ttl_img{
	width: 70%;
}
.h3_txt{
	font-size: 2.3rem;
	line-height: 1.0;
	margin-top: 2%;
	margin-left: 6%;
}
.items_ttl{
	font-size: 2.3rem;
	line-height: 1.0;
	text-align: left;
	margin-top: 2%;
}

@media only screen and (max-width: 768px) {
	.ttl_txt_trail{
		font-size: 1.4rem;
		padding: 5% 0;
		letter-spacing: 0.05em;
		margin: -5.25px 0;
	}
	.section_ttl {
		padding: 8% 0;
		margin: 10% 0;
	}
	.section_ttl_inner{
		margin-left: 0;	
	}	
	.h3_sp{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.h3_sp p{
		line-height: 1.0;
	}
	.h3_sp_ttl{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-left: 4%;
	}
	.num_txt{
		font-size: 2.6rem;
		text-align: center !important;
		line-height: 1.2;
	}
	.num_half{
		font-size: 1.4rem;
	}
	.num_step{
		font-size: 1.6rem;
	}
	.sp_h3_txt{
		font-size: 1.8rem;
		margin-top: 5%;
	}
	.items_ttl{
		font-size: 1.8rem;
		line-height: 1.4;
		margin-top: 4%;
	}
	.trail_ttl_img{
		width: 75%;
	}
	.ttl_img_item{
		width: 94%;
	}
}

/*----------------------------------------
What's trail running
----------------------------------------*/
.about_list{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.about_group01{
	margin-bottom: 60px;
}
.about_list01,.about_list02{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 391px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width:100%;
}
.about_group02{
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.about_img{
	max-width: 100%;
	margin-bottom: 30px;
	width: 90%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.about_list01:first-child{
	margin-right: 140px;
}
.about_point_txt{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-line-pack: start;
	align-content: flex-start;
	margin: 15px 0;
	font-size: 1.8rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: bold;
	line-height: 1.4;
}
.about_point_txt img{
	margin-right: 15px;
	max-width: 46px;
	width: 100%;
	max-height: 36px;
}
.about_ttl{
	color: #9d2239;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.4;
}
.about_detail_txt{
	font-size: 1.4rem;
}
.about_detail_line{
	border-bottom: 6px solid #8e1537;
	padding-bottom: 30px;
}


@media only screen and (max-width: 768px) {
	.about_list{
		display: block;
		margin: 0 auto;
	}
	.about_group01,.about_list01,.about_list02{
		margin-bottom: 10%;
	}
	.about_img{
		width: 65%;
		margin: 0 auto 8%;
	}
	.about_list01:first-child{
		margin-right: 0;
	}
	.about_list01,.about_list02{
		max-width: 100%;
	}
	.about_detail_line_sp{
		border-bottom: 6px solid #8e1537;
		padding-bottom: 30px;
	}
}


/*----------------------------------------
1st WEARING
----------------------------------------*/
.wear_cnt{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.wear_sttl{
	font-weight: bold;
	font-size: 2.3rem;
	letter-spacing: 0.05em;
	text-align: center;
}
.wear_btn{
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	border-radius: 5px;
	max-width: 130px;
	width: 100%;
	text-align: center;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	background: #6a876f;
}
.wear_btn a{
	display: block;
	padding: 4px 25px;
	color: #fff;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	border: 1px solid #6a876f;
	border-radius: 5px;
}
/*
.wear_btn:hover{
	opacity: 0.5;
}
*/
.wear_btn a:hover{
	background: #fff;
	color: #6a876f;
}
.wear_img{
	max-width: 533px;
	width: 45%;
	height: 100%;
}
.wear_order01{
	-webkit-box-ordinal-group: 2;
	ms-flex-order: 1;
	order: 1;
}
.wear_order02{
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
}
.wear_order03{
	-webkit-box-ordinal-group: 4;
	-ms-flex-order: 3;
	order: 3;
}
.wear_group01,.wear_group02{
	margin-top: 4.87%;
}
.wear_group01 li,.wear_group02 li{
	margin-bottom: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media only screen and (max-width: 768px) {
	.wear_cnt{
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
	.wear_order02{
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.wear_order01{
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.wear_order03{
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}
	.wear_img{
		max-width: 342px;
		width: 85%;
		height: 100%;
	}
	.wear_sttl{
		font-size: 1.8rem;
	}
	.wear_btn{
		font-size: 1.4rem;
	}
	.wear_group01 li,.wear_group02 li{
		margin-bottom: 10%;
	}
}

/*----------------------------------------
2nd IN BAG
----------------------------------------*/
.bag_group01,.bag_group02{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.bag_group01 li{
	width: 33.33333%;
}
.bag_sttl{
	font-weight: bold;
	font-size: 2.0rem;
}
.bag_btn{
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	border-radius: 5px;
	max-width: 130px; 
	width: 100%;
	text-align: center;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	background: #6a876f;
}
.bag_btn a{
	display: block;
	padding: 4px 25px;
	color: #fff;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	border: 1px solid #6a876f;
	border-radius: 5px;
}
.bag_btn a:hover{
	background: #fff;
	color: #6a876f;
}
.bag_water{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.bag_img01,.bag_img03{
	max-width: 208px;
	width: 100%;
}
.bag_img04{
	max-width: 184px;
	width: 73%;
}
.bag_img05{
	max-width: 184px;
	width: 80%;
}
.bag_main{
	max-width: 450px;
	width: 100%;
}
.bag_img02{
	max-width: 174px;
	max-height: 226px;
}
.bag_detail01{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.bag_detail02{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.bag_water_detail{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 5%;
}
.bag_txt_btn{
	margin-top: 2%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.bag_sttl{
	margin-bottom: 2%;
}
.mountain_arrow{
	max-width: 95px;
	width: 100%;
	height: 100%;
}
.bag_center_img{
	width: 93%;
	margin: 0 auto;
}

@media only screen and (max-width: 768px) {
	.bag_group01,.bag_group02{
		display: block;
		margin: 0 auto;
	}
	.bag_group01 li{
		width: 100%;
		margin-bottom: 8%;
	}
	.bag_group02 li{
		margin-bottom: 10%;
	}
	.bag_detail01{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.bag_detail02{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.bag_water_detail{
		margin-left: 0;
	}
	.bag_water{
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.bag_sttl{
		font-size: 1.8rem;
		text-align: center;
	}
	.bag_btn{
		font-size: 1.4rem;
	}
	.sp_bag{
		margin: 0 auto;
	}
	.sp_bag_img{
		max-width: 324px;
		width: 75%;
		margin: 0 auto;
	}
	.sp_arrow_img{
		max-width: 62px;
		width: 18%;
		margin: 8% auto;
	}
	.bag_txt_btn,.bag_water_detail{
		width: 50%;
	}
	.bag_detail01 img,.bag_detail02 img,.bag_water img{
		margin-right: 4%;
	}
	.bag_img01,.bag_img02,.bag_img03,.bag_img04,.bag_img05{
		max-width: 174px;
		width: 40%;
	}
	.bag_txt_btn{
		margin-top: 0;
	}
}


/*----------------------------------------
3rd LET'S GO RUNNING
----------------------------------------*/

.map_group{
	max-width: 680px;
	width: 100%;
	margin: 0 auto;
}
.mountain_ttl{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.mountain_txt{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.mountain_name{
	font-size: 2.8rem;
	margin-top: 10px;
	letter-spacing: 0.05em;
}
.mountain_txt img{
	width: 100%;
    max-height: 37px;
    max-width: 316px;
}
.mountain_arrow{
	position: absolute;
	left: 0;
}
.mountain_map{
	margin-top: 15px;
}
.map_btn{
	max-width: 280px;
	background: #6a876f;
	margin: 30px auto 0;
	border-radius: 5px; 
	-webkit-transition: 0.5s; 
	-o-transition: 0.5s; 
	transition: 0.5s;
}
.map_btn a{
	display: block;
	color: #fff;
	padding: 10px 70px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	font-size: 2.8rem;
	letter-spacing: 0.07em;
	text-align: center;
	border: 1px solid #6a876f;
	border-radius: 5px;
}
.map_btn a:hover{
	background: #fff;
	color: #6a876f;
}
.mt_mitake{
	margin-bottom: 45px;
}

@media only screen and (max-width: 768px) {
	.mountain_ttl{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		position: static;
	}
	.mountain_arrow{
		position: static;
		left: 0;
	}
	.sp_arrow_map{
		width: 50%;
	}
	.mountain_txt img{
		width: 50%;
		margin-top: 5%;
	}
	.mountain_name{
		font-size: 1.4rem;
		margin-top: 2%;
	}
	.map_btn{
		margin: 5% auto 0;
		line-height: 1.4;
		width: 60%;
	}
	.map_btn a{
		font-size: 1.8rem;
		padding: 5px 50px;
	}
}

/*----------------------------------------
TRAIL RUNNING ITEMS
----------------------------------------*/
.l_items_group li,.s_items_group li{
	margin-bottom: 45px;
	overflow: hidden;
}
.s_items_group li:nth-child(5),.s_items_group li:last-child{
	margin-bottom: 0;
}
.l_items_group li{
	margin-left: auto;
    margin-right: auto;
	width: 60%;
}
.s_items_group{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.s_items_group li{
	width: calc(50% - 10px);
}
.l_items_group li a img,.s_items_group li a img{
	-webkit-transition: -webkit-transform 0.3s linear;
	transition: -webkit-transform 0.3s linear;
	-o-transition: transform 0.3s linear;
	transition: transform 0.3s linear;
	transition: transform 0.3s linear, -webkit-transform 0.3s linear;
	-webkit-transform: scale(1.0);
	    -ms-transform: scale(1.0);
	        transform: scale(1.0);
}
.l_items_group li a:hover img,.s_items_group li a:hover img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.s_items_group{
	margin-bottom: 60px;
	padding: 0 6.5%;
}


@media only screen and (max-width: 768px) {
	.l_items_group li:first-child{
		margin-right: 0;
		width: 100%;
	}
	.l_items_group li:last-child{
		margin-left: 0;
		width: 100%;
	}
	.s_items_group{
		display: block;
	}
	.s_items_group li{
		width: 100%;
	}
	.l_items_group li,.s_items_group li,.s_items_group li:nth-child(5){
		margin-bottom: 8%;
	}
	.s_items_group li:last-child{
		margin-bottom: 0;
	}
	.s_items_group{
		margin-bottom: 10%;
	}

}


/*----------------------------------------
footer
----------------------------------------*/

.f_img img{
	max-width: 675px;
	width: 80%;
    margin: 0 auto;
}
.f_logo img{
	max-width: 290px;
	width: 85%;
    margin: 0 auto;
}
.f_cnt{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.contact{
	margin: 60px auto;
}
.contact_txt,.f_shop dt{
	font-size: 1.4rem;
	margin-bottom: 10px;
	text-align: center;
}
.contact_txt:last-child{
	margin-bottom: 0;
}
.contact_sns{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.contact_sns p{
	line-height: 1.0;
}
.contact_fb{
	margin-right: 10px;
}
.f_logo{
	margin: 60px auto;
}
.f_shop img{
	max-width: 145px;
	width: 100%;
}


@media only screen and (max-width: 768px) {
	.contact_sns{
		display: block;
	}
	.f_logo img{
		max-width: 40%;
		margin: 0 auto;
	}
	.f_logo{
		margin: 10% auto;
	}
	.contact{
		margin: 10% auto;
	}
	.contact_fb{
		margin-bottom: 10px;
	}
}

/*========================================================
▼フッター
========================================================*/

footer {
    text-align: center;
}

footer small {
    width: 100%;
    background: #000;
    color: #fff;
    font-size: 14px;
    line-height: 50px;
    display: block;
}

@media only screen and (max-width: 768px) {
    footer small {
        font-size: 2.6vw;
        line-height: 1.2;
        padding: 10px 0;
    }
}


/*========================================================
▼モーダル
========================================================*/

/*--wear--*/

.remodal_wear,.remodal_map,.remodal_items{
	max-width: 500px;
}
.wear_modal_title{
	font-size: 2.3rem;
	font-weight: bold;
	margin: 30px 0;
	letter-spacing: 0.07em;
}
.wear_modal_txt{
	font-size: 1.8rem;
	text-align: left;
	padding: 0 30px;
	line-height: 1.6;
	margin-bottom: 30px;
}
.wear_modal_btn{
	background: #de7415;
	border-radius: 5px;
	width: 65%;
	margin: 0 auto;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;

}
.wear_modal_btn a{
	font-size: 1.8rem;
	padding: 5px 30px;
	color: #fff;
	display: block;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	letter-spacing: 0.07em;
	border: 1px solid #de7415;
	border-radius: 5px;
}
.wear_modal_btn a:hover{
	background: #fff;
	color: #de7415;
}

/*map*/
.map_modal_title{
	font-size: 1.8rem;
	color: #9d2239;
	margin-bottom: 20px;
	font-weight: bold;
}
.map_modal_txt{
	font-size: 1.6rem;
	line-height: 1.8;
}
.remodal_map dl{
	margin-bottom: 25px;
	text-align: left;
	padding-left: 30px;
}
.map_modal_title span{
	font-size: 2.0rem !important;
	color: #333 !important;
}
.modal_map_img{
	text-align: center;
	width: 70%;
    margin: 0 auto;
}

/*items*/
.remodal_items ul{
	margin-top: 30px;
}
.items_modal_link{
	font-size: 2.0rem;
	font-weight: bold;
	text-align: left;
	margin-bottom: 10px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.items_modal_link a:hover{
	opacity: 0.7;
}

.items_modal_txt{
	font-size: 1.8rem;
	line-height: 1.6;
	text-align: left;
	margin-top: 30px;
}


@media only screen and (max-width: 768px) {
	.wear_modal_title{
		font-size: 2.0rem;	
	}
	.wear_modal_txt,{
		font-size: 1.6rem;
	}
	.wear_modal_btn a{
		font-size: 1.5rem
	}
	.wear_modal_btn{
		width: 76%;
	}
	.map_modal_txt{
		font-size: 1.4rem;
	}
	.map_modal_title span{
		font-size: 1.8rem !important;
	}
	.items_modal_link{
		font-size: 1.8rem;
	}
	.items_modal_txt{
		font-size: 1.6rem;
	}
}

