@charset "UTF-8";

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

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

.inner {
	
	margin: 0 auto;
}
header {
	background: rgba(44.0, 120.0, 115.0, 1.0);
	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::after{
	content: 'JP';
	color: #CCCCCC;
}


@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);
	}
		.shopping_cart h1{
		text-align: center;
	}
}
@media(min-width:571px){
	.br-sp {display: none; 
		}

}
/*　ハンバーガーボタン　*/
.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-size: 1.5rem;
	font-weight: bold;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
	z-index: 10;
}

.shopping_cart{
	width: 100%;
	height: 390px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(44.0, 120.0, 115.0, 1.0);
}
.shopping_cart h1{
	margin-top: 5rem;
	font-size: 3rem;
	
	color: #ffcd2c;
	
}
.shopping_info{
	width: 100%;
	height: 510px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.shopping_info img{
	height: 40px;
	margin-bottom: 45px;
}
.shopping_info h2 {
	font-family: "DIN Alternate";
	font-weight: bold;
	font-size: 2rem;
	margin-bottom: 25px;
}
.shopping_info h3{
		font-family: "DIN Alternate";
	font-weight: lighter;
	font-size: 1rem;
	margin-bottom: 35px;
}
.shopping_info a{
	text-decoration: none;
	width: 247px;
	height: 46px;
	background: #34a7b2;
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.shopping_info a:hover {
	background: #2e96a0;
}
.shopping_info a span{
	font-size: 1rem;
	color: #fff;
}

.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;
	z-index: -1;
}
.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;
	letter-spacing: 0.05em;
}
.mid_email .sign_up h2 {
		font-size: 1rem;
	font-family: futura;
	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-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-size: 1rem;
}
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 {
	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);
	}
.email .apples{
		transform: scale(0.8);
	position: absolute;
	top: -5%;
	right: -8%;
	}
	footer .bottom_nav {
		display: flex;
		flex-flow: column;
padding-left: 48%;
	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);
	}
}