@charset "UTF-8";

html{
	font-size:62.5%;
}

#wrapper{
	width:100%;
}

.pc{
	display: block;
}

.sp{
	display:none;
}

/* 全体の文字とリンク */
h3, h4, p, ul li, a, dt, dd{
	line-height:2.5;
	letter-spacing:3px;	
	overflow-wrap: break-word;
	text-align: justify;
	text-decoration: none;
}

ul li{
	list-style-type: none;	
}

/* loading */
#loading {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background: #fff;
	text-align: center;
}

#loading_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#loading .kvArea {
	width: 100%;
}

#loading .kvArea .img_box {
	text-align: center;
	width:17%;
	margin:30px auto;
}

#loading .kvArea .img_box img {
	max-width: 100%;
	height: auto;
}

/*inview*/
.fadeIn {
	opacity: 0;
	transition-delay:2s;
	transition:2s;
}
.fadeIn.is-show {
	opacity: 1;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 20%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/*戻るボタン*/
#p-top{
	display:block;
    position: fixed;
    bottom: 5%;
    right: 3%;
	z-index:1000;
	padding:0.7% 1%;
}

.dli-chevron-up {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  width: 2em;
  height: 2em;
  border: 0.3em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}

#p-top:hover {
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}

.bg{
	width:100vw;
	height:100vh;
 	background-image:url("../img/top.jpg");
	background-size:cover;
	background-repeat: no-repeat;
 	background-position:top center;
	/*filter:brightness(0.8);*/
}

/*ボタン全体の形状*/
.openbtn1{
    /*はじめは非表示に*/
  display: none;
    /*ボタンの位置*/
  position:fixed;
  top:10px;
  right: 10px;
  z-index: 999;
    /*ボタンの形状*/
  background-color:rgba(204,204,204,0.7);
  cursor: pointer;
    width: 50px;
    height:50px;
  border-radius: 5px;
}

/*ボタンのアイコン設定*/
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
  	background-color: #fff;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

/*activeクラスが付与された後のボタンのアイコン設定*/
.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    display: block;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

header{
	display: inline-block;
}

/*==ヘッダーの形状*/
#header{
  height: 70px;
  width:100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color:transparent;
  color:#fff;
  text-align: center;
  padding: 20px;
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
  opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
  opacity: 1;/*不透明にして出現*/
}


/*==ヘッダーのテキストナビゲーションの形状*/
#g-navi ul{
  list-style: none;
  display: flex;
  justify-content: center;
}

#g-navi ul li a{
  display: block;
  text-decoration: none;
  color: #fff;
  font-size:1.5rem;
  padding:10px 10px 0;
  line-height:1.5;
}

#g-navi ul li a .sub{
	display: block;
	font-size:1rem;
}

.onlineshop{
	padding-left:20px;
}

#g-navi ul li.current a,
#g-navi ul li a:hover{
	color:#fff;
	-webkit-transition:0.3s ease-out;
	-moz-transition:0.3s ease-out;
	-ms-transition:0.3s ease-out;
	transition:0.3s ease-out;
}

/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
#header.dnone #g-navi{
  position:fixed;
  top: 0;
  left: 0;
  z-index: -1;
  /*高さと幅*/  
  width:100%;
  height: 100vh;
  /*天地中央＆テキスト中央揃え*/  
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /*はじめは透過0に*/  
  opacity: 0;
  transition: all 0.4s;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
  opacity: 1;/*不透明に*/
  z-index:10;/*最前面に*/
  background:#eee;
}

#header.dnone.panelactive #g-navi ul{
  display:block;/*flexの横並びをblockにして縦並びに*/
}

#header.dnone.panelactive #g-navi ul .onlineshop{
	padding-left:0!important;
}

#header.dnone.panelactive #g-navi li a{
  color: #333;
  text-decoration: none;
  padding:20px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  transition:all 0.3s;
}

#header.dnone.panelactive #g-navi li a .sub{
	font-weight:400;
}

#header.dnone.panelactive #g-navi li a:hover{
	color:#666;
 	-webkit-transition:0.3s ease-out;
	-moz-transition:0.3s ease-out;
	-ms-transition:0.3s ease-out;
	transition:0.3s ease-out;
}

section{
    position: relative;
    z-index: 1;
}

.top-logo{
	width:17%;
	position:absolute;
	z-index: 3;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
	text-align: center;
}

/*フッター*/
footer{
	width:100%;
}

#footer{
	box-sizing: border-box;
	padding:40px 30px 30px;
	margin-top:50px;
	text-align: center;
}

#footer a img{
	width:60px;
	margin-bottom:20px;
}

#footer a{
	font-size:1.2rem;
}

.credit{
	font-size:1rem;
	text-align: center;
}

.footer a:link, .footer a:visited{
	text-decoration:none;
}

p, .sub, #area-2 h2, dd, #area-4 h2, .name, #area-4 h3, .flavor-dl dt, .flavor-dl dd{
	font-family: 'Noto Sans JP', sans-serif;
}

p{
	font-size:1.2rem;
	color:#000;
}

#g-navi li, dt, .link-button, a, .item-link-button p{
	font-family: "Roboto", serif;
}

#g-navi li{
	font-weight:700;
}

.sub{
	font-weight:500;
}

.flex-big-box{
	width:100%;
	display:flex;
	align-items: stretch;
}

.item-img-box{
	width:30%;
}

.main-img{
	width:100%;
	height:70vw;
	background-image:url("../img/pc-items.jpg");
	background-position:top center;
	background-size:cover;
	background-repeat: no-repeat;
}

.basic-container{
	width:100%;
	height:60vw;
	background-image:url("../img/basic-bg-pc.jpg");
	background-position:top center;
	background-size:cover;
	background-repeat: no-repeat;
	position:relative;
}

.basic-img{
	width:50%;
	position:absolute;
	z-index: 3;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
	text-align: center;
}

.main-container{
	width:70%;
	box-sizing: border-box;
	padding:30px;
}

.cap-contanier{
	width:60%;
	margin:40px auto;
}

.cap-contanier h1, .caption-box h2, .item-name h2, #area-4 h2{
	letter-spacing:2px;
	color:#000;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:700;
	line-height:2;
}

.item-name h3, .use h4, .all-ingre h4, .flavor-dl dt{
	letter-spacing:2px;
	color:#000;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:700;
}

.cap-contanier h1{
	font-size:2rem;
}

.caption-box h2{
	font-size:1.9rem;
	margin-bottom:15px;
}

.item-name h2, .step h3{
	font-size:.1.8rem;
	margin-bottom:15px;
}

.item-name h3{
	font-size:1.5rem;
}

.cap-contanier p{
	margin-top:30px;
}

.products, .role, .step{
	background-position:top center;
	background-size:100%;
	background-repeat: no-repeat;
}

.ingre{
	background-image:url("../img/ingredients-bg.svg");
	background-position:top center;
	background-size:100%;
	background-repeat: no-repeat;
}

.products{
	background-image:url("../img/products-bg.svg");
}

.role{
	background-image:url("../img/role-bg.svg");
}

.step{
	background-image:url("../img/step-bg.svg");
}

#area-2, #area-3, #area-4{
	width:100%;
	box-sizing: border-box;
	padding:40px 0 0;
}

.main-container{
	width:70%;
	margin:30px auto;
}

.ingre-flex{
	width:100%;
	box-sizing: border-box;
	padding:30px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.img-box{
	width:30%;
}

.caption-box{
	width:65%;
}

.caption-box h2 .step-sub{
	font-size:1.1rem!important;
}

.flavor-dl dt, .flavor-dl dd{
	font-size:1.2rem;
}

.flavor-dl dd{
	letter-spacing:2px;
	color:#000;
	font-family: 'Noto Sans JP', sans-serif;
	line-height:2;
	margin-bottom:15px;
}

.item-flex{
	width:100%;
	box-sizing: border-box;
	margin:10px 0 50px;
	padding-bottom:50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.no-margin{
	margin-bottom:0!important;
	padding-bottom:20px!important;
}

.item-img{
	width:40%;
}

.face{
	position:relative;
	z-index:1;
}

.basic-icon{
	width:22%;
	position:absolute;
	top:-5%;
	left:-10%;
	z-index:5;
}

.item-caption{
	width:55%;
}

.item-name p{
	font-size:1.1rem;
	margin-top:10px;
}

.main-cap{
	width:100%;
	margin:20px auto 30px;
}

.use, .all-ingre{
	width:100%;
	margin:30px 0;
}

.use h4, .all-ingre h4{
	font-size:1.3rem;
}

.small, .all-ingre p{
	font-size:1rem;
	margin-top:10px;
	color:#666;
}

.item-link-button{
	width:30%;
	margin:20px auto;
}

.item-link-button a{
	width:100%;
	display:block;
	box-sizing: border-box;
	padding:5px 0;
	text-align: center;
	font-weight:700;
	color:#666;
	font-size:1.3rem;
	border-bottom:2px solid #666;
}

.item-link-button a:hover, .all-items-link a:hover{
	color:#000;
	border-bottom:2px solid #000;
	-webkit-transition:0.4s ease-out;
	-moz-transition:0.4s ease-out;
	-ms-transition:0.4s ease-out;
	transition:0.4s ease-out;
}

.item-link-button p{
	padding:5px 0;
	text-align: center;
	font-weight:700;
	color:#666;
	font-size:1.3rem;
}

.all-items-link{
	width:40%;
	margin:0 auto;
}

.all-items-link a{
	display:block;
	box-sizing: border-box;
	padding:5px 0;
	text-align: center;
	font-weight:700;
	color:#666;
	font-size:1.3rem;
	border-bottom:2px solid #666;
}

.step{
	width:100%;
	box-sizing: border-box;
	padding:40px 0;
}

.role{
	width:100%;
	box-sizing: border-box;
	padding:45px 0;
}

.role h2, .step h2{
	text-align: center;
	font-size:2rem;
}

.role-dl {
	width:50%;
	margin:70px auto 30px;
	display: flex;
	flex-wrap: wrap;
}

.role-dl dt, .role-dl dd{
	box-sizing: border-box;
	padding:10px;
}

.role-dl dt {
	width: 40%;
	text-align: center;
	font-size:1.5rem;
	line-height:1.8!important;
	border-right:2px solid #fff;
	border-bottom:2px solid #fff;
	font-weight:700;
	background-color:#ccc;
}

.name{
	display:block;
	font-weight:400;
	font-size:1.1rem;
	letter-spacing:4px!important;
}

.role-dl dd {
	width:60%;
	padding-left:50px;
	font-size:1.2rem;
	border-bottom:2px solid #fff;
	background-color:#e3e3e3;
}

.role-dl dd p{
	margin-top:8px;
}

.role-dl dt:last-of-type, .role-dl dd:last-of-type{
	border-bottom:none!important;
}

.step-container{
	width:70%;
	margin:50px auto;
}

.step-container:last-of-type{
	margin-bottom:0!important;
}

.step-flex{
	display:flex;
	align-items: center;
	margin-top:20px;
}

.step-img{
	flex-basis:20%;
	width:100%;
	box-sizing: border-box;
	padding:0 20px;
}

.arrow{
	flex-basis:3%;
}

.step-img p{
	text-align: center;
}

.step-sub{
	font-weight:400;
	font-size:1.3rem;
}

.step-title{
	font-size:1.6rem;
	color:#191970;
	font-weight:700;
}

.caution{
	width:100%;
	box-sizing: border-box;
	padding:30px;
	color:#b22222;
}

.end-img{
	width:30%;
	margin:50px auto;
	box-sizing: border-box;
	padding:40px 0;
}


/*タブレット*/
@media screen and (max-width: 820px){

	#loading .kvArea .img_box, .top-logo{
		width:40%;
	}
	
	.main-img{
		height:100vw;
		background-image:url("../img/sp-items.jpg");
	}

	.basic-container{
		width:100%;
		height:100vw;
		background-image:url("../img/basic-bg-sp.jpg");
	}
	
	.basic-img{
		width:70%;
	}

	.item-img-box{
		width:40%;
	}

	.main-caption-box{
		width:80%;
		padding:30px 10px;
	}

	.cap-contanier{
		width:70%;
	}
	
	.main-container{
		width:90%;
		margin:50px auto;
	}

	.item-flex{
		display:block;
		width:90%;
		margin:20px auto 60px;
	}
	
	.item-img{
		width:70%;
		margin:0 auto 40px;
	}
	
	.item-caption{
		width:90%;
		margin:auto;
	}

	.role-dl, .step-container{
		width:90%;
		margin:30px auto;
	}
	
	.end-img{
		width:50%;
		margin:30px auto;
		padding:20px 0;
	}

}


/*スマホ*/
@media screen and (max-width:640px){

	.pc, #g-navi{
		display:none;
	}
	
	.sp, .flex-big-box, .ingre-flex{
		display: block;
	}
	
	.bg{
		background-image:url("../img/sp-top.jpg");
	}
	
	#loading .kvArea .img_box, .top-logo{
		width:60%;
	}
	
	.item-img-box, .main-caption-box{
		width:100%;
	}
	
	.cap-contanier{
		width:80%;
		margin:50px auto;
	}
	
	.basic-img{
		width:80%;
	}
		
	.img-box{
		width:70%;
		margin:0 auto 30px;
	}
	
	.main-container{
		margin:30px auto;
	}

	.ingre-flex{
		padding:10px 0;
		margin-bottom:50px;
	}
	
	.ingre-flex:last-of-type{
		margin-bottom:0;
	}
	
	.caption-box{
		width:100%;
		box-sizing: border-box;
	}
	
	.caption-box h2{
		text-align: center;
	}
	
	.caption-box h2 .step-sub{
		display:block;
	}

	.ingre{
		background-position:top 1% center;
	}

	.item-img{
		width:90%;
		margin:0 auto 40px;
	}
	
	.basic-icon{
		width:30%;
		top:-10%;
		left:-15%;
	}
	
	#area-3 .main-container, #area-4 .main-container{
		margin-top:0;
	}
	
	.item-caption{
		width:100%;
		margin:auto;
	}
	
	.item-flex{
		margin:0 auto 60px;
		padding:0 0 30px;
	}
	
	.item-flex:last-of-type{
		margin-bottom:20px;
		padding:0;
	}

	.item-link-button{
		width:60%;
	}

	.all-items-link{
		width:90%;
	}
	
	.role-dl dd {
		box-sizing: border-box;
		padding:0 20px;
	}

	.step-container{
		width:90%;
		margin:40px auto;
	}
	
	.step-flex{
		flex-wrap: wrap;
	}

	.step-img{
		flex-basis:40%;
		width:100%;
		box-sizing: border-box;
		padding:0 20px 20px;
	}

	.arrow{
		flex-basis:5%;
		margin-top:-40px;
	}
	
	.end-img{
		width:80%;
		margin:10px auto;
		padding:0;
	}



}
/* CSS Document */

