@charset "utf-8";

/* 【PAD】ウィンドウ幅が480以上　768px以下の場合に適用するCSS */
@media screen and (min-width: 480px) and (max-width: 768px){

}


/* 【SP】ウィンドウ幅が768px以下の場合に適用するCSS */
@media screen and (max-width: 768px) {


/* 猫　アニメ
=======================================================================*/
.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: 100%;
    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:after {
    content: "";
    display: inline-block;
    top: 50%;
    left: 13px;
    position: absolute;
    transform: translateY(-50%);
}

.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: 8px;
    height: 8px;
    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: 13vw;
    line-height: 1.1;
}

p {
	line-height:1.8;
}

.inner_box {
}


/* 黒フィルター追加
=======================================================================*/
.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: 0 0 90px 0;
}

#inquiry .pagetitle {
	background: #117C3F;
    text-align: center;
    color: #fff;
    padding: 15px 0 30px;
    margin: 0 0 20px 0;
}
#inquiry .pagetitle img {
	width:180px;
}
#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;
}

#inquiry .confirm .Inputright {
	border-bottom: 1px solid #ccc;
}



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



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




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



}
@media screen and (max-width: 960px) {
    .inner {
        padding: 0 5%;
        margin: 30px auto 130px;
    }

}

/* 【SP】ウィンドウ幅が768px以下の場合に適用するCSS */

/* 【SP】ウィンドウ幅が768px以下の場合に適用するCSS */
@media screen and (max-width: 768px) {

/* common
======================================*/
body {
	font-family: 'Noto Serif JP', serif;
}
.pc {display:none !important;}
/*img{width:100%;}*/
a:link {text-decoration: none;}
a:visited {text-decoration: none;}
a:active {text-decoration: none;}
/*a:current {color: #333;text-decoration: none;}*/

}
/* 【SP】ウィンドウ幅が768px以下の場合に適用するCSS */