<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
html,
body{
	height: 100%;
}
body{
	font-family: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro," メイリオ", Meiryo, Osaka," ＭＳ Ｐゴシック", MS PGothic," sans-serif";
	font-size: 12px;
	box-sizing: border-box;
	line-height: 1.5em;
}
@media all and (-ms-high-contrast:none){
  body {
   font-size: 12px;
  }
}
body,p,span,dl,dt,dd,ul,li,ol,h1,h2,h3,h4,h5,img{
	margin: 0;
	padding: 0;
}
li{
	list-style: none;
}
a,a:hover{
	text-decoration: none;
}
header, section, article, footer, nav {
	display: block;
}
.navbar-inverse {
    background-color: #FFF;
    border-color: #FFF;
}
.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #000;
}
.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
	background: #000;
	margin-bottom: 15px;
}
.navbar-inverse .navbar-toggle.collapsed:focus .icon-bar,
.navbar-inverse .navbar-toggle:focus .icon-bar{
    background-color: #FFF;
}


.top_staff_text{
	position: absolute;
  top: 20px;
  right: 25px;
	color: #FFF;
  line-height: 2.5em;
}
.top_staff_text a{
	color: #FFF;
}
.top_staff_text a:hover{
	text-decoration: underline;
}


.top_inner{
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/*margin: auto;*/
	/*width:750px;
	height:750px;*/
	vertical-align: middle;
	display: table-cell;
	z-index: 100;
	position: relative;
}
#top_visual{
	background:url(../image/top_main.png) no-repeat;
	-moz-background-size:cover;
	background-position: center top;
	background-size:cover;
	/* background-color: #000; */
	position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
	display: table;
}
#top_visual .overlay,
#top_visual .overlay02,
#top_visual .sepia{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: ' ';
	z-index: 1;
}
#top_visual .overlay{
	background:rgba(0,0,0,0.8);
}
#top_visual .overlay02{
	background:rgba(0,0,0,0.5);
}
#top_visual .sepia{
	background:rgba(0,0,0,0.2);
}

#top_visual.zoombg{
	background:none;
}

.top_inner h1,h1.logo_b{
	padding-top: 50px;
	padding-bottom: 50px;
	text-align: center;
	max-width: 300px;
	margin: 0 auto;
}
.top_inner h1 img,.logo_b img{
	width: 100%;
}
/*header h1{
}
header h1 img{
	max-width: 300px;
}*/

.bg-slider {
	position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-position:center center;
  background-size: cover;
  display: flex;
	z-index: -1;
  align-items: center;
  justify-content: center;
}
.bg-slider-title{
  text-align:center;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
}


/*zoom*/
.zoom_bgimg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 0;
  overflow: hidden;
  /* background-image: url(../image/slide01.jpg); */
	background-size: cover;
  background-position: 50% 50%;
  background-repeat: none;
}
.zoom_bgimg:after{/*下部にうっすらグラデーションで影を作る*/
  content:"";
  width:100%;
  height:40%;
  position:absolute;
  bottom:0;
  left:0;
  z-index:1;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(27,32,48,1) 100%);
}
.zoom_bgimg li {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: none;
  opacity: 0;
  -webkit-animation: anime 5s linear 0s infinite ;
  animation: anime 5s linear 0s infinite ;
}
.zoom_bgimg li:nth-child(1) {
  background-image: url(../image/slide01.jpg);
	-webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.zoom_bgimg li:nth-child(2) {
  background-image: url(../image/slide02.jpg);
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}
.zoom_bgimg li:nth-child(3) {
  background-image: url(../image/slide03.jpg);
  -webkit-animation-delay: 15s;
  animation-delay: 15s;
}
.zoom_bgimg li:nth-child(4) {
  background-image: url(../image/slide04.jpg);
  -webkit-animation-delay: 20s;
  animation-delay: 20s;
}
.zoom_bgimg li:nth-child(5) {
  background-image: url(../image/slide01.jpg);/* 最初と最後は同じ画像を入力して下さい */
  -webkit-animation-delay: 22s;
  animation-delay: 22s;
}
@-webkit-keyframes anime {
    0% {
        -webkit-animation-timing-function: ease-in;
        opacity: 0;
    }
    10% {
        /* -webkit-transform: scale(1.1); */
        opacity: 1;
    }
    50% {
        /* -webkit-transform: scale(1.3); */
        /* -webkit-animation-timing-function: ease-out; */
        opacity: 1;
    }
    70% {
        /* -webkit-transform: scale(1.4); */
        opacity: 0;
    }
    100% { opacity: 0 }
}
@keyframes anime {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
    }
    10% {
        /* transform: scale(1.1); */
        opacity: 1;
    }
    50% {
        /* transform: scale(1.3); */
        animation-timing-function: ease-out;
        opacity: 1;
    }
    70% {
        /* transform: scale(1.4); */
        opacity: 0;
    }
    100% { opacity: 0 }
}


nav#top_nav ul{
	font-family: "ＭＳ Ｐ明朝", MS PMincho,"ヒラギノ明朝 Pro W3", Hiragino Mincho Pro, serif;
	margin: 0 auto;
	text-align: center;
	padding: 30px 0 80px;
	z-index: 1000;
}
nav#top_nav ul li{
	line-height: 2.5em;
}
nav#top_nav ul li a,.top_bnn a{
	color: #FFF;
	text-decoration: none;
}
nav#top_nav ul li a span{
	padding: 2px;
}
nav#top_nav ul li a:hover,ul.main_nav li a:hover,.case_tit_text a:hover,
section#blog a:hover,
.top_bnn a:hover{
	background: #14a83b;
	display: inline;
}
ul.main_nav li a,.case_tit_text a,section#blog a{
	text-decoration: none;
	color:#333;
}
ul.main_nav li a:hover,.case_tit_text a:hover,section#blog a:hover,.top_bnn a:hover{
	color: #FFF;
}
footer{
	text-align: center;
	padding-bottom: 20px;
	font-family: "ＭＳ Ｐ明朝", MS PMincho,"ヒラギノ明朝 Pro W3", Hiragino Mincho Pro, serif;
}
footer address{
	margin-bottom:30px;
}
small.top_ad{
	color:#FFF;
}
address span.address,address span.tel,address span.fax{
	padding-left: 15px;
}

/*gridのgutter調整*/
.row-0{
    margin-left:0px;
    margin-right:0px;
}
.row-0 &gt; div{
	padding-right:0px;
	padding-left:0px;
}

.row-10{
	margin-left:-5px;
	margin-right:-5px;
}
.row-10 &gt; div{
	padding-right:5px;
	padding-left:5px;
}
.row-20{
	margin-left:-10px;
	margin-right:-10px;
}
.row-2 &gt; div{
	padding-right:10px;
	padding-left:10px;
}
.row-30{
	margin-left:-15px;
	margin-right:-15px;
}
.row-30 &gt; div{
	padding-right:15px;
	padding-left:15px;
}
.row-40{
	margin-left:-20px;
	margin-right:-20px;
}
.row-40 &gt; div{
	padding-right:20px;
	padding-left:20px;
}
.top_bnn{
	text-align: center;
	margin: 0 auto;
	max-width: 300px;
	margin-bottom: 50px;
}
.top_bnn img{
	width: 100%;
}
.top_bnn p{
	color: #FFF;
	margin-top: 5px;
}
@media print, screen and (min-width:768px) {
	.sp{display: none;}
	.top_staff_text{
		position: absolute;
		top: 40px;
		right: 45px;
		color: #FFF;
	}
}
@media print, screen and (max-width: 767px) {
	footer{
/*		padding-bottom: 500px;
*/	}
	address span.address{
		display: block;
	}
	.pc{display:none!important;}
	.sp{display:block!important;}
	.navbar{margin-bottom: 0;}

	.top_inner h1, h1.logo_b{
		padding-top: 0;
	}
	.top_inner h1 img, .logo_b img{
		width: 80%;
	}
	.top_inner h1 img{
		padding-top: 50px;
	}
}
address span.address,address span.tel{
	padding-left: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 991px) {

}
@media print, screen and (min-width: 992px) and (max-width: 1119px) {

}
@media print, screen and (min-width:1200px) {

}
@media print, screen and (max-width:767px) {
	.pc{display: none;}
}
img {
	image-rendering: -webkit-optimize-contrast;
}
/* 230407 */
/* 点滅 */
.new-blink {
	animation: tikatika 1s step-end infinite;
	color: red;
	font-weight: bold;
	padding-left: 3px;
}
 
@keyframes tikatika {
	0% { opacity: 1; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
/* //230407 */</pre></body></html>