@charset "utf-8";
/*------------------------------*/

/* メインヘッダー枠 */
.header_frame {
	height: 100vh;
	background-image: url('../image/garrison_header_image.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*------------------------------*/
/* サブタイトル背景ライン */
.sub_title_background {
	position:absolute;
	left:20%;
	width:0%;
	height:15px;
	bottom:0px;
	background: -webkit-repeating-linear-gradient(90deg,#ffbe8c 0,#ffbe8c 3px,rgba(255,255,255,0) 3px,rgba(255,255,255,0) 10px);
	background: -o-repeating-linear-gradient(90deg,#ffffff 0,#ffffff 3px,rgba(255,255,255,0) 3px,rgba(255,255,255,0) 10px);
	background: repeating-linear-gradient(90deg,#ffbe8c 0,#ffbe8c 3px,rgba(255,255,255,0) 3px,rgba(255,255,255,0) 10px);
	transform: skewX(-45deg);
}

/* サブタイトル枠 */
.sub_title_flame {
	position:relative;
	text-align:center;

}
.sub_title_inner {
	text-align:center;
	z-index: -1;
}

/* 斜線背景タイトル */
.sub_title_box_top {
	position: absolute;
	bottom:0px;
	z-index: 1;
	width:100%;
	height:0px;
	overflow:hidden;
}

/*------------------------------*/
/* 丸メニューボタン */
.garrison_menu_button {
	display:block;
	margin-left: auto;
	margin-right: auto;
	font-size: clamp(14px, 2vw, 22px);
	background-color: #287373;
	text-align: center;
	color:#ffffff;
	border-radius: 100px;
	width: 100%;
	max-width: 150px;
	aspect-ratio: 1 / 1; /* 縦横比 */
	transition: 0.3s;
	position: relative;
}
.garrison_menu_button:hover {
	background-color: #073a23;
}

/*------------------------------*/
/* ボタン */
.btn_unit {
	display: block;
	border:1px solid #287373;
	color: #287373;
	padding:10px 5px;
	text-align: center;
	transition: 0.3s;
}
.btn_unit:hover {
	background-color: #287373;
	color: #ffffff;
}

/*------------------------------*/
/* 固定背景 */
.garrison_bg_frame_bg {
	background-image: url('../image/garrison_bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*------------------------------*/
/* グリーン透過背景 */
.background_color_rgb {
	background-color: rgba(40, 115, 115, 0.7);
	padding-top: 50px;
	padding-bottom: 50px;
}

/* フォントカラー */
.color_66c7c2 {
	color:#66c7c2;
}

.col{
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}

.sns_icon{
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
}

.sns_area{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px; 
}