@charset "UTF-8";

/*=======================================================*/
/*      		ヘッダー、ナビのCSS   			  		  */
/*======================================================*/

/* ヘッダー */
.header {
	/*height: 112px;*/	/*テンプレ初期値*/
	background-color: var(--base-color);
	padding-bottom: 5px;
}

/* ヘッダー */
.header-details{
	font-size: 13px;
	line-height: 1.5;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
}
@media only screen and (max-width: 568px) {
	.header-container {
		margin-top: 20px;
		height: 100%;
	}
}
/*========= スマホヘッダー上部固定させるためのCSS ===============*/
@media only screen and (max-width: 568px) {
    #site-inner{
        width:100%;/*横幅指定*/
        /*以下はレイアウトのためのCSS*/
        display: flex;
        justify-content: space-between;
        align-items: center;
        background:#ffffffe3;
        text-align: center;
    }

    /*JSを使いfixedクラスが付与された際の設定*/
    #site-inner.fixed{
        position: fixed;/*fixedを設定して固定*/
        z-index: 100;/*最前面へ*/
        top:0;/*位置指定*/
        left:0;/*位置指定*/
        padding-left: 10px;
padding-bottom: 5px;
padding-top: 5px;
    }
    #navbtn-inner{
        /*以下はレイアウトのためのCSS*/
        display: flex;
    }
    /*JSを使いfixedクラスが付与された際の設定*/
    #navbtn-inner.fixed{
        position: fixed;/*fixedを設定して固定*/
        z-index: 110;/*最前面へ*/
        top:10px;/*位置指定*/
        right:15px;/*位置指定*/
    }
}
body.fixed {
    width: 100%;
    height: 100%;
    position: fixed;
}
/*========= スマホヘッダー上部固定させるためのCSS ここまで ===============*/

/* ナビゲーションボタン */
#navbtn {
	padding: 0;
	outline: none;
	border: none;
	background: transparent;
	cursor: pointer;
	color: var(--accent-color1);
	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 print, screen and (min-width: 569px) {
	#navbtn {
		display: none;
	}
}

/*メニュー副題*/
nav.nav ul li::before {
	content: attr(data-en);
	display: block;
	color: var(--main-color);
	font-size: 10px;
	text-align: center;
	font-weight: normal;
	/*letter-spacing: 0.2em;*/	/*今回は英文が長いので変更*/
	letter-spacing: 0.1em;
	font-family: "Sawarabi Gothic", "M PLUS 1p", sans-serif;
}

/*ロゴ*/
img.logo{
	width: 250px;
}
@media only screen and (max-width: 680px) {
	img.logo{
		width: 230px;
	}
}
@media only screen and (max-width: 372px) {
	img.logo{
		width: 230px;
	}
}

/* 会社住所・TEL */
.company{
	text-align: right;
}
.tel_ico{
	color: var(--main-color);
	font-size: 25px;
	padding-right: 5px;
	font-weight: bold;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.tel{
	color: var(--main-color);
	font-size: 33px;
	font-weight: 400;
	/*font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
	font-family: Century Gothic, Arial, "Sawarabi Gothic", "M PLUS 1p", sans-serif;
}

@media only screen and (max-width: 569px) {
	.company {
		display: none;
	}
}

/* ナビゲーションメニュー：モバイル */
@media only screen and (max-width: 568px) {
	.nav {
		position: fixed;
		inset: 0 -100% 0 100%;
		z-index: 100;
		background-color: #373737e2;
		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;
	}
	nav.nav ul li::before {
		color: var(--main-color);/*今回のみスマホ副題色変更*/
	}
}

/* ナビゲーションメニュー：PC */
@media print, screen and (min-width: 569px) {
	.nav ul {
		display: flex;
		gap: 6%;
		color: #454545;
		justify-content: center;
		align-items: center;
		list-style: none;
		height: 50px;
		background-color: var(--base-color);
		z-index: 10;
		padding-bottom: 5px;
		position: relative;
		box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.3);
		text-align: center;
	}
	.nav a:hover{
		color: #707070;
		border-bottom: 1px solid var(--main-color);
	}
	.nav ul li{
		font-weight: 400;
	}
	.nav li.current,nav li.current a:hover{
		border-bottom: 1px solid var(--main-color);
	}
}
/*header で使用*/
.flex05{
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	align-items: center;
}
.flex-childhead{
	display: flex;
	align-items: center;
}
.flex-childhead2{
	margin-left: 20px;
}
/*header SNS*/
.head-sns {
 	display: inline-block;
}
.head-sns a {
	font-size: 20px;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	aspect-ratio: 1 / 1;
	background-color: #fb0074;
	color: #ffffff;
	clip-path: circle(50%);
	margin-right: 5px;
	margin-top: 3px;
	margin-bottom: 3px;
}
.hsnsword{
	color: #fb0074;
	font-size: 12px;
}












