@charset "utf-8";

/* ------------------------------ */
/* サブページ用のメインヘッダー枠 */
.background_frame {
	height:100vh;
	width: auto;
}

.background_frame_bg {
	background-image: url('../image/info_main_header.webp');
}

/* ------------------------------ */
/* 高さ指定 */
.height_50 {
	height:50px;
	width: auto;
}
.height_400 {
	height:400px;
	width: auto;
}

/* ------------------------------ */
/* 迷彩背景 */
.camouflage_bg {
	width:100%;
	height: auto;
	background-image: url('../image/camouflage_bg.webp');
}

/* 多重スクロール背景 */
.self_defense_force_soldiers_bg {
	background-image: url('../image/self_defense_force_soldiers.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

/* セクションタイトル枠 */
.section_title_bg {
	width:600px;
	height: 80px;
	text-align: center;
	background-image: url('../image/section_title_bg.webp');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	color:#ffffff;
	padding-top: 15px;
	font-size: 22px;
}

/* ------------------------------ */
/* モノトーン背景枠 */
.info_bg_01 {
	height:100%;
	width:100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: #ffffff;
	padding:50px 10px;
	background-image: url('../image/info_bg_01.webp');
}

/* 未対応の Safari 対策 */
@supports (-webkit-touch-callout: none) {
	.info_bg_01 {
		background-attachment: scroll;
	}
}

