@charset "utf-8";

#container {
	position: relative;
	line-height: 1.6;
	min-width: 100%;
	width: 100%;
}

.pc {
	display: block !important;
}

.sp {
	display: none !important;
}

@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}

	.sp {
		display: block !important;
	}
}

#privacy {
	width: 90%;
	max-width: 980px;
	margin: 60px auto 120px;
	font-size: 1.4rem;
}

h2 {
	margin-bottom: 1em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #40b2d9;
	font-size: 2.0rem;
	font-weight: bold;
}

.privacyTop {
	margin: 2em auto;
}

h3 {
	font-size: 1.8rem;
	font-weight: bold;
}

.privacyCont {
	margin: 1em auto;
}

.privacyTit {
	font-size: 1.5rem;
	font-weight: bold;
}

.privacyTit:before {
	content: "●";
/*	color: #40b2d9;*/
	font-size: 1em;
	margin-right: 0.5em;
}

/*
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
	position: absolute;
	right: 20px;
	top: 18px;
	width: 30px;
	height: 26px;
	cursor: pointer;
	z-index: 300;
}

.hamburger__line {
	position: absolute;
	width: 30px;
	height: 2px;
	right: 0;
	background-color: #000;
	transition: all 0.5s;
}

.hamburger__line--1 {
	top: 1px;
}

.hamburger__line--2 {
	top: 12px;
}

.hamburger__line--3 {
	top: 24px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
	transform: rotate(-45deg);
	top: 11px;
}

.open .hamburger__line--2 {
	opacity: 0;
}

.open .hamburger__line--3 {
	transform: rotate(45deg);
	top: 11px;
}


/* 
セレクトボックスデザイン
=================================== */
.selectbox-001 {
	position: relative;
	display:
		/*  none; 投稿されたら消す */
}

.selectbox-001::before,
.selectbox-001::after {
	position: absolute;
	content: '';
	pointer-events: none;
}

.selectbox-001::before {
	display: inline-block;
	right: 0;
	width: 40px;
	height: 40px;
	border-radius: 0 3px 3px 0;
	background-color: #22aacf;
}

.selectbox-001::after {
	position: absolute;
	top: 50%;
	right: 8.5%;
	transform: translate(50%, -50%) rotate(45deg);
	width: 10px;
	height: 10px;
	border-bottom: 3px solid #fff;
	border-right: 3px solid #fff;
}

.selectbox-001 select {
	appearance: none;
	min-width: 230px;
	height: 40px;
	padding: .4em 3.6em .4em .8em;
	border: none;
	border-radius: 3px;
	background-color: #eaeaea;
	color: #333;
	font-size: 1.4rem;
	cursor: pointer;
}

.selectbox-001 select:focus {
	outline: 2px solid #22aacf;
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
	position: fixed;
	right: -100%;
	/*ハンバーガーがクリックされる前はWindow右側に隠す*/
	top: 0;
	width: 85%;
	/* 出てくるスライドメニューの幅 */
	height: 100vh;
	background-color: #fff;
	transition: all 0.5s;
	z-index: 200;
	overflow-y: auto;
	/* メニューが多くなったらスクロールできるように */
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
	right: 0;
}


/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 5;
	background-color: #000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
	cursor: pointer;
	z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
	opacity: 0.3;
	visibility: visible;
}

/* .sp-nav */
/* -------------------------------------------------- */
.sp-nav > ul {
	padding: 60px 20px;
}

.sp-nav > ul > li {
	padding: 10px;
	border-bottom: 1px dotted #999;
	font-size: 1.6rem;
	font-weight: bold;
	color: #333;
}

.sp-nav > ul li a {
	display: block;
	font-size: 1.6rem;
	color: #333;
}

.sp-nav > ul > li > a::before {
	content: "\0bb";
	margin-right: 10px;
	color: #45b4da;
}

.sp-nav > ul > li > ul > li {
	padding: 6px 10px 3px 6px;
	font-weight: normal;
}

.sp-nav > ul > li > ul > li a::before {
	content: "\0bb";
	margin-right: 10px;
	color: #45b4da;
}

#mainImageSingle {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
	padding: 48px 0;
	overflow: hidden;
	background-color: #555555;
}

#mainImageSingle .pageTtl {
	display: block;
	width: auto;
	width: 100%;
	z-index: 10;
}

#mainImageSingle .pageTtl .inner {
	display: inline-block;
	width: 100%;
}

#mainImageSingle .pageTtl .inner h1 {
	margin: 0 20px;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	color: #ffffff;
}

#mainImageSingle .pageTtl .inner h1 span {
	display: block;
	font-size: 1.5rem;
}

/* TAB & SP */
/* -------------------------------------------------- */

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


	#envDetail {
		width: 100%;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	#envDetail li {
		width: 48%;
		margin-bottom: 20px;
	}

	#entryWrap li {
		text-align: center;
	}

	.entryTit {
		width: auto;
		display: block;
		margin: 0 0 10px 0;
		text-align: center;
	}

	.foot_inner {
		width: 100%;
		min-width: 100%;
		display: inline-flex;
	}

	.foot_area {
		display: inline-block;
		width: 54%;
	}

	.foot_corp {
		width: 49.5%;
		padding: 15px;
		box-sizing: border-box;
	}

	.foot_corp .foot_logo img {
		width: 100px;
		height: auto;
	}

	.foot_add {
		width: 49.5%;
		padding: 15px;
		box-sizing: border-box;
	}

	.foot_sm {
		width: 46%;
		padding: 15px;
		box-sizing: border-box;
	}
}

/* SP */
/* -------------------------------------------------- */

@media screen and (max-width:768px) {
	#mainImage {
		width: 100%;
		height: 100px;
		margin-bottom: 10px;
		padding: 20px 0;
		/* position: relative; */
		overflow: hidden;
		background-color: #555555;
	}

	#mainImage .pageTtl {
		display: block;
		width: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		z-index: 10;
	}

	#mainImage .pageTtl .inner {
		display: inline-block;
		/*       padding: 0 0 10px; */
		transform: translate(-50%, -50%);
	}

	#mainImage .pageTtl .inner p {
		margin: 0 20px;
		font-size: 2rem;
		font-weight: bold;
		text-align: center;
		color: #ffffff;
	}

	#mainImage .pageTtl .inner p span {
		display: block;
		font-size: 1.5rem;
	}

	#mainImageSingle {
		width: 100%;
		height: auto;
		margin-bottom: 10px;
		padding: 24px 0;
		overflow: hidden;
		background-color: #555555;
	}

	#mainImageSingle .pageTtl {
		display: block;
		width: auto;
		width: 100%;
		z-index: 10;
	}

	#mainImageSingle .pageTtl .inner {
		display: inline-block;
		width: 100%;
	}

	#mainImageSingle .pageTtl .inner p {
		margin: 0 20px;
		font-size: 2rem;
		font-weight: bold;
		text-align: center;
		color: #ffffff;
	}

	#mainImageSingle .pageTtl .inner p span {
		display: block;
		font-size: 1.5rem;
	}

	.pnav ul li {
		font-size: 1.1rem;
	}




	/* フッター */
	.foot_inner {
		width: 100%;
		min-width: 100%;
		display: inline-flex;
		flex-direction: column;
	}

	.foot_corp,
	.foot_add {
		width: 100%;
	}

	.foot_area {
		display: inline-block;
		width: 100%;
		text-align: center;
		margin-bottom: 40px;
	}

	.foot_logo {
		margin-bottom: 16px;
		text-align: center;
	}

	.foot_add {
		display: inline-block;
		border-left: none;
		border-right: none;
	}

	.foot_add_company,
	.foot_add_fukuoka,
	.foot_add_tokyo {
		display: inline-block;
		text-align: left;
	}

	.foot_sm dl:first-child {
		margin-right: 0;
	}

	.foot_sm {
		width: 90%;
		margin: 0 auto;
	}

	.foot_sm dl {
		display: block;
	}

	.newsBox .list,
	.newsBox .ttl {
		width: 20%;
	}
}