@charset "utf-8";
@media only screen and (min-width: 751px) {
	/*--------------------*/
	/*---- pc_cont.css ----*/
	/*--------------------*/

	/*------------------------------------
		基本設定
	-------------------------------------*/
	html {
		font-size: 62.5%;
		overflow: auto;
	}

	body {
		font-size: 1.6em;
		min-width: 1280px;
		/* text-align: justify; */
	}

	img {
		height: auto;
		vertical-align: bottom;
	}

	.pcNone {
		display: none;
	}

	/*ーーーーー
	※レイアウト調整用ーーーーー*/
	* {
		/* outline: 1px solid #555; */
	}

	/*------------------------------------
		section共通
	-------------------------------------*/
	.sectionCommon {
		width: 1280px;
		margin: 0 auto;
	}

	/*------------------------------------
		大項目(これは見本)
	-------------------------------------*/
	/* --------- 中項目(これは見本) ----------- */
	/* 小項目(これは見本) */
	.navMenuInner {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 50px;
		height: 60px;
		background-color: #abecca;
	}

	.footerWrap {
		display: grid;
		place-items: center;
		height: 200px;
		background-color: #b8d4ff;
		text-align: center;
	}

	/*------------------------------------
		footer
	-------------------------------------*/
	/* --------- ページトップボタン ----------- */
	#gPagetop {
		transition: 0.3s;
		cursor: pointer;
		visibility: hidden;
	}
	#gPagetop .pagetopBtn {
		position: fixed;
		position: relative;
		right: 30px;
		display: block;
		width: 69px;
		height: 69px;
		border-radius: 100%;
		z-index: 100;
	}
	#gPagetop .pagetopBtn::after {
		content: "";
		position: absolute;
		top: 0;
		right: 0px;
		display: block;
		width: 69px;
		height: 69px;
		border-radius: 100%;
		background-image: url(../img/common/pagetop_icon.svg);
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
		transition: all 0.2s ease;
		z-index: 100;
	}
}
