@charset "UTF-8";
html{
	font-size: 100%;
	scroll-behavior: smooth;
}

body{
	font-family: 'Noto Sans JP', "游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	line-height: 1.7;
	color: #fff;
}

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

a{
	text-decoration: none;
}

/* inner */
.inner{
	max-width: 960px;
	margin: 0 auto;
}

.inner-flex{
	display: flex;
	max-width: 960px;
	margin: 0 auto;
}

.inner-header{
	display: flex;
	justify-content: space-between;
	width: 960px;
	margin: 0 auto;
	padding-right: 4%;
	padding-left: 4%;
}

.inner-lineup{
	display: flex;
	width: 960px;
	max-width: 960px;
	margin: 0 auto;
}

/* page-top */
#page-top{
	width: 50px;
	height: 50px;
	position: fixed;
	right: 20px;
	bottom: 0;
	background: #fff;
	opacity: 0;
	border-radius: 50%;
	z-index: 1000;
}

#page-top a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
	content: '\f077';
	font-size: 25px;
	color: #e57235;
	position: absolute;
	width: 25px;
	height: 25px;
	top: -20px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
 	text-align: center;
}

/* header */
#pc-header{
	width: 100%;
	position: fixed;
	display: flex;
	z-index: 1000;
	justify-content: space-between;
	height: 88px;
	background-color: #f88138;
	opacity: 0;
}

#mb-header{
	display: none;
}

.header-logo{
	display: flex;
	color: #fff;
	margin-top: 12px;
}

#pc-header .header-logoimg{
	width: 80px;
}

.header-logotext{
	margin-top: 10px;
	margin-left: 20px;
}

.header-subtitle{
	font-size: 0.75rem;
	margin-left: 10px;
}

img.header-title{
	width: 221px;
	height: 24px;
}

.pc-nav{
	display: flex;
	list-style: none;
	margin-top: 30px;
	text-transform: uppercase;
}

.pc-nav li{
	margin-right: 52px;
}

.pc-nav li:last-child{
	margin-right: 0px;
}

.pc-nav a{
	font-size: 1.125rem;
	color: #fff;
}

.pc-nav a:hover{
	color: #e57235;
}

/* top */
#top{
	background-color: #e57235;
	position: relative;
}

.scrolldown{
	position:absolute;
	bottom:32px;
	left:50%;
}

.scrolldown span{
	position: absolute;
	left:10px;
	bottom:10px;
	color: #fff;
	font-size: 1rem;
	letter-spacing: 0.05em;
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.scrolldown:before {
 	content: "";
	position: absolute;
 	bottom:0;
	left:-4px;
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#fff;
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

@keyframes cirlemovehide{
	0%{opacity:0}
	50%{opacity:1;}
	80%{opacity:0.9;}
	100%{opacity:0;}
 }

.scrolldown:after{
	content:"";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 2px;
	height: 60px;
	background: #fff;
}

/* about */
@keyframes fadeUp {
	0% {
		transform: translateY(50px);
		opacity: 0;
	}
	80% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.animated-fadeUp.animated{
	-webkit-animation: fadeUp 2s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
	animation: fadeUp 2s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

#about{
	background-color: #e57235;
}

.about-text{
	color: #fff;
	padding-top: 7%;
	padding-bottom: 7%;
}

.about-lead{
	font-size: 2.2rem;
	margin-bottom: 10px;
	text-align: center;
}

.about-description{
	font-size: 1.125rem;
	line-height: 2.2;
	width: 50%;
	margin: 0 auto;
	text-align: justify;
}

/* Lineup */

#lineup{
	height: auto;
	padding: 1% 2%;
	display: flex;
	z-index: 1;
	justify-content: space-between;
	background-color: #fff;
}

.lineup-text{
	width: 60%;
	height: auto;
	display: flex;
	align-items: center;
}

.lineup-text img{
	width: 30%;
	margin-top: 10px;
	margin-bottom: 10px;
}

.lineup-iconall{
	width: 40%;
	display: flex;
	z-index: 1;
	justify-content: space-between;
	align-items: center;
}

.lineup-icon{
	position: relative;
	width: 18px;
	height: 18px;
	/* margin-right: 4px; */
}
.lineup-icon1{
	background-color: #319dbb;
}
.lineup-icon2{
	background-color: #c7472a;
}
.lineup-icon3{
	background-color: #ebaea0;
}
.lineup-icon4{
	background-color: #72a8bb;
}
.lineup-icon5{
	background-color: #737aba;
}
.lineup-icon6{
	background-color: #628b33;
}
.lineup-icon7{
	background-color: #757678;
}

.lineup-icon a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* product */
@keyframes zoomIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: scale(1);
  }
}

.animated-zoomIn.animated{
	-webkit-animation: zoomIn 4s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
	animation: zoomIn 4s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideInRight {
	0% {
		transform: translateX(180px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
	}
	40%,100% {
		opacity: 1;
	}
}

.product-right .animated-slideIn-pc.animated{
	-webkit-animation: slideInRight 2s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
	animation: slideInRight 2s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideInLeft {
	0% {
		transform: translateX(-180px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

.product-left .animated-slideIn-pc.animated{
	-webkit-animation: slideInLeft 2s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
	animation: slideInLeft 2s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

.product-flex{
	display: flex;
}

.product-flex-reverse{
	display: flex;
}

.product-left{
	height: 544px;
	height: auto;
	width: 48%;
	padding-left: 1%;
	padding-right: 1%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.product-right{
	height: 544px;
	width: 48%;
	padding-left: 1%;
	padding-right: 1%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.product-text{
	width: 90%;
}

.product-title{
	text-align: center;
	font-size: 1.125rem;
	margin-bottom: 2%;
}

img.product-name{
	margin-bottom: 4%;
}

.product-description{
	font-size: 1.125rem;
	line-height: 2.0;
}

.product-giftimgbox{
	width: 48%;
	height: 544px;
	padding-left: 1%;
	padding-right: 1%;
	display: flex;
	justify-content: center;
	align-items: center;
}

img.product-giftimg{
	width: 90%;
}

#product1-umi{
	background-color: #319dbb;
}

#product2-tinoike{
	background-color: #c7472a;
}

#product3-tatsumaki{
	background-color: #ebaea0;
}

#product4-shiraike{
	background-color: #72a8bb;
}

#product5-bozu{
	background-color: #737aba;
}

#product6-oniyama{
	background-color: #628b33;
}

#product7-kamado{
	background-color: #757678;
}

#product-gift{
	background-color: #e57235;
}

/* shop */
#shop{
	height: auto;
	padding-top: 5%;
	padding-bottom: 5%;
	background-color: #fff;
	color: #e57235;
}

.shop-text{
	font-size: 1.125rem;
	margin-bottom: 2%;
	text-align: center;
}

#shop .btn{
	color: #e57235;
	width: 30%;
	height: auto;
	padding-top: 2%;
	padding-bottom: 2%;
	text-align: center;
	margin: auto;
	border: 2px solid #e57235;
	border-radius: 12px;
	font-size: 1.375rem;
}

#shop .btn:hover{
	color: #fff;
	background-color: #e57235;
}

#shop .btn i{
	margin-left: 2%;
}

#shop .btn:hover{
	color: #fff;
}
#shop .btn a{
	color: #e57235;
}

#shop .btn:hover a{
	color: #fff;
}

/* footer */
footer{
	height: auto;
	background-color: #e57235;
}

#share{
	display: flex;
	width:  18%;
	margin: 0 auto;
	padding-top: 4%;
	justify-content: space-between;
}

#share img{
	width: 90%;
}

#share img:hover{
	opacity: 0.8;
}

#share .instagram{
	margin-right: 15%;
}

#copyright{
	padding-top: 1%;
	padding-bottom: 2%;
	text-align: center;
}

@media (max-width:960px){
	.inner{
		max-width: 736px;
		margin: 0 auto;
	}

	.inner-flex{
		display: flex;
		max-width: 736px;
		margin: 0 auto;
	}

	.inner-header{
		max-width: 736px;
		margin: 0 auto;
	}

	.inner-lineup{
		display: flex;
		max-width: 736px;
		width: 736px;
		justify-content: space-between;
	}

	/* header */
	#pc-header{
		display: none;
	}
	#mb-header{
		display: block;
	}

	.mb-headerarea{
		position: fixed;
		width: 100%;
		height: 88px;
		z-index: 5;
	}

	.mb-headerarea .header-logoimg{
		margin-top: 15px;
		margin-left: 20px;
		width: 80px;
	}

	nav {
	 	display: block;
	 	position: fixed;
	 	top: 0;
	 	left: -300px;
		bottom: 0;
	 	width: 300px;
		background-color: #e57235;
		overflow-x: hidden;
	 	overflow-y: auto;
		transition: all .5s;
		z-index: 3;
		opacity: 0;
	}

	.open nav {
		top: 0;
	 	left: 0;
		opacity: 1;
	}

	nav .inner {
		padding: 25px;
		padding-top: 100px;
	}

	nav .inner ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	nav .inner ul li {
	 	position: relative;
	 	margin: 0;
	 	border-bottom: 1px solid #fff;
	}

	nav .inner ul li a {
	 	display: block;
		color: #fff;
		font-size: 0.875rem;
		padding: 1em;
		text-decoration: none;
		text-transform: uppercase;
		transition-duration: 0.2s;
	}

	nav .inner ul li a:hover {
		opacity: 0.6;
	}

	#mb-header .btn{
		color: #e57235;
		height: auto;
		text-align: center;
		margin: 20px 10px 10px 10px;
		border: 1px solid #fff;
		border-radius: 8px;
		font-size: 1.625rem;
	}

	nav a.btn-text{
		padding: 8px;
	}

	#mb-header .btn:hover{
		background: #fff;
	}

	#mb-header .btn a:hover{
		opacity: 1.0;
		color: #e57235;
	}

	#mb-header .btn i{
		margin-left: 2%;
	}

	.toggle_btn {
		display: block;
		position: fixed;
		top: 30px;
		right: 30px;
		width: 30px;
		height: 30px;
		transition: all .5s;
		cursor: pointer;
		z-index: 3;
	}

	.toggle_btn span {
		display: block;
		position: absolute;
		left: 0;
		width: 30px;
		height: 2px;
		background-color: #fff;
		border-radius: 4px;
	 	transition: all .5s;
	}

	.toggle_btn span:nth-child(1) {
		top: 4px;
	}

	.toggle_btn span:nth-child(2) {
		top: 14px;
	}

	.toggle_btn span:nth-child(3) {
		bottom: 4px;
	}

	.open .toggle_btn span {
		background-color: #fff;
	}

	.open .toggle_btn span:nth-child(1) {
		-webkit-transform: translateY(10px) rotate(-315deg);
		transform: translateY(10px) rotate(-315deg);
	}

	.open .toggle_btn span:nth-child(2) {
		opacity: 0;
	}

	.open .toggle_btn span:nth-child(3) {
		-webkit-transform: translateY(-10px) rotate(315deg);
		transform: translateY(-10px) rotate(315deg);
	}

	#mask {
		display: none;
		transition: all .5s;
	}

	.open #mask {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #e57235;
		opacity: .8;
		z-index: 2;
		cursor: pointer;
	}

	/* about-md */
	.about-lead{
		font-size: 1.625rem;
	}
	.about-description{
		font-size: 1rem;
	}

	/* lineup-md */
	.lineup-text{
		width: 50%;
	}

	.lineup-text img{
		width: 40%;
	}
	.lineup-iconall{
		width: 50%;
	}
	/* product */
	.product-left{
		height: 496px;
	}

	.product-right{
		height: 496px;
	}

	.product-title {
		font-size: 1rem;
	}

	.product-description{
		font-size: 1rem;
		line-height: 2.0;
	}

	.product-giftimgbox{
		height: 496px;
	}

	/* shop-md */
	#shop .btn{
		font-size: 1.25rem;
	}

	/* share-md */
}

@media (max-width:600px){

	.inner{
		max-width: 370px;
		margin: 0 auto;
	}

	.inner-flex{
		display: flex;
		max-width: 370px;
		margin: 0 auto;
	}

	.inner-lineup{
		margin-bottom: 20px;
	}

	/* header */
	#pc-header{
		display: none;
	}

	#mb-header{
		display: block;
	}

	.mb-headerarea .header-logoimg{
		margin-top: 15px;
		margin-left: 20px;
		width: 80px;
	}

	nav {
		left: -220px;
		width: 220px;
	}

	/* about-sp */
	.about-text{
		padding-top: 15%;
		padding-bottom: 15%;
	}

	.about-lead{
		width: 90%;
		margin: 0 auto;
		font-size: 1.375rem;
		margin-bottom: 10px;
	}

	.about-description{
		width: 70%;
		font-size: 0.875rem;
	}

	/* lineup-sp */
	.inner-lineup{
		flex-direction: column;
		max-width: 351px;
	}

	.lineup-text{
		width: 100%;
		margin-bottom: 8px;
	}

	.lineup-text img{
		width: 35%;
		margin: 0 auto;
		margin-top: 10px;
	}

	.lineup-iconall{
		width: 80%;
		margin: 0 auto;
	}

	/* product-sp */
	.product-flex{
		flex-direction: column;
	}

	.product-flex-reverse{
		flex-direction: column-reverse;
	}

	.product-left{
		width: 100%;
		height: auto;
		padding-top: 10%;
	}

	.product-right{
		width: 100%;
		height: auto;
		padding-top: 10%;
	}

	.product-text{
		width: 70%;
	}

	.product-title{
		font-size: 0.875rem;
	}

	.product-description{
		font-size: 0.875rem;
	}

	img.product-img{
		padding-bottom: 5%;
	}

	.product-giftimgbox{
		width: 100%;
		height: auto;
		padding-top: 10%;
		padding-bottom: 5%;
	}

	/* shop-sp */
	#shop{
		padding-top: 10%;
		padding-bottom: 10%;
	}

	.shop-text{
		font-size: 1.0rem;
		margin-bottom: 4%;
	}

	#shop .btn{
		width: 50%;
		font-size: 1.0rem;
		padding-top: 4%;
		padding-bottom: 4%;
	}

	/* footer-sp */
	#share{
		width: 30%;
		padding-top: 6%;
	}

	#share img{
		width: 100%;
	}
}



