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

body {
	margin: 0;
	padding: 0;
	color: #000;
	font-family: 'Century Gothic','centry gothic','Avenir-Light','游ゴシック体','YuGothic','游ゴシック','Yu Gothic','sans-serif';
}

#wrapper{
	height: 100%;
	min-height: 100vh;
  	overflow-x: hidden;
  	position: relative;
	z-index: 1000;
}

h2{
	font-size: 20px;
	letter-spacing: .2em;
	line-height: 1.8;
	
}

a {
	font-size: 13px;
	letter-spacing: .2em;
	line-height: 1.8;
	text-decoration: none;
	color: #000;
}

a:hover {
	opacity: 0.5;
}

p {
	font-size: 13px;
	letter-spacing: .2em;
	line-height: 1.8;
	margin: 15px 0;
}

img {
	width: 100%;
}

@media (max-width:767px){
	h2{
		font-size: 18px;
		letter-spacing: .1em;
	}
	p {
		letter-spacing: .1em;
		line-height: 1.2;
	}
	
	a {
		letter-spacing: .1em;
		line-height: 1.2;
	}
}

@media (min-width:768px){
	.sp{
		display:none;
	}
}

.pdBtm30 {
	padding-bottom: 30px;
}

.pdBtm50 {
	padding-bottom: 50px;
}

.footer {
	width: 100%;
	position: absolute;
    bottom: 0;
}

.credit {
	text-align: center;
	margin: 1em auto;
	font-size: 10px;
	line-height: 1.8;
	color: #999;
}

.thanks {
	width: 80%;
	margin: 30px auto;
	text-align: center;
}

/*header -----------------------------------------*/

#header {
	width: 96%;
	margin: 10px 0px;
	padding: 0 2%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header h1{
	line-height: 50px;
	margin:0 0 0 10px;
}
	
#header h1 img {
	width:100px;
	vertical-align: middle;
}

#header h1 span {
	font-size: 8px;
	color: #696969;
	padding-left: 25px;
	vertical-align: middle;
}

@media (max-width:767px){
	#header h1{
		line-height: 0;
	}
	#header h1 img {
		width:75px;
	}
}

/* menu ------------------------------------------ */
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1001;
  transition: opacity .5s;
}
.overlay.open {
  width: 100%;
  height: 100%;
}

.menu-trigger {
  display: inline-block;
  width: 36px;
  height: 36px;
  vertical-align: middle;
  cursor: pointer;
  z-index: 1002;
  transform: translateX(0);
  transition: transform .5s;
 }
 .menu-trigger.active {
  transform: translateX(-250px);
}

.menu-trigger .upper,.menu-trigger .lower {
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	width: 100%;
}

.menu-trigger .upper {
  top: 0;
}
.menu-trigger .lower {
  top: 14px;
}

.menu-trigger .upper .circle,.menu-trigger .lower .circle {
	display: inline-block;
	box-sizing: border-box;
	width: 8px;
	height: 8px;
	background-color: rgba(255,255,255,1);
	border:2px solid rgba(105,105,105,1);
	border-radius:50%;
	padding-right: 4px;
	vertical-align: middle;
}

.menu-trigger .upper .line,.menu-trigger .lower .line {
	display: inline-block;
	box-sizing: border-box;
	width: 22px;
	height: 4px;
	background-color: #696969;
	border-radius: 4px;
	vertical-align: middle;
}

.menu-trigger.active .upper .circle{
  border:0;
  background-color: rgba(175,175,175,0.8);
  transform: translateX(250px) scale(0,0);
  transition: all .5s;
}

.menu-trigger.active .lower .circle{
  border:0;
  background-color: rgba(175,175,175,0.8);
  transform: translateX(250px) scale(0,0);
  transition: all .5s;
}

.menu-trigger.active .upper .line {
  background-color: #FFFFFF;
  transform: translateX(-12px) translateY(6px) rotate(-45deg) scale(1.5,1);
  transition: all .5s;
}

.menu-trigger.active .lower .line {
  background-color: #FFFFFF;
  transform: translateX(-12px) translateY(-8px) rotate(45deg) scale(1.5,1);
  transition: all .5s;
}

nav {
  width: 250px;
  height: 100%;
  background-color: rgb(175, 175, 175, 0.6);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1004;
  transform: translate(250px);
  transition: all .5s;
}
nav.open {
  transform: translateZ(0);
}

nav .logo-w{
	text-align: right;
	line-height: 50px;
	padding:12px 5% 50px;
	vertical-align: middle;
	margin: 0;
}

nav .logo-w img{
	width:100px;
}

nav ul {
	padding-left: 30px;
}

nav li {
  display:block;
  width: 80%;
  color: #fff;
  text-align: left;
  padding: 10px 0;
  list-style: none;
}

nav li a {
	font-size: 30px;
	letter-spacing: .2em;
	line-height: 1.8;
	font-weight: normal;
	margin: 0;
	color: #fff;
}

@media (max-width:767px){
	nav .logo-w{
		line-height: 0;
		padding:10px 5% 50px;
	}
	nav .logo-w img {
		width:75px;
	}
}

/*content-area----------------------------------
*/

#content{
	width: 96%;
	max-width: 1180px;
	margin: 0 auto;
	padding-bottom: 30px;
}

@media (max-width:767px){
	#content{
		max-width: 96%;
	}
}

/*concept----------------------------------------- */


.main {
	margin: 0 auto;
	position:relative;
	width: 100%;
} 

.main .kv {
	width:100%;
	margin: 0 auto;
}

.main .ttl {
	width: 100%;
	position:absolute;
	top:45%;
}

.main .ttl h2, .main .ttl p {
	margin-left:10%;
}

@media (max-width: 1024px ){
	.main {
		margin: 0 auto 40px;
	} 
}

@media (max-width:767px){
	.main {
		margin: 0 auto 120px;
		position:relative;
	} 
	
	.main .kv {
		margin: 20px auto;
	}
	
	.main .ttl{
		width: 100%;
		top: 50%;
	}
	
	.main .ttl h2, .main .ttl p {
		margin-left:5%;
	}
}

/*business & about & contact共通
------------------------------------------------- 
*/

#business, #company {
	margin: 0 auto;
	width: 100%;
}

#contact {
	margin: 0 auto 50px;
	width: 100%;
}

#business h2, #company h2, #contact h2{
	display: block;
	width: 250px;
	padding: 40px 0px 20px 0px;
	margin: 0 0 0 10%;
	font-size: 40px;
	font-weight: normal;
}

@media (max-width:767px){
	#business h2, #company h2, #contact h2{
		width: 200px;
		padding: 30px 0px 10px 0px;
		margin: 0 0 0 3%;
	}
}

/*business
------------------------------------------------- */

.business_img {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 600px;
	margin:0 auto;
}

.business_img img{
	width: 100%;
	padding: 5%;
}

@media (max-width:767px){
	.business_img {
		width: 100%;
	} 
	.business_img img{
		width: 25%;
		height: 25%;
		padding: 4%;
	}
}

/*about
------------------------------------------------- */

#company table{
	width:80%;
	margin: 0 auto;
	padding : 50px 88px;
	text-align: left;
	background-color: #F0F0F0;
	font-size: 13px;
	letter-spacing: .2em;
	line-height: 1.8;
  	border-spacing: 0;
}

#company th {
	width:100px;
	font-weight: normal;
	border-right :solid 1px #000;
	vertical-align: top;
	padding: 30px 0 0 0;
}

#company th img {
	width:13px;
}


#company td{
	padding: 30px 0px 0px 20px;
}

#company td ul{
	margin: 0;
	padding-left: 0px;
	list-style-type: none;
}

#company .thLast {
	padding: 30px 0px 30px 0px;
}

#company .tdLast {
	padding: 30px 0px 30px 20px;
}

@media (max-width:1024px){
	#company table {
		padding: 30px 40px;
		font-size: 12px;
		letter-spacing: .1em;
	} 	
}

@media (max-width:767px){
	#company table {
		width: 94%;
		padding: 20px;
		font-size: 10px;
		letter-spacing: .1em;
	} 	
	#company th {
		width:80px;
		font-weight: normal;
		border-right :solid 1px #000;
		vertical-align: top;
		padding: 15px 0 0 0;
	}

	#company th img {
		width:10px;
	}
	#company td{
		padding: 15px 0px 0px 10px;
	}
	
	#company .thLast {
		padding: 15px 0px 15px 0px;
	}

	#company .tdLast {
		padding: 15px 0px 15px 10px;
	}
	
}

/*contact
------------------------------------------------- */


form{
  width: 80%;
  margin:0 auto;
}

.item {
	width: 100%;
	margin-bottom:20px;
	box-sizing: border-box;
}

.short {
	width: 48%;
}

label {
	display:inline-block;
	font-size:16px;
	color: #333;
	margin-bottom:.5em;
	letter-spacing: .1em;
}

label.required:after{
	content:"（必須）";
	color:#999999;
	font-size: 12px;
}


@media (max-width:767px){
	form{
	  width: 94%;
	  margin:0 auto;
	}
	
	.short {
		width:70%;
	}
	label {
		font-size:14px;
	}
	label.required:after{
		font-size: 10px;
	}
	.agree > label{
		font-size: 14px;
	}
}

input, select, textarea{
	outline:none;
	border: 1px solid #ccc;
	-webkit-transition: all .3s;
  	transition: all .3s;
	font-size:14px;
	line-height:1.8;
	padding:.5em .5em;
	font-family: inherit;
	color: #333;
	box-sizing: border-box;
}

input::-webkit-input-placeholder, input::-moz-placeholder, input:-ms-input-placeholder {
	font-family:inherit;
	color:#f8f8f8;
	font-size:12px;
	line-height:1.8;
}

input::-webkit-input-placeholder {
    padding-top: 0.1em;
}

input:focus, textarea:focus, select:focus{
	box-shadow: 0 0 5px #ccc;
  	border: 1px solid #ccc;
}

input[type="text"], input[type="email"]{
	display:block;
	width: 100%;
}

textarea {
	width:100%;
	height:10em;
	resize:vertical;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width:100%;
	padding: .5em 1em;
	border-radius:0;
	border: 1px solid #ccc;
	background:#fff;
	background:url("../img/contact/pulldown.png") right 2% bottom 50% no-repeat;
	background-size:2%;
	font-family:inherit;
	color: #333;
	cursor:pointer;
	font-size:16px;
	line-height:1.8px;
	box-sizing:border-box;
	outline:none;
}

@media (max-width:767px){
	select{
		background-size:5%;
	}
}

.name-area {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	width: 100%;
}

.name-item{
	flex:0 1 48%;
	box-sizing: border-box;
}

.name-item > input{
	width:100%;
}

.privacy-area {
	width:100%;
	margin-top: 30px;
	padding: 10px;
	text-align:center;
}

.privacy-area p, .privacy-area a{
	font-size: 14px;
	line-height: 1.8;
}

@media (max-width:767px){
	.privacy-area p, .privacy-area a{
		font-size: 12px;
	}
}

.agree {
	width: 40%;
	font-size:12px;
	margin: 15px auto;
	text-align:center;
	padding-top: 10px;
	border-top:1px solid #666666;
}

#policy_open {
	text-decoration: underline;
	cursor:pointer;
}

#submit {
	width: 50%;
	margin: 0px auto 30px;
	text-align:center;
	color:#fff;
	font-size:16px;
	line-height:20px;
	padding:.5em 1em;
	background-color:#333333;
	cursor:pointer;
}

#submit[disabled] {
	cursor: default;
	background-color:#ccc;
}

#submit :hover{
	opacity: 0.5;
}

@media (max-width:767px){
	#submit{
		width:70%;
		padding:.5em 2em;
		font-size:12px;
	}
}

/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
	position: absolute;
	left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
	position: relative;
	padding-left: 1.95em;
	cursor: pointer;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 1px;
	width: 1.25em; height: 1.25em;
	border: 1px solid #ccc;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 0 5px #999999;
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: '\2713\0020';
  position: absolute;
  top: .15em; left: .15em;
  font-size: 1.3em;
  line-height: 0.8;
  color: #666666;
  transition: all .2s;
  font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
  border: 1px solid #666666;
}

/* hover style just for information */
label:hover:before {
  border: 1px solid #999999!important;
}

input[type="submit"]{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display:block;
}


/*モーダルウィンドウ
------------------------------------------------- */
#mask{
	display:none;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .6);
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index:1011;
}

#modal {
	display:none;
	background: #fff;
	width: 60%;
	padding: 20px;
	border-radius: 4px;
	position: fixed;
	top: 20px;
	left: 0;
	right: 0;
	max-height: 80vh;
	margin: 0 auto;
	overflow-y: auto;
	z-index:1012;
}

#close_head {
	width:100%;
	height:20px;
	text-align:right;
	line-height:20px;
	margin-bottom:40px;
}

#close_head img {
	width: 20px;
	height:20px;
	cursor:pointer;
}

#close_end {
	width:50%;
	margin: 20px auto;
	height:20px;
	text-align:center;
	font-size:14px;
	color:#333;
	line-height:20px;
	cursor:pointer;
}

.policy-wrapper {
	width: 80%;
	margin: 0 auto;
}

.policy-wrapper > h3 {
	display:block;
	font-size:16px;
	text-align: center;
	margin: .5em auto;
}

.policy-wrapper > p {
	display:inline-block;
	margin:.5em 0 2em;
}

@media (max-width:767px){
	#modal{
		width:70%;
	}
	#modal.active{
		max-height: 70vh;
	}
	
	#close_head{
		margin-bottom:20px;
	}
	.policy-wrapper {
		width:85%;
	}
	.policy-wrapper > h3 {
		font-size:14px;
	}

	.policy-wrapper > p {
		font-size:10px;
	}
}