@charset "UTF-8";
/* CSS Document */

/* ========================================
    リセットcss
========================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-style:normal;
    font-weight: normal;
    font-size: 100%;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
html{overflow-y: scroll;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: ''; content: none;}
input, textarea{margin: 0; padding: 0;}
ol, ul{list-style:none;}
table{border-collapse: collapse; border-spacing:0;}
caption, th{text-align: left;}
a:focus {outline:none;}

div#test {
    text-align: center;
    position: absolute;
    top: 0;
    opacity: 0.5;
}

/* micro clearfix */
.cf:before,
.cf:after {
    content: "";
    display: table;
}
.cf:after {clear: both;}
.cf {*zoom: 1;}


/* ========================================
    本文
========================================= */

body{
	max-width: 1500px;
	height: auto;
	background-color: #282828;
	color: #f5f5f5;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 23.4px;
	margin: 0 auto;
}

.left{
	float: left;
	padding-left: 50px;
}

.right{
	float: right;
	padding-right: 50px;
}

.fadeUpTrigger{
	display: block;
	opacity: 0;
}

.fadeUp{
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* アニメーションがかかる要素（クラス名がfadeUpやfadeDownになる要素）に対して指定 */
.fadeUp, .fadeDown {
  /* 👇 端末のグラフィックパワー（GPU）を強制的に使わせて処理を爆速にする魔法の呪文 */
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0); 
}

/* ========================================
    header
========================================= */

header{
	width: 100%;
	height: 50px;
	background-color: rgba(40,40,40,0.70);
	position: fixed;
	z-index: 100;
	padding: 40px;
	box-sizing: border-box;
}

h1.left{
	margin-right: 150px;
	padding-left: 0;
}

.under_bar a.left{
	border-left: 3px solid #ffffff;
	padding-left: 40px;
}

div.hamburger-menu{
		visibility: hidden;
	}

nav ul li a{
	text-decoration: none;
	font-size: 30px;
	color: #ffffff;
	margin-right: 40px;
	margin-top: 15px;
	font-family: "Fira Sans", sans-serif;
	font-weight: 500;
	font-style: italic;
}

nav ul li a.left{
	padding-left: 0;
}

nav ul li a:hover{
	opacity: 0.1;
}

/* ========================================
    body_inner
========================================= */

.body_inner{
	width: 94.7%;
	height: auto;
	margin: 0 auto;
	text-align: center;
}

h2{
	padding-top: 160px;
	font-size: 30px;
	font-family: "Rampart One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#logo{
	width: 100%;
	height: 400px;
	padding-top: 195px;
	position: relative;
}

div#slider_rogo {
	position: absolute;
	left: 500px;
	top: 210px;
	margin: auto;
	width: 450px;
	height: auto;
	opacity: 0.85;
}

#smart{
	visibility: hidden;
	}

#concept{
	width: 100%;
	height: 900px;
	background: url("images/haikei_02.png");
	background-size: 100%;
}

#concept div{
	width: 1050px;
	height: auto;
	margin: 0 auto;
}

#concept div p{
	text-align: left;
}

#concept div p span{
	font-size: 16px;
	color: #A7A7A7;
	font-family: "Days One", sans-serif;
}

#concept .slider_2{
	opacity: 0.9;
	width: 75px;
	height: auto;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider_2 img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider_2 .slick-slide {
    margin:0 10px;/*スライド左右の余白調整*/
}

#salami{
	width: 100%;
	height: 2250px;
}

#salami ul{
	padding-bottom: 78px;
}

#salami ul img{
	padding-bottom: 40px;
}

#salami ul dd{
	width: 627px;
	height: auto;
}

#contact{
	width: 1200px;
	height: 741px;
	margin: 0 auto;
}

#contact .left iframe{
	width: 411px;
	height: 267.9px;
}

#contact table{
	text-align: left;
	vertical-align: middle;
}

#contact table tbody tr th,.contact table tbody tr td{
	vertical-align: middle;
	padding-bottom: 40px;
}

#contact table tbody tr td{
	padding-left: 16px;
	text-decoration: none;
}

#contact table tbody tr td p a{
	text-decoration: none;
	color: white
}

#contact table tbody tr td p a span{
	font-size: 19.5px;
}

#contact table tbody tr td p a:hover{
	opacity: 0.1;
}

/* ========================================
    footer
========================================= */

footer{
	width: 100%;
	height: 6.4vw;
	text-align: center;
	border-top: 0.26vw solid #4e4e4e;
}

footer p{
	padding: 2.6vw;
}

/* ========================================
    画像小
========================================= */
h1{
	width: 240px;
}

h2{
	height: 150px;
}

nav ul li.icon a{
	width: 51px;
}

#logo div ul li{
	width: 1420.5px;
}

#salami ul li dl dt{
	width: 635px;
}

#contact div.right table tbody tr th{
	width: 67.5px;
}

h2 img{
	height: 100%;
}

h1 a img,nav ul li.icon a img,#logo div ul li img,#slider_rogo div img,#salami ul li dl dt img,#contact div.right table tbody tr th img{
	width: 100%;
}

/* ========================================
    concept_more 別ページ
========================================= */
div#concept_more{
	height: auto;
	width: auto;
	padding-top: 200px;
	padding-bottom: 100px;
}

div#concept_more h2.concept_moremore{
	font-size: 40px;
	border: 2px solid #f5f5f5;
	background-color: gray;
	width: 70%;
	height: auto;
	margin: 0 auto;
	padding: 20px;
}

div#concept_more div.consept1{
	width: 70%;
	height: 400px;
	margin: 100px auto 0 auto;
}

div#concept_more div.consept1 div.left{
	height: auto;
	width: 50%;
	padding-left: 0px;
}

div#concept_more div.consept1 div.left div{
	height: 250px;
	width: 80%;
	margin: 0 auto;
}

div#concept_more div.consept1 div.left img{
	height: auto;
	width: 100%;
}

div#concept_more div.consept1 div.right{
	height: 250px;
	width: 50%;
	padding-right: 0px;
}

div#concept_more div.consept1 div.right h3{
	font-weight: bold;
}

div#concept_more div.consept1 div.right p.fadeUpTrigger{
	text-align: left;
	margin: 0 auto;
	width: 80%;
	padding-top: 50px;
	font-size: 16px;
}

div#concept_more div.consept2{
	width: 60%;
	height: auto;
	background-color: gray;
	border: 2px solid;
	margin: 0 auto;
	text-align: left;
	padding: 80px;
}

div#concept_more div.consept2 h2{
	padding-top: 0;
}

div#concept_more div.consept2 p.p_left{
	text-align: right;
}


/*---------------------------------------------------------------
タブレットレイアウト
---------------------------------------------------------------*/
@media screen and (min-width:768px) and (max-width:1499px) {
	body{
	font-size: 1.56vw;
}

.left{
	padding-left: 3vw;
}

.right{
	padding-right: 3vw;
}

/* ========================================
    header
========================================= */

header{
	height: 3.4vw;
	padding: 2.6vw;
}

h1.left{
	margin-right: 10vw;
	padding-left: 0vw;
}

.under_bar a.left{
	border-left: 0.2vw solid #ffffff;
	padding-left: 2.6vw;
}

nav ul li a{
	font-size: 2vw;
	margin-right: 2.6vw;
	margin-top: 1.04vw;
}

nav ul li a.left{
	padding-left: 0vw;
}

/* ========================================
    body_inner
========================================= */

.body_inner{
	width: 94.7%;
}

h2{
	padding-top: 10.6vw;
	font-size: 2vw;
}

#logo{
	height: 26.7vw;
	padding-top: 13vw;
}

div#slider_rogo {
	left: 33.4vw;
	top: 14vw;
	width: 30vw;
}

#concept{
	height: 60vw;
}

#concept div{
	width: 70vw;
}

#concept div p span{
	font-size: 1.5vw;
}

#concept .slider_2{
	width: 5vw;
}

#salami{
	height: 150vw;
}

#salami ul{
	padding-bottom: 5.2vw;
}

#salami ul img{
	padding-bottom: 2.6vw;
}

#salami ul dd{
	width: 41.8vw;
}

#contact{
	width: 80vw;
	height: 49.4vw;
}

#contact .left iframe{
	width: 27.45vw;
	height: 17.86vw;
}

#contact table tbody tr th,.contact table tbody tr td{
	padding-bottom: 2.6vw;
}

#contact table tbody tr td{
	padding-left: 1.04vw;
}

#contact table tbody tr td p a span{
	font-size: 1.3vw;
}

/* ========================================
    画像小
========================================= */
h1{
	width: 17.3vw;
}

nav ul li.icon a{
	width: 3.4vw;
}

#logo div ul li{
	width: 94.7vw;
}

#salami ul li dl dt{
	width: 42.29vw;
}

#contact div.right table tbody tr th{
	width: 4.5vw;
}

}


















/*---------------------------------------------------------------
スマホレイアウト
---------------------------------------------------------------*/
@media screen and (max-width: 767px) {
	body{
		max-width: 767px;
		width: 100%;
		font-size: 3.9vw;
		overflow-x: hidden; /* 👈 これを必ず追加してください（横はみ出しを強制カット） */
	}
	
	h1.left{
		margin-right: 0;
	}
	
	h1{
		width: 20vw;
		height: auto;
	}
	
	h2{
		font-size: 5vw;
		width: 90%;
		margin: 0 auto;
	}
	
	/* ========================================
		header
	========================================= */
	header{
		width: 100%;
		height: 16vw;
		padding: 0 20px;
		box-sizing: border-box;
		  /* 中の要素（h1とハンバーガー）をきれいに配置するための設定 */
		display: flex;
		align-items: center; 
		position: fixed; /* PC側でfixedしている場合はスマホでも必須 */
		top: 0;
		left: 0;
		}
	
	nav{
		display: none;/* visibility: hidden; から以下に変更 */
	}
	
	div.hamburger-menu{
		visibility: visible;
		font-family: "Fira Sans", sans-serif;
		font-weight: 500;
		font-style: italic;
	}
	
			/* ========================================

						ハンバーガー

			========================================= */

			.menu-btn {
				position: fixed;
				top: 2vw;
				right: 4vw;
				display: flex;
				height: 12vw;
				width: 12vw;
				border-radius: 6vw;
				justify-content: center;
				align-items: center;
				z-index: 90;
				background-color: #1C1B1B;
			}
	
			.menu-btn span,
			.menu-btn span:before,
			.menu-btn span:after {
				content: '';
				display: block;
				height: 0.8vw;
				width: 7vw;
				border-radius: 0.8vw;
				background-color: rgba(255,255,255,0.82);
				position: absolute;
				font-size:2.1vw;
				color:#1C1B1B;
				margin: 0.5vw 0;
			}
	
			.menu-btn span:before {
				bottom: 1.5vw;
			}
			.menu-btn span:after {
				top: 1.5vw;
				content: '';
			}

			#menu-btn-check:checked ~ .menu-btn span {
				background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
			}
			#menu-btn-check:checked ~ .menu-btn span::before {
				bottom: 0;
				transform: rotate(45deg);
				margin: 0;
			}
			#menu-btn-check:checked ~ .menu-btn span::after {
				top: 0;
				transform: rotate(-45deg);
				margin: 0;
			}

			#menu-btn-check {
				display: none;
			}

			.menu-content {
				width: 100%;
				height: 100%;
				position: fixed;
				top: 0;
				left: 100%;
				z-index: 80;
				background-color: #4e4e4e;
				transition: all 0.5s;
			}
	
			.menu-content ul {
				padding: 18.6vw 2.6vw 0;
			}
			.menu-content ul li {
				border-bottom: solid 0.2vw #ffffff;
				list-style: none;
			}
			.menu-content ul li a {
				display: block;
				width: 100%;
				font-size: 5.3vw;
				box-sizing: border-box;
				color:#ffffff;
				text-decoration: none;
				padding: 2.4vw 4vw 2.6vw 0;
				position: relative;
			}

			.menu-content ul li a:hover{
				opacity: 0.1;
			}

			.menu-content ul li a::before {
				content: "";
				width: 1.8vw;
				height: 1.8vw;
				border-top: solid 0.53vw #ffffff;
				border-right: solid 0.53vw #ffffff;
				transform: rotate(45deg);
				position: absolute;
				right: 2.9vw;
				top: 4.2vw;
			}

			#menu-btn-check:checked ~ .menu-content {
				left: 0;/*メニューを画面内へ*/
				visibility: visible; /* 👈 これを追加 */
			}

			.top_bar a{
				border-top: 1vw solid #ffffff;
				margin-top: 10vw;
			}
	/* ========================================
	    logo
	========================================= */
	#logo{
		padding-top: 20vw;
		height: 151vw;
	}
	
	#logo ul li{
		height: 145vw;
	}
	
	div#slider_rogo {
		top: 50vw;
		left: 10vw;
	}
	
	#mein_rogo{
		width: 80vw;
	}
	
	#mein_rogo img{
		width: 100%
	}
	
	#smart{
		visibility: visible;
		position: absolute;
		top: 10vw;
		width: 100%;
	}
	
	#pc{
		visibility: hidden;
	}
	
	/* ========================================
		body_inner
	========================================= */
	.body_inner{
	width: 95vw;
		margin: 0 auto;
	}
	
	#concept{
		height: 130vw;
	}
	
	#concept div{
		width: 90%;
	}
	
	#concept div p span{
		font-size: 4vw;
	}
	
	#concept div div.concept_slider{
		width: 100%;
	}
	
	#concept .slider_2{
	width: 100%;
	}
	
	#salami{
		height: auto;
	}
	
	h2{
		padding-top: 2vw;
		height: 100px;
	}
	
	#salami ul li dl{
		margin-bottom: 15vw;
	}
	
	#salami ul li dl dt,#salami ul li dl dd{
		width: 80vw;
		height: auto;
		margin: 0 auto;
	}
	
	#salami ul img{
		padding-bottom: 10px;
	}
	
	#salami ul li,#contact div{
		float: none;
		padding: 0;
	}
	
	#contact{
		width: 90vw;
		height: 120vw;
	}
	
	#contact .left,#contact .right{
		padding-left: 0;
		padding-right: 0
	}
	
	#contact .left iframe{
		width: 100%;
		height: auto;
		margin-bottom: 10vw;
	}
	
	#contact div table tbody tr th{
		padding-left: 10vw;
	}
	
	#contact div table tbody tr td{
		padding-left: 5vw;
	}
	
	#contact div.right table tbody tr th{
	width: 6vw;
	}
	
	#contact table tbody tr td p a span{
		font-size: 3vw;
	}
	
	/* ======================================== 
	concept_more 
	========================================= */
	div#concept_more{
		padding-top: 150px;
	}

	div#concept_more h2.concept_moremore{
		font-size: 30px;
		padding: 20px;
	}

	div#concept_more div.consept1{
		width: 75%;
		height: auto;
		margin: 100px auto 0 auto;
	}

	div#concept_more div.consept1 div.left,div#concept_more div.consept1 div.right{
		height: auto;
		width: 100%;
		float: none;
		padding-bottom: 50px;
	}

	div#concept_more div.consept1 div.left div{
		height: auto;
		width: 70%;
	}

	div#concept_more div.consept2{
		width: 70%;
		padding: 40px;
	}
}






