@charset "UTF-8";
/* CSS Document */


/******************************************************

PC設定 1200px以上の場合に適用 

*******************************************************/

/* mvLower */
.mvLower {
	background: linear-gradient(rgba(162,31,45,.7), rgba(162,31,45,.7)),url("/img/contact/bg_mv.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.mvLower__h1 {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}



/* main */
.main {
	padding-top: 100px;
}

.main__txt {
	font-size: 24px;
	font-weight: 600;
	max-width: 1000px;
	margin: 0 auto 100px auto;
}

.main__box {
	display: flex;
	justify-content: space-between;
}

.main__item {
	width: 33%;
	position: relative;
	overflow: hidden;
}

.main__item-img {
	display: block;
	width: 100%;
	height: auto;
	transition: .2s;
}

.main__item:hover .main__item-img {
	transform: scale(1.03);
}

.main__item-content {
	position: absolute;
	bottom: 0;
	background: linear-gradient(rgba(162,31,45,.7), rgba(162,31,45,.7));
	width: 100%;
	height: 70px;
	padding: 10px 15px;
}

.main__item-h2 {
	font-size: 18px;
	font-weight: 600;
	color: #FFF;
}

.main__item-txt {
	color: #FFF;
	font-size: 13px;
}

.main__item-content::after {
	display: inline-block;
	content: "";
	width: 13px;
	height: 12px;
	background-image: url("/img/contact/icon_arrow.png");
	background-size: cover;
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
}



/******************************************************

タブレットの設定 960px~1199pxの場合に適用 

*******************************************************/

@media screen and (max-width: 1199px){

/* main */
.main__item-content {
	height: 60px;
	padding: 10px 15px;
}
	
.main__item-h2 {
	font-size: 14px;
	font-weight: 600;
	color: #FFF;
}
	
.main__item-txt {
	font-size: 12px;
}
	
	
}



/******************************************************

タブレットの設定 768px~959pxの場合に適用 

*******************************************************/

@media screen and (max-width: 959px){

/* main */
.main__txt {
	font-size: 24px;
	font-weight: 600;
	max-width: 1000px;
	margin: 0 auto 100px auto;
}

.main__box {
	flex-wrap: wrap;
	justify-content: center;
}

.main__item {
	width: 48%;
	margin-bottom: 30px;
}
	
.main__item:first-child {
	margin-right: 4%;
}

.main__item-content {
	height: 70px;
	padding: 10px 15px;
}

.main__item-h2 {
	font-size: 16px;
	font-weight: 600;
	color: #FFF;
}
	
	

}



/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

@media screen and (max-width: 767px){

/* mvLower */
.mvLower__h1 {
	font-size: 20px;
}



/* main */
.main {
	padding-top: 40px;
}

.main__txt {
	font-size: 14px;
	margin: 0 auto 40px auto;
}

.main__box {
	display: block;
}

.main__item {
	width: 100%;
	display: block;
	margin-bottom: 15px;
}

.main__item-content {
	height: 65px;
	padding: 10px 15px;
}

.main__item-h2 {
	font-size: 15px;
}

.main__item-txt {
	font-size: 12px;
}

.main__item-content::after {
	width: 10px;
	height: 9px;
}
	
	
	
}