@charset "utf-8";
/* CSS Document */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul, li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
 
.clearfix:after {
    clear: both;
}

img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

*:focus {
  outline: none;
}

.center {
	text-align: center;
}

.spOnly {
	display: none !important;
}
.pcOnly {
	display: flow-root;
}
.mt10 { margin-top: 10px;}
.mt20 { margin-top: 20px;}
.mt30 { margin-top: 30px;}
.mt40 { margin-top: 40px;}
.mt60 { margin-top: 60px;}
.mt80 { margin-top: 80px;}

.mb10 { margin-bottom: 10px;}
.mb20 { margin-bottom: 20px;}
.mb60 { margin-bottom: 60px;}

.ml15 { margin-left: 15px;}
.ml30 { margin-left: 30px;}


.clearfix::after {
    content: " ";
    display: block;
    clear: both;
}

/**================================= Link Setting =================================**/

a:link		{color:#D37000; text-decoration:underline;}
a:visited	{color:#D37000; text-decoration:underline;}
a:hover		{color:#D37000; text-decoration:none; transition: 0.5s; text-decoration-color: transparent;}
a:active	{color:#D37000; text-decoration:none;}
a:focus {
	outline: none;
}

/**================================= Common Setting =================================**/
html{
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

body {
	background-color: #FFF;
	font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
	font-weight: normal;
	color: #221815;
	font-size: 1rem;
	font-size: 1em;
	line-height: 1.5;
	padding: 0;
    margin: 0;
	letter-spacing: 1px;
}


p { font-size: 15px; -moz-osx-font-smoothing: grayscale; line-height: 2.2; -moz-osx-font-smoothing: grayscale;}
.note { 
	font-size: 12px; 
	font-weight: normal; 
	text-decoration: none; 
	line-height: 1.7;
	text-indent: -1em;
    padding-left: 1em;
}
.bold {
	font-weight: bold;
}

.common-indent01 {
	text-indent: -1.5em;
    padding-left: 1.5em;
}
.common-indent02 {
    text-indent: -2em;
    padding-left: 2em;
}

.pageWrap{
	width:100%;
	overflow: hidden;
}

.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
  &.fadein-left{
      transform: translate(-30px,0);
  }
  &.fadein-right{
      transform: translate(30px,0);
  }
  &.fadein-up{
      transform: translate(0,-30px);
  }
  &.fadein-bottom{
      transform: translate(0,30px);
  }
  &.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}

/*header*/
header {
	padding: 20px 0;
	display: flex;
  	justify-content: space-between;
  	align-items: center;
	position: fixed;
	width: 100%;
	margin: 0 auto;
	z-index: 10000;
}
header #logo {
	display: inline-block;
	z-index: 10001;
}
header #logo img {
	width: 70px;
	margin-left: 40px;
}


/*============
nav
=============*/
.hamburger {
  width: 60px;
  height: 60px;
	margin-right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  z-index: 10000;
}

.hamburger .bar {
  width: 60px;
  height: 1px;
  background: #221815;
  display: block;
  position: absolute;
  transition: all 0.3s;
}

.hamburger .bar-top {
  transform: translate(0, -12px);
}

.hamburger .bar-bottom {
  transform: translate(0, 12px);
}

.checkbox:checked ~ .hamburger .bar-middle {
  opacity: 0;
}

.checkbox:checked ~ .hamburger .bar-top {
  transform: translate(0, 0) rotate(45deg);
}

.checkbox:checked ~ .hamburger .bar-bottom {
  transform: translate(0, 0) rotate(-45deg);
}

.checkbox {
  display: none;
}

.nav-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #FFF;
  opacity: 0.97;
  color: #fff;
  top: 0;
  left: -100%;
  transition: all 0.5s;
	display: flex;
	align-items: center;
}

.nav-menu ul {
  margin-top: 100px;
	text-align: center;
	margin: 0 auto;
}

.nav-menu li {
  margin-bottom: 30px;
	font-family: "Hina Mincho", serif;
}

.nav-menu a {
  text-align: center;
  font-size: 20px;
	color: #221815;
	text-decoration: none;
}
.nav-menu a:link,
.nav-menu a:visited {
	color: #2B0202;
	text-decoration: none;
	transition: 0.3s;
	position: relative;
} 
.nav-menu a:hover{
	color: #2B0202;
}
.nav-menu a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 1px;
	background: #2B0202;
	transition: 0.3s;
}
.nav-menu a:hover::before{
	width: 100%;
}
.nav_cart {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}
.nav_insta {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.checkbox:checked ~ .nav-menu {
  left: 0;
}

.nav-menu:checked ~ .nav-menu {
  left: 0;
}


/*footer*/
footer{
	width:100%;
	background: #FFF;
	vertical-align: middle;
	text-align: center;
	font-family: "Hina Mincho", serif;
	margin:0 auto;
}
footer .section-inner {
	justify-content: space-around;
	padding: 60px 0 ;
}
.footer_info {
	width: 50%;
	text-align: left;
}
.footer_info p {
	font-size: 12px;
	font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
	letter-spacing: 1.5px;
}
.footer_info p span {
	font-size: 14px;
}
.footer_info img {
	width: 298px;
	margin-bottom: 80px;
}
.footer_menu {
	width: 40%;
	text-align: left;
}
.footer_menu ul {
	width: 50%;
	margin-top: 2em;
}
.footer_menu li {
	margin-bottom: 1.4em;
	letter-spacing: 1px;
}
.footer_menu_cart {
	width: 24px;
	vertical-align: middle;
	margin-right: 8px;
	padding-bottom: 4px;
}
.footer_menu_insta {
	width: 20px;
	vertical-align: middle;
	margin-right: 8px;
}
.footer_menu a:link,
.footer_menu a:visited {
	color: #2B0202;
	text-decoration: none;
	transition: 0.3s;
	position: relative;
} 
.footer_menu a:hover{
	color: #2B0202;
}
.footer_menu a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 1px;
	background: #2B0202;
	transition: 0.3s;
}
.footer_menu a:hover::before{
	width: 100%;
}

.copyright {
	font-size: 14px;
	color: #2B0202;
	width: 100%;
	border-top: 1px solid #2B0202;
	text-align: center;
	padding: 1em 0;
}
.footer_illust {
	position: absolute;
    width: 18px;
    left: 2%;
    top: -79px;
}

#page-top{
    width: 80px;
    height: 80px;
    position: fixed;
    right: 20px;
    bottom: 20px;
	cursor: pointer;
	z-index: 9000;
}
#page-top img{
    width: 100%;
    height: auto;
}
#page-top:hover{
    opacity: .7;
}





@media screen and (max-width:979px) {
	.spOnly {
		display:flow-root !important;
	}
	.pcOnly {
		display: none;
	}
	
	header, main, footer {
		width: 100%;
	}
	section p {
		line-height: 1.9 !important;
	}
}


@media screen and (max-width: 750px) { 
		
	section p {
		line-height: 1.9 !important;
	}
	a.hover {
		transition: .3s;
	}
	a.hover:hover {
		opacity: .7;
	}
	.mt40 { margin-top: 20px;}
	.mt60 { margin-top: 60px;}
	.mt80 { margin-top: 50px;}
	.pageWrap{
		width:100%;
	}

	header {
		padding: 20px 20px;
	}
	header #logo img {
		width: 50px;
		margin-left: 0;
	}
	.hamburger {
    	width: 40px;
    	height: 40px;
	}
	.hamburger .bar {
    	width: 40px;
	}
	
	footer .section-inner {
		padding: 40px 0 30px;
	}
	.footer_info {
		width: 100%;
		text-align: center;
	}
	.footer_info img {
		width: 55%;
		margin-bottom: 20px;
	}
	.footer_menu {
		display: none !important;
	}
	.copyright {
    	font-size: 12px;
		letter-spacing: 1px;
	}
	#page-top {
		width: 50px;
		height: 50px;
		right: 10px;
		bottom: 30px;
	}
	
	
	
	
}