
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

a{
-webkit-transition:0.3s;
-moz-transition:0.3s;
 transition:0.3s;
}

em,strpng{
font-style: normal;
}

/*margin調整*/
.mb5{
	margin-bottom:5px;
}
.mb10{
	margin-bottom:10px;
}
.mb20{
	margin-bottom:20px;
}
.mb30{
	margin-bottom:30px;
}
.mb40{
	margin-bottom:40px;
}
.mb50{
	margin-bottom:50px;
}
.mb60{
	margin-bottom:60px;
}
.mb70{
	margin-bottom:70px;
}
.mb80{
	margin-bottom:80px;
}
.mb100{
	margin-bottom:100px;
}

.mt20{
	margin-top:20px;
}


.clearFix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearFix {
display:inline-block;
min-height: 1px;
}

.pc_none{
	display:none;
}

img.center{
	margin-left:auto;
	margin-right:auto;
	display:block;
}


/*文字装飾*/

.font_bold{
	font-weight:bold;
}

.font_red{
	color:#b80101;
}

.font_small{
	font-size:8.5pt;
}

a{
	color:#333;
	text-decoration:none;
}

a.link{
	color:#666;
	text-decoration: underline;
}

a.link:hover{
	color:#fe9e1a;
}


/* アニメーション設定 */
.scrollin{
    transform : translate(0, 40px);
    transition : all 600ms;
}
 
.scrollin_on {
    transform : translate(0, 0);
}

.scrollin:nth-of-type(2) {
    -moz-transition-delay: 200ms;
    -webkit-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    -ms-transition-delay: 200ms;
}

.scrollin:nth-of-type(3) {
    -moz-transition-delay: 400ms;
    -webkit-transition-delay: 400ms;
    -o-transition-delay: 400ms;
    -ms-transition-delay: 400ms;
}

.scrollin:nth-of-type(4) {
    -moz-transition-delay: 600ms;
    -webkit-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    -ms-transition-delay: 600ms;
}

.scrollin:nth-of-type(5) {
    -moz-transition-delay: 800ms;
    -webkit-transition-delay: 800ms;
    -o-transition-delay: 800ms;
    -ms-transition-delay: 800ms;
}


.delayin{
opacity: 0;
 transition : all 1000ms;
}
 
.delayin_on {
  opacity: 1.0;
}

.delayin:nth-of-type(2) {
    -moz-transition-delay: 300ms;
    -webkit-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
}

.delayin:nth-of-type(3) {
    -moz-transition-delay: 600ms;
    -webkit-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    -ms-transition-delay: 600ms;
}

.delayin:nth-of-type(4) {
    -moz-transition-delay: 900ms;
    -webkit-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
}

.delayin:nth-of-type(5) {
    -moz-transition-delay: 1200ms;
    -webkit-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
}

.delayin:nth-of-type(6) {
    -moz-transition-delay: 1500ms;
    -webkit-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
}

.delayin:nth-of-type(7) {
    -moz-transition-delay: 1800ms;
    -webkit-transition-delay: 1800ms;
    -o-transition-delay: 1800ms;
    -ms-transition-delay: 1800ms;
}


@keyframes large {
    0% {transform: scale(1.1)}
    100% {transform: scale(1.0)}
}

@-webkit-keyframes large {
     0% {transform: scale(1.1)}
    100% {transform: scale(1.0)}
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@keyframes fadeInUp {
  from {opacity: 0; transform: translate3d(0, 100%, 0);}
  to {opacity: 1;
    transform: none;}
}

@-webkit-keyframes fadeInUp {
  from {opacity: 0; transform: translate3d(0, 100%, 0);}
  to {opacity: 1;
    transform: none;}
}

@keyframes fadeInDown {
  from {opacity: 0; transform: translate3d(0, -10px, 0);}
  to {opacity: 1;
    transform: none;}
}

@-webkit-keyframes fadeInDown {
  from {opacity: 0; transform: translate3d(0, -10px, 0);}
  to {opacity: 1;
    transform: none;}
}

@keyframes filterBlur {
    0% {filter: blur(5px);}
    100% {filter: blur(0px);}
}

@-webkit-keyframes filterBlur {
    0% {filter: blur(5px);}
    100% {filter: blur(0px);}
}


/* 各ページ共通 */

body{
color:#111;
font-size:11pt;
font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
font-weight: 500;
overflow-x: hidden;
background-color: #fff;
}

header a{
color: #fff;
}

header div#h1wrapper{
width: 1000px;
margin: 0 auto;
}

h1{
margin-left: 50px;
position: relative;
z-index: 2;
}

#logo a{ /* h1 */
width:250px;
height:50px;
display:block;
color:#fff;
}

#logo a img{
border:none;
display:block;
width:250px;
height:50px;
}

h2{
margin-top: -43px;
position: relative;
z-index: 1;
}

header div#tcwrapper{
float: right;
margin-top: -50px;
display: table;
background-color: #fff;
width: 100%;
}

header div#tcwrapper p{
display: table-cell;
vertical-align: top;
text-align: right;
}

header div#tcwrapper p#tel{
padding-top: 15px;
padding-right: 20px;
}

header div#tcwrapper p#toContact{
width: 200px;
}

header div#tcwrapper p#toContact a{
padding: 5px 0 10px 0;
line-height: 1.4em;
font-size: 10pt;
text-align: center;
display: block;
color: #fff;
font-weight: bold;
background-color: #fe9e1a;
overflow: hidden;
height: 57px;
position: relative;
z-index: 2;
}

header div#tcwrapper p#toContact a:hover{
background-color: #fe9e1a;
color: #fff;
}

header div#tcwrapper p#toContact a span{
border: 2px solid #fe9e1a;
display: inline-block;
padding: 3px 25px;
-webkit-transition:0.3s;
-moz-transition:0.3s;
 transition:0.3s;
}

header div#tcwrapper p#toContact a:hover span{
border: 2px solid #fff;
}


/* ナビゲーション */
nav{
width: 100%;
background-color: rgba(255,255,255,0.8);
height: 70px;
display: block !important;
} 

nav ul{
width: 1000px;
margin: 0 auto;
height: 70px;
display: table;
}

nav ul li{
list-style-type: none;
display: table-cell;
}

nav ul li a{
display: block;
text-align: center;
font-size: 11pt;
font-weight: bold;
padding-top: 20px;
min-width: 5em;
height: 70px;
color: #333;
}

nav ul li a span{
display: inline-block;
font-size: 8pt;
margin-top: 5px;
color: #666;
font-weight: normal;
min-width: 5em;
}

nav ul li a span:after{
border-bottom: 2px solid #000;
width: 0;
content: "";
display: block;
transition: all 0.3s ease;
padding-top: 18px;
}

nav ul li a.active span:after , nav ul li a:hover span:after{
border-bottom: 2px solid #000;
width: 100%;
}

nav ul li:first-of-type a.active span:after{
border: none !important;
width: 0 !important;
}

@media screen and (max-device-width: 1024px) {
nav ul li a:hover span:after{
border: none !important;
width: 0 !important;
}
}

.fixed{
position: fixed;
top: 0;
left: 0;
background-color: #f6f4ed;
border-bottom: 2px solid #fff;
z-index: 999;
height: 60px;
}

.fixed ul li a {
padding-top: 15px;
}

.fixed ul li a span{
color: #aaa;
}

.fixed ul li a span:after{
padding-top: 13px;
}


/*フッター*/
footer{
background-color: #fff;
width: 100%;
border-top: 2px solid #ddd;
}

footer article{
width: 1000px;
margin: 0 auto;
}

footer article div{
background-image: url(../image/footer_logo.png);
background-repeat: no-repeat;
background-position: 2px 3px;
width: 485px;
max-width: 485px;
display: table-cell;
vertical-align: top;
}

footer article div strong{
font-weight: 500;
font-style: normal;
font-size: 9pt;
margin-left: 55px;
}

 footer p#footer_tel{
 margin-top:50px;
 float: left;
 width: 265px;
 height: 30px;
 }
 
 footer address{
 float: right;
 font-size: 9pt;
 margin-top: 47px;
 margin-right: 20px;
 line-height: 1.4em;
 }
 
footer address , footer small{
	font-style:normal;
}

footer ul#otherLink{
clear: both;
padding-top: 23px;
}

footer ul#otherLink li{
list-style-type: none;
display: inline-block;
}

footer ul#otherLink li a{
display: block;
border: 2px solid #ccc;
margin-right: 7px;
border-radius: 5px;
text-align: center;
text-decoration: none;
padding: 10px 0;
width: 148px;
color: #777;
font-size: 9.5pt;
-webkit-transition:0.3s;
-moz-transition:0.3s;
 transition:0.3s;
}

footer ul#otherLink li a:hover{
background-color: #fe9e1a;
border: 2px solid #fe9e1a;
color: #fff;
}

footer ul#otherLink li:last-child a{
margin-right: 0;
}

footer ul#groupLink{
display: table-cell;
vertical-align: top;
}

footer ul#groupLink li{
list-style-type: none;
display: inline-block;
width: 116px;
margin-right: 7px;
vertical-align: top;
}

footer ul#groupLink li a{
display: block;
width: 116px;
padding-bottom: 115px;
background-position: left bottom;
background-repeat: no-repeat;
background-size: 116px auto;
-webkit-transition:0.5s;
-moz-transition:0.5s;
 transition:0.5s;
}

footer ul#groupLink li a:hover{
background-size: 120px auto;
}

footer ul#groupLink li a:hover p{
color: #fe9e1a;
border-left: 2px solid #fe9e1a;
}

footer ul#groupLink li a#seikei {background-image: url(../image/footer_bana01.jpg);}
footer ul#groupLink li a#day {background-image: url(../image/footer_bana05.jpg);}
footer ul#groupLink li a#naika {background-image: url(../image/footer_bana03.jpg);}
footer ul#groupLink li a#sougou {background-image: url(../image/footer_bana04.jpg);}

footer ul#groupLink li:last-child{
margin-right: 0;
}

footer ul#groupLink li:first-child{
margin-left: 10px;
}

footer ul#groupLink li p{
border-left: #ccc 2px solid;
padding-left: 7px;
font-size: 9pt;
height: 37px;
background-color: #fff;
}

footer ul#groupLink li a#seikei p , footer ul#groupLink li a#naika p{
padding-top: 10px;
}

footer ul#groupLink li a#day p , footer ul#groupLink li a#sougou p{
line-height: 1.2em;
padding-top: 2px;
}

footer ul#sitemap{
width: 1000px;
margin: 0 auto;
padding-top: 50px;
}

footer ul#sitemap li{
list-style-type: none;
display: inline-block;
}

footer ul#sitemap li a{
display: block;
margin-right: 13px;
-webkit-transition:0.3s;
-moz-transition:0.3s;
 transition:0.3s;
 font-size: 9.5pt;
}

footer ul#sitemap li a:hover , footer ul#sitemap li a:hover:before{
color: #fe9e1a;
}

footer ul#sitemap li:last-child a{
margin-right: 0;
}

footer ul#sitemap li a:before{
content: "\25B2";
transform:rotate(90deg);
display:inline-block;
font-size: 6pt;
margin-right: 5px;
position: relative;
top: -2px;
color: #ccc;
}

footer small{
display:block;
width:100%;
padding:15px 0;
font-size:8pt;
text-align: center;
color: #fff;
background-color: #f93;
margin-top: 50px;
}


/* ページトップへ */
#totop{
display:none;
border:0;
position:fixed;
right:10px;
bottom:10px;
width: 44px;
height: 44px;
z-index: 3;
}

#totop:hover{
bottom:13px;
}


/*タブレット用 */
@media screen and (max-width:768px){
nav ul li a span:after{
border-bottom: 0px;
width: 100%;
transition-property: none;
}
nav ul li a:hover span:after{
border-bottom: 0px;
width: 100%;
}
}


