@charset "UTF-8";

/*=======================================================*/
/*      		ヘッダー、ナビのCSS   			  		  */
/*======================================================*/

/* ヘッダー */
#header {
	/*height: 112px;*/	/*テンプレ初期値*/
	background-color: var(--base-color);
}
@media (min-width: 1100px) {
	#header {
		position: relative;
		z-index: 2;		
		/* box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.12); */
	}
}
@media (max-width: 1099px) {
	#header{
		position: fixed;/*fixedを設定して固定*/
		z-index: 100;/*最前面へ*/
		top:0;/*位置指定*/
		left:0;/*位置指定*/		
		background-color:#FFFFFFd4;
		/* padding-top: 5px;
		padding-bottom: 5px; */
		width: 100%;
		height: var(--header-margin);
	}
}

/* ヘッダー */
.header-details{
	font-size: 13px;
	line-height: 1.5;
	color:#FFF;
}
.header-details2 {
    font-size: 13px;
    line-height: 1.5;
    color: #FFF;/*var(--accent-color2);*/
    background-color:#769164;
    text-align: center;
	border-radius: 10px;
	padding: 0.1em;
	margin-left: 25px;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
}
@media (max-width: 1099px) {
	.header-container {
		/* margin-top: 10px; */
		height: 100%;
		/*margin-bottom: 10px;*/ /*logoロゴ下の余白*/
	}
}

/* ナビゲーションボタン */
#navbtn {
	position: relative;
	z-index: 110;
	display: flex;
	align-items: center;
	line-height: 0;                /* ← Safariでのズレ防止 */
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	color: var(--accent-color2);   /* ← 通常時のアイコン色 */
}

/* アイコン共通 */
#navbtn svg {
	display: block;
	width: 30px;
	height: 30px;
	fill: currentColor;            /* ← 念のため明示 */
}

/* 通常時はbarsを表示 */
#navbtn .icon-bars { display: block; }
#navbtn .icon-xmark { display: none; }

/* open時に切り替え＋色反転 */
.open #navbtn { color: #fff; }
.open #navbtn .icon-bars { display: none; }
.open #navbtn .icon-xmark { display: block; }

/* タブレット以上では非表示 */
@media (min-width: 1100px) {
	#navbtn { display: none; }
}

/* スクリーンリーダー用 */
.sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}


/*ロゴ*/
img.logo{
	width: 400px;
}
@media (max-width: 680px) {
	img.logo{
		width: 280px;
	}
}
@media (max-width: 372px) {
	img.logo{
		width: 200px;
	}
}

/* 会社住所・TEL */
.company{
	text-align: right;
}
.tel_ico{
	display: inline-block;
	width: 25px; /* アイコンサイズ */
	height: 30px;
	vertical-align: sub;
	margin: 0 5px;
}
.tel{
	color: var(--accent-color1);
	font-size: 33px;
	font-weight: 400;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media (max-width: 1099px) {
	.company {
		display: none;
	}
}