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

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* -------------------------------- 
Primary style
-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Helvetica", sans-serif;
  color: #3d3536;
 
}

a {
  color: #b4d7a8;
  text-decoration: none;
}

/* -------------------------------- 
Resource style 
-------------------------------- */
/* -------------------------------- 
スマホ用ヘッダーの設定*/

#header1 {
	height: 8rem;
	width: 100%;
	max-width: 100%;
	padding: 3rem;
	background-color: #ffffff;
	position: fixed;
	z-index: 2;
	display:flex;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

.navi3 {
	text-align: center;
	display: flex;
	justify-content: space-between;
	flex-flow: column;
}

.navi3 li{
	margin-top: 4rem;
}

.logo1 {
	margin-left: 25%;
}

.logo1 img {
	width: 11rem;
}

/* PC・タブレット用変更動作 */
@media screen and (min-width:480px) {
 #header1 {
    display:none;
  }
}

/*------------------------------------
PC用ヘッダー*/
#header2 {
	height: 21rem;
	width: 100%;
	max-width: 100%;
	background-color: #ffffff;
	position: fixed;
	z-index: 2;
}

.menu {
	margin-top: 9rem;
	width: 85%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
}

/* スマホ・タブレット用変更動作 */
@media only screen and (max-width: 768px) {
	#header2 {
		height: 10rem;
	}
	.menu {
		margin-top: 4.5rem;
	}
}
/* Logo */
.logo2 {
}

.logo2 img {
	width: 18rem;
}

/* スマホ・タブレット用変更動作 */
@media only screen and (max-width: 768px) {
	.logo2 img {
		width:9rem;
}
}

/* menu left */
.navi {
	margin-top: 0.5rem;
	padding: 0;
	display: flex;
}

/* スマホ・タブレット用変更動作 */
@media only screen and (max-width: 768px) {
	.navi {
		margin-top: 0rem;
	}
}

.navi li {
	margin-right: 3rem;
	}
	
/* スマホ・タブレット用変更動作 */
@media only screen and (max-width: 768px) {
	.navi li {
		font-size: 7px;
		margin-right: 1.5rem;
		margin-bottom: 0.5rem;
	}
}
/* menu right */
.navi2 {
	margin-top: 0.5rem;
	padding: 0;
	display: flex;
}

/* スマホ・タブレット用変更動作 */
@media only screen and (max-width: 768px) {
	.navi2 {
		margin-top: 0rem;
	}
}

.navi2 li {
	margin-top: 0;
	margin-right: 0;
	margin-left: 3rem;
	margin-bottom: 0;
	}

/* スマホ・タブレット用変更動作 */
@media only screen and (max-width: 768px) {
	.navi2 li {
		font-size: 7px;
		margin-left: 1.5rem;
		margin-bottom: 0.5rem;
	}
}

/* スマホ用変更動作 */
@media screen and (max-width:480px) {
 #header2 {
    display:none;
  }
}

/* -------------------------------- 
コンタクト本体
-------------------------------- */
#contact {
	background-image: url(/img/contact_01.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: auto;
	min-height: 100vh;
	z-index: 0;
	position: relative;
	overflow: hidden;
}

/* スマホ・タブレット用変更動作 */
@media only screen and (max-width: 768px) {
	#contact {
		background-image: url(/img/contact_02.jpg);
		background-position: center top;
		background-repeat: no-repeat;
		background-size: cover;
	}
}
/* 文字の配置・カラー・表示設定 */
.contact-block {
	color: #FFFFFF;
	position : absolute;
	top : 50%;
	left: 60%;
	display: inline;
}

/* スマホ・タブレット用変更動作 */
@media only screen and (max-width: 768px) {
	.contact-block {
		top : 60%;
		left: 50%;
	}
}

.contact-block a {
	color:#FFFFFF;
}

span.sample7 {font-size: xx-small; }

.absolute {
	
	font-size: xx-small;
    position: absolute;
    bottom: 50px;
    color: #000;
    background: rgba(224,224,224,.6);
    width: 100%;
    padding: 1.5em 0;
}
.absolute p {
    margin: 0;
    padding: 0 0.8em;
    font-size: 150%;
    text-align: center;
}
