@charset "utf-8";
/* RecetCSS */
* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 16px;
	vertical-align: baseline;
	text-decoration: none;
}

ul,li {
	float: left;
	list-style-type: none;
}

a:link, a:visited {
	color: #333;
}

:hover {
	transition: all 0.2s ease-in-out;
}

/* RecetCSS until here*/

/* Google fonts */
.font_en {
	font-family: 'Bebas Neue', cursive;
}

.font_jp {
	font-family: 'Noto Sans JP', sans-serif;
}

/* Google fonts until here */

html {
	scroll-behavior: smooth;
  }

body {
	width: 100%;
	color: #333;
	overflow-x: hidden;
	box-sizing : border-box;
}

main, footer {
	margin-top: 60px;
	margin: 0 auto;
	text-align: center;
}

.sp_only {
	display: none;
}

.accent {
	font-size: 36px;
	color: #E92A2A;
}

.underline {
	border-bottom: solid 1px #333;
}

.underline:hover {
	border-bottom: solid 1px #E92A2A;
}

header {
	position: relative;
	height: 60px;
	padding: 10px 20px;
}

header h1 a {
	font-size: 30px;
	float:left;
}

header h1 img {
	vertical-align: bottom;
}


header nav {
	position: absolute;
	right: 20px;
}

header nav ul li {
	width: 120px;
	font-size: 28px;
	line-height: 24px;
	text-align: center;
	font-weight: bold;
}

header nav ul li a {
	display: block;
	font-size: 28px;
	font-weight: normal;
}

header nav ul li a:hover {
	color: #E92A2A;
}

header nav ul li span{
	font-size: 12px;
	font-weight: normal;
	text-align: center;
}

header nav span {
	display: block;
}

section h3 {
	font-size: 48px;
	font-weight: normal;
	padding: 40px;
}

section h3 .accent {
	font-size: 48px;
}

section > img {
	padding-top: 24px;
	padding-bottom: 24px;
}

.sns {
	margin-left: 30px;
}

.sns li {
	width: 60px;
}

.sns img {
	padding-top: 12px;
}

.top {
	width: 100%;
	min-height: 1024px;
}

.top > img  {
	padding-top: 400px;
	padding-left: 30px;
}

.catch h2 {
	display: inline-block;
	font-size: 30px;
}

.catch h2 .accent{
	font-size: 36px;
}

.catch {
	margin-bottom: 40px;
}

.scroll {
	padding-top: 100px;
}

.scroll p, .scroll .accent {
	font-size: 24px;
}

.scroll img {
	padding-left: 12px;
}

.concept p {
	line-height: 2;
	padding-bottom: 20px;
}

.company table {
	width: 500px;
	margin: 0 auto;
}

.company table th, .company table td {
	text-align: left;
	height: 40px;
	line-height: 40px;
	font-weight: normal;
	min-width: 120px;
}

.company table td img {
	vertical-align: sub;
	height: 16px;
	width: auto;
}

footer {
	width: 760px;
	padding: 30px 0px;
}

footer .footer_nav {
	line-height: 2;
	padding-bottom: 24px;
}

footer .footer_nav a {
	font-size: 14px;
}

footer .copyright {
	font-size: 13px;
}


/* parallax */

.parallax {
    min-height: 400px;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;    
}

.content {
    padding: 40px 0px 100px;
    background-color: #fff;
}

.top.parallax {
	min-height: 1024px;
    background-image: url("img/milk_bg.png");
}

.middle.parallax {
	height: 600px;
    background-image: url("img/city.jpg");
}
.bottom.parallax {
    background-image: url("img/milk_bg.png");
}

.top.sub.parallax,
.bottom.sub.parallax {
	min-height: 300px;
}


@media screen and (max-width:1028px) {
	
	header .pc_only{
		height : 160px;
	}
	
	header .sp_only {
	display: none;
}

	header h1 a {
		float: none;
		text-align: center;
	}
	
	header nav {
		position: static;
		min-width: 720px;
		margin: 0 auto;
	}
}

@media screen and (max-width:767px) {
	
	* {
		font-size: 13px;
	}
			
	.pc_only {
		display: none;
	}
	
	.sp_only {
		display: block;
		text-align: center;
	}
	
	header {
		height: 60px;
		padding: 10px;
	}
	
	header nav {
		width: 100%;
		padding-top: 12px;
	}
	
	header nav ul li {
		width: 100%;
		text-align: left;
		padding-left: 80px;
	}
	
	header nav ul li a {
		font-size: 20px;
		line-height: 40px;
	}
	
	header nav ul li span {
		text-align: left;
		position: absolute;
		align-content: center;
		left: 200px;
	}
	
	.sns {
		float: none;
		display: block;
		width: 200px;
		position: relative;
    	left: 60px;
	}
	
	.sns li {
	width: 60px;
	padding-left: 0;
	}
	
	.sns img {
		width: 24px;
		height: 24px;
	}
	
	/* humurger menu */
	
	#nav-drawer {
		position: fixed;
		bottom: 10px;
		right: 10px;
	}

	/*tickbox no show */
	.nav-unshown {
		display:none;
	}

	/*icon space */
	#nav-open {
		display: inline-block;
		width: 30px;
		height: 22px;
		vertical-align: middle;
	}

	/* humburger icon */
	#nav-open span, #nav-open span:before, #nav-open span:after {
		position: absolute;
		height: 3px;/* line-width */
		width: 25px;/* length */
		border-radius: 3px;
		background: #333;
		display: block;
		content: '';
		cursor: pointer;
	}
	#nav-open span:before {
		bottom: -8px;
	}
	#nav-open span:after {
		bottom: -16px;
	}

	/* close action area*/
	#nav-close {
		display: none;
		position: fixed;
		z-index: 99;
		top: 0;/* to show overall */
		right: 0;
		width: 100%;
		height: 100%;
		background: #000 url("/img/close.png") no-repeat center 57%;
		opacity: 0;
		transition: .3s ease-in-out;
	}

	/*中身*/
	#nav-content {
		overflow: auto;
		position: fixed;
		bottom: 0;
		right: 0;
		z-index: 9999;/* top-layer */
		width: 100%;
		max-width: 767px;
		height: 40%;
		background: #fff;
		transition: .3s ease-in-out;
		-webkit-transform: translateX(215%);
		transform: translateX(215%);/* hide in right out-screen */
	}

	/* when ticked, display below */
	#nav-input:checked ~ #nav-close {
		display: block;/*show cover*/
		opacity: .5;
	}

	#nav-input:checked ~ #nav-content {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);/* show content*/
		box-shadow: 6px 0 25px rgba(0,0,0,.15);
	}
	
	/* humburger menu until here */

	.sp_only h1 a {
		font-size: 20px;
	}
	
	.accent {
    font-size: 20px;
	}
	
	section h3 {
		font-size: 30px;
		padding: 0px;
		}

	section h3 .accent {
    	font-size: 30px;
	}

	.top h2 {
    	font-size: 16px;
	}
	
	.top h2 .accent {
    	font-size: 20px;
	}
	
	.top > img {
		width: 80%;
		height: auto;
		padding: 30px 0px;
		margin-top: 15vh;
	}
	
	.catch {
    	margin-top: 0px;
    	margin-bottom: 15px;
	}
	.scroll img {
    	width: 8px;
		height: auto;
		padding-left: 8px;
	}
	
	.scroll .accent {
    	font-size: 24px;
	}
	
	.bg.sp_only {
		height: 300px;
		background-image: url(img/city.jpg);
		background-size: 300%;
		background-position: 0% 70%;
	}

	section:nth-child(3).middle.parallax {
		display: none;
	}

	.company table {
    	width: 95%;
	}
	
	.company table th, .company table td {
		display: block;
		text-align: center;
		height: auto;
	}
	
	.company table th {
    	margin-bottom: -18px;
    	font-weight: bold;
	}

	.company table td img {
		vertical-align: baseline;
		width: auto;
		height: 12px;
		user-select: none; /* CSS3 */
		-moz-user-select: none; /* Firefox */
		-webkit-user-select: none; /* Safari、Chromeなど */
		-ms-user-select: none; /* IE10かららしい */
	}

	.contact p {
		line-height: 2;
	}
	
	footer {
		width: 100%;
		padding-top: 40px;
		padding-bottom: 10px;
	}
	
	footer .footer_nav a {
		font-size: 13px;
	}
	
	footer .copyright {
		font-size: 11px;
	}
}

@media screen and (max-width: 575px) {

	body {
		overflow-x: hidden;
	}

/* mobile parallax adjusted */

	.parallax:after {
		content: '';
		position: fixed;
		top: 0;
		height: 100vh;
		left: 0;
		right: 0;
		z-index: -1;
		background: url("img/milk_bg_sp_01.png");
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}

	.parallax {
		background-image: none !important;
		min-height: 240px;
		background-position: center top;
		background-repeat: no-repeat;
		background-size: cover;    
	}

	.top.parallax {
		min-height: calc( 100vh - 80px );
		background: url("img/milk_bg_sp_01.png");
	}

	.middle.parallax {
		height: 200px;
		background: url("img/milk_bg_sp_01.png");
	}

	.bottom.parallax {
		min-height: 140px;
		background: url("img/milk_bg_sp_01.png");
	}

  /*.parallax {
    background-image: none !important;
    height: 100%;
  }

  .parallax::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transform: translate3d(0, 0, -1px);
    transform: translate3d(0, 0, -1px);
    width: 100%;
    min-height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: -1;
  }

  .top.parallax {
	  min-height: auto;
  }
	
  .top.parallax::before {
	  height: 300px;
	  background-image: url("img/milk_bg.png");
  }
	
  .middle.parallax::before {
	  height: 150px;
	  background-image: url("img/milk_bg.png");
  }

  .bottom.parallax::before {
	  height: 150px;
      background-image: url("img/milk_bg.png");
  }*/

  .content {
	  padding: 60px 20px;
  }

	.scroll {
		padding-top: 168px;
		padding-bottom: 100px;
	}
}