﻿@charset "UTF-8";
@import "base.css";
@import url('https://fonts.googleapis.com/css2?family=Allison&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 16px;
  -webkit-text-size-adjust: none;
}
header, section, footer, aside, nav, main, article, figure {
  display: block;
}
img {
  vertical-align: bottom;
}
a {
  color: #000;
}
a:hover, a:active {
  text-decoration: none;
}
table {
  width: 100%
}
p {
  margin: 0 0 1.5em;
}
.section {
  padding: 0 0 30px;
}
p, dd, td, th, li {
  line-height: 1.3em;
}
#totop {
  position: fixed;
  bottom: 60px;
  right: 50px;
  z-index: 10;
  margin-bottom: 0;
  width: 70px;
}
#totop a {
  display: block;
  transition: all 0.5s;
  -webkit-animation: slide-top 0.8s linear infinite alternate-reverse;
  animation: slide-top 0.8s linear infinite alternate-reverse;
	background: #000;
	position: relative;
	height: 70px;
}
#totop a:after {
	content: '';
	position: absolute;
	width: 0;
height: 0;
border-style: solid;
border-width: 0 15px 15px 15px;
border-color: transparent transparent #ffffff transparent;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
#totop a:hover {
  opacity: 0.7;
}
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.bold {
  font-weight: bold;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
*, *:before, *:after {
  box-sizing: border-box;
  outline: none;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
  color: #000;
  font-family: 'Roboto', sans-serif;
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
}
.container {
  width: 100%;
  padding: 0 5%;
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
h1 {
	display: none;
}
#header {
	background: #fff;
	position: relative;
	padding: 20px 0;
}
#header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	margin: 0;
}
.h_right {
    display: flex;
    align-items: center;
}
.h_right a {
    width: 22px;
    height: 22px;
    display: flex;
	justify-content: center;
	align-items: center;
}
.h_right svg {
	width: 100%;
	height: 100%;
}
.h_right li:not(:last-child) {
	margin-right: 20px;
}
.h_right li {
	position: relative;
}
.h_right li .ttl {
    display: block;
    cursor: pointer;
    width: 22px;
    height: 22px;
}
.h_search {
	position: absolute;
	right: -30px;
	background: #f0f0f0;
	padding: 5px;
	z-index: 5;
	width: 250px;
	display: none;
	top: 34px;
}
.h_search input {
	width: 100%;
	padding: 5px;
	border: none;
	line-height: 1.5em;
}
.h_search .button {
    position: absolute;
    right: 10px;
    background: transparent;
    border: none;
    top: 8px;
	width: 20px;
	height: 20px;
}

.lbl-total-cart {
    position: absolute;
    background: #000;
    color: #fff;
    /* padding: 3px; */
    border: #000;
    border-radius: 25px;
    width: 20px;
    height: 20px;
    text-align: center;
    top: -15px;
    right: -15px;
}

.gnavi {
	display: flex;
}
.submenu {
	position: absolute;
}
.gnavi >li {
	padding: 10px 20px;
}
.gnavi >li>a {
	display: block;
	text-decoration: none;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	position: relative;
	padding: 5px 0;
}
.gnavi >li>a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: #000;
	transition: all 0.3s;
}
.gnavi >li:hover>a:after {
	width: 100%;
}
.submenu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 90px;
    background: #fff;
    padding: 30px 5%;
    z-index: 10;
	display: flex;
	justify-content: center;
	opacity: 0;
	transition: all 0.3s;
	visibility: hidden;
	box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}

    .submenu.about {
        width:auto;
        left:initial;
        padding:10px;
    }

.submenu.show {
	opacity: 1;
	top: 50px;
	visibility: visible;
}

/*.submenu > li {
    width: 250px;
    margin-right: 20px;
	max-width: 20%;
}*/
.submenu > li {
    width: 40%;
    margin-right: 20px;
}

    .submenu.about > li {
        max-width:none;
    }

.submenu > li>a {
	display: block;
	text-decoration: none;
	font-size: 80%;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.2em;
}
.submenu > li>a>p {
	position: relative;
	width: 100%;
	margin: 0 auto 20px;
}
.submenu > li>a>p>img {
    width: 250px;
}
.subsubmenu {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}
.subsubmenu a {
	display: inline-block;
	text-decoration: none;
	text-transform: uppercase;
}
.subsubmenu a:hover {
	text-decoration: underline;
}
.subsubmenu li:not(:last-child) {
	margin-bottom: 15px;
}
.subsubmenu li {
	width: 50%;
}
#header.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
  -webkit-animation: header-fixed 0.6s;
  -moz-animation: header-fixed 0.6s;
  -ms-animation: header-fixed 0.6s;
  animation: header-fixed 0.6s;
}
@keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
#gnavi .f_social.sp {
	display: none;
}
.h_lang_mb{
    display:none;
}
.mainvisual {
	height: 700px;
	display: flex;
	align-items: center;
	color: #fff;
	position: relative;
}
.mainvisual a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.idx_main_ttl {
    font-size: 70px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.5em;
    margin: 0 0 10px;
}.idx_main_btn {
    margin: 0;
    display: inline-block;
    background: rgba(255,255,255,0.8);
    color: #000;
    font-size: 14px;
    font-weight: bold;
    padding: 12px 30px 10px;
    letter-spacing: 0.2em;
}
.box01 {
	background: url("../images/b01_bg.webp") no-repeat top -200px center/cover;
	padding: 80px 0;
	min-height: 500px;
}
.box01 .container {
    display: flex;
    justify-content: flex-end;
}
.b01_main {
    width: 500px;
    background: #fff;
    padding: 40px;
}
.idx_h2 {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2em;
    margin-bottom: 30px;
    text-align: center;
}
.b01_main .idx_h2 {
	text-align: left;
}
.idx_btn {
    margin: 0;
}
.idx_btn a {
	display: inline-block;
	background: #000;
	color: #fff;
	text-align: center;
	letter-spacing: 0.2em;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	padding: 12px 20px;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
}
.idx_btn a:after {
	content: "";
    position: absolute;
    top: 0;
    left: 150%;
    width: 200%;
    height: 100%;
    transform: skewX(-20deg);
    background-image: linear-gradient(90deg,transparent, hsla(0, 0%, 100%, 0.25),transparent);
}
.idx_btn a:hover:after {
	animation: shine 0.75s cubic-bezier(0.01, 0.56, 1, 1);
}
@keyframes shine{
  to{
    left:-200%;
  }
}
.box02 {
	padding: 100px 0;
	background: #f0f0f0;
}

.b02_clone{padding-bottom:0;}
.b02_clone .idx_h2{margin-bottom:0;}
.b02_main{display:flex;}
.b02_img,.b02_txt{width:50%;padding:25px;}
.b02_img{text-align: center;}
.b02_img img{width:90%;}
.b02_txt{padding-left:30px;}
.b02_list {
    display: flex;
    flex-wrap: wrap;
	margin-bottom: 30px;
}
.b02_item {
    width: calc(25% - 22.5px);
    margin: 0 30px 30px 0;
	position: relative;
	transition: all 0.3s;
}
.b02_item:nth-child(4n) {
	margin-right: 0;
}
.b02_item a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}
.b02_itm_img {
	text-align: center;
	margin-bottom: 20px;
}
.b02_itm_ttl {
    text-align: center;
    letter-spacing: 0.2em;
    line-height: 1.5em;
    margin-bottom: 7px;
}
.b02_itm_price {
    margin: 0;
    text-align: center;
    font-size: 14px;
}
.b02_itm_price .old {
    display: inline-block;
    text-decoration: line-through;
    margin-right: 10px;
}
.b02_item:hover {
	opacity: 0.7;
}
.b02_itm_more {
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 70px;
    z-index: 3;
	transition: all 0.3s;
	opacity: 0;
}
.b02_itm_more a {
    position: relative;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
}
.b02_item:hover .b02_itm_more {
	bottom: 90px;
	opacity: 1;
}
.box02 .idx_btn {
	text-align: center;
}
.box03 {
	padding: 80px 0;
}
.b03_list {
    display: flex;
    flex-wrap: wrap;
}
.b03_item {
    width: calc(33.33% - 20px);
    margin: 0 30px 0 0;
	position: relative;
	transition: all 0.3s;
}
.b03_item:nth-child(3n) {
	margin-right: 0;
}
.b03_itm_img {
    width: 100%;
    height: 30vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.b03_itm_img img {
	flex-shrink: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.b03_itm_ttl {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}
.b03_item a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.b03_item:hover {
	opacity: 0.7;
}
#footer {
	background: #e6e6e6;
	padding: 80px 0 30px;
}
.f_social {
    display: flex;
    align-items: center;
	margin-bottom: 60px;
}
.f_social li a {
    display: block;
    width: 16px;
    height: 16px;
    color: #000;
}
.f_social li:not(:last-child) {
	margin-right: 10px;
}
.f_social li svg {
	fill: #000!important;
}
.f_logo {
    width: 150px;
    margin: 0 0 10px;
}
.f_main{
	display:flex;
}
.f_menu {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
	height: 280px;
	width:60%;
}
.f_info{
	width:40%;
}
.f_menu a, .f_info a {
    text-decoration: none;
    display: inline-block;
    position: relative;
	font-size: 14px;
}
.f_menu a:after, .f_info a:after {
	content: '';
	position: absolute;
	width: 0;
	height: 1px;
	background: #000;
	transition: all 0.3s;
	left: 0;
	bottom: 0;
}
.f_menu a:hover:after, .f_info a:hover:after {
	width: 100%;
}
.f_menu li:not(:last-child), .f_info li:not(:last-child) {
	margin-bottom: 12px;
}
.f_compname{
	font-weight: 600;
    font-size: 21px;
}
.copyright {
    margin: 30px 0 0;
    text-align: center;
    font-size: 13px;
}

.box04 {
    padding: 80px 0;
    text-align: center;
}
.b04_h2 {
    font-size: 5rem;
    line-height: 1.5em;
	font-family: 'Allison', cursive;
    margin-bottom: 20px;
}
.b04_form {
    display: flex;
    justify-content: center;
}
.b04_form input {
	width: 300px;
	padding: 5px;
	line-height: 1.5em;
	background: none;
	border: 1px solid #ccc;
}
.b04_form .button {
	display: inline-block;
	background: #000;
	color: #fff;
	text-align: center;
	letter-spacing: 0.2em;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	padding: 12px 20px;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
}
.b04_form .button:after {
	content: "";
    position: absolute;
    top: 0;
    left: 150%;
    width: 200%;
    height: 100%;
    transform: skewX(-20deg);
    background-image: linear-gradient(90deg,transparent, hsla(0, 0%, 100%, 0.25),transparent);
}
.b04_form .button:hover:after {
	animation: shine 0.75s cubic-bezier(0.01, 0.56, 1, 1);
}
@media screen and (max-width: 1400px) {
  .container {
    padding: 0 3%;
  }
}
@media screen and (max-width: 768px) {
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 14px;
}
  #wrapper {
    min-width: 100%;
    margin: 0;
    padding-top: 63px;
  }
  #main, #footer {
    min-width: 100%;
  }
  .container {
    padding: 0 3%;
    width: 100%;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* MENU-ICON */
  .menu-icon {
    width: 50px;
    height: 43px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    line-height: 1em;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    z-index: 99999;
		position: relative;
  }
  .menu-icon span {
    display: block;
    margin: 0 auto 15px;
    width: 30px;
    height: 3px;
    background-color: #000;
    -webkit-transition-duration: 0;
    -moz-transition-duration: 0;
    -ms-transition-duration: 0;
    -o-transition-duration: 0;
    transition-duration: 0;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    top: 12px;
    left: 0;
    position: relative;
  }
  .menu-icon span::after, .menu-icon span::before {
    display: block;
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #000;
    -webkit-transition-property: margin, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0;
    -moz-transition-delay: 0.2s, 0;
    -ms-transition-delay: 0.2s, 0;
    -o-transition-delay: 0.2s, 0;
    transition-delay: 0.2s, 0;
  }
  .menu-icon span::before {
    margin-top: -10px;
  }
  .menu-icon span::after {
    margin-top: 10px;
  }
  .menu-icon.active span {
    background-color: transparent;
  }
  .menu-icon.active span::before, .menu-icon.active span::after {
    margin-top: 0px;
    -webkit-transition-delay: 0, 0.2s;
    -moz-transition-delay: 0, 0.2s;
    -ms-transition-delay: 0, 0.2s;
    -o-transition-delay: 0, 0.2s;
    transition-delay: 0, 0.2s;
  }
  .menu-icon.active span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .menu-icon.active span::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .gnv-ico {
    width: 50px;
    height: 48px;
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    right: 0;
    top: 0 !important;
    transform: none !important;
    border: none !important;
  }
  .gnv-ico:before {
    content: '';
    position: absolute;
    border: solid #ccc;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: calc(50% - 3px);
    top: calc(50% - 3px);
    transition: all 0.5s ease;
  }
  .gnavi li.active > .gnv-ico:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  #totop {
    width: 40px;
    right: 3%;
    bottom: 50px;
    line-height: 0;
  }
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 10px 0;
}
.logo {
    width: 120px;
}
.h_right {
    margin: 0 0 0 auto;
}
#gnavi {
    position: fixed;
    top: 0;
    height: 100%;
    right: -400px;
    width: 400px;
    background: #fff;
    padding: 60px 0 40px;
    overflow: auto;
    transition: all 0.3s;
    z-index:9999;
}
	#gnavi.show {
		right: 0;
	}
	.gnavi {
    display: block;
}
.gnavi >li {
    padding: 0;
	position: relative;
    border-bottom: 1px solid #f0f0f0;
	padding: 15px 0;
}
.gnavi >li>a {
    display: block;
    padding: 5px 20px;
    text-align: left;
}
	.gnavi >li>a:after {
		display: none;
	}
.submenu {
    position: relative;
    top: 0;
    padding: 0;
    display: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transition: none;
}
.submenu > li {
    width: 100%;
    max-width: none;
    margin: 0;
}
	.submenu > li>a:before {
		display: none;
	}
.submenu > li>a {
    font-size: 100%;
    font-weight: normal;
    letter-spacing: 0;
    padding: 10px 20px;
}
.subsubmenu {
    margin: 0 20px;
    border-left: 1px solid #000;
	display: none;
}
.subsubmenu a {
    display: block;
    padding: 3px 20px;
}
.subsubmenu li:not(:last-child) {
    margin-bottom: 10px;
}
	.subover  {
		position: relative;
	}
.gnv-ico.sub {
    border-radius: 50%;
    border: 1px solid #ccc!important;
    background: transparent;
    width: 30px;
    height: 30px;
    top: 5px!important;
    right: 6px;
}
#gnavi .f_social.sp {
    display: flex;
    margin-top: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
	justify-content: flex-start;
}
	#gnavi .f_social li {
    margin: 0 -1px -1px 0;
    width: 33.33%;
}
#gnavi .f_social li svg {
    width: 20px;
}
#gnavi .f_social li a {
    display: flex;
    border: 1px solid #f0f0f0;
    width: 100%;
    justify-content: center;
    padding: 10px;
    height: auto;
}
	.bg_sp {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #fff;
		opacity: 0;
		visibility: hidden;
	}
	.bg_sp.show {
		opacity: 0.5;
		visibility: visible;
	}
.mainvisual {
    height: 300px;
    background-attachment: unset;
}
.idx_main_ttl {
    font-size: 30px;
}
.idx_main_btn {
    font-size: 12px;
    padding: 10px 20px;
}
.box01 {
    background-size: cover;
    background-position: top center;
    min-height: auto;
    padding: 250px 0 30px;
}
.b01_main {
    width: 100%;
    padding: 30px;
    text-align: center;
}
.b01_main .idx_h2 {
    text-align: center;
}
.idx_h2 {
    font-size: 26px;
    margin-bottom: 20px;
}
.box02 {
    padding: 50px 0;
}
.b02_item {
    width: 49%;
    margin: 0 2% 30px 0;
}
	.b02_item:nth-child(2n) {
		margin-right: 0;
	}
.b03_list {
    display: block;
}
.b03_item {
    width: 100%;
    display: flex;
	margin-bottom: 20px;
}
.b03_itm_img {
    width: 200px;
    height: 200px;
    margin: 0 20px 0 0;
	flex-shrink: 0;
}
.b03_itm_ttl {
    font-size: 16px;
    text-align: left;
}
.box03 {
    padding: 50px 0 30px;
}
#footer {
    padding: 40px 0 20px;
	text-align: center;
}
.f_social {
    margin-bottom: 30px;
	justify-content: center;
}
.f_logo {
    margin: 0 auto;
}
.f_menu {
    display: block;
    height: auto;
}
#totop a {
    height: 40px;
}
#totop a:after {
    border-width: 0 10px 10px 10px;
}
.box04 {
    padding: 50px 0;
}
.b04_h2 {
    font-size: 3rem;
}
.b04_form button {
    font-size: 12px;
    padding: 10px;
}
.b04_form input {
    max-width: calc(100% - 104px);
}
.h_search {
    width: 100vw;
    right: auto;
    left: calc(50vw - 50%);
    top: 54px;
}
.lbl-total-cart {
    display:none;
}

.h_right li {
    position: static;
}
}
@media screen and (max-width: 425px) {
#gnavi {
    width: 90%;
}
.b02_main{display:block;}
.b02_img,.b02_txt{width:100%;padding: 0;}
.b02_img{margin-top:15px;}
.b02_img img{width:100%;}
.b03_itm_img {
    width: 120px;
    height: 120px;
}
.h_lang{
    display:none;
}
.h_lang_mb{
    display:flex;
}
.f_main{
	display:block;
}
.f_info, .f_menu{
	width:100%;
}
.f_info{
	margin-bottom:10px;
	padding-bottom:10px;
	border-bottom:1px solid #444;
}
}