/* フェードイン */

.sa {
	opacity: 0;
	transition: all .5s ease;
}
.sa.show {
	opacity: 1;
	transform: none;
}
.sa--up {
	transform: translate(0, 100px);
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
	display: block !important;
}
.sp {
	display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
.pc {
	display: none !important;
}
.sp {
	display: block !important;
}
}
/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */

* {
	margin: 0;
	padding: 0;
}
html {
	color: #666666;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-size: 62.5%;/* 16px x 0.625 = 10px(=1rem) */
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
}
body {
	font-size: 1.6rem;/* 16px */
	line-height : 1.6;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;
	position: relative;
	text-align: center;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
div {
	position: relative;
}
fieldset, img {
	border: 0
}
ol, ul {
	list-style: none
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}
/*link*/

a {
	color: #666666;
	text-decoration: none;
}
a:link {
	color: #666666;
	text-decoration: none;
}
a:visited {
	color: #666666;
	text-decoration: none;
}
a:hover {
	color: #20B9D8;
	text-decoration: none;
}
a.white {
	color: #ffffff;
	text-decoration: none;
}
a.white:link {
	color: #ffffff;
	text-decoration: none;
}
a.white:visited {
	color: #ffffff;
	text-decoration: none;
}
a.white:hover {
	color: #20B9D8;
	text-decoration: none;
}
a:hover img {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	padding-top: 0px;
	transition: .3s;
}
img {
	border-style: none;
	z-index: 0;
	vertical-align: bottom;
}
/*font*/

.f12 {
	font-size: 1.2rem;/* 12px */
	line-height : 1.6;
}
.f23 {
	font-size: 2.3rem;/* 30px */
	line-height : 1.3;
}
.f25 {
	font-size: 2.5rem;/* 30px */
	line-height : 1.3;
}
.f30 {
	font-size: 3.0rem;/* 30px */
	line-height : 1.3;
}
.f40 {
	font-size: 4.0rem;/* 40px */
	line-height : 1.2;
}
/*txt*/
.bb {
	font-weight: bold;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.br-sp {
	display: none;
}
.br-pc {
	display: block;
}
.sp_left {
	text-align: left;
}
/*padding*/
.pdg10t {
	padding-top: 10px;
}
.pdg20b {
	padding-bottom: 20px;
}
.pdg10b {
	padding-bottom: 10px;
}
/*color*/

.white {
	color: #fff;
}
.brack {
	color: #666666;
}
.blue {
	color: #20B9D8;
}
/*btn*/


.btn {
	display: inline-block;
	width: 320px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	position: relative;
	z-index: 2;
	background-color: #333;
	border: 1px solid #333;
	color: #fff;
	;
	overflow: hidden;
	margin-top: 30px;
}
.btn::before, .btn::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.btn:hover {
	color: #333;
}
.btn::after {
	top: -100%;
	width: 100%;
	height: 100%;
}
.btn:hover::after {
	top: 0;
	background-color: #fff;
}
/* mainv */
.fixed-bg {
	position: relative;
	min-height: 100vh;
	background-attachment: scroll;
	background-size: cover;
	background-position: center;
	z-index: 1;
}
.fixed-bg .fixed-bg-content {
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	width: 90%;
	margin: 0 auto;
	text-align: center;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.fixed-bg .fixed-bg-content p {
	color: #fff;
	font-weight: bold;
}
.bg01 {
	background-image: url(mainv.jpg);
}
.scroll-bg {
	padding: 2em 0;
}
.scroll-bg .scroll-bg-content {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
.scroll-bg2 {
	padding: 2em 0;
}
.scroll-bg2 .scroll-bg-content {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
.scroll-bg .scroll-bg-content p {
}
.bg-color00 {
	background-color: #fff;
}
.bg-color01 {
	background-color: #F5F2E7;
}
.bg-color02 {
	background-color: #333;
}
/* mainv */
#mainv {
	width: 100%;
	height: 450px;
	position: relative;
	margin-bottom: 0px;
}
.abs_comp_list {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 30px;
}
.abs_comp_list li {
	width: 100%;
	overflow: hidden;
	position: relative;
	zoom: 1;
	padding-bottom: 2px;
	padding-top: 2px;
	border-bottom: 1px solid #ccc;
}
.abs_comp_list li dt {
	float: left;
	width: 30%;
	text-align: left;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: bold;
}
.abs_comp_list li dd {
	float: left;
	text-align: left;
	width: 65%;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#map_canvas {
	width: 100%;
	height: 500px;
	margin-top: 30px;
}
.container {
}
.container_in {
}
.contents_3 {
	margin-top: 40px;
}
.contents_3_in {
	padding-bottom: 20px;
}
.pagetitle {
	position: relative;
}
.pagetitle p {
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
	/*文字の装飾は省略*/
	width: 80%;
}
.pagetitle img {
	width: 100%;
}
.pagetitle_txt {
	font-size: 2.5rem;/* 18px */
	font-weight: bold;
}
.contents_title {
	font-size: 2.2rem;/* 22px */
	text-align: left;
	font-weight: bold;
	padding: 0.25em 0.5em;/*上下 左右の余白*/
	border-left: solid 5px #7db4e6;/*左線*/
	margin-bottom: 20px;
	margin-top: 40px;
}
.case {
	position: relative;
}
.case img {
	width: 100%;
}
.case_txt {
	padding-top: 10px;
}

/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
body {
	min-width: 1200px;
	font-size: 1.8rem;/* 18px */
	line-height : 1.8;
}
.br-sp {
	display: block;
}
.br-pc {
	display: none;
}
.sp_left {
	text-align: center;
}
.pdg20b {
	padding-bottom: 30px;
}
#mainv {
	height: 1000px;
	position: relative;
	margin-bottom: 0px;
	overflow: hidden;
	margin-top: 0px;
}
.pagetitle_txt {
	font-size: 4.5rem;
}
.fixed-bg {
	background-attachment: fixed;
}
.scroll-bg {
	padding: 4em 0;
}
.abs_comp_list {
	width: 70%;
	font-size: 2.0rem;/* 20px */
	line-height : 1.8;
}
.abs_comp_list li dt {
	width: 20%;
}
.abs_comp_list li dd {
	width: 75%;
}
#map_canvas {
	margin-top: 50px;
	height: 500px;
}
.container {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.container_in {
	width: 45%;
}
.container.reverse {
	flex-direction: row-reverse;
}
.contents_3 {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 80px;
}
.contents_3_in {
	width: 33.3%;
	padding: 0px 10px;
}
	.pagetitle_txt {
	
}
}
