@charset "UTF-8";
/* CSS Document */

body {
	font-family: Arial, Helvetica, "sans-serif";
	width: auto;
	color: #444;
}

/* Main */

.main-v {
	margin-top: 50px;
	padding-bottom: 50px;
	display: flex;
	background-image: url("../image/Neko-Yamata_BG.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: gray;
	height: 75vh;
	justify-content: center;
	align-items: center;
}

.main-v_item {
	color: #fff;
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.5)
}

.main_h1 {
	font-size: 28px;
}

.sub_h1 {
	margin: 10px;
	font-size: 14px;
}

/* About */

.about {
	background-image: url("../image/Edo_Meiro2_BGW.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #9BB0B1;
	width: auto;
	height: 800px;
}

.about h1 {
	text-align: center;
	padding-top: 90px;
	font-size: 24px;
	font-weight: 100;
	letter-spacing: .1rem;
	color: #888;
}

.about_inner {
	display: flex;
	padding-top: 50px;
	margin: 0 auto;
	width: 80%;
	height: 650px;
	flex-direction: column;
	align-items: center;
}

@media screen and (min-width: 600px) {
	.about_inner {
		display: flex;
		padding-top: 50px;
		width: 50%;
		height: 650px;
		justify-content: space-between;
		align-items: center;
	}
}

@media screen and (min-width: 800px) {
	.about_inner {
		display: flex;
		padding-top: 50px;
		width: 100%;
		height: 650px;
		justify-content: space-between;
		align-items: center;
	}
}


.about_item {
	width: auto;
}

.about_img {
}

.about_img img {
	width: 100%;
}

.about_text {
	width: 100%;
	padding-top: 20px;
}

.about_text h2 {
	font-size: 18px;
	padding-bottom: 10px;
}

.about_text p {
	width: 100%;
	line-height: 1.5em;
}

@media screen and (min-width: 800px) {
	.about_item {
		display: flex;
		width:720px;
		align-items: flex-end;
	}

	.about_img img {
		width: 400px;
		height: 400px;
		margin-right: 10px;
	}

	.about_text {
		width: 300px;
		margin-left: 10px;
		align-items: flex-end;
	}

	.about_text h2 {
		font-size: 18px;
		padding-bottom: 10px;
	}

	.about_text p {
		line-height: 1.5em;
	}
}



/* Gallery */

.gallery {
	background-color: #ECECEC;
	width: auto;
	padding-bottom: 100px;
}

.gallery h1 {
	text-align: center;
	padding-top: 90px;
	font-size: 24px;
	font-weight: 100;
	letter-spacing: .1rem;
	color: #888;
}

.gallery_inner {
	display: flex;
	padding-top: 50px;
	margin: 0 auto;
	width: 80%;
	flex-direction: column;
	align-items: center;
}

.gallery-item {
	display: block;
	width: 100%;
	max-width: 300px;
}

.gallery-item img {
	display: block;
	margin-bottom: 5px;
	width: 100%;
	cursor: pointer;
}

@media screen and (min-width: 600px) {
	.gallery_inner_items {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: center;
	}
	
	.gallery-item {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 45%;
		margin: 5px;
		border-radius: 5px;
		background-color: white;
	}
	.gallery-item img {
		object-fit: contain;
		width: 95%;
		max-width: 290px;
		height: auto;
		max-height: 290px;
		padding: 5px;
		margin: auto;
		cursor: pointer;
	}
}

@media screen and (min-width: 1000px) {
	.gallery_inner_items {
		display: flex;
		width: 1000px;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: center;
	}
}

.gal-more {
	margin: 0 0 0 auto;
	padding-top: 10px;
}

.gal-more a {
	font-size: 18px;
	font-weight: bold;
	color: #888;
}

.stickarrow {
	display: inline-block;
	width: 28px;
	height: 8px;
	border-bottom: 3px solid #888;
	border-right: 4px solid #888;
	transform: skew(45deg);
}

/* Goods */

.goods {
	background-color: #7B899B;
	width: auto;
	padding-bottom: 100px;
}

.goods h1 {
	text-align: center;
	padding-top: 90px;
	font-size: 24px;
	font-weight: 100;
	letter-spacing: .1rem;
	color: #fff;
}

.goods-ttl-txt {
	display: flex;
	width: 80%;
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	justify-content: center;
	line-height: 1.4rem;
	color: #fff;
}

.goods_inner {
	display: flex;
	padding-top: 50px;
	margin: 0 auto;
	width: 80%;
	flex-direction: column;
	align-items: center;
}

.goods-item {
	display: block;
	width: 95%;
	max-width: 300px;
	padding: 5px;
	margin-bottom: 10px;
	border-radius: 5px;
	background-color: #fff;
	}

.goods-item img {
	object-fit: contain;
	margin-bottom: 5px;
	width: 100%;
	cursor: pointer;
	}

@media screen and (min-width: 600px) {
	.goods_inner_items {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: center;
	}
	
	.goods-item {
		display: block;
		justify-content: center;
		align-items: center;
		width: 45%;
		margin: 5px;
		border-radius: 5px;
		background-color: white;
	}
}

@media screen and (min-width: 1000px) {
	.goods_inner_items {
		display: flex;
		width: 1000px;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: center;
	}
}

.goods-text {
		line-height: 1.4rem;
		margin-left: 5px;
}

.goo-txtex {
	font-size: 80%;
}

.goo-price {
	color: #000;
	font-size: 120%;
	font-weight: 800;
	text-align: right;
	margin: 5px;
}

.goo-price span {
	font-size: 50%;
}

.goo-soldout {
	color: #DB2326;
	font-weight: 800;
	text-align: right;
	margin: 5px;
}

.goo-more {
	margin: 0 0 0 auto;
	padding-top: 10px;
}

.goo-more a {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}

.goo-stickarrow {
	display: inline-block;
	width: 28px;
	height: 8px;
	border-bottom: 3px solid #fff;
	border-right: 4px solid #fff;
	transform: skew(45deg);
}

.goo-no {
	display: flex;
	padding: 20px;
}

.goo-no-now {
	margin-left: 30px;
	margin-right: 30px;
}

.goo-no-now a {
	font-size: 22px;
	font-weight: bold;
	color: #fff;
}

.goo-no-next {
	display: inline-block;
 	vertical-align: middle;
  	color: #fff;
  	line-height: 1;
  	position: relative;
  	width: 1.1em;
  	height: 1.1em;
  	transform: translateX(-25%) rotate(45deg);
}

.goo-no-next::before, .goo-no-next::after {
	content: '';
  	position: absolute;
  	background: currentColor;
  	border-radius: 0.2em;
}

.goo-no-next::before {
	top: 0;
  	left: 0;
  	right: 0;
  	height: 0.2em;
}

.goo-no-next::after {
	top: 0;
  	right: 0;
  	bottom: 0;
  	width: 0.2em;
}

.goo-no-prev {
	display: inline-block;
 	vertical-align: middle;
  	color: #fff;
  	line-height: 1;
  	position: relative;
  	width: 1.1em;
  	height: 1.1em;
  	transform: translateX(25%) rotate(-135deg);
}

.goo-no-prev::before, .goo-no-prev::after {
	content: '';
  	position: absolute;
  	background: currentColor;
  	border-radius: 0.2em;
}

.goo-no-prev::before {
	top: 0;
  	left: 0;
  	right: 0;
  	height: 0.2em;
}

.goo-no-prev::after {
	top: 0;
  	right: 0;
  	bottom: 0;
  	width: 0.2em;
}

/* Footer */

.footer {
	background-color: #666;
	width: 100%;
	height: 60px;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
}

.footer_inner {
	padding: 0 5vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: inherit;
	position: relative;
	
}

.footer_inner p {
	font-size: 9px;
	color: #fff;
}


.footer_icons {
	display: flex;
	justify-content: end;
}

.footer_icons div {
	padding-left: 25px;
}


/* Header */

.header {
	background-color: white;
	width: 100%;
	height: 50px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

.header_inner {
	padding: 0 5vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: inherit;
	position: relative;
}


.header_title a {
	color: #444444;
	font-size: 20px;
}

/* Header Navi */

.header_nav {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	transform: translateX(100%);
	background-color: #fff;
	transition: ease .4s;
}

@media screen and (min-width: 960px) {
	.header_nav {
		position: static;
		transform: initial;
		background-color: inherit;
		height: inherit;
		display: flex;
		justify-content: end;
		width: 60%;
	}
}
	
@media screen and (min-width: 960px) {
	.nav_items {
		width: 100%;
		display: flex;
		align-items: center;
		height: inherit;
		justify-content: space-between;
	}
}

.nav-items {
	padding-top: 250px;
	padding-bottom: 200px;
}

@media screen and (min-width: 960px) {
	.nav-items {
		padding-top: inherit;
		padding-bottom: inherit;
	}
}

/* Navi Links */

.nav-items_item a {
	color: black;
	width: 100%;
	display: block;
	text-align: center;
	font-size: 20px;
	margin-bottom: 24px;
}

.nav-items_item:last-child a {
	margin-bottom: 0;
}

@media screen and (min-width: 960px) {
	.nav-items_item a {
		margin-bottom: 0;
		font-size: 14px;
	}
}

/* Hamburger Menu */

.header_hamburger {
	width: 48px;
	height: 100%;
}

.hamburger {
	background-color: transparent;
	border-color: transparent;
	z-index: 9999;
}

@media screen and (min-width: 960px) {
	.hamburger {
		display: none;
	}
}

/* Hamburger Menu Line */

.hamburger span {
	width: 100%;
	height: 1px;
	background-color: #000;
	position: relative;
	transition: ease .4s;
	display: block;
}

.hamburger span:nth-child(1) {
	top: 0;
}

.hamburger span:nth-child(2) {
	margin: 8px 0;
}

.hamburger span:nth-child(3) {
	top: 0;
}

/* Hamburger Menu Click Style */

.header_nav.active {
	transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
	top: 5px;
	transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	top: -13px;
	transform: rotate(-45deg);
}

