@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;1,500&family=Noto+Sans+JP:wght@400;500&display=swap');

* {
	margin: 0;
	padding: 0;	
}

img {
	border: none;
	vertical-align: top;	
}
table {
	border-collapse: collapse;	
}
html {
	overflow-y: scroll;
}
body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 15px;
	background: #FFF;
	color: #333;	
}
p {
	line-height: 1.7;	
}
.contents_area {
	overflow: hidden;	
}
.contents_area.open {
	position: fixed;
    width: 100%;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	opacity: 0;
	 animation: fadeIN 1s forwards;
	 animation-delay: 0.5s;
}
.header_inner,
.drawer_header {
	max-width: 1200px;
	margin: 0 auto;
	padding: 25px 20px 70px;
}
.header_trigger {
	display: flex;
	
	align-items: center;
	cursor: pointer;
}
.header_trigger_bar {
	width: 30px;
	height: 30px;
	position: relative;
	margin-right: 12px;
}
.header_trigger_bar span {
	display: block;
	width: 30px;
	height: 2px;
	background: #3c3c3c;
	position: absolute;
	top: 9px;
	left: 0;
	transition: all 0.2s;
}
.header_trigger_bar span:nth-child(2) {
	top: 19px;
}
.open .header_trigger_bar span:nth-child(1) {
	transform: translateY(4px) rotate(-45deg);
}
.open .header_trigger_bar span:nth-child(2)  {
  transform: translateY(-6px) rotate(45deg);
}


.header_trigger_txt {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 16px;
	
}
.drawer_menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #FFF;
	z-index: 5000;
	display: none;
	box-sizing: border-box;
}
.drawer_outer {
	height: calc(100% - 50px);
	box-sizing: border-box;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 30px;
	overflow: auto;
}
.drawer_hdr {
	margin-bottom: 50px;
	padding-bottom: 25px;
	border-bottom: 1px solid #A7A7A7;	
}

.drawer_hdr h1 {
	width: 300px;
	margin: 0;
	padding: 0;	
}
.drawer_hdr h1 img {
	width: 100%;
	height: auto;	
}

.drawer_inner li {
	list-style: none;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 32px;
}
.drawer_inner li a {
	color: #333;
	text-decoration: none;
	padding: 12px 0;
	display: inline-block;
	position: relative;
}
.drawer_inner li a::after {
	content: '';
	display: block;
	height: 2px;
	width: 100%;
	transform-origin: left center;
	background: #333;
	position: absolute;
	left: 0;
	bottom: 10px;
	transform: scaleX(0)
}
.drawer_inner li a:hover::after {
	animation: navHover 0.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes navHover {
0% {
	transform: scaleX(0)
}
 100% {
	transform: scaleX(1)
}
}
footer {
	clear: both;
	padding: 0 40px;
}
footer li {
	list-style: none;	
}
footer a {
	color: #3c3c3c;
	text-decoration: none;
	padding: 0 3px;
}
footer li a:hover {
	background: #3c3c3c;
	color: #fff;	
}
.footer_inner {
	border-top: 1px solid #BDBDBD;
	max-width: 960px;
	margin: 0 auto;
	padding: 50px 0 20px;
}

.footer_flex {
	display: flex;
	margin-bottom: 60px; 
}

.footer_flex h1 {
	width: 150px;
	margin-right: 190px; 	
}
.footer_flex h1 img {
	width: 100%;
	height: auto;	
}
.footer_flex > ul {
	
	display: flex;
}
.footer_flex > ul > li {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	margin-right: 60px;
	font-size: 120%;
}
.footer_flex ul li ul {
	padding-top: 10px;	
}
.footer_flex ul li ul li {
	font-size: 13px;
	font-weight: normal;
	margin: 15px 0;
}
.copyright_flex {
	
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	font-size: 13px;
}
.copyright_flex ul {
	
	display: flex;
}
.copyright_flex li {
	margin-right: 30px;
}

.copyright {
	font-family: 'Montserrat', sans-serif;
}


.caption_lead {
	margin: 0 0 50px;	
}
h4.subtitle {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
	font-weight: 400;
	margin: 0 0 45px;	
	background: #A2A9AD;
	color: #FFF;
	padding: 8px 20px 10px;
}


.fadeInObj {
	opacity: 0;	
}
h2.fadeInActive,
.products_flex .fadeInActive,
.story_flex .fadeInActive,
.feature .fadeInActive,
.safety .fadeInActive {
    animation: fadeIN 1s forwards;
}

@keyframes fadeIN {
0% {
	opacity: 0;
}
100% {
	opacity: 1;
}
}



@media(max-width: 767px) {
	
.header_inner,
.drawer_header {
    padding: 25px 20px 30px;
}
.drawer_hdr {
	margin-bottom: 25px;
	padding: 0 10px 15px;
}
.drawer_hdr h1 {
	width: 60%;
}
.drawer_hdr h1 img {
	vertical-align: baseline;	
}
.drawer_inner li a {
	padding: 10px 0;
}

.drawer_inner {
	min-height: inherit;	
}
.drawer_inner li {
	font-size: 7vw;
}
	
}





/* ===== PRODUCTS ===== */

section.products {
	padding: 60px 0 130px;
}
section.products h2,
.module_products h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	text-align: center;
	margin: 0 0 40px;
	font-size: 40px;
}
section.products .module_products h2 {
	display: none;	
}

.module_products {
	margin-top: 100px;
	margin-bottom: 100px;	
}
section.products .module_products {
	margin-top: 40px;
}
.products_flex {
	max-width: 960px;
	margin: 0 auto 60px;
	padding: 0 20px;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
.products_flex_item {
	width: 25%;
	text-align: center;	
}
.products_flex .products_flex_item:nth-child(2) {
	animation-delay: 0.2s;	
}
.products_flex .products_flex_item:nth-child(3) {
	animation-delay: 0.4s;	
}
.products_flex .products_flex_item:nth-child(4) {
	animation-delay: 0.6s;	
}

.products_flex_item img {
	width: 100%;
	height: auto;	
}
.products_item_caption .vol {
	font-size: 120%;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	margin: 0 0 5px;
}
.products_item_caption .price {
	margin-bottom: 15px;	
}

.buy_btn,
.viewmore {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	letter-spacing: 1px;
}
.buy_btn {
	width: 160px;
	margin: 0 auto;
}
.viewmore {
	width: 180px;
	margin: 0 auto;	
}

.buy_btn a,
.viewmore a {
	display: block;
	background: #3c3c3c;
	border: 1px solid #3c3c3c;
	color: #fff;
	text-decoration: none;
	text-align: center;
	padding: 10px 0;
	position: relative;
	transition: all 0.5s;
}
.buy_btn a:hover,
.viewmore a:hover {
	color: #3c3c3c;
	background: #FFF;	
}

.viewmore a::after {
	content: '';
	display: block;
	width: 9px;
	height: 9px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	top: calc(50% - 5px);
	right: 15px;	
}
.viewmore a:hover::after {
	border-top: 1px solid #3c3c3c;
	border-right: 1px solid #3c3c3c;
}

.anchor {
	padding-top: 50px;
	margin-top: -50px;
}
sup,sub {
	font-size: 70%;	
}



.pagetop {
	width: 60px;
	height: 60px;
	position: fixed;
	background: #333;
	right: 30px;
	bottom: 30px;
	cursor: pointer;
	border: 1px solid rgba(255,255,255,0.2);
	display: none;
	z-index: 100;
}
.pagetop:after {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	border-top: 2px solid #FFF;
	border-left: 2px solid #FFF;
	position: absolute;
	top: 26px;
	left: 23px;
	transform: rotate(45deg);
}


@media(max-width: 767px) {
body {
	font-size: 14px;	
}
.caption_lead {
	margin: 0 0 30px;	
}
section.products {
    padding: 0px 0 100px;
}

section.products h2 {
	margin: 0;
	font-size: 28px;
}
section.products .module_products h2 {
	font-size: 28px;
}
.module_products {
	margin-bottom: 100px;	
}

.products_flex {
	display: block;
	padding: 0 15px;
	margin-bottom: 100px;
}
section.products .products_flex {
	margin-bottom: 40px;
}

.products_flex:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.products_flex_item {
	width: 48%;
	float: left;
	margin: 0 0 30px;
}

.products_flex .products_flex_item:nth-child(even) {
	float: right;
}
.products_flex .products_flex_item:nth-child(odd) {
	clear: both;
}
.buy_btn {
	width: 100%;
	box-sizing: border-box;
	padding: 0 10px;
}
.buy_btn a,
.viewmore a {
	padding: 12px 0;
}
.products_item_caption .vol {
	font-size: 18px;	
}
.products_item_caption .price {
	font-size: 14px;	
}


footer {
	padding: 0 20px;	
}
.footer_inner {
	padding: 25px 0 15px;	
}
.footer_flex h1 {
	padding: 0;
	margin: 0 0 20px;	
}
.footer_flex,
.footer_flex > ul,
.copyright_flex {
	display: block;	
}
.footer_flex > ul > li {
	font-size: 15px;
	float: left;
	width: 50%;
	margin: 0 0 20px;	
}
.footer_flex > ul::after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.footer_flex {
	margin: 0 0 20px;
	border-bottom: 1px solid #BDBDBD;
}
.copyright_flex {
	clear: both;	
}
.copyright_flex ul {
	display: block;	
}
.copyright_flex ul li {
	float: left;
	width:33%;
	margin: 0 0 10px;
	font-size: 10px;
}
.copyright_flex ul li:last-child {
	width: 60%;	
}
.copyright {
	clear: both;
	font-size: 10px;
	padding-top: 10px;
}



.pagetop {
	width: 45px;
	height: 45px;
	right: 20px;
	bottom: 20px;
}

.pagetop:after {
    width: 10px;
    height: 10px;
    top: 18px;
    left: 17px;
}



h4.subtitle {
	font-size: 18px;
	margin: 0 0 25px;	
	padding: 6px 10px 8px;
}
}




@media(max-width: 320px) {
.buy_btn a,
.viewmore a {
	padding: 8px 0;
}	
}

}


@media(min-width: 768px) {

.pcObj {
	display: block;	
}
}
.spObj {
	display: none;
}
br.spbr {
	display: none;
}
@media(max-width: 768px) {
br.spbr {
	display: block;
}
br.pcbr {
	display: none;
}
.spObj {
	display: block;
}
.pcObj {
	display: none;	
}
}

.transition_cover {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:#FFF;
	z-index: 5000;
}