@charset "UTF-8";
/* CSS Document */

/* ----------------------------------
Content
---------------------------------- */
body {
	color: #666;
}
h2 {
	margin-bottom: 1rem;
	color: #444;
	width: 100%;
	position: relative;
}
.pagelink {
	padding-top: 125px;
	margin-top: -125px;
}
.bg-gray {
	background-color:#f5f5f5;
}
.badge {
	font-family: -apple-system, "BlinkMacSystemFont", "Helvetica Neue", Helvetica, "Arial", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
@media (max-width: 768px) {
	.display-3, .display-4, .display-5 {
		font-size: 6vw;
	}
}
@media (max-width: 576px) {
	.jumbotron {
		padding: 2rem 0;
		}
	h2 {
		font-size: 6vw;
		}
	.h3, .h5 {
		font-size: 4vw;
		}
	.lead {
		font-size: 100%;
		}
}

/* ----------------------------------
Font
---------------------------------- */
.wf-sawarabimincho { font-family: "Sawarabi Mincho"; }
/* ----------------------------------
Browser
---------------------------------- */
.win nav {
	font-weight: bold;
}
/* ----------------------------------
Carousel
---------------------------------- */
.carousel-indicators {
	justify-content: left;
	bottom: inherit;
	margin-top: 1rem;
	margin-right: 10%;
	margin-left: 10%; 
}
.carousel-indicators li {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

/* ----------------------------------
Navbar
---------------------------------- */
.navbar-dark .navbar-toggler {
	border-color: rgba(0,0,0,0);
}
.navbar .nav-item .nav-link::before {
	border-bottom-width: 0;
	transition: width .2s;
}

/* ----------------------------------
Link
---------------------------------- */
a {
	color: #888;
}
a:hover {
	color: #333;
}

/* ----------------------------------
List
---------------------------------- */
.list-decimal, .list-asterisk {
	counter-reset: item;
	list-style-type: none;
	padding-left: 1em;
}
ol ol {
	padding-left: 1em;
}
.list-decimal li, .list-asterisk li {
	text-indent: -2em;
	padding-left: 2em;
}
.list-decimal li:before {
	counter-increment: item;
	content: '('counter(item)')';
	padding-right: .5em;
	font-weight: bold;
	color: #888;
}
.list-asterisk li:before {
	counter-increment: item;
	content: '*';
	padding-right: .5em;
	font-weight: bold;
	color: #888;
}

/* ----------------------------------
main visual
---------------------------------- */
.mv {
	background-size: contain;
	background-position: top right;
	background-repeat: no-repeat;
	background-attachment: fixed;
	margin-bottom: 0;
	color: #999;
	background-color: #000;
	background-image: url(../img/mv.jpg);
	text-shadow: 0px 1px 5px rgba(0,0,0,0.7);
}
.mv div {
	height: 400px;
}
.mv h1 {
	color: #fff;
}
@media (max-width: 992px) {
	.mv {
		background-size: auto 400px;
	}
	.mv div {
		height: 200px;
	}
}

/* ----------------------------------
product
---------------------------------- */
.snip {
	position: relative;
	overflow: hidden;
	min-width: 100%;
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	background-color: #efe9e6;
}
.snip img {
	max-width: 100%;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.snip:hover img,
.snip.hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.snip h3,
.snip p {
	color: #888;
	display: block;
}
.snip a {
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: absolute;
	z-index: 1;
}
.product-link {
    top: 0;
}
@media (max-width: 992px) {
	.snip img {
		right: -30%;
	}
}