@charset "UTF-8";

body {
	background: url(../images/body_bg_01.jpg);
}
header {
	min-width: 1068px;
	background: url(../images/header_bg_01.gif) repeat-x;
	border-bottom: solid 8px #FFF;
	padding: 90px 0 45px;
}
header .subContents {
	display: flex;
	justify-content: space-between;
}
header .subContents .siteTitle {
	color: #FFF;
	width: 415px;
	text-align: center;
}
header .subContents .siteTitle .subtitle {
	font-size: .875rem;
	margin-top: 5px;
}
header .subContents .contact {
	color: #FFF;
	width: 600px;
	text-align: right;
}
header .subContents .contact .tel {
	font-size: .9375rem;
}
header .subContents .contact .tel span {
	font-size: 185%;
	font-weight: bold;
}
header .subContents .contact .btn {
	width: 12em;
	background: #FFF;
	margin: 0 0 0 auto;
}
header .subContents .contact .btn a {
	color: #FFF;
	font-size: 1.5rem;
	text-align: center;
	text-decoration: none;
	background: #CE6EA3;
	padding: 5px 0;
	display: block;
}
header .subContents .contact .text {
	font-size: .875rem;
	margin-top: 5px;
}

#nav {
	border-top: solid 1px #808080;
	border-bottom: solid 1px #808080;
	padding: 30px 0;
}
#nav ul li {
	color: #4D4D4D;
	line-height: 1;
	border-right: solid 1px #4D4D4D;
	margin-right: 2em;
	padding-right: 2em;
	display: inline-block;
}
#nav ul li a {
	color: #4D4D4D;
	text-decoration: none;
}
#nav ul li:last-child {
	border-right: none;
	margin-right: 0;
	padding-right: 0;
}

#breadpath {
	margin: 20px 0;
}
#breadpath ul li {
	font-size: .875rem;
	display: inline-block;
}
#breadpath ul li:not(:last-child)::after {
	content: "　>　";
}


footer {
	color: #FFF;
	min-width: 1068px;
	background: #4D4D4D;
	margin: 50px 0 0 0;
	padding: 40px 0;
}
footer a:link, footer a:visited {
	color: #FFF;
	text-decoration: none;
}

footer #footer1 {
	display: flex;
	justify-content: space-between;
}
footer #footer1 .left {
	width: 420px;
}
footer #footer1 .right {
	width: 620px;
	position: relative;
}
footer #footer1 .left .logo {
	margin: 0 0 15px;
}
footer #footer1 .left .text {
	margin: 0 0 0 .5em;
}
footer #footer1 .left .text p {
	font-size: .8125rem;
}
footer #footer1 .left .btn {
	margin: 15px 0 0 0;
}
footer #footer1 .left .btn a {
	color: #FFF;
	font-size: .8125rem;
	background: #91839E;
	padding: 8px 1em;
}
footer #footer1 .right .comp {
	font-size: .8125rem;
	position: absolute;
	bottom: 0;
	right: 0;
}
footer #footer1 .right .comp a {
	text-decoration: underline;
}
footer #footer1 .right h3 {
	text-align: right;
	border-bottom: solid 1px #FFF;
	margin: 0 0 15px;
	padding: 0 0 5px;
}
footer #footer1 .right .sitemaps {
	font-size: .8125rem;
	display: flex;
	justify-content: space-between;
}
footer #footer1 .right .sitemaps p {
	line-height: 1;
	margin: 0 0 .6em;
}
footer #footer1 .right .sitemaps p a:hover {
	text-decoration: underline;
}
footer #footer1 .right .sitemaps .level2 {
	border-left: solid 1px #FFF;
	margin-left: .5em;
	padding: 0 0 0 .5em;
}
footer #footer1 .right .sitemaps .level3 {
	margin-left: 1em;
	padding: 0 0 0 .5em;
	position: relative;
}
footer #footer1 .right .sitemaps .level3::before {
	content: " ";
	width: 3px;
	height: 3px;
	background: #FFF;
	border-radius: 3px;
	position: absolute;
	top: .3em;
	left: 0;
}
footer #footer2 {
	text-align: center;
	border-top: solid 1px #FFF;
	margin: 30px 0 0 0;
	padding: 10px 0 0 0;
}
footer #footer2 small {
	color: #B1B1B1;
}



/* ----------- パーツ --------- */

.subContents {
	width: 1068px;
	text-align: left;
	margin: 0 auto;
}
.sec {
	margin: 0 0 50px;
}



ul.disclist li {
	list-style: disc;
	margin-left: 20px;
}
ul.indent-1 li,
p.indent-1 {
	text-indent: -1em;
	padding-left: 1em;
}
.indent-2 {
	text-indent: -2.5em;
	padding-left: 2.5em;
}

.note {
	font-size: .75rem;
}


.linkarea,
.linkarea a{
	position: relative;
}
.linkarea a:hover,
.linkarea:hover{
	opacity: .7;
}
.linkarea a {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	font-size: 0;
	text-indent: -9999px;
	overflow: visible;
	z-index: 999;
}


/* ----------- jq効果 --------- */
.fadeIn {
	transition: .8s;
	opacity: 0;
	transform: translate(0, 60px); 
	-webkit-transform: translate(0, 60px); 
}
.fadeIn.active {
	opacity: 1.0;
	transform: translate(0, 0); 
	-webkit-transform: translate(0, 0);
}
.enlarge {
	transition: .6s;
	opacity: 0;
	transform: scale(0); 
	-webkit-transform:  scale(0); 
}
.enlarge.active {
	opacity: 1;
	transform: scale(1); 
	-webkit-transform:  scale(1); 
}
.delay1 { transition-delay: .2s; }
.delay2 { transition-delay: .4s; }
.delay3 { transition-delay: .6s; }





/* -------------------------- フォーム ------------ */
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	border-radius: 0;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

input[type="text"],
textarea {
	width: 100%;
	padding: 5px;
}
input[type="text"].sizeL { width: 75%; }
textarea { height: 10em; }


