@charset "utf-8";

/*------------------------------
	神社紹介
------------------------------*/

.btn_brown{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.3em .5em;
	background-color: #CD5257;
	letter-spacing: .2em;
	text-indent: -.2em;
	color: white;
	font-weight: bold;
	font-size: 20px;
}

.icon_arrow{
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0;
	text-indent: -9999px;
}

.icon_arrow:before {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 60px 60px;
	border-color: transparent transparent #DF9295 transparent;
}

.icon_arrow:after {
	content: "";
	position: absolute;
	z-index: 2;
	bottom: 14px;
	right: 12px;
	display: block;
	width: 12px;
	height: 12px;
	background-image: url(../images/icon_arrow.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.wrap_kotonoura{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.wrap_kotonoura .text{
	width: 80%;
	max-width: 247px;
	margin-right: 2em;
}

/*-------------------------------------
 ▼中型画面向けデザイン（タブレットなど）
 --------------------------------------*/
@media screen and (min-width: 768px) {
	
	.btn_brown{
		font-size: 26px;
		transition: all 0.3s ease;
	}
	.btn_brown:hover{
		opacity: .8;
	}
	
	.about_cnt{
		position: relative;
		margin-bottom: -200px;
	}
	
	.wrap_kotonoura .text{
		margin-left: 2em;
	}
	
	.box_kachiuma{
		height: 590px;
	}
	
	.box_love{
		order: 8;
		top: -515px;
	}
	.box_glass{
		order: 7;
		height: 450px;
	}

	.box_ninomiya {
		order: 9;
		top: -170px;
	}

	.box_usagi {
		order: 10;
		top: -515px;
	}
	.about_cnt .box_btn_brown{
		position: absolute;
		z-index: 1;
		bottom: 246px;
		right: 0;
	}
	
}

@media all and (-ms-high-contrast: none) {
	/* IE10以上のみ適応 */
	
	
}

