@charset "utf-8";

/* IE */
@media all and (-ms-high-contrast:none) {




}
/* IE */





/* ==============================================================================================================================
印刷設定
=====================================================================================================================================*/
@media print {

}
	
	
	
	
/* ==============================================================================================================================
アニメ
=====================================================================================================================================*/
@keyframes neko {
  0% {
	  transform: rotate(-2deg);
  }
  10% {
	  transform: rotate(2deg);
  }
  20% {
	  transform: rotate(0deg);
  }
}





/* ==============================================================================================================================
PCウィンドウ幅が769px以上の場合に適用するCSS
=====================================================================================================================================*/
@media print, screen and ( min-width:769px ) {
	
	
/* 猫　アニメ
=======================================================================*/
.newoffice_area .btn_neko img {
	animation-name: neko;
	animation-duration: 1s;
	animation-timing-function: ease;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}



/* 共通　ボタン
=======================================================================*/
.btn_01 a {
	position: relative;
    display: inline-block;
    padding: 25px 0;
    width: 50%;
    color: #fff;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    z-index: 1;
    background: #117C3F;
	
	transition: width 2s ease;
}
.btn_01 a:before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	background: #18924C;
	transform-origin: bottom 0;
	transform: scale(1, 0);
	transition: transform 0.3s;
}
.btn_01 a:hover:before {
	transform-origin: bottom 0;
	transform: scale(1, 1);
}
.btn_01 a:hover {
    width: 60%;
}

.btn_01 a:after {
    content: "";
    display: inline-block;
    top: 50%;
    left: 13px;
    position: absolute;
    transform: translateY(-50%);
}
.btn_01 a:hover:after {
    border-left: 7px solid #fff;
}

.btn_01 a .arrow:after {
    content: "";
    margin: 0 10px 0 8px;
    width: 11px;
    height: 11px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg) translate(0, -50%);
    display: inline-block;
    position: absolute;
    right: 25px;
    top: 50%;
}
.btn_01 a .arrow_mini:after {
    content: "";
    margin: 0 10px 0 8px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg) translate(0, -50%);
    display: inline-block;
    position: absolute;
    right: 8px;
    top: 50%;
}


/* 共通　タイトル
=======================================================================*/
.title_main {
	font-size: 70px;
    line-height: 1.1;
}

.inner_box {
	width: 80%;
    min-width: 1000px;
    max-width: 1200px;
    margin: 0 auto;
}


/* 黒フィルター追加
=======================================================================*/
.bg_black:before {
	content: "";
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    z-index: 2;
	transition: all 3000ms cubic-bezier(0.215,0.610,0.355,1.000);
}
.bg_black:hover:before {
	content: "";
    background: rgba(0,0,0,0.2);
}
.bg_black2:before {
	content: "";
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    z-index: 2;
	transition: all 3000ms cubic-bezier(0.215,0.610,0.355,1.000);
}


/* 共通　画像拡大
=======================================================================*/
.img_zoom {
	overflow:hidden;
}
.img_zoom img {
	transition: all 3000ms cubic-bezier(0.215,0.610,0.355,1.000);
	z-index:1;
}
a:hover .img_zoom img {
	-moz-transform: scale(1.05) rotate(0.001deg);
    -webkit-transform: scale(1.05) rotate(0.001deg);
    -ms-transform: scale(1.05) rotate(0.001deg);
    transform: scale(1.05) rotate(0.1deg);
}


/* 
=======================================================================*/



/* 下層ページ
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */

/* お問い合わせ
=======================================================================*/
#inquiry {
    /*
	background: #F4F4F4;
    */
}
#inquiry .main {
	margin: 150px 0 90px 0;
}

#inquiry .pagetitle {
	background: #117C3F;
    text-align: center;
    color: #fff;
    padding: 15px 0 30px;
    margin: 0 0 50px 0;
}
#inquiry .pagetitle img {
	width:300px;
}
#inquiry .pagetitle .title {
	font-size: 25px;
    font-weight: bold;
    padding: 20px 0 0 0;
}

#inquiry .path {
	font-size: 12px;
	padding: 0 0 15px 0;
}
#inquiry .path li {
	display:inline-block;
    margin: 0 5px;
}
#inquiry .path a {
	color:#fff;
}
#inquiry .path a:after {
	content: ">";
	color:#fff;
    margin: 0 0 0 10px;
}






/* ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲
下層ページ */



/* 全ページ共通
▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽ */




/* △△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△△
全ページ共通 */


}
/* ==============================================================================================================================
PCウィンドウ幅が769px以上の場合に適用するCSS
=====================================================================================================================================*/
@media print, screen and ( min-width:769px ) {

/* common
=======================================================================*/
.inner {
	width:auto;
	max-width:1200px;
	margin: 120px auto 200px;
}
a {/* transition: all 0.3s linear; */}
/* .hv:hover{
	transition: all 0.2s linear;
	filter:alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
}
.sp {display:none !important;}
.center {text-align:center;}
a:link {text-decoration: underline;}
a:visited {text-decoration: none;color: #fff;}
a:active {text-decoration: none;} */


p {
	/* line-height:1.8; */
}



}
/* 【PC】ウィンドウ幅が769px以上の場合に適用するCSS */