﻿@charset "utf-8";
/* CSS Document */

/*******************loader*******************/
#fade {
    width: 100%;
    height: 100%;
    display: none;
    background-color: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 7000;
}

#spinner {
    position: fixed;
    top: 45%;
    z-index: 7000;
    width: 30%;
    height: 10%;
    text-align: center;
    margin-left: 35%;
    margin-right: 35%;
    display: none;
}

#spinner > div {
    background-color: #CC131D;
    height: 100%;
    width: 8px;
    display: inline-block;
	animation: sk-stretchdelay 1.2s infinite ease-in-out;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    -moz-animation: sk-stretchdelay 1.2s infinite ease-in-out;
	-o-animation: sk-stretchdelay 1.2s infinite ease-in-out;
	-ms-animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

#spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

#spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

#spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

#spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}
/*******************loader*******************/

* {
    margin: 0 auto;
    padding: 0;
    border: 0;
    list-style: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

body {
	font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size: 14px;
	color: #000000;
	background-color: #f0f0f0;
}

#wrap {
	background-color:#ffffff;
	width:1200px;
}

img {
	max-width: 100%;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	display: block;
	margin:0 auto;
}

a img {
    filter: alpha(opacity=1);
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}

a {
	color: #007cac;
	text-decoration: none;
}
	
a:link {
	color: #007cac;
	text-decoration: underline;
}	

a:hover {
	color: #a80000;
	text-decoration: underline;
}	

a:focus {
	outline: none;
}

a.pt:hover img{
   filter:alpha(opacity=70); /*←IE用*/
   -moz-opacity:0.80; /*←Mozilla用*/
    opacity:0.70; /*safari opera*/
}


section {
	height: auto;
}

article{
	height:auto;
}

/******content******/
.content {
    width: 1200px;
    height: auto;
    padding-right: 50px;
	padding-left: 50px;
	padding-top:30px;
	padding-bottom:30px;
}

.top-content {
	width:65%;
	height:auto;
	margin-top:30px;
	font-size:16px;
}

.top-content p{
}

.attention-content {
	width:80%;
	height:auto;
	margin-bottom:20px;
	font-size:16px;
}

.img-box{
	margin-bottom:20px;
    border: 1px solid #ddd;
}

/******content******/

/*******header*******/
header {
    width: 100%;
}

.header-logo img {
    width: 86px;
    height: 30px;
}

.header-logo {
    float: left;
}
/*******header*******/

/*******text*******/

.txt-small{
	font-size:12px;
}

.txt-medium{
	font-size:18px;
}

.txt-large{
	font-size:24px;
}

.txt-bold{
	font-weight:800;
    font-size:110%;
}

.txt-bold2{
	font-weight:600;
}

.txt-space20{
	margin-bottom:20px;
}

.txt-space30{
	margin-bottom:30px;
}

.txt-space40{
	margin-bottom:40px;
}

.txt-space60{
	margin-bottom:60px;
}

/*******text*******/

.info {
    height: 500px;
    width: 80%;
    border: 1px solid #ddd;
    padding: 5px;
    overflow: auto;
    line-height: 18px;
}

.info2 {
    height: 500px;
    width: 80%;
    border: 1px solid #ddd;
    padding: 10px;
	background-color:#F8F8F8;
    line-height: 18px;
    overflow: auto;
}

.info2 dl dd {
    margin-bottom: 10px;
	float:left;
}

.info2 dd{
	width:50%;
}

.info dl dd {
    line-height: 20px;
    margin-bottom: 10px;
}


/******Button******/

.button {
    width: 48%;
    background-color: #286aab;
    display: block;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
	margin:1%;
	float:left;
}

.button:hover {
    background-color: #0e80f2;
}

.button a {
    color: #FFF;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    display: block;
	text-decoration:none;
}

/******Button******/

/*******footer*******/
footer {
    width: 1200px;
    background-color: #000;
    border-top: 2px solid #BE1B20;
	background-color:#000;
	padding: 15px 0 10px;
	position:relative;
}

.footer-logo {
    width: 280px;
    padding: 1%;
    display: block;
}

.footer-logo a {
    display: block;
}

/*******footer*******/

/*******見出し*******/
h1 {
    font-size: 45px;
    line-height: 50px;
    color: #000;
	text-align:center;
}

h2 {
    font-size: 24px;
    color: #FFF;
    background-color: rgb(22, 22, 22);
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
	width:80%;
}

h3 {
    font-size: 24px;
    color: #000;
    height: auto;
    padding-left: 5px;
	width:80%;
	border-left:#C00 10px solid;
	margin-bottom:20px;
}

h4 {
    font-size: 26px;
    color: #C00;
    height: auto;
	width:80%;
	margin-bottom:10px;
	text-align:center;
}

h5 {
    font-size: 22px;
    color: #000;
    margin-bottom:10px;
}

/*******見出し*******/

/*******************page-top*******************/
.pagetop {
    position: absolute;
    z-index: 1000;
    right: 20px;
    bottom: 15px;
	width: 45px;
	background-color: #CC131D;
	border-radius: 50%;
	transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-ms-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
}

.pagetop:hover {
	background: #F55962;
}

.pagetop img {
    display: block;
}

/*******************page-top*******************/

.Clear {
    clear: both;
}

.red {
    color: #C00;
}