@charset "UTF-8";

@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?k7o138');
  src:  url('../fonts/icomoon.eot?k7o138#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?k7o138') format('truetype'),
    url('../fonts/icomoon.woff?k7o138') format('woff'),
    url('../fonts/icomoon.svg?k7o138#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-mail4:before {
  content: "\ea86";
}
.icon-facebook2:before {
  content: "\ea91";
}
.icon-instagram:before {
  content: "\ea92";
}
.icon-twitter:before {
  content: "\ea96";
}

/* wideth,height */
html,body{
	width: 100%;
}
#container{
	width: 100%;
}
#header{
	width: 100%;
	height: calc(250vw / 14);
}
#logo{
	width: calc(360vw / 14);
}
img{
	width: 100%;
	height: auto;
}

/* common */
a{
	transition: all 0.3s ease;
}
.-em{
	font-style: normal;
	font-weight: bold;
}

/* centering */
.-centFlex{
	display: flex;
	justify-content: center;
	align-items: center;
}

/* hamburger */
#hamburger {
	position: fixed;
	display: block;
	width: calc(40vw / 14);
	height: calc(31vw / 14);
	z-index: 10;
	box-sizing: border-box;
	top: calc(110vw / 14);
	right: calc(138vw / 14);
	cursor: pointer;
}
#hamburger  span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #000;
	margin: 0 auto;
}
#hamburger  span:nth-of-type(1) {
	top: 0;
	animation: menu-ber01 .75s forwards;
}
#hamburger  span:nth-of-type(2) {
	top: calc(50% - 0.5px);
	transition: all .25s .25s;
	opacity: 1;
}
#hamburger  span:nth-of-type(3) {
	bottom: 0;
	animation: menu-ber03 .75s forwards;
}
#hamburger.active span:nth-of-type(1) {
  	animation: active-menu-ber01 .75s forwards;
	background-color: #fff;
}
#hamburger.active span:nth-of-type(2) {
  	opacity: 0;
}
#hamburger.active span:nth-of-type(3) {
  	animation: active-menu-ber03 .75s forwards;
	background-color: #fff;
}
@keyframes menu-ber01 {
  0% {
	  transform: translateY(calc(15vw / 14)) rotate(45deg);
  }
  50% {
	  transform: translateY(calc(15vw / 14)) rotate(0);
  }
  100% {
	  transform: translateY(0) rotate(0);
  }
}
@keyframes menu-ber03 {
  0% {
	  transform: translateY(calc(-15vw / 14)) rotate(-45deg);
  }
  50% {
	  transform: translateY(calc(-15vw / 14)) rotate(0);
  }
  100% {
	  transform: translateY(0) rotate(0);
  }
}
@keyframes active-menu-ber01 {
  0% {
	  transform: translateY(0) rotate(0);
  }
  50% {
	  transform: translateY(calc(15vw / 14)) rotate(0);
  }
  100% {
	  transform: translateY(calc(15vw / 14)) rotate(45deg);
  }
}
@keyframes active-menu-ber03 {
  0% {
	  transform: translateY(0) rotate(0);
  }
  50% {
	  transform: translateY(calc(-15vw / 14)) rotate(0);
  }
  100% {
	  transform: translateY(calc(-15vw / 14)) rotate(-45deg);
  }
}

/* navigation */
#navigation{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	background-color: rgba(0,0,0,0.85);
	z-index: 5;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: init-nav .75s forwards;
}
.nav__box{
	text-align: center;
	opacity: 0;
	transition: all 0.3s ease;
}
.nav__item{
	list-style-type: none;
	font-size: calc(50vw / 14);
	margin-bottom: 0.8em;
}
.nav__item a{
	color: #fff;
	text-decoration: none;
	font-family: 'Oswald', sans-serif;
}
.nav__item a:hover{
	color: #0066cc;
}
.nav__sns{
	width: calc(290vw / 14);
	margin-top: calc(94vw / 14);
	display: flex;
	justify-content: space-between;
}
.nav__sns a{
	font-size: calc(36vw / 14);
}
#navigation.active{
	left: 0;
	animation: active-nav .75s forwards;
}
.active .nav__box{
	opacity: 1;
}
@keyframes init-nav {
  0% {
	  opacity: 1;
  }
  50% {
	  
  }
  100% {
	  opacity: 0;
	  left: -100%;
  }
}
@keyframes active-nav {
  0% {
	  opacity: 0;
  }
  50% {
	  
  }
  100% {
	  opacity: 1;
  }
}

/* header */
#header{
	padding-top: calc(8vw / 14);
	box-sizing: border-box;
	flex-direction: column;
}
#logo{
	margin: 0 auto calc(8vw / 14);
}

/* main image */
.mainImg__item{
	line-height: 0;
}

/* section */
.section__box{
	box-sizing: border-box;
	padding-top: calc(150vw / 14);
	padding-bottom: calc(100vw / 14);
}
.section__title{
	margin-top: 0;
	margin-bottom: calc(100vw / 14);
	font-family: 'Oswald', sans-serif;
	font-size: calc(64vw / 14);
	text-align: center;
	letter-spacing: -0.02em;
}
.section__title.-shop,
.section__title.-contact{
	margin-bottom: calc(50vw / 14);
}
.section__item{
	font-family: 'Noto Sans JP', sans-serif;
}
.sectionItem__text{
	font-size: calc(14vw / 14);
	line-height: 1.6em;
	font-family: 'Noto Sans JP', sans-serif;
}
.sectionItem__text a{
	color: #0066cc;
}
.sectionItem__text a:hover{
	text-decoration: none;
}

/* gallery */
.gallery__box{
	width: calc(960vw / 14);
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.gallery__item{
	width: calc(300vw / 14);
	margin-bottom: calc(30vw / 14);
}

/* news */
#news{
	background-color: #fff94f;
}
.news__item{
	width: calc(500vw / 14);
	margin: 0 auto calc(36vw / 14);
	padding-bottom: calc(40vw / 14);
	position: relative;
}
.news__item::after{
	content: " ";
	position: absolute;
	width: calc(74vw / 14);
	border-bottom: 4px solid #000;
	bottom: 0;
	left: calc(50% - 37vw / 14);
}
.news__item:last-child{
	padding-bottom: 0;
	margin-bottom: 0;
}
.news__item:last-child::after{
	display: none;
}
.news__date{
	text-align: center;
	margin-bottom: calc(9vw / 14);
	font-weight: bold;
	font-size: calc(16vw / 14);
}
.news__text{
	text-align: center;
}

/* about us */
#about{
	background-color: #f3f3f3;
}
.about__icon{
	width: calc(240vw / 14);
	margin: 0 auto 5px;
}
.about__logo{
	width: calc(296vw / 14);
	margin: 0 auto calc(36vw / 14);;
}
.about__text{
	text-align: center;
	margin-bottom: calc(95vw / 14);
}
.about__photo{
	width: calc(237vw / 14);
	margin: 0 auto calc(50vw / 14);
}
.about__profile{
	text-align: center;
}
.about__name{
	font-size: calc(16vw / 14);
}

/* shop */
#shop{
	background-color: #c9c9c9;
}
.shop__text{
	text-align: center;
}

/* contact */
#contact{
	background-color: #fb5c5c;
}
.icon__ahref{
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #000;
	width: calc(120vw / 14);
	height: calc(120vw / 14);
	border-radius: 50%;
	margin: 0 auto;
}
.icon__ahref:hover{
	background-color: #0066cc;
}
.contact__icon{
	width: calc(50vw / 14);
}

/* footer */
#footer{
	padding: calc(90vw / 14) 0 calc(120vw / 14) 0;
	background-color: #000;
}
#sns{
	width: calc(255vw / 14);
	margin: 0 auto calc(86vw / 14);
	display: flex;
	justify-content: space-between;
}
#sns a{
	color: #fff;
	text-decoration: none;
}
#sns a:hover{
	color: #0066cc;
}
#sns a span{
	font-size: calc(28vw / 14);
}
#footer__items{
	width: calc(255vw / 14);
	margin: 0 auto calc(20vw / 14);
	display: flex;
	justify-content: space-between;
}
#footer__toTop{
	width: calc(67vw / 14);
	line-height: 0;
}
#footer__mclangur{
	width: calc(154vw / 14);
	line-height: 0;
}
#footer__toTop a,
#footer__mclangur a{
	display: block;
	background-color: #fff;
}
#footer__toTop a:hover,
#footer__mclangur a:hover{
	background-color: #0066cc;
}
#copyright{
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: calc(12vw / 14);
	text-align: center;
}

@media screen and (max-width: 768px) {
	
#header{
	height: calc(300vw / 10.8);
}
#logo{
	width: calc(570vw / 10.8);
}

/* hamburger */
#hamburger {
	width: calc(60vw / 10.8);
	height: calc(61vw / 10.8);
	top: calc(100vw / 10.8);
	right: calc(60vw / 10.8);
}
#hamburger  span {
	height: calc(6vw / 10.8);
}
#hamburger  span:nth-of-type(2) {
	top: calc(29vw / 10.8)
}
@keyframes menu-ber01 {
  0% { transform: translateY(calc(30vw / 10.8)) rotate(45deg); }
  50% { transform: translateY(calc(30vw / 10.8)) rotate(0); }
  100% { transform: translateY(0) rotate(0); }
}
@keyframes menu-ber03 {
  0% { transform: translateY(calc(-30vw / 10.8)) rotate(-45deg); }
  50% { transform: translateY(calc(-30vw / 10.8)) rotate(0); }
  100% { transform: translateY(0) rotate(0); }
}
@keyframes active-menu-ber01 {
  0% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(calc(28vw / 10.8)) rotate(0); }
  100% { transform: translateY(calc(28vw / 10.8)) rotate(45deg); }
}
@keyframes active-menu-ber03 {
  0% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(calc(-28vw / 10.8)) rotate(0); }
  100% { transform: translateY(calc(-28vw / 10.8)) rotate(-45deg); }
}

.section__box{
	padding-top: calc(250vw / 10.8);
	padding-bottom: calc(250vw / 10.8);
}
.section__title{
	margin-bottom: calc(86vw / 10.8);
	font-size: calc(86vw / 10.8);
	letter-spacing: 0.02em;
}
.sectionItem__text{
	width: calc(960vw / 10.8);
	margin: 0 auto;
	font-size: calc(36vw / 10.8);
}
	
.gallery__box{
	width: calc(960vw / 10.8);
}
.gallery__item{
	width: 100%;
	margin-bottom: calc(80vw / 10.8);
}

.news__item{
	width: calc(960vw / 10.8);
	margin: 0 auto calc(100vw / 10.8);
	padding-bottom: calc(100vw / 10.8);
}
.news__item::after{
	width: calc(74vw / 10.8);
	border-bottom: 1px solid #000;
	left: calc(50% - 37vw / 10.8);
}
.news__date{
	margin-bottom: calc(9vw / 10.8);
	font-size: calc(36vw / 10.8);
}

.about__icon{
	width: calc(400vw / 10.8);
	margin: 0 auto 5px;
}
.about__logo{
	width: calc(510vw / 10.8);
	margin: 0 auto calc(100vw / 10.8);;
}
.about__text{
	text-align: center;
	margin-bottom: calc(95vw / 10.8);
}
.about__photo{
	width: calc(370vw / 10.8);
	margin: 0 auto calc(100vw / 10.8);
}
.about__profile{
	text-align: center;
}
.about__name{
	font-size: calc(36vw / 10.8);
}

.icon__ahref{
	width: calc(210vw / 10.8);
	height: calc(210vw / 10.8);
}
.contact__icon{
	width: calc(90vw / 10.8);
}

#footer{
	padding: calc(250vw / 10.8) 0 calc(225vw / 10.8) 0;
}
#sns{
	width: calc(470vw / 10.8);
	margin: 0 auto calc(140vw / 10.8);
}
#sns a span{
	font-size: calc(60vw / 10.8);
}
#footer__items{
	width: calc(490vw / 10.8);
	margin: 0 auto calc(30vw / 10.8);
}
#footer__toTop{
	width: calc(130vw / 10.8);
}
#footer__mclangur{
	width: calc(304vw / 10.8);
}
#copyright{
	font-size: calc(28vw / 10.8);
}

#navigation{
	width: 95%;
	padding-right: 5%;
}
.nav__item{
	font-size: calc(100vw / 10.8);
	margin-bottom: calc(40vw / 10.8);
}
.nav__sns{
	width: calc(565vw / 10.8);
	margin-top: calc(120vw / 10.8);
}
.nav__sns a{
	font-size: calc(72vw / 10.8);
}
	
}