@charset "utf-8";

/***************** 基本構造 *****************/

*, *:before, *:after {
	background-repeat: no-repeat;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}


html {
	font-size: 62.5%; /* =10px */
}

body {
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: #f0eae2;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
	font-size: 14px;
	font-size: 1.4rem; /* =14px */
	line-height: 1.5em;
	letter-spacing: 0.8pt;
	color: #4d4d4d;
	overflow: scroll;
	overflow-x: hidden;

	-webkit-text-size-adjust: 100%;
}

img {
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
	border: none;
	vertical-align: text-bottom;
}

a:link {
	background-repeat: no-repeat;
	text-decoration: none;
	color: #2b7fb8;

	-webkit-transition: background-color 0.5s, border-color 0.5s, color 0.5s;
	-moz-transition: background-color 0.5s, border-color 0.5s, color 0.5s;
	-ms-transition: background-color 0.5s, border-color 0.5s, color 0.5s;
	-o-transition: background-color 0.5s, border-color 0.5s, color 0.5s;
	transition: background-color 0.5s, border-color 0.5s, color 0.5s;
}

a:visited {
	text-decoration: none;
	color: #2b7fb8;
}

a:hover {
	text-decoration: underline;
}

a:active {
	text-decoration: underline;
	color: #333;
}


#wrapper {
	width: 100%;
	min-width: 1000px;
	margin: 0;
	padding: 0;
}

.cover {
	width: 100%;
	margin: 0;
	padding: 0;
}

.wrap {
	padding: 4px;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.section {
	margin-top: 60px;
}

.section:first-child {
	margin-top: 0;
}

.row-outer {
	margin: 30px 15px 0;
}

.row {
	margin: 30px 25px 0;
}

.row-outer .row {
	margin: 30px 10px 0;
}

.lead2 + .row {
	margin-top: 0;
}

.row-outer p,
.row p {
	text-align: justify;
	text-justify: inter-ideograph;
}

.row-outer p:first-child,
.row p:first-child {
	margin-top: 0;
}


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

#wrapper {
	min-width: 0;
}

.section {
	margin-top: 50px;
}

} /* max 768px -- */

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

.section {
	margin-top: 40px;
}

} /* max 640px -- */

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

.row-outer {
	margin: 30px 10px 0;
}

.lead1 + .row-outer {
	margin-top: 20px;
}

.row {
	margin: 30px 10px 0;
}

.row-outer .row {
	margin: 20px 0 0;
}

} /* max 480px -- */



/* ------------------------------------------------------------------------------------------------------ Header */

.header {
	width: 100%;
	height: 140px;
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 57%, #ebebeb 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #ffffff 57%,#ebebeb 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #ffffff 57%,#ebebeb 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ebebeb',GradientType=0 ); /* IE6-9 */
	border-bottom: 3px solid #28a271;
}

.header-innr {
	position: relative;
	max-width: 960px;
	height: 100%;
	margin: 0 auto;
	padding-top: 80px;
}

.header-innr h1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 190px;
	height: 80px;
	margin: 0;
	padding: 0;
	background-image: url(../common/ttl_ueki-h.png);
	background-position: left 17px;

	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-ms-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.header-innr h1:hover {
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}

.header-innr h1 a {
	display: block;
	height: 100%;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

.header-innr h2 {
	position: absolute;
	top: 48px;
	right: 0;
	margin: 0;
	padding: 0;
	font-family: "Times New Roman",Times,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","メイリオ","ＭＳ Ｐ明朝",serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5em;
	color: #666;
}

.header-innr > p {
	position: absolute;
	top: 36px;
	left: 214px;
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.4em;
	letter-spacing: normal;
	color: #666;
}


@media screen and (-webkit-min-device-pixel-ratio:2) {

.header-innr h1 {
	background-image: url(../common/ttl_ueki-h@2X.png);
	background-size: 190px 50px;
}

} /* Retina Display -- */

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

.header {
	height: auto;
	background: #fff !important;
	border-bottom: none;
}

.header-innr {
	padding-top: 0;
}

.header-innr h1 {
	position: static;
	width: 152px;
	height: 60px;
	background-size: 122px 32px;
	background-position: 15px center;
}

.header-innr h2,
.header-innr > p {
	display: none;
}

} /* max 768px -- */

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

.header-innr h1 {
	width: 142px;
	background-position: 10px center;
}

} /* max 480px -- */


/***********************************************
 Globalnavi
 別ファイル globalnavi.css で設定
 ***********************************************/
.globalnavi {
}


/***********************************************
 SubNavi
 ***********************************************/
.subnavi {
	position: absolute;
	top: 0;
	right: 0;
	width: 460px;
	background-color: #5b71b3;
	border-radius: 0 0 6px 6px;
}

.subnavi ul {
	margin: 0;
	padding: 0;
	list-style: none;
	*zoom:1;
}
.subnavi ul:before,
.subnavi ul:after { content: ""; display: table; }
.subnavi ul:after { clear: both; }

.subnavi ul li {
	position: relative;
	float: left;
	width: 25%;
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.0em;
}

.subnavi ul li:not(:first-child):before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 1px;
	height: 10px;
	margin-top: -5px;
	background-color: #fff;
}

.subnavi ul li a {
	display: block;
	padding: 15px 0 13px;
	color: #fff;
}

.subnavi ul li a:hover {
	text-decoration: none;
	color: #ffff9d;
}


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

.subnavi {
	position: static;
	width: auto;
	background-color: #5b71b3;
	border-radius: 0;
}

.subnavi ul li a {
	padding: 23px 0 21px;
}

} /* max 768px -- */



/* ------------------------------------------------------------------------------------------------------ Footer */

.footer {
	width: 100%;
	background-color: #808080;
	color: #fff;
}

.footer-innr {
	position: relative;
	max-width: 960px;
	margin: 0 auto;
	padding: 18px 0;
	font-size: 11px;
	font-size: 1.1rem;
	line-height: 1.5em;
}

.footer-innr a {
	display: block;
	width: 194px;
	height: 32px;
	background-image: url(../common/img_footer_logo.png);
	background-size: cover;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;

	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-ms-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.footer-innr a:hover {
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}

.footer-innr address {
	margin-top: 10px;
	font-style: normal;
}

.footer-innr small {
	position: absolute;
	right: 0;
	bottom: 19px;
}

.footer-innr small:after {
	content: "All rights reserved.";
	margin-left: 0.25em;
}


@media screen and (-webkit-min-device-pixel-ratio:2) {

.footer-innr a {
	background-image: url(../common/img_footer_logo@2X.png);
}

} /* Retina Display -- */

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

.footer-innr {
	padding: 18px 15px;
}

.footer-innr a {
	margin: 0 auto;
}

.footer-innr address {
	text-align: center;
}

.footer-innr small {
	display: block;
	position: static;
	text-align: center;
}

} /* max 768px -- */

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

.footer-innr small:after {
	content: "";
}

} /* max 480px -- */



/* ------------------------------------------------------------------------------------------------------ 404 */

.error-cover {
	text-align: center;
}

.error-cover h3 {
	margin: 0;
	padding: 30px 30px 0;
	line-height: 0;
}

.error-cover p {
	margin: 30px;
}


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

.error-cover article {
	margin: 20px 30px;
}

.error-cover article p {
	margin: 15px 0;
}

}

