@charset "UTF-8";

/*=======================================================*/
/*      		ヘッダー、ナビのCSS   			  		  */
/*======================================================*/

/* ヘッダー */
#header {
	/*height: 112px;*/	/*テンプレ初期値*/
	background-color: var(--base-color);
	padding-bottom: 20px;/*今回*/
/*
	background-image: url(../img/bg_header.png);
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
*/
background-color: #ffffff;
opacity: 1;
background: radial-gradient(circle, transparent 20%, #ffffff 20%, #ffffff 80%, transparent 80%, transparent), radial-gradient(circle, transparent 20%, #ffffff 20%, #ffffff 80%, transparent 80%, transparent) 10px 10px, linear-gradient(#ffecd8 0.8px, transparent 0.8px) 0 -0.4px, linear-gradient(90deg, #ffecd8 0.8px, #ffffff 0.8px) -0.4px 0;
background-size: 20px 20px, 20px 20px, 10px 10px, 10px 10px;

}
@media (min-width: 569px) {
	#header {
		position: relative;
		z-index: 2;		
		box-shadow: 0px 3px 3px 0px rgba(189, 189, 189, 0.2);
		/*padding-bottom: 10px;*/
	}
}
@media (max-width: 568px) {
	#header{
		position: fixed;/*fixedを設定して固定*/
		z-index: 100;/*最前面へ*/
		top:0;/*位置指定*/
		left:0;/*位置指定*/
		background-color: #ffffffeb;
		padding-top: 5px;
		padding-bottom: 5px;
		/*padding-left: 10px;*/
		width: 100%;
	}
}

/* ヘッダー */
.header-details{
	font-size: clamp(12px, 1.2vw, 14px);/*通常13px*/
	line-height: 1.5;
	color: var(--txt-color);
	/*font-family: sans-serif;*/
	font-family: "Sawarabi Gothic", sans-serif;
}
.header-container {
	display: flex;
	/*justify-content: space-between;*/
	justify-content: center;/*今回*/
	align-items: center;
	height: 120px;/*通常100px*/
	gap: 20px;/*今回*/
}
@media (max-width: 768px) {
	.header-container {
		height: 100px;
	}
}
@media (max-width: 568px) {
	.header-container {
		/* margin-top: 10px; */
		justify-content: space-between;/*今回*/
		height: 100%;
		/*margin-bottom: 10px;*/ /*logoロゴ下の余白*/
	}
}
/*印刷用*//*今回(max-width: 768px)設定したので*/
@media print{
	.header-container {
		display: flex;
		/*justify-content: space-between;*/
		justify-content: center;/*今回*/
		align-items: center;
		height: 120px;/*通常100px*/
		gap: 20px;/*今回*/
	}
}
/* ナビゲーションボタン */
#navbtn {
	padding-right: 10px;
	outline: none;
	border: none;
	background: transparent;
	cursor: pointer;
	color: var(--main-color);
	font-size: 30px;
}

.open #navbtn {
	z-index: 110;
	color: #ffffff;
}

#navbtn .fa-bars {
	display: revert;
}
.open #navbtn .fa-bars {
	display: none;
}

#navbtn .fa-times {
	display: none;
}
.open #navbtn .fa-times {
	display: revert;
}

@media (min-width: 569px) {
	#navbtn {
		display: none;
	}
}

/*メニュー副題*/
/*
nav.nav ul li::before {
	content: attr(data-en);
	display: block;
	color: var(--main-color);
	font-size: clamp(10px, 1.2vw, 13px);
	text-align: center;
	font-weight: 600;
	letter-spacing: 0.2em;
	font-family: "Sawarabi Gothic", sans-serif;
	height: 15px;*/ /* 固定の高さを指定 */
	/*line-height: 10px;*/ /* 中央揃え *//*
}
@media only screen and (max-width: 568px){
	nav.nav ul li::before {
		color: var(--accent-color1);
	}
}
*/
/*ロゴ*/
img.logo{
	width: 300px;
}
@media (max-width: 680px) {
	img.logo{
		width: 230px;
	}
}
@media (max-width: 372px) {
	img.logo{
		width: 200px;
	}
}

/* 会社住所・TEL */
.company{
	/*text-align: right;*/
	text-align: left;/*今回*/
}
.tel_ico{
	color: var(--main-color);
	font-size: clamp(32px, 3vw, 34px);
	padding-right: 5px;
	font-weight: 400;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.tel{
	color: var(--main-color);
	font-size: clamp(31px, 3vw, 33px);/*通常33px*/
	font-weight: 400;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media (max-width: 569px) {
	.company {
		display: none;
	}
}
/*ナビゲーション：PC SP*/
.nav {
	font-family: 'Kiwi Maru', "Sawarabi Gothic", sans-serif;
}

/* ナビゲーションメニュー：モバイル */
@media (max-width: 568px) {
	.nav {
		position: fixed;
		inset: 0 -100% 0 100%;
		z-index: 100;
		background-color: #0f0f0fe3;
		transition: transform 0.3s;
	}

	.open .nav {
		transform: translate(-100%, 0);
	}

	.open body {
		position: fixed;
		overflow: hidden;
	}

	.nav ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100%;
		gap: 40px;
		color: #ffffff;
		text-align: center;
	}
}

/* ナビゲーションメニュー：PC */
@media (min-width: 569px) {
	.nav {
		position: relative;
		z-index: 1;
	}
	.nav ul {
		display: flex;
		/*gap: 5%;*//*6-7基準*/
		justify-content: center;
		align-items: center;
		list-style: none;
		z-index: 10;
		height: 60px;/*通常50-60*/
		text-align: center;
		margin-top: 10px;
background-color: #f0f4cf82;
/*background-color: #ffffff82;*/
border-radius: 7px;/*50*/
padding: 0 15px;
	}
	.nav ul li{
		font-size: clamp(11px, 1.6vw, 19px);
		line-height: 1.5;
		/* background-color: #f8f6f5a1; */
		flex-grow: 1;
		text-align: center;
	}
/*
	.nav li + li {
		border-left: 1px solid #ddd;
	}
*/
	.nav ul li a {
		padding-right: 5px;
		padding-left: 5px;
		padding-top: 25px;/*マウスオーバーのアイコン表示区域*/
	}
/*
	.nav ul li a:hover{
		border-bottom: 5px solid var(--main-color);
		background: linear-gradient(transparent 50%, #f5f5f5c7 50%);
		padding-bottom: 2px;
	}
	.nav li.current a{
		border-bottom: 1px solid #b9b9b9;
		padding-bottom: 2px;
	}
*/
/*今回*/
	.nav ul li a:hover{
		color: #000;
		padding-bottom: 2px;
		border-bottom: 5px double #F28C2861;
		background: url(../img/n-icon.png);
		background-repeat: no-repeat;
		background-size: clamp(25px, 2vw, 30px);
		background-position: 50% top;/*マウスオーバーのアイコン表示区域における、横50％の最上（top）に表示する*/
	}
	.nav li.current a{
		padding-bottom: 2px;
		border-bottom: 5px double #F28C2861;
		background: url(../img/n-icon.png);
		background-repeat: no-repeat;
		background-size: clamp(25px, 2vw, 30px);
		background-position: 50% top;/*マウスオーバーのアイコン表示区域における、横50％の最上（top）に表示する*/
	}
}
