@charset "UTF-8";

/*
全ページ共通のパーツ用css
*/
/* ===============================================
	本体のウェブサイトに戻る
================================================== */
.website--back {
	width: 100%;
	top: 0;
	right: 0;
	bottom: auto;
	left: 0;
}
.website--back a {
	display: flex;
    text-decoration: none;
    color: #fff;
    background-color: var(--mainColorDark);;
    align-items: center;
}
.website--back a:hover {
	text-decoration: underline;
	color: #fff;
	/* background-color: #0fb4cb; */
	opacity: 0.8;
}
.website--back .icon {
	margin-right: 0.5rem;
	width: 16px;
	height: 16px;
}
	/* -------------------------------------------
		本体のウェブサイトに戻る > SP
	--------------------------------------------- */
	@media (min-width:0px) {
		.website--back a {
			padding: 0.25rem 80px 0.25rem 0.5rem;
			font-size: 12px;
		}
	}
	/* -------------------------------------------
		本体のウェブサイトに戻る > TABLET
	---------------------------------------------- */
	@media (min-width:720px) {
		.website--back a {
			padding: 0.25rem 1rem;
			font-size: 1rem;
		}
	}
	/* -------------------------------------------
		本体のウェブサイトに戻る > PC
	---------------------------------------------- */
	@media (min-width:1028px) {
		
	}
/* ===============================================
	footer
================================================== */
.footer {
	padding-top: 2rem;
	color: #fff;
	background: rgb(10,170,195);
	background: linear-gradient(90deg, rgba(10,170,195,1) 0%, rgba(6,179,162,1) 100%);
}
.footer--addresss {
	margin-bottom: 2rem;
	text-align: center;
}
.footer--addresss--sitename {
	font-size: 1.125rem;
	font-style: normal;
}
.copyright {
	padding-top: 2rem;
	padding-bottom: 2rem;
	text-align: center;
	letter-spacing: 1px;
	font-size: 0.9rem;
	font-weight: bold;
	color: #000;
	background-color: #f0f0f0;
}
/*--本体のウェブサイトに戻る--*/
.footer--website--back {
	padding-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer--website--back a {
	border-radius: 2px;
	border: 1px solid #fff;
	padding: 1rem 2rem;
	text-decoration: none;
	color: #fff;
	background-color: var(--mainColorDark);
	box-shadow: 4px 4px 0px rgb(0 0 0 / 5%);
}
.footer--website--back a:hover {
	text-decoration: underline;
	color: #fff;
	background-color: #0fb4cb;
	box-shadow: none;
	transform: translate(2px, 2px);
}
.footer--website--back .icon {
	margin-right: 0.5rem;
	width: 16px;
	height: 16px;
}
	/* -------------------------------------------
		footer > SP
	--------------------------------------------- */
	@media (min-width:0px) {
	}
	/* -------------------------------------------
		footer > TABLET
	---------------------------------------------- */
	@media (min-width:720px) {
	}
	/* -------------------------------------------
		footer > PC
	---------------------------------------------- */
	@media (min-width:1028px) {
	}

/* -----------------------------------------------
ページトップへ戻るボタン
-------------------------------------------------- */
.pagetop {
	position: fixed;
	/* border: 1px solid #222; */
	bottom: 10px;
	right: 10px;
	z-index: 10;
	background: linear-gradient(to right,#09aec6, #06b3a1);
	box-shadow: 4px 4px 0px 0px rgb(0 0 0 / 5%);
	transition: .3s;
}
.pagetop img {
	width: 24px;
	height: 24px;
}
.pagetop a {
	text-decoration: none;
	padding: 10px 10px;
	display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}
.pagetop a:hover {
	text-decoration: none;
	opacity: 0.75;
	cursor: pointer;
}
	/* -------------------------------------------
		ページトップへ戻るボタン > SP
	--------------------------------------------- */
	@media (min-width:0px) {
		a.pagetop {
			width: 50px;
			height: 50px;
		}
	}
	/* -------------------------------------------
		ページトップへ戻るボタン > TABLET
	---------------------------------------------- */
	@media (min-width:720px) {
	}
	/* -------------------------------------------
		ページトップへ戻るボタン > PC
	---------------------------------------------- */
	@media (min-width:1028px) {
		a.pagetop {
			width: 70px;
			height: 70px;
		}
	}