@charset "UTF-8";

@import url(//db.onlinewebfonts.com/c/490a4d8d3a78b2c0ba5e434c76234790?family=DIN+Alternate);

body {
	width: 100vw;
	position: relative;
}

.inner {
	
	margin: 0 auto;
}
header {
		background: #ef7d30;
	position: fixed;
	top: 0;
	right: 50%;
	transform: translateX(50%);
padding: 2rem;
	height: 110px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 9;
	}
header h1 {
	width: 118px;
	height: 87px;
	background: url("../img/frais_logo.svg") no-repeat center center / contain;
}
header .hd_nav{
	display: flex;
	align-items: center;
font-size: 1.125rem;
	margin: 0 0 0 auto;
}
header .hd_nav li:first-child{
	padding: 5px 25px;
}
header .hd_nav li:nth-child(2) {
	padding: 5px 15px;
	padding-left: 50px;
	border: 2px solid #fff;
	border-radius: 30px;
	
	background: url("../img/frais_cart_icon.svg") no-repeat left 15px center/24.2px;
}
header .hd_nav li a{
	text-decoration: none;
	color: #fff;
	font-family: futura;
	letter-spacing: 0.1rem;
}
header .hd_nav li:first-child a::before{
	content: 'EN';
	color: #ccc;
}

@media(max-width:1000px){
	header .hd_nav{
		display: flex;
		flex-flow: column-reverse;
		margin-top: 24px;
	}
	header .hd_nav li:first-child{
		margin-top: 0.2rem;
	}
}
@media(max-width:570px){
	header{
		padding: 2rem 1rem;
	}
	header h1{
transform: scale(0.8);
	}
header .hd_nav li:nth-child(2){
		transform: scale(0.8);
	}
}

/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 102;
  right: 50%;
  transform: translateX(50%);
  top   : 24px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span{
  background :#000;
}
.hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(6px);
  -moz-transform   : translateY(6px);
  transform        : translateY(6px);
}
.hamburger.active span:nth-child(2){
-webkit-transform: translateY(-4px);
  -moz-transform   : translateY(-4px);
  transform        : translateY(-4px);
}  

.hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-14px);
  -moz-transform   : translateY(-14px);
  transform        : translateY(-14px);
}

nav.globalMenuSp {
  position: fixed;
  z-index : -1;
  top  : 0;
  left : 0;
  color: #000;
  background: rgba(255,255,255,0.8);
  text-align: center;
  width: 100%;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
	padding-top: 80px;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li a:hover{
  color: rgba(52, 167, 178, 1)
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration :none;
	font-family: futura;
	font-size: 1.5rem;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
	z-index: 10;
}
.top_main{
	width: 100%;
	height: 390px;
	background: #ef7d30;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.top_main h1{
	margin-top: 5rem;
}
.top_main h1 img{
	float: left;
	animation-name: rotate;
	animation-duration: 1s;
	animation-timing-function: ease;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-fill-mode: both;
	animation-play-state: running;
}
@keyframes rotate {
	0% {
		transform: rotate(0);
	}
	50% {
		transform: rotate(15deg);
	}
	100% {
		transform: rotate(0);
	}
}
.top_main h1 span {
	float: left;
	margin: 0 1rem;
	font-family: futura;
	font-size: 3rem;
	font-weight: 100;
	letter-spacing: 0.1rem;
	color: #ffcd2c;
}
.top_main h2 {
	font-family: futura;
	font-size: 1rem;
	font-weight: 100;
	letter-spacing: 0.1rem;
	color: #ffcd2c;
	margin-top: 2rem;
}
#block01 {
		width: 100%;
	height: 1200px;
	position: relative;
}
.product {
	width: 100%;
	height: 1200px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.healthy{
	width: 250px;
	position: absolute;
	bottom: 400px;
	right: 180px;
}
.flex_item {
	width: calc((100% - 2rem) / 3);
	display: flex;
	justify-content: center;
}
.flex_item:nth-child(-n+3){
	padding-top: 80px;
}
.flex_item:first-child,
.flex_item:nth-child(4),
.flex_item:nth-child(7){
	padding-left: 180px;
}
.flex_item:nth-child(3),
.flex_item:nth-child(9){
	padding-right: 180px;
}
.flex_item a {
	max-height: 280px;
		text-decoration: none;
	display: block;
	text-align: center;
	color: #000;
	font-size: 1.25rem;
	font-family: futura;
	font-weight: 100;
}
.flex_item a:hover{
	color: #34a7b2;
}
.flex_item a p {
		padding-top: 1rem;
}
.package_box {
	width: 160px;
	transition: all 200ms 0s cubic-bezier(0, 1.8, 1, 1.8);

}
.package_box:hover{
	transform: rotate(5deg);
}
@media(max-width:1060px){
	#block01{
		height: 1900px;
	}
	.product{
		height: 1800px;
	}
	.flex_item{
		width: calc((100% - 2rem) / 2);
	}
	.flex_item{
	padding-top: 80px;
}
	.flex_item:first-child,
	.flex_item:nth-child(3),
	.flex_item:nth-child(5),
	.flex_item:nth-child(7),
	.flex_item:nth-child(9){
		padding-left: 80px;
	}
	.flex_item:nth-child(2),
	.flex_item:nth-child(4),
	.flex_item:nth-child(8){
		padding-right: 80px;
	}
	
.flex_item:nth-child(4){
	padding-left: 0;
}
.flex_item:nth-child(3),
	.flex_item:nth-child(9){
	padding-right: 0;
}
	.flex_item:nth-child(7),
	.flex_item:nth-child(8){
		margin-top: 30px;
	}
	.healthy{
	position: absolute;
	bottom: 35%;
	right: 10%;
}
}
@media(max-width:570px){
	.flex_item .package_box img{
		transform: scale(0.8);
	}
	.healthy{
		position: absolute;
		bottom: 35%;
		right: 5%;
		transform: scale(0.8);
	}
	.flex_item{
		padding: 80px 0 0 0 !important;
	}
}
@media(max-width:470px){
	#block01{
		height: 1600px;
	}
	.product{
		height: 1500px;
	}
	.flex_item .package_box img{
		transform: scale(0.6);
	}
		.healthy{
		position: absolute;
		bottom: 30%;
		right: -5%;
		transform: scale(0.6);
	}
}
/*.flex_item img{
	  box-shadow:
    0 1.9px 2.5px rgba(0, 0, 0, 0.057),
    0 5px 6.1px rgba(0, 0, 0, 0.076),
    0 10.1px 11.4px rgba(0, 0, 0, 0.086),
    0 19.2px 19.8px rgba(0, 0, 0, 0.092),
    0 38.4px 34.8px rgba(0, 0, 0, 0.1),
    0 101px 74px rgba(0, 0, 0, 0.13);
}*/
.shipping{
	width: 100%;
	height: 72px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f5e4c3;
}
.shipping h2{
	font-family: "DIN Alternate";
	font-size: 1.25rem;
	letter-spacing: 0.1rem;
	color:rgba(52.0, 167.0, 178.0, 1.0);
}
.email{
	width: 100%;
	height: 270px;
	background: #fff;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 5;
	overflow: hidden;
}
.email .chips {
	position: absolute;
	bottom: 0;
}
.email .apples {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
.email .mid_email{
	margin: 0 auto;
	width: 845px;
	height: 87px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.mid_email h1 {
	font-size: 2rem;
	font-family: futura;
	font-weight: 100;
	letter-spacing: 0.05em;
}
.mid_email .sign_up h2 {
		font-size: 1rem;
	font-family: futura;
	font-weight: 50;
	letter-spacing: 0.05em;
}
.mid_email .sign_up form {
	margin-top: 1rem;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.mid_email .sign_up input[type=email] {
  background-color: #e6e6e6;
	font-family: "DIN Alternate";
	font-size: 1em;
	letter-spacing: 0.1em;
  color: #8A8A8A;
  padding: 12px 20px;
  border: none;
  border-radius: 4px 0 0 4px;
  cursor: pointer;
}
.mid_email .sign_up input::placeholder {
  color: #b3b3b3;
}
.mid_email .sign_up input[type=submit] {
	-webkit-appearance: none;
	appearance: none;
	background: rgba(0,0,0,1);
	opacity: 1;
		font-family: "DIN Alternate";
	font-size: 1.25em;
	letter-spacing: 0.1em;
  color: white;
  padding: 9px 20px;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
	margin: 0 0 0 -2px;
}
footer {
	width: 100%;
}
footer .bottom_nav {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 369px;
	background: rgba(52.0, 167.0, 178.0, 1.0);
	position: relative;
}
footer .bottom_nav h1 {
		width: 166px;
	height: 122px;
	background: url("../img/frais_logo.svg") no-repeat center center / contain;
	position: absolute;
	left: 106px;
	top: 77px;
}
footer .bottom_nav .bottom_menu {
	display: flex;
	justify-content: space-between;
	padding-left: 297px;
	padding-top: 100px;
}
@media(min-width:1039px){
	footer .bottom_nav .bottom_menu{
		width: 780px;
	}
}
footer .bottom_nav .bottom_menu li a{
		text-decoration: none;
	color: #fff;
	font-family: futura;
	font-size: 1.5rem;
}
footer .bottom_nav .bottom_menu li a:hover{
	color: #ffcd2c;
}
footer .bottom_nav .sns_nav {
	padding-top: 100px;
	padding-right: 10%;
}
footer .bottom_nav .sns_nav span {
		color: #fff;
	font-family: futura;
	font-size: 1.5rem;
}
footer .bottom_nav .sns_nav a {
	display: inline-block;
	text-align: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
margin-top: 1rem;
	margin-right: 0.5rem;
}
footer .bottom_nav .sns_nav a:hover{
	transform: rotate(10deg);
			display: inline-block;
	text-align: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
footer .bottom_nav .sns_nav a i {
	line-height: 40px;
	color: rgba(28.0, 86.0, 84.0, 1.0);
}
footer .copyright {
	width: 100%;
	height: 56px;
	background: rgba(45.0, 145.0, 150.0, 1.0);
	display: flex;
	justify-content: center;
	align-items: center;
	}
footer .copyright small {
	font-size: 0.75rem;
	font-family: "DIN Alternate";
	margin-right: 0.5rem;
	color: 	rgba(28.0, 86.0, 84.0, 1.0);
}
footer .copyright .footer_nav {
	display: flex;
}
footer .copyright .footer_nav li {
	margin-right: 0.5rem;
}
footer .copyright .footer_nav li a {
	font-size: 0.75rem;
	font-family: "DIN Alternate";
	text-decoration: none;
	color: rgba(28.0, 86.0, 84.0, 1.0);
}
footer .copyright .footer_nav li a::before {
	content: "|";
	color: rgba(28.0, 86.0, 84.0, 1.0);
	margin-right: 0.5rem;
}
@media (max-width:1038px){

	.shipping h2{
		font-size: 1rem;
	}

	.email .mid_email{
	display: flex;
	flex-flow: column;
		justify-content: center;
	align-items: center;
}
	.mid_email h1 {
		width: 285px;
	font-size: 1.25rem;
}
	.mid_email .sign_up{
		margin-top: 2rem;
		display: flex;
		flex-flow: column;
		align-items: center;
	}
	.email .chips{
		transform: scale(0.8);
		z-index: -1;
	}
	.email .apples{
		transform: scale(0.8);
	position: absolute;
	top: -5%;
	right: -8%;
	}
	footer .bottom_nav {
		display: flex;
		flex-flow: column;
padding-left: 50%;
	height: 269px;
}
	footer .bottom_nav h1 {
		width: calc(166px * 0.6);
	left: 10%;
	top: 25%;
}
	footer .bottom_nav .bottom_menu {
	display: flex;
		flex-flow: column;
		padding-left: 0;
	padding-right: 0;
	padding-top: 0;
		
}
	footer .bottom_nav .bottom_menu li a{
		font-size: 1.25rem;
	}
	footer .bottom_nav .sns_nav span {
		font-size: 1.25rem;
	}
	footer .bottom_nav .sns_nav {
	padding-top: 0;
	padding-right: 10%;
}
	footer .bottom_nav .sns_nav a{
		margin-top: 0;
		margin-bottom: 1rem;
		transform: scale(0.7);
	}
}