@charset "utf-8";
/* CSS Document */

/* 汎用 */
.btn1{
	min-width: inherit;
	padding: 0.5em 2.5em 0.6em;
	font-size: 3.6rem;
}

/* テンプレート */


/* ヘッダ */
header{
	padding: 3.5rem;
	height: auto;
	max-width: 1820px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: max-content 1fr;
	width: 100%;
	align-content: center;
}

header h1{
	font-size: 3.2rem;
	gap: 3rem;
}

header h1>img{
	width: min(16.1vw,294px);
}


.header__navBtn{
	display: none;
}

.header__nav{
	background: none;
	position: static;
	transform: none;
	color: #333;
	position: relative;
}

.header__nav ul{
	color: var(--color1);
	padding:0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: min(2.2vw,40px);
	position: absolute;
	right: 0;
	top:0;
	height: 100%;
}

.header__nav ul li{
	font-size: min(1.4vw,20px);;
	margin: 0;
}

.header__nav ul li a{
	color: var(--color1);
	
}

/* TAB要画面設定
.header__nav ul{
	padding: 7rem;
}

.header__nav ul li{
	margin-bottom:3.5rem;
	font-size: 3.2rem;
}
*/


/* コンテンツ領域コンテナ */

main{
	margin-bottom:16rem;
}
/* フッター */
footer{
	padding-bottom: 8rem;
}

.footer__inner{
	padding: 2.5rem;
	max-width: 1700px;
	margin: 0 auto;
}

.footer__copy{
	margin-top: 5rem;
}

.floatBottom{
	padding: 0.8vw;
	display: flex;
	gap: 1.6vw;
	justify-content: center;
	align-content: center;
	align-items: center;
	border-top: solid 4px var(--color2);
}

.floatBottom p{
	font-size: 3.4rem;
}

.floatBottom a{
	font-size: 2.6rem;
	border-radius: 1.2rem;
	border: solid 3px var(--color2);
	padding: 0.3em 1.5em 0.4em;
}

.floatBottom a.isTel{
	pointer-events: none;
}

.floatBottom a.isMail{
	background: url(../img/arrow2_right_o.svg) no-repeat right 0.5em center;
	background-size: 0.65em auto;
}

.toTop{
	display: block;
	padding: 1rem;
	box-sizing: border-box;
	position: fixed;
	right: 2rem;
	bottom: 15rem;
	border: solid 3px var(--color2);
	aspect-ratio: 1/1;
	width: 6rem;
	height: auto;
	z-index: 50;
	border-radius: 50vw;
	background-color: #FFF;
	transform: rotate(-90deg);
	opacity: 0;
	transition: opacity 200ms ;
}

.toTop.on{
	opacity: 1;
}
.toTop img{
	width: 100%;
	height: auto;
}