@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&family=Noto+Sans+JP:wght@400;600&display=swap');

/*============================================================
	RESET
*/
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: transparent;
	background-image: none;
	background-position: 0 0;
	background-repeat: no-repeat;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	font-style: normal;
	font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
	line-height: inherit;
	color: inherit;
}
ul {
	list-style-type: none;
}
a {
	outline: 0;
	cursor: pointer;
}
img {
	display: block;
	width: 100%;
	height: auto;
}
button {
	outline: 0;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-decoration: none;
	cursor: pointer;
}
table {
	border-collapse: collapse;
}

/*============================================================
	ICON
*/
@font-face {
	font-family: 'icon';
	src: url('../fonts/mini/icon.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
	font-family: 'icon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.icon-arrow-link:before {
  content: "\e900";
}
.icon-arrow-next:before {
  content: "\e901";
}
.icon-arrow-prev:before {
  content: "\e902";
}
.icon-cart:before {
  content: "\e903";
}
.icon-facebook:before {
  content: "\e904";
}
.icon-instagram:before {
  content: "\e905";
}
.icon-youtube:before {
  content: "\e906";
}

/*============================================================
	BODY
*/
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}
.body {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 100px 0 0 0;
	min-height: 100vh;
	min-height: calc(var(--vh, 1vh) * 100);
}
.content {
	flex: 1;
}
.en {
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
}
.container {
	margin: 0 auto;
}
@media screen and (max-width: 820px) {
	.body {
		padding: 50px 0 0 0;
	}
}

/*============================================================
	[VISIBLE]
*/
@media screen and (min-width: 768px) {
	.size-check-sp {
		display: none;
	}
	.visible-sp {
		display: none;
	}
}
/* SP */
@media screen and (max-width: 767px) {
	.size-check-sp {
		display: block;
	}
	.visible-pc {
		display: none;
	}
}

/*============================================================
	[HIDDEN]
*/
@media screen and (min-width: 768px) {
	.hidden-pc {
		display: none;
	}
}
/* SP */
@media screen and (max-width: 767px) {
	.hidden-sp {
		display: none;
	}
}

/*============================================================
	HEADER
*/
header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	padding: 0 50px;
	width: 100%;
	height: 90px;
	background-color: rgba(255,255,255,0.9);
}
header a {
}
header h1 {
	flex-basis: 260px;
}
header h1 a {
	display: block;
}
header h1 .sp {
	display: none;
}
header nav {
	flex: 1;
	display: flex;
	align-items: center;
}
header .nav-content {
	flex: 1;
	display: flex;
	padding: 0 2.2vw;
	font-weight: 500;
	font-size: 14px;
}
header .nav-content li {
	flex-basis: 25%;
	display: flex;
	justify-content: center;
}
header .nav-content li a {
	display: block;
}
header .nav-social {
	display: flex;
	font-size: 30px;
	line-height: 30px;
}
header .nav-social li {
	padding: 0 0 0 10px;
}
header .nav-social li:first-child {
	padding: 0;
}
.os-pc header .nav-content li a,
.os-pc header .nav-social li a {
	transition: opacity 0.3s ease;
}
.os-pc header .nav-content li a:hover,
.os-pc header .nav-social li a:hover {
	opacity: 0.6;
}
@media screen and (max-width: 980px) {
	header h1 {
		flex-basis: 142px;
	}
	header h1 .pc {
		display: none;
	}
	header h1 .sp {
		display: block;
	}
}
@media screen and (max-width: 820px) {
	header {
		padding: 0 15px;
		height: 50px;
	}
	header h1 {
		flex-basis: 100px;
	}
	header nav {
		justify-content: flex-end;
	}
	header .nav-content {
		display: none;
	}
	header .nav-social {
		padding: 2px 40px 0 0;
		font-size: 24px;
		line-height: 24px;
	}
	header .nav-social li {
		padding: 0 0 0 6px;
	}
}

/*============================================================
	MEGAMENU OPENER
*/
.megamenu-opener {
	display: none;
	position: fixed;
	z-index: 120;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
}
.megamenu-opener i {
	position: absolute;
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -10px;
	width: 20px;
	height: 1px;
	background-color: #000;
	transition: all 0.2s ease;
}
.megamenu-opener i:nth-child(1) {
	margin-top: -6px;
}
.megamenu-opener i:nth-child(2) {
	margin-top: 0;
}
.megamenu-opener i:nth-child(3) {
	margin-top: 6px;
}
.megamenu-opened .megamenu-opener i:nth-child(1) {
	margin-top: 0;
	transform: rotate(45deg);
}
.megamenu-opened .megamenu-opener i:nth-child(2) {
	opacity: 0;
}
.megamenu-opened .megamenu-opener i:nth-child(3) {
	margin-top: 0;
	transform: rotate(-45deg);
}
@media screen and (max-width: 820px) {
	.megamenu-opener {
		display: block;
	}
}

/*============================================================
	MEGAMENU
*/
.megamenu {
	display: none;
	position: fixed;
	z-index: 110;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: rgba(255,255,255,0.9);
	font-size: 28px;
	text-align: center;
	overflow: hidden;
	transition: all 0.3s ease;
}
.megamenu-opened .megamenu {
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
}
.megamenu .scroll {
	width: 100%;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	overflow-y: auto;
}
.megamenu .outer {
	display: table;
	width: 100%;
	height: 100%;
}
.megamenu .inner {
	display: table-cell;
	vertical-align: middle;
}
.megamenu .nav-content li {
	padding: 20px 0;
}
@media screen and (max-width: 820px) {
	.megamenu {
		display: block;
	}
}

/*============================================================
	FOOTER
*/
footer {
}
footer small {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	background-color: #000;
	font-size: 14px;
	color: #fff;
}
@media screen and (max-width: 767px) {
	footer small {
		height: 60px;
		font-size: 11px;
	}
}

/*============================================================
	SUBHEAD
*/
.subhead {
	text-align: center;
}
.subhead .en {
	font-size: 36px;
	line-height: 1.3;
}
.subhead p {
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 1px;
}
@media screen and (max-width: 820px) {
	.subhead .en {
		font-size: 32px;
	}
}

/*============================================================
	FORM
*/
input[type="text"],
input[type="password"],
textarea {
	display: block;
	padding: 4px 8px;
	width: 100%;
	background-color: #fff;
	border: 1px solid #999;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-weight: normal;
	line-height: normal;
	resize: none;
	-webkit-appearance: none;
	appearance: none;
}
select {
	position: relative;
	overflow: hidden;
	display: block;
	vertical-align: middle;
	margin: 0;
	padding: 4px 44px 4px 8px;
	width: 100%; height: auto;
	border: 1px solid #999;
	outline: 0;
	background: transparent;
	appearance: none;
	-webkit-appearance: none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	cursor: pointer;
	line-height: normal;
	background: #ffffff url(../img/mini/form_select.png) 100% 50% no-repeat;
}
button {
	margin: 0; padding: 0;
	border: 0;
	background: transparent;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
input[type="checkbox"],
input[type="radio"] {
	position: absolute;
	display: inline-block;
	margin: 0; padding: 0;
	border: 0;
	background: transparent;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	opacity: 0;
}
input[type="checkbox"] + span {
	display: inline-block;
	position: absolute;
	top: 50%; left: 0;
	margin-top: -10px;
    width: 20px; height: 20px;
	background: transparent url(../img/mini/form_checkbox.png) 0 0 no-repeat;
	-webkit-background-size: 20px 40px;
	background-size: 20px 40px;
}
input[type="checkbox"]:checked + span {
	background-position: 0 -20px;
}
input[type="radio"] + span {
	display: inline-block;
	position: absolute;
	top: 50%; left: 0;
	margin-top: -10px;
    width: 20px; height: 20px;
	background: transparent url(../img/mini/form_radio.png) 0 0 no-repeat;
	-webkit-background-size: 20px 40px;
	background-size: 20px 40px;
}
input[type="radio"]:checked + span {
	background-position: 0 -20px;
}
.label-checkbox {
	position: relative;
	display: inline-block;
	padding: 0 0 0 26px;
	cursor: pointer;
}

/*============================================================
	[汎用] ボタン
*/
.btn {
	display: flex;
	justify-content: center;
	align-items: center;
}
.btn a {
	display: block;
	padding: 15px 20px 17px 20px;
	border: 2px solid #000000;
	text-align: center;
	font-size: 16px;
	line-height: 1;
	color: #333333;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.btn a span {
	position: relative;
	display: inline-block;
	padding: 0 22px 0 0;
}
.btn a span i {
	position: absolute;
	top: 50%; right: 0;
	margin: -7px 0 0 0;
	font-size: 16px;
	line-height: 1;
	color: #fb0f0c;
}
.btn a:hover {
	background: #000000;
	color: #ffffff;
}
@media screen and (max-width: 820px) {
	.btn a {
		padding: 12px 15px 13px 15px;
		border: 1px solid #000000;
		font-size: 14px;
		line-height: 1;
	}
	.btn a span {
		padding: 0 20px 0 0;
	}
	.btn a span i {
		margin: -6px 0 0 0;
		font-size: 13px;
		line-height: 1;
	}
}