@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

/* CSS Document */

/*====================================

	root

====================================*/

:root {
	--gray: #333;
	--light-gray: #eee;
	--dark_brown: #271917;
	--light_brown: #764439;
	--pink: #966568;
	--bg_pink: #f1e6e6;
	--beige: #efe7e0;
	/*--pink: #e3bbbe;*/
}

/*====================================

	body

====================================*/

body {
	-webkit-text-size-adjust: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.85em;
	margin: 0 auto;
	position: relative;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	background: #fff;
}

/*====================================

	.btn

====================================*/

.btn {
	width: 100%;
	text-align: center;
}
.btn a {
	display: inline-block;
	font-size: 110%;
	line-height: 1me;
	padding: 1em 8em;
	text-decoration: none;
	border-radius: 60px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
.btn .pink {
	color: #fff;
	background: var(--pink);
	border: 1px solid var(--pink);
}
.btn .pink:hover {
	color: var(--pink);
	background: #fff;
	border: 1px solid var(--pink);
}

/*====================================

	loading

====================================*/

#loading {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background: var(--pink);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999999999;
	display: grid;
	place-items: center;
}
.spinner {
	width: 100px;
	height: 100px;
	background: var(--dark_brown);
	border-radius: 100%;
	animation: sk-scaleout 1.0s infinite ease-in-out;
}
@keyframes sk-scaleout {
	0% {
		transform: scale(0);
	} 100% {
		transform: scale(1.0);
		opacity: 0;
	}
}
.loaded {
	opacity: 0;
	visibility: hidden;
}

/*====================================

	header

====================================*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 20px;
    background: #fff;
}
header nav .logo {
    float: left;
    width: 120px;
}
header nav .logo:after {
    content: '';
    display: table;
    clear: both;
}
header .nav_container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
header .menu-left {
}
header nav ul {
    padding-left: 0;
    margin: 0;
}
header nav ul li {
    float: none;
    margin-left: .1em;
    float: left;
}
header nav ul li a {
    display: inline-block;
    position: relative;
    transition: color .35s ease;
    font-family: "Questrial", sans-serif;
	font-weight: 400;
	font-style: normal;
	text-decoration: none;
    color: #000;
	padding: 0em .5em;
}
header nav ul li a:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    transition: width 0s ease, background .35s ease;
}
header nav ul li a:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--pink);
    transition: width .35s ease;
}
header nav ul li a:hover:before {
    width: 100%;
    background: var(--pink);
    transition: width .35s ease;
}
header nav ul li a:hover:after {
    width: 100%;
    background: transparent;
    transition: all 0s ease;
}
header nav ul li:last-child {
	margin-left: 10px;
}
header nav ul li:last-child a {
	background: url(/images/icon_onlineshop_hover.svg) no-repeat top 50% left 10px var(--pink);
	background-size: 20px;
	padding: 0 .5em 0 40px;
	color: #fff;
}
header nav ul li:last-child a:hover {
	background: url(/images/icon_onlineshop_hover.svg) no-repeat top 50% left 10px var(--light_brown);
	background-size: 20px;
	color: #fff;
}
header nav ul.menu-left {
    display: block;
    max-height: 0;
    overflow: hidden;
    z-index: 10;
    display: block !important;
    float: right;
    max-height: none;
}
header .nav-toggle {
	display: none;
}

/*====================================

	#app_top

====================================*/

#app_top {
	width: 100%;
	max-width: 1800px;
	min-width: 1000px;
	margin: 0 auto;
	background: #fff;
}

/*====================================

	footer

====================================*/

footer {
	background: #333;
	padding: 40px 10%;
}
footer .inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	padding: 0;
	max-width: 1800px;
	min-width: 1000px;
	margin: 0 auto;
}
footer .inner .contact {
	width: 60%;
}
footer .inner .contact h6 {
	font-weight: normal;
	font-size: 100%;
	color: #fff;
	margin-bottom: 10px;
}
footer .inner .contact .tel {
	margin-bottom: 10px;
}
footer .inner .contact .tel a {
	float: left;
	color: #fff;
	font-size: 150%;
	background: url(/images/icon_tel.svg) top 50% left 0 no-repeat;
	background-size: 30px;
	padding: 0 0 0 40px;
	text-decoration: none;
	pointer-events: none;
	font-weight: bold;
}
footer .inner .contact .tel p {
	float: left;
	font-size: 90%;
	color: #fff;
	padding-left: 1em;
}
footer .inner .contact .mail a {
	color: #fff;
	font-size: 150%;
	background: url(/images/icon_mail.svg) top 50% left 0 no-repeat;
	background-size: 30px;
	padding: 0 0 0 40px;
	font-weight: bold;
}
footer .inner .company {
	flex: 1;
	text-align: right;
}
footer .inner .company dl {
}
footer .inner .company dl dt {
	color: #fff;
}
footer .inner .company dl dd {
	color: #fff;
	font-size: 80%;
}
footer .inner .company p {
	color: #fff;
	font-size: 80%;
	line-height: 1.5em;
}
footer .inner .company .tokusho {
	margin-top: 10px;
	text-align: right;
}
footer .inner .company .tokusho a {
	font-size: 80%;
	color: #fff;
}
footer .inner .company .tokusho a:hover {
	text-decoration: none;
}
footer .copy_right {
	width: 100%;
	color: #fff;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, .4);
	margin-top: 20px;
	padding-top: 20px;
	font-size: 80%;
}


