@charset "utf-8";

/*============================================================
 base.css
============================================================*/

/* Reset
------------------------------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,form,fieldset,input,textarea,p,blockquote,th,td { margin: 0;padding: 0; }
h1,h2,h3,h4,h5,h6 { font-size: 100%;font-weight: normal; }
address,em { font-style: normal; }
table { border-collapse: collapse;border-spacing: 0; }
th { font-weight:normal;text-align: left; }
legend { display: none; }
img,fieldset { border: 0; }
li { list-style-type: none; }

/* HTML5
------------------------------------------------------------*/
article, aside, dialog, figure, footer, header,hgroup, nav, section { display: block;margin: 0;padding: 0; }

/* scrollbug for FF
------------------------------------------------------------*/
html { overflow-y: scroll; }

/* Fonts
------------------------------------------------------------*/
body { font-family:"游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif; }

/* Form
------------------------------------------------------------*/
input,textarea { outline: none; }

/* Media
------------------------------------------------------------*/
object,embed { vertical-align: top; }
img { max-width: 100%;vertical-align: bottom;font-size: 0;line-height: 0;-webkit-backface-visibility: hidden; }

/* clearfix
------------------------------------------------------------*/
.cf::after { content: "";display: block;clear: both; }

/* float
------------------------------------------------------------*/
.fl { float: left;}
.fr { float: right;}

/* margin
------------------------------------------------------------*/
.mb30 { margin-bottom: 30px!important; }
.mb50 { margin-bottom: 50px!important; }

/* link
------------------------------------------------------------*/
a {
	color: #333;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
a > img {
	transition: opacity 0.3s ease-out;
}
a > img:hover {
	opacity: .6;
}



/*============================================================
 common.css
============================================================*/

* {
	box-sizing: border-box;
	word-break: break-all;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
html {
	font-size: 62.5%;
}
body {
	font-size: 14px;
	font-size: 1.4rem;
	color: #333;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: column nowrap;
	flex-flow: column nowrap;
}


/* loader
------------------------------------------------------------*/
#loader{
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
}
#loader div{
	margin: -32px 0 0 -32px;
  position: absolute;
  top: 50%;
  left: 50%;
}


/* header
------------------------------------------------------------*/
header {
	height: 110px;
	background: #fff;
	padding-top: 20px;
	text-align: right;
	position: relative;
}
header::before {
	content: "";
	width: 100%;
	height: 10px;
	background: url("../images/bg.png");
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
header .inner {
	position: relative;
}
header .logo {
	height: 50px;
	position: absolute;
	top: 30px;
	left: 0;
}
header .logo img {
	max-height: 100%;
}
header ul {
	margin-bottom: 10px;
}
header li {
	display: inline-block;
}
header li.btn {
	margin-left: 20px;
}
header li.btn:last-of-type {
	margin-left: 5px;
}
header li:not(:first-child):not(.btn)::before {
	content: "";
	width: 1px;
	height: 12px;
	background: #555;
	display: inline-block;
	margin: 0 10px;
	position: relative;
	top: 2px;
}
header li a {
	font-size: 1.1rem;
	font-weight: 600;
	color: #333;
	text-decoration: none;
	display: inline-block;
}
header li.btn a {
	font-size: 1.3rem;
	background: #fff200;
	padding: 6px 20px;
	transition: .3s;
}
header li.btn + .btn a {
	color: #fff;
	background: #111;
}
header li.btn a:hover {
	opacity: .4;
}
header .tel {
	font-family: 'Roboto', sans-serif;
	font-size: 2.8rem;
	line-height: 1.4;
	color: #333;
	margin-bottom: 0;
	display: inline-block;
	letter-spacing: 1px;
}
header .tel::before {
	content: "";
	width: 22px;
	height: 22px;
	background: url(../images/i_tel.png) no-repeat;
	background-size: contain;
	margin-right: 10px;
	display: inline-block;
}
header .tel span {
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: 1.2rem;
	display: block;
	letter-spacing: 2px;
}


/* nav
------------------------------------------------------------*/
#menuBtn {
	display: none;
}
nav {
	margin: 15px 0 30px;
}
nav a {
	font-weight: 600;
	color: #333;
	padding: 10px 1vw;
	text-decoration: none;
	transition: .3s;
}
nav a:hover {
	opacity: .6;
}
nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
}
nav ul::before {
	content: "";
	width: 100%;
	height: 3px;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	position: absolute;
	top: calc(50% - 4px);
}
nav li {
	background: #fff;
	position: relative;
}
nav li:nth-last-child(-n+2) {
	display: none;
}
nav li.ac a {
	color: #b20300;
}


/* pagetop
------------------------------------------------------------*/
#pagetop {
	margin-bottom: 20px;
	text-align: right;
}
#pagetop a {
	font-size: 1.2rem;
	font-weight: 600;
	color: #333;
	display: inline-block;
	text-decoration: none;
	transition: .3s;
}
#pagetop a:hover {
	opacity: .6;
}
#pagetop a::before {
	content: "";
	width: 15px;
	height: 15px;
	background: url(../images/i_pagetop.png) no-repeat;
	background-size: contain;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
}


/* footer
------------------------------------------------------------*/
footer {
	background: #eee;
	padding: 30px 0 20px;
}
footer .inner {
	position: relative;
}
footer div.fl {
	margin-bottom: 50px;
}
footer div.fr {
	width: 50%;
}
footer p,
footer a {
	font-size: 1.2rem;
	color: #333;
}
footer .logo {
	width: 257px;
	margin-bottom: 20px;
	display: inline-block;
}
footer .name {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 5px;
}
footer .snsBtn li {
	line-height: 1;
	display: inline-block;
	vertical-align: top;
}
footer .snsBtn li + li {
	margin-left: 5px;
}
footer .linkArea li {
	width: 33.3%;
	margin-bottom: 10px;
	float: left;
}
footer .linkArea li a {
	text-decoration: none;
}
footer .linkArea li a:hover {
	text-decoration: underline;
}
footer .linkArea li a::before {
	content: "";
	width: 3px;
	height: 3px;
	margin-right: 8px;
	display: inline-block;
	border-top: 1px solid #555;
	border-right: 1px solid #555;
	position: relative;
	top: -3px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
footer .btnArea {
	text-align: right;
	position: absolute;
	right: 0;
	bottom: 0;
}
footer .btnArea li {
	display: inline-block;
}
footer .btnArea li:last-child {
	margin-left: 5px;
}
footer .btnArea li a {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
	background: #fff200;
	padding: 6px 20px;
	text-decoration: none;
	display: inline-block;
	transition: 0.3s ease-out;
}
footer .btnArea li + li a {
	color: #fff;
	background: #111;
}
footer .btnArea li a:hover {
	opacity: .6;
}
footer .copy {
	font-size: 1.2rem;
	margin-bottom: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	letter-spacing: 1px;
}


@media screen and (max-width:480px) {
	
	* {
		-webkit-appearance: none;
	}
	
	
	/* header
	------------------------------------------------------------*/
	header {
		height: auto;
		padding: 15px 0;
		text-align: left;
	}
	header::before {
		display: none;
	}
	header .logo {
		width: 100%;
		max-width: 70%;
		height: 35px;
		display: inline-block;
		position: static;
	}
	header .logo img {
		max-height: 100%;
	}
	header ul,
	header .tel {
		display: none;
	}
	
	
	/* nav
	------------------------------------------------------------*/
	nav {
		padding: 0;
		margin: 0;
	}
	nav ul {
		max-width: 100%!important;
		padding: 0;
		float: none;
		text-align: center;
		display: none;
		border-bottom: none;
		position: absolute;
		z-index: 1;
	}
	nav li {
		display: block;
		border-top: 1px solid #ddd;
	}
	nav li:first-child a {
		border-left: none;
	}
	nav li:nth-last-child(-n+2) {
		display: block;
	}
	nav a {
		background: rgba(251,251,251,.95);
		padding: 10px 0;
		display: block;
	}
	#menuBtn {
		display: block;
		position: absolute;
		top: 22px;
		right: 5%;
		width: 30px;
		height: 22px;
		background: #111;
		border-top: 10px solid #fff;
		border-bottom: 10px solid #fff;
		transition: all 0.3s;
	}
	#menuBtn:before {
		content: '';
		position: absolute;
		width: 30px;
		height: 2px;
		background: #111;
		top: -9px;
		right: 0;
		transition: all 0.3s;
	}
	#menuBtn:after {
		content: '';
		position: absolute;
		width: 30px;
		height: 2px;
		background: #111;
		bottom: -9px;
		right: 0;
		transition: all 0.3s;
	}
	#menuBtn.active {
		background: #fff;
	}
	#menuBtn.active:before {
		-moz-transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
		top: 0;
		right: 0;
	}
	#menuBtn.active:after {
		-moz-transform: rotate(135deg);
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
		bottom: 0;
		right: 0;
	}
	
	
	/* pagetop
	------------------------------------------------------------*/
	#pagetop {
		margin-bottom: 0;
	}
	#pagetop .inner {
		max-width: 100%!important;
	}
	#pagetop a {
		padding: 15px 0;
		display: block;
		text-align: center;
		border-left: none;
		border-right: none;
	}
	
	
	/* footer
	------------------------------------------------------------*/
	footer {
		padding-top: 0;
		text-align: center;
	}
	footer .inner {
		max-width: 100%!important;
		-js-display: flex;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-flow: column nowrap;
		flex-flow: column nowrap;
	}
	footer div.fl {
		max-width: 94%;
		margin: 0 auto 30px;
	}
	footer .logo {
		display: none;
	}
	footer div.fr {
		width: 100%;
		-webkit-box-ordinal-group: -1;
		-webkit-order: -1;
		order: -1;
	}
	footer .linkArea {
		margin-bottom: 20px;
	}
	footer .linkArea li {
		width: 50%;
		margin: 0;
		border-bottom: 1px solid #ccc;
	}
	footer .linkArea li:nth-child(even) {
		border-left: 1px solid #ccc;
	}
	footer .linkArea li::before {
		display: none;
	}
	footer .linkArea li a {
		padding: 12px;
		display: block;
	}
	footer .btnArea {
		margin-bottom: 20px;
		text-align: center;
		position: static;
	}
	footer .copy {
		margin: 0 auto;
		position: static;
	}
}



/*============================================================
 style.css
============================================================*/

/* 共通
------------------------------------------------------------*/
p {
	margin-bottom: 20px;
}
.inner {
	width: 100%;
	max-width: 980px;
	margin: auto;
}
.center {
	text-align: center;
}
.outLink::after {
	content: "";
	width: 10px;
	height: 10px;
  background: url(../images/i_outlink.gif) no-repeat center right;
	margin-left: 8px;
	display: inline-block;
	position: relative;
	top: 1px;
}


/* hx
------------------------------------------------------------*/
h1 {
	font-size: 1.1rem;
	color: #333;
	position: absolute;
	left: 0;
}
#contents > h2 {
	font-size: 2.4rem;
	font-weight: 600;
	background: #dae9e6;
	padding: 30px 0;
	margin: 0 auto;
	text-align: center;
	letter-spacing: 2px;
}
#contents > h2 span {
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	font-weight: normal;
	display: block;
}
h3 {
	font-size: 2rem;
	font-weight: 600;
	background: #f9f9f9;
	padding: 15px 20px;
	margin-bottom: 30px;
	border-bottom: 1px solid #333;
	position: relative;
	letter-spacing: 1px;
}
h3:not(:first-child) {
	margin-top: 70px;
}
h3::before {
	content: "";
	width: 5px;
	height: 20px;
	background: #333;
	margin-top: -10px;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
}
h4 {
	font-size: 1.8rem;
	font-weight: 600;
	margin: 50px 0 20px;
}
h3 + h4,
h4:first-child {
	margin-top: 0;
}
h4::after {
	content: "";
	width: 100%;
	height: 1px;
	background: #555;
	margin-top: 10px;
	display: block;
}


/* ボタン系
------------------------------------------------------------*/
.btn-more,
.btn-entry {
	color: #333;
	background: #fff200;
	padding: 6px 20px;
	text-decoration: none;
	display: inline-block;
	transition: 0.3s;
}
.btn-more:hover,
.btn-entry:hover {
	color: #fff;
	background: #111;
}
.btn-more + .btn-more {
	margin-left: 10px;
}
.btn-entry {
	font-size: 1.6rem;
	padding: 10px 50px;
	cursor: pointer;
}


/* トップページ
------------------------------------------------------------*/


/* main
------------------------------------------------------------*/
#main {
	width: 100%;
	margin-bottom: 40px;
	text-align: center;
}


/* sec01
------------------------------------------------------------*/
#sec01 {
	padding-bottom: 25px;
}
#sec01 .inner > div {
	width: 300px;
	padding-top: 20px;
	float: left;
	border-top: 3px solid #333;
}
#sec01 .inner > div:not(:first-child) {
	margin-left: 40px;
}
#sec01 h2 {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 10px;
}
#sec01 .txtArea {
	padding: 20px 0;
}
#sec01 .txtArea .btn {
	font-weight: 600;
	color: #333;
	background: #fff200;
	padding: 8px 40px;
	display: inline-block;
	text-decoration: none;
	transition: .3s;
}
#sec01 .txtArea .btn:hover {
	color: #fff;
	background: #111;
}


/* sec02
------------------------------------------------------------*/
#sec02 .inner {
	padding: 40px 0;
	position: relative;
}
#sec02 .inner::before {
	content: "";
	width: 100%;
	height: 5px;
	background: url("../images/bg.png");
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
#sec02 h2 {
	font-size: 1.8rem;
	font-weight: 600;
	background: #fff;
	padding: 8px 30px;
	margin-bottom: 30px;
	display: inline-block;
	border: 1px solid #222;
	position: relative;
	z-index: 1;
}
#sec02 h2::before {
	content: "";
	width: 100%;
	height: 100%;
	border-right: 4px solid #222;
	border-bottom: 4px solid #222;
	display: block;
	position: absolute;
	right: -5px;
	bottom: -5px;
	z-index: -1;
}
#sec02 h2 span {
	display: none;
}
#sec02 li:not(:last-child) {
	margin-bottom: 10px;
}
#sec02 li span {
	width: 100px;
	display: inline-block;
}


/* sec03
------------------------------------------------------------*/
#sec03 {
	margin-bottom: 20px;
}
#sec03 .inner {
	padding-bottom: 40px;
	position: relative;
}
#sec03 .inner::before {
	content: "";
	width: 100%;
	height: 5px;
	background: url("../images/bg.png");
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
}
#sec03 .bnrArea {
	margin-bottom: 30px;
}
#sec03 .bnrArea li {
	width: 310px;
	margin-bottom: 0;
	float: left;
}
#sec03 .bnrArea li:not(:first-child) {
	margin-left: 10px;
}
#sec03 .txtLinkArea li {
	display: inline-block;
	margin-bottom: 0;
}
#sec03 .txtLinkArea li:not(:first-child) {
	margin-left: 40px;
}
#sec03 .txtLinkArea li a {
	font-weight: 500;
	color: #333;
	display: block;
	text-decoration: none;
	transition: .3s;
}
#sec03 .txtLinkArea li a:hover {
	text-decoration: underline;
}
#sec03 .txtLinkArea li a::before {
	content: "";
	width: 3px;
	height: 3px;
	margin-right: 8px;
	display: inline-block;
	border-top: 1px solid #555;
	border-right: 1px solid #555;
	position: relative;
	top: -3px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


/* 下層共通
-------------------------*/
#contents {
	margin-bottom: 50px;
}
iframe {
	width: 100%;
	height: 400px;
	border: none;
}
.x2,
.x3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.x2 li {
	width: 340px;
}
.x3 li {
	width: 220px;
}
.x2 li:not(:nth-child(even)) {
	margin-right: 40px;
}
.x3 li:not(:last-child) {
	margin-right: 30px;
}
.x2 li .txtArea,
.x3 li .txtArea {
	background: #fbf2f2;
	padding: 10px;
	display: block;
	text-align: center;
}
.listBox:not(:last-child) {
	margin-bottom: 20px;
}
.listBox h4 {
	margin-top: 0;
	overflow: hidden;
}
.listBox a {
	color: #333;
	padding: 20px;
	display: block;
	border: 1px solid #ddd;
	text-decoration: none;
}
.listBox img.fl {
	margin-right: 30px;
}
.listBox img.fr {
	margin-left: 30px;
}
.multi img.fl {
	margin: 0 30px 10px 0;
}
.multi img.fr {
	margin: 0 0 10px 30px;
}
table.col-2 {
	width: 100%;
	border-top: 1px solid #ddd;
}
table.col-2 th,
table.col-2 td {
	padding: 20px;
	border-bottom: 1px solid #ddd;
}
table.col-2 th {
	font-weight: 600;
	width: 25%;
	background: #f9f9f9;
}
.pagetop {
	margin-top: 20px;
	text-align: right;
}
.pagetop a {
	font-size: 1.2rem;
	display: inline-block;
	text-decoration: none;
	letter-spacing: 1px;
}
.pagetop a::before {
	content: "";
	width: 11px;
	height: 6px;
	background: url(../images/i_pagetop-s.png) no-repeat;
	background-size: contain;
	margin-right: 8px;
	display: inline-block;
	position: relative;
	top: -2px;
}


/* パンくず
-------------------------*/
.pankuzu {
	width: 100%;
	max-width: 980px;
	margin: 10px auto 20px;
}
.pankuzu li {
	font-size: 1rem;
	color: #999;
	display: inline-block;
}
.pankuzu li:before {
	content: ">";
	color: #999;
	margin: 0 10px;
}
.pankuzu li:first-child:before {
	display: none;
}
.pankuzu li a {
	color: #999;
	position: relative;
}
.pankuzu li a:hover {
	opacity: 1;
}


/* メインカラム
-------------------------*/
#mainColumn {
	width: 720px;
	float: left;
}


/* フォトギャラリー
-------------------------*/
.gallery li {
	width: 136px;
	float: left;
	margin: 0 10px 10px 0;
}
.gallery li:nth-child(5n) {
	margin-right: 0;
}


/* 採用情報
-------------------------*/
.flowArea > div {
	padding: 30px 0;
	border-bottom: 1px solid #ddd;
	position: relative;
}
.flowArea > div:first-child {
	padding-top: 10px;
}
.flowArea > div:last-child {
	border-bottom: none;
}
.flowArea > div::before,
.flowArea > div::after {
	content: "";
	border: solid transparent;
	position: absolute;
	top: 100%;
	left: 50%;
}
.flowArea > div::before {
	border-top-color: #ddd;
	border-width: 17px;
	margin-left: -17px;
}
.flowArea > div::after {
	border-top-color: #fff;
	border-width: 15px;
	margin-left: -15px;
}
.flowArea > div:last-child::before,
.flowArea > div:last-child::after {
	display: none;
}
.flowArea > div  h5 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #26374b;
	padding-bottom: 2px;
	margin-bottom: 15px;
}
.flowArea > div h5::before {
	font-size: 1.2rem;
	font-weight: normal;
	color: #c94e5a;
	padding: 3px 8px;
	margin-right: 10px;
	display: inline-block;
	border: 1px solid #c94e5a;
	position: relative;
	top: -1px;
}
.flowArea > div:first-child h5::before {content: "STEP01.";}
.flowArea > div:nth-child(2) h5::before {content: "STEP02.";}
.flowArea > div:nth-child(3) h5::before {content: "STEP03.";}
.flowArea > div:nth-child(4) h5::before {content: "STEP04.";}
.flowArea > div:nth-child(5) h5::before {content: "STEP05.";}
.flowArea > div:nth-child(6) h5::before {content: "STEP06.";}
.flowArea > div:nth-child(7) h5::before {content: "STEP07.";}
.flowArea > div:nth-child(8) h5::before {content: "STEP08.";}
.flowArea > div p:last-child {
	margin-bottom: 0;
}


/* サイトマップ
-------------------------*/
.sitemap > div {
	width: 340px;
	float: left;
}
.sitemap > div:first-child {
	margin-right: 40px;
}
.sitemap a {
	color: #333;
	text-decoration: none;
}
.sitemap h4 {
	font-size: 1.5rem;
	margin: 30px 0 15px;
}
.sitemap h4:first-child {
	margin-top: 0;
}
.sitemap h4::after {
	margin-top: 5px;
}
.sitemap ul {
	margin-bottom: 30px;
}
.sitemap li:not(:last-child) {
	margin-bottom: 5px;
}
.sitemap li::before {
	content: "";
	width: 6px;
	height: 11px;
	background: url(../images/i_arrow.png) no-repeat;
	background-size: contain;
	margin-right: 8px;
	display: inline-block;
	position: relative;
	top: 1px;
}


/* フォーム
-------------------------*/
form table input,
form textarea,
form select {
  width: 65%;
  border: none;
  background: #fff;
  padding: 5px;
	border: 1px solid #ddd;
  border-radius: 3px;
}
form textarea {
	min-height: 150px;
	resize: vertical;
}
input[type=radio],
input[type=checkbox] {
  display: none;
}
.radio,
.checkbox {
	line-height: 30px;
	padding-left: 28px;
	margin-right: 30px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.radio:hover:after,
.checkbox:hover:after {
  border-color: #c94e5a;
}
.radio:after,
.checkbox:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  margin-top: -11px;
  width: 16px;
  height: 16px;
  border: 2px solid #bbb;
	border-radius: 50%;
  content: '';
}
.checkbox:after {
	border-radius: 0;
}
.radio:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 5px;
	display: block;
	margin-top: -6px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #cc6633;
	content: '';
	opacity: 0;
}
input[type=radio]:checked + .radio:before {
  opacity: 1;
}
.checkbox:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 6px;
  display: block;
  margin-top: -9px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #c94e5a;
  border-bottom: 3px solid #c94e5a;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
}
form .birth select {
	width: 50px;
	margin: 0 10px 0 20px;
}
form .birth input + select {
	width: 80px;
	margin-left: 0;
}
form .placeholder {
	font-size: 1.2rem;
	color: #aaa;
	margin-left: 10px;
}
form .address .size-s {
	width: 20%;
}
form .address select {
	width: 30%;
	margin: 10px 0;
}
form .address .placeholder:last-child {
	margin: 10px 0 0;
	display: inline-block;
}


/* サイドカラム
-------------------------*/
aside {
	width: 220px;
	float: right;
}
.sideNav a {
	color: #333;
	display: block;
	text-decoration: none;
}
.sideNav h2 {
	font-size: 1.6rem;
	font-weight: 600;
	border-top: 2px solid #333;
	border-bottom: 1px dashed #ccc;
}
.sideNav h2 a {
	padding: 15px 10px;
}
.sideNav .ac a {
	background: #f9f9f9;
}
.sideNav li {
	border-bottom: 1px dashed #ccc;
}
.sideNav li a {
	padding: 12px 10px;
	transition: .3s;
}
.sideNav li a:hover {
	opacity: .6;
}
aside .sideNav + .bnrArea,
aside .txtLinkArea {
	margin-top: 20px;
	text-align: center;
}
aside .bnrArea li:not(:last-child),
aside .txtLinkArea li:not(:last-child) {
	margin-bottom: 10px;
}


/* faq
-------------------------*/
.faqArea dt:first-child {
	margin-top: 0;
}
.faqArea dt {
	font-size: 1.8rem;
	font-weight: 600;
	margin: 50px 0 20px;
}
.faqArea dt span {
	font-family: 'Roboto', sans-serif;
	font-size: 2rem;
	font-weight: normal;
	color: #708193;
	margin-right: 10px;
}
.faqArea dt::after {
	content: "";
	width: 100%;
	height: 4px;
	background: #f8f8fa;
	margin-top: 10px;
	display: block;
	border-top: 1px solid #ddd;
}


@media screen and (max-width:480px) {
	
	/* common
	------------------------------------------------------------*/
	.inner {
		max-width: 94%;
	}
	
	
	/* hx
	------------------------------------------------------------*/
	h1 {
		display: none;
	}
	#contents > h2 {
		font-size: 2rem;
		width: 94%;
		padding: 20px 0;
		margin: auto;
	}
	h3 {
		font-size: 1.8rem;
		margin-bottom: 20px;
	}
	h3:not(:first-child) {
		margin-top: 50px;
	}
	h4 {
		font-size: 1.6rem;
		margin: 40px 0 15px;
	}
	
	
	/* main
	------------------------------------------------------------*/
	#main {
		padding: 0;
		margin-bottom: 10px;
	}
	#main img {
		max-width: 94%;
	}
	
	
	/* sec01
	------------------------------------------------------------*/
	#sec01 {
		padding-bottom: 30px;
	}
	#sec01 .inner > div {
		width: 100%;
		padding: 20px;
		float: none;
		border: 1px solid #333;
	}
	#sec01 .inner > div:not(:first-child) {
		margin-left: 0;
	}
	#sec01 .inner > div:not(:last-child) {
		margin-bottom: 10px;
	}
	#sec01 img {
		max-width: inherit;
		width: 100%;
	}
	#sec01 .txtArea {
		padding: 15px 0 0;
	}
	#sec01 .txtArea .btn {
		display: block;
		text-align: center;
		position: relative;
	}
	
	
	/* sec02
	------------------------------------------------------------*/
	#sec02 .inner {
		padding: 30px 0;
	}
	#sec02 h2 {
		font-size: 1.6rem;
		padding: 5px 10px;
		margin-bottom: 20px;
	}
	#sec02 ul {
		margin: 0;
	}
	#sec02 li:not(:last-child) {
		padding-bottom: 10px;
		border-bottom: 1px dotted #ccc;
	}
	#sec02 li span {
		font-size: 1.2rem;
		margin-right: 0;
		display: block;
	}
	
	
	/* sec03
	------------------------------------------------------------*/
	#sec03 {
		margin-bottom: 0;
	}
	#sec03 .bnrArea {
		padding: 0;
		margin-bottom: 30px;
		text-align: center;
	}
	#sec03 .bnrArea li {
		width: 100%;
		float: none;
	}
	#sec03 .bnrArea li:not(:first-child) {
		margin-left: 0;
	}
	#sec03 .bnrArea li:not(:last-child) {
		margin-bottom: 10px;
	}
	#sec03 .txtLinkArea {
		text-align: center;
	}
	#sec03 .txtLinkArea li {
		width: 310px;
	}
	#sec03 .txtLinkArea li:not(:first-child) {
		margin-left: 0;
	}
	#sec03 .txtLinkArea li:not(:last-child) {
		margin-bottom: 10px;
	}
	
	
	/* 下層共通
	-------------------------*/
	iframe {
		height: 250px;
	}
	.x2,
	.x3 {
		justify-content: center;
	}
	.x2 li:nth-child( n),
	.x3 li:nth-child( n) {
		margin-right: 0;
	}
	.x2 li:nth-child(n+2),
	.x3 li:nth-child(n+2) {
		margin-top: 15px;
	}
	.listBox img.fl,
	.listBox img.fr,
	.multi img.fl,
	.multi img.fr {
		margin: 0 auto 20px;
		float: none;
		display: block;
	}
	table.col-2 th,
	table.col-2 td {
		width: 100%;
		display: block;
	}
	table.col-2 th {
		padding: 10px 15px;
		text-align: center;
	}
	table.col-2 td {
		padding: 15px;
	}
	
	
	/* パンくず
	-------------------------*/
	.pankuzu {
		display: none;
	}
	
	
	/* メインカラム
	-------------------------*/
	#mainColumn {
		width: 100%;
		margin: 20px 0 50px;
		float: none;
	}
	
	
	/* フォトギャラリー
	-------------------------*/
	.gallery li,
	.gallery li:nth-child(5n) {
		width: 32%;
		margin: 0 2% 6px 0;
	}
	.gallery li:nth-child(3n) {
		margin-right: 0;
	}
	
	
	/* サイトマップ
	-------------------------*/
	.sitemap > div {
		width: 100%;
		float: none;
	}
	
	
	/* フォーム
	-------------------------*/
	form table input,
	form textarea,
	form select {
		width: 100%;
	}
	form select {
		background: url(../images/i_select.png) no-repeat right 10px center #fff;
    background-size: 6px auto;
	}
	form table th br {
		display: none;
	}
	form .placeholder {
		display: block;
		margin: 10px 0 0;
	}
	form .address .size-s {
		width: 40%;
	}
	form .address .size-s + .placeholder {
		margin-left: 10px;
		display: inline-block;
	}
	form .address select {
		width: 50%;
	}
	
	
	/* サイドカラム
	-------------------------*/
	aside {
		width: 100%;
		float: none;
	}
	
	/* faq
	-------------------------*/
	.faqArea dt {
		font-size: 1.6rem;
		margin: 40px 0 15px;
	}
	
	
	
	
}