*{
	margin: 0;
	padding: 0;
	font-family: "Ubuntu", sans-serif;
	box-sizing: border-box;
	text-decoration: none;
}
html, body {
    overflow-x: hidden;
    height: 100%;
}
body{
	margin: 0;
	padding: 0;
	background-color: #fff;
	align-items: center;
}
.site-header{
    padding:10px;
	background-color: black;
}
.header-content{
    font-size:0.5em;
	text-align: center;
    color: white;
}
.header-content h1{
	font-size:20px;
}
.header-content h2{
	font-size:10px;
}

/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn{
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 2;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #333;
	color: #fff;
}

/*----------------------------
  * メニュー本体
  *----------------------------*/
.menu{
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1;
	width: 30%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: black;
}
.menu__item{
	width: 100%;
	height: auto;
	padding: .5em 1em;
	text-align: center;
	color: #fff;
	box-sizing: border-box;
}

.menu a{
	color: white;
	font-size: 2em;
	text-decoration: none;
}
/*----------------------------
  * アニメーション部分
  *----------------------------*/

  /* アニメーション前のメニューの状態 */
.menu{
	pointer-events: none;
	opacity: 0;
	transition: opacity .3s linear;
}
  /* アニメーション後のメニューの状態 */
.menu.is-active{
	pointer-events: auto;
	opacity: 0.5;
}

.main-content{
	height: auto;
	background-color: #fff;
	align-items: center;
	text-align: center;
}
.box-group{
	display: flex;
	flex-direction: column;
}
.image-item div{
	margin: 10px;
	padding: 0;
	z-index: 0;
}
.box1{
	height: 100vh;
	background: url(image/index/PERFORMANCE-FISHING-GEAR.jpg) no-repeat center;
	background-size: cover;
	position:relative;
}

.box2{
	height: 100vh;
	background: url(image/index/SPORTS&OUTDOORS.jpg) no-repeat center;
	background-size: cover;
	position:relative;
}
.box3{
	height: 100vh;
	background: url(image/index/WORKWEAR.jpg) no-repeat center;
	background-size: cover;
	position:relative;
}
.box4{
	height: 100vh;
	background: url(image/index/HEADGEAR-1.jpg) no-repeat center;
	background-size: cover;
	position:relative;
}
.box5{
	height: 100vh;
	background: url(image/index/STREET-WEAR.jpg) no-repeat center;
	background-size: cover;
	position:relative;
}

.image-text{
	position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    padding:0;
    margin:0;
    font-size:60px;
	line-height: 1;
    color: white;
	font-family:'Oswald';
}

.image-item:hover {
	opacity: 0.75; /* 25％ほど透明にする */
}

.about-content{
	margin: 0 5% 0 5%;
}
.about-text{
	margin: 30px;
	padding: 0;
}
.about-text h2{
	text-align: center;
	line-height: 5;
}
.about-text p{
	text-align: justify;
}
.about-gallery{
	margin: 30px;
	padding: 0;
}
.about-gallery img {
	max-width: 48%;
    height: auto;
	margin: 1%;
}

.contact-wrap{
	padding-top: 20px;
	display: flex;
	justify-content: space-around;
}
.address h3,
.Open-Hour h3{
	font-size: 1.5em;
}

.map-wrap{
	margin: 30px;
}
.map{
	position : relative;
    height : 0;
    padding-bottom : 75%; /* 縦横比の指定 */
    overflow : hidden;
	text-align: center;
}
.map iframe,
.map object,
.map embed {
	position : absolute;
    top : 0;
    left : 0;
    width : 100%;
    height : 100%;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}

.footer-content{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap; /* 折返し指定 */
	background-color: black;
	padding: 20px;
	margin: 0;
	text-align: center;
}
.footer-content div{
	width: 50%;
}
.footer-menu{
	display: flex;
	justify-content: center;
	flex-wrap: wrap; /* 折返し指定 */
	}

.list-group{
	display: flex;
	justify-content: center;
	flex-wrap: wrap; /* 折返し指定 */
	color: white;

}

.footer-menu a,
.list-group a
{
	color: white;
	text-decoration: none; 
	padding: 20px;
}

.list-group-item{
	font-size: 20px;
}
.site-footer-copyright h3,
.site-footer-copyright h3 a
{
	/* display: block; */
	padding: 10px;
	font-size: 0.5em;
	color: white;
	text-decoration: none; 
}

.picker a{
	margin-top: 30px;
	color: rgba(57, 54, 57, 0.338);
	text-decoration: none;
}
#picker-img img{
	margin-top: 20px;
}
table#brands-table {
	border: none;
	border-collapse: separate;
	border-spacing: 0;
	margin-top: 30px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	table-layout: fixed;
	width: 80%;
}

table#brands-table th,
table#brands-table td {
	border-bottom: 1px solid #DDD;
	font-size: 0.85em;
	line-height: 1.5;
	padding: 15px;
	vertical-align: middle;
}


/*ウィンドウサイズが 768px以内の場合に上書きされる*/
@media screen and (max-width: 768px) {
	
	.box1{
		padding: 0;
		margin: 0;
		height: 40vh;
		background: url(image/index/PERFORMANCE-FISHING-GEAR.jpg) no-repeat center;
		background-size: cover;
		position: relative;
	}
	.box2{
		padding: 0;
		margin: 0;
		height: 40vh;
		background: url(image/index/SPORTS&OUTDOORS.jpg) no-repeat center;
		background-size: cover;
		position: relative;
	}
	.box3{
		padding: 0;
		margin: 0;
		height: 40vh;
		background: url(image/index/WORKWEAR.jpg) no-repeat center;
		background-size: cover;
		position: relative;
	}
	.box4{
		padding: 0;
		margin: 0;
		height: 40vh;
		background: url(image/index/HEADGEAR-1.jpg) no-repeat center;
		background-size: cover;
		position: relative;
	}
	.box5{
		padding: 0;
		margin: 0;
		height: 40vh;
		background: url(image/index/STREET-WEAR.jpg) no-repeat center;
		background-size: cover;
		position: relative;
	}
	.image-text{
		position: absolute;
		top:50%;
		left:50%;
		transform: translate(-50%,-50%);
		padding:0;
		margin:0;
		font-size:45px;
		color: white;
		font-family:'Oswald';
	}

	.about-gallery img {
		max-width: 100%;
		height: auto;
	}

	table#brands-table,
	table#brands-table caption,
	table#brands-table tbody,
	table#brands-table tfoot,
	table#brands-table tr,
	table#brands-table th,
	table#brands-table td {
    display: block;
    width: 100% !important;
	}

	table#brands-table th,
	table#brands-table td {
    	padding-left: 0;
    	padding-right: 0;
	}

	table#brands-table th {
    	display: none;
	}

	table#brands-table td {
	    border: none;
	    /* text-align: left; */
	}

	table#brands-table td {
 		border-bottom: 1px solid #DDD;
	}

	table#brands-table td:last-child {
    	border-bottom: 2px solid #DDD;
	}

	.address h3,
.Open-Hour h3{
	font-size: 1.2em;
}

	.map{
		width: 100%;
	}

	.footer-menu a,
	.list-group a{
		width: 50%;
	}
	
	.site-footer-copyright h3,
	.site-footer-copyright h3 a{
		text-align: center;
	}
.menu{
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: black;
}
}
