@charset "utf-8";

/*-------------------------------
	基本設定
-------------------------------*/

/*----- フォント設定 */
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&family=M+PLUS+Rounded+1c:wght@300;400;500;700&family=Noto+Sans+JP:wght@100..900&display=swap');


*,
*::before,
*::after {
	box-sizing: border-box;
	line-height: 1;
	word-wrap: break-word;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	opacity: 0;
	width: 100%;
	font-size: 1.6rem;
	letter-spacing: .05em;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	color: #000;
	font-family: "Kosugi Maru", 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;

}


/*----- 画像関連 */
img {
	height: auto;
	vertical-align: bottom;
}

/* SVG表示されないとき */
.svg {
	line-height: 1;
	display: block;
}

.svg img {
	display: block;
	width: 100%;
	height: auto;
	line-height: 1;
}

/* object-fit */
.obj-img img {
	object-fit: cover;
	font-family: 'object-fit: cover;';
}

/*----- ホバー系 */
a {
	transition: .3s all ease;
	color: #000;
}

*:not(.not-a)>a:hover {
	opacity: 0.6;
}

/* 画像拡大 */
.hover_zoom img {
	transition: .3s all ease;
}

.hover_zoom:hover img {
	transform: scale(1.2);
}

/*----- コンテンツ */

.main {
	display: block;
}

/*----- アニメーション */
.view {
	opacity: 0;
	transform: translate(0, 0.7rem);
	transition: all 750ms;
}

.view.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

.view2 {
	overflow: hidden;
	position: relative;
}

.view2:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	background: #fff;
	transition: all ease-in-out 750ms;
}

.view2.scrollin2:after {
	left: 100%;
}



/*-------------------------------
	ヘッダー
-------------------------------*/

.header {}



/*-------------------------------
	フッター
-------------------------------*/

.footer {}

.gotop {}



/*-------------------------------
	パーツ
-------------------------------*/

/*----- 見出し */
/* 大見出し */
.sec-title {}

/* 中見出し */
.sec-subtitle {}

/*----- ボタン */
.Button-wrap {}

.Button {}

/*----- キービジュアル */
.keyvisual {}

/*----- ぱんくず */




/*-------------------------------
	PC専用
-------------------------------*/
@media screen and (min-width:769px),
print {

	a[href^="tel:"] {
		pointer-events: none;
	}

}



/*-------------------------------
	SP専用
-------------------------------*/
@media screen and (max-width:768px),
print {

	/* 14px 1.4rem; */
	/*-------------------------------
		基本設定
	-------------------------------*/

	html {
		font-size: 2.6666666666vw;
	}

	body {
		min-width: 100%;
		font-size: 1.4rem;
	}




	/*-------------------------------
		ヘッダー
	-------------------------------*/

	.header {}

	/*----- ナビ */
	.header-nav {
		display: none;
	}

	/*----- ハンバーガー */
	.menu-button {
		position: fixed;
		right: 16px;
		top: 16px;
		width: 44px;
		/* ← 小さめに */
		aspect-ratio: 1 / 1;
		height: 44px;
		border-radius: 9999px;
		background: #fff;
		color: #08213a;
		border: 1px solid rgba(0, 0, 0, .12);
		box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
		display: grid;
		place-items: center;
		cursor: pointer;
		z-index: 1001;
		-webkit-tap-highlight-color: transparent;
	}

	/* 中のバーも少し短く */
	.menu-button i {
		position: relative;
		width: 20px;
		/* ← 24px → 20px に */
		height: 2px;
		background: currentColor;
		border-radius: 2px;
		transition: transform .25s ease, background-color .2s ease, opacity .2s ease;
	}

	.menu-button i::before,
	.menu-button i::after {
		content: "";
		position: absolute;
		left: 0;
		width: 20px;
		/* ← 同じく20px */
		height: 2px;
		background: currentColor;
		border-radius: 2px;
		transition: transform .25s ease, top .25s ease, opacity .2s ease;
	}

	.menu-button i::before {
		top: -6px;
	}

	/* 間隔を狭めて調整 */
	.menu-button i::after {
		top: 6px;
	}


	*:before,
	*:after {
		padding: 0;
		margin: 0;
		line-height: 1;
	}

	.is_open i {
		background: transparent;
	}

	.is_open i:after {
		transform: translateY(-6px) rotate(-45deg);
	}

	.is_open i:before {
		transform: translateY(6px) rotate(45deg);
	}


	/*-------------------------------
		サブページ
	-------------------------------*/

	/*----- キービジュアル */
	.keyvisual {}



	/*-------------------------------
		フッター
	-------------------------------*/

	.footer {}


	/*-------------------------------
		パーツ
	-------------------------------*/

	/*----- 見出し */
	.sec-title {}

	.sec-subtitle {}

}



.pc {
	display: block;
}

.sp {
	display: none;
}

@media screen and (max-width: 768px),
print {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}