
/* ------------------------------
 ロード画面用
 css側にて画像サイズ指定必須
------------------------------ */

#logo_loader {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 9999;
	background-color: #ecdf48;
	pointer-events: none;
}
#logo_loader .f_logo {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 340px;/*画像サイズ*/
	height: 80px;/*画像サイズ*/
	text-align: center;
}
#logo_loader .f_logo img {
	width: 100%;
	height: auto;
}
#logo_loader .f_logo:before {
	content: "";
	display: block;
	width: 100%;
	height: 110%;
	background-color: #ecdf48;
	position: absolute;
	top: 0;
	left: 100%;
	animation: loadLogo 1.5s;
}
@keyframes loadLogo {
	0% {
		left: 0;
		top: 0;
	}
	50% {
		left: 0;
		top: 0;
	}
	100% {
		left: 0;
		top: -110%;
	}
}
#logo_loader .f_logo:before {
	animation: loadLogo 1s;
}

#logo_loader.open {
	animation-name: slideOut;
	animation-fill-mode: forwards;
	animation-duration: 2s;
	animation-delay: 2s;
}

@keyframes slideOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}


@media screen and (min-width: 641px){

.smart_only {
	display: none;
}

/* ------------------------------
 全体
------------------------------ */

* {
	margin: 0;
	padding: 0;
}
html,body{
	width: 100%;
}


html {
	-webkit-text-size-adjust: none;
}
body {
	background-color: #FFF;
	margin: 0 auto;
	font-family: -apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic ProN",メイリオ,Meiryo,sans-serif;
	color: #111;
	text-align: center;
}
p {
	line-height: 2.2em;
}
li {
	line-height: 1.8em;
}
table {
	text-align: left;
}
td {
	vertical-align: top;
}
hr {
	clear: both;
}
img {
	border: none;
	vertical-align: middle;
}
ul {
	margin: 0;
	padding: 0;
}
ol {
	margin: 0;
	padding: 0;
}
div {
	overflow: hidden;
}
article {
	overflow: hidden;
}
section {
	overflow: hidden;
	text-align: left;
	padding: 50px 0;
}
section p {
	margin: 50px 0;
}
a {
	color: #111;
	transition: all 300ms 0s ease;
}
a:hover {
	opacity: 0.5;
}

/* ------------------------------
 見出し部分
------------------------------ */

h1 {
	font-size: 30x;
	margin: 50px auto 0;
	color: #003b83;
	font-weight: normal;
}
h2 {
	color: #003b83;
	margin-bottom: 40px;
	font-size: 30px;
	font-weight: normal;
	clear: both;
}
h3 {
	color: #003b83;
	border-bottom: solid 1px #003b83;
	margin: 20px 0;
	font-weight: normal;
	font-size: 22px;
	clear: both;
}
h6 {
	border-radius: 10px / 10px;
	
	border-bottom: solid 1px #777;
	display: inline-block;
	background: rgba(255,255,255, 0.8);
}

/* ------------------------------
 flex
------------------------------ */

.flex_between {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex_start {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.flex_center {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.reverse {
	flex-direction: row-reverse;
}

/* ------------------------------
 画像関連
------------------------------ */

img.imgleft {
	float: left;
	padding: 0 40px 40px 0;
}
img.imgright {
	float: right;
	padding: 0 0 40px 40px;
}

/* ------------------------------
 テキスト関連
------------------------------ */

p.center {
	text-align: center;
	margin: 50px auto !important;
	clear: both;
}
p.p_right {
	text-align: right;
}
p.first:first-letter {
	font-size: 2.7em;
	line-height: 1;
	float: left;
	margin: 0 .2em 0 0;
	padding: .1em 0;
}
span.red {
	color: #FF0080;
}
span.blue {
	color: #0000FF;
	font-weight: bold;
}
span.bg_yellow01 {
	background-image: linear-gradient(transparent 60%, #ffff00 50%);
}
span.bold {
	color: #000000;
	font-weight: bold;
}
span.none {
	display: none;
}
ul.list {
	margin: 40px 40px;
}
ul.list li {
	margin-bottom: 10px;
}
ol.list {
	margin: 40px 40px;
}
ol.list li {
	margin-bottom: 10px;
}
.clear {
	clear: both;
}
.fnt_s {
	font-size: 0.7em;
}
.fnt_l {
	font-size: 1.3em;
}

/* ------------------------------
 全体
------------------------------ */

div.wrapper {
	width: 1000px;
	margin: 0 auto;
	text-align: left;
}

/* ------------------------------
 ヘッダー
------------------------------ */

header {
	min-width: 1000px;
	background-color: #ecdf48;
	overflow: hidden;
	margin: 0 auto;
}
header img {
	max-width: 100%;
	height: auto;
	width /***/:auto;
}



/* ------------------------------
 会社概要
------------------------------ */

div.about_wrapper {
	width: 700px;
	margin: 30px auto;
}
div.about {
	display: flex;
	border-bottom: solid 1px #DDD;
}
div.about p {
	margin: 10px 10px;
}
div.about01 {
	width: 150px;
	font-weight: bold;
	color: #000;
}
div.about02 {
	width: 550px;
}
div.about02 ul {
	margin: 10px 30px;
}

/* ------------------------------
 お問い合わせ
------------------------------ */

div.inq_wrapper {
	width: 700px;
	margin: 30px auto;
}
div.inq {
	display: flex;
}
div.inq p {
	margin: 10px 10px;
}
div.inq01 {
	width: 200px;
	text-align: right;
	font-weight: bold;
	color: #000;
}
div.inq02 {
	width: 500px;
}
input.input_box {
	width: 96%;
	padding: 10px 5px;
	border: solid 1px #BBB;
	border-radius: 5px / 5px;
	font-size: 16px;
}
input.input_box02 {
	width: 50%;
	padding: 10px 5px;
	border: solid 1px #BBB;
	border-radius: 5px / 5px;
	font-size: 16px;
}
input.input_box03 {
	width: 10%;
	padding: 10px 5px;
	border: solid 1px #BBB;
	border-radius: 5px / 5px;
	font-size: 16px;
}
textarea.input_box {
	width: 96%;
	height: 300px;
	border: solid 1px #BBB;
	border-radius: 5px / 5px;
	padding: 10px 5px;
	font-size: 16px;
}
::-webkit-input-placeholder {
	color: #aaa;
}
::-moz-placeholder {
	color: #aaa;
	opacity: 1;
}
:-ms-input-placeholder {
	color: #aaa;
}

input.button {
	-webkit-appearance: none;
	font-size: 18px;
	padding: 10px 15px;
}
p.thanks {
	text-align: center;
	font-size: 1.3em;
	margin: 200px auto;
}


/* ------------------------------
 フッター
------------------------------ */

footer {
	width: 100%;
	overflow: hidden;
	font-size: 12px;
	margin-bottom: 50px;
	border-top: solid 1px #AAA;
}
footer p {
	clear: both;
	margin: 30px auto;
}

div.footer_bnr {
	max-width: 700px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 30px auto;
}
div.footer_bnr div {
	width: 48%;
}
div.footer_bnr div img{
	max-width: 100%;
	height: auto;
	width /***/:auto;
}

div.bottom_wrapper {
	width: 100%;
	position: fixed;
	bottom: 0;
	background-color: #CCC;
	z-index: 999;
}
div.bottom {
	width: 180px;
	text-align: center;
	margin: 10px auto;
}
div.bottom div {
}

}