html {
	font-size: 62.5%;
	/* sets the base font to 10px for easier math */
	-webkit-font-smoothing: antialiased;
}

body {
	position: relative;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	line-height: 1;
	font-size: 14px;
	color: #000;
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
@media (min-width: 769px) {
	body {
		font-size: 16px;
	}
}
@media (max-width: 360px) {
	body {
		font-size: 12px;
	}
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* -------------------------------------
common
----------------------------------------*/
a {
	color: inherit;
}

.cf:after {
	content: "";
	clear: both;
	display: block;
}

.ib {
	display: inline-block;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

strong {
	font-weight: 600;
}

.mode_pc,
.mode_pc_ib {
	display: none;
}

.mode_sp {
	display: block;
}

.mode_sp_ib {
	display: inline-block;
}

.bgImage {
	width: 100%;
	max-width: auto;
	max-width: inherit;
}

.mover {
	transition: opacity 0.2s ease-out;
	backface-visibility: hidden;
	zoom: 1;
}
.mover:hover {
	opacity: 0.7;
}

.inner,
.inner02,
.inner03,
.spInner {
	padding: 0 6%;
}
.inner .inner02,
.inner02 .inner02,
.inner03 .inner02,
.spInner .inner02 {
	padding: 0;
}

.blankLink {
	position: relative;
	display: inline-block;
	padding-right: 25px;
}
.blankLink:before {
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	position: absolute;
	content: "";
	background-image: url(../img/blank.svg);
	background-position: center center;
	background-repeat: no-repeat;
	width: 16px;
	height: 15px;
}
.blankLink.type02:before {
	background-image: url(../img/blank02.svg);
}

.arrowLink {
	position: relative;
	padding-left: 20px;
}
.arrowLink:before {
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	position: absolute;
	content: "";
	width: 7px;
	height: 3px;
	border: 3px solid transparent;
	border-left: 7px solid #54c2f0;
	transition: all 0.3s ease;
}
.arrowLink:hover:before {
	left: 5px;
}

.contentTitle {
	text-align: center;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #3c3c3c;
	font-size: 18px;
	margin-bottom: 35px;
}

.anchor,
.anchor02 {
	margin-top: -50px;
	padding-top: 50px;
}

@media (min-width: 768px) {
	.inner {
		width: 90%;
		max-width: 984px;
		margin: auto;
		padding: 0;
	}

	.inner02 {
		width: 90%;
		max-width: 900px;
		margin: auto;
		padding: 0;
	}

	.inner03 {
		width: 90%;
		max-width: 1024px;
		margin: auto;
		padding: 0;
	}

	.spInner {
		padding: auto;
	}

	.anchor {
		margin-top: -80px;
		padding-top: 80px;
	}

	.anchor02 {
		margin-top: -90px;
		padding-top: 90px;
	}
}
@media (min-width: 1000px) {
	.mode_pc {
		display: block;
	}

	.mode_pc_ib {
		display: inline-block;
	}

	.mode_sp,
.mode_sp_ib {
		display: none;
	}

	.contentTitle {
		font-size: 28px;
	}
}
/*
header
---------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.9);
	z-index: 20;
	z-index: 30;
	/*
	#contentNav
	---------------------------*/
}
header #headerInner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .siteNameBox {
	padding-left: 10px;
}
header .siteName {
	padding: 6px 0 5px;
	width: 200px;
	vertical-align: middle;
}
header.open {
	height: 100%;
}
header #contentNav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: rgba(49, 90, 158, 0.95);
	transform: translateY(-100%);
	transition: all 0.6s;
}
header #contentNav.active {
	top: 47px;
	transform: translateY(0%);
}
header #contentNav a {
	display: block;
	font-size: 15px;
	color: #fff;
	padding: 18px 0;
}
header #contentNav p {
	position: relative;
	border-bottom: 1px solid #fff;
}
header #contentNav .pcOnly {
	display: none;
}
header #contentNav .spOnly {
	display: block;
}
header #contentNav .contact_link {
	background-color: #54c2f0;
}
@media (min-width: 768px) {
	header {
		padding: 0;
	}
	header #headerInner {
		max-width: 1040px;
		margin: auto;
	}
	header .siteName {
		padding: 0;
		width: 257px;
	}
	header.open {
		height: auto;
	}
	header #contentNav {
		display: block !important;
		position: relative;
		height: auto;
		background-color: transparent;
		transform: none;
	}
	.is-fixed header #contentNav {
		padding: 25px 0;
	}
	header #contentNav a {
		color: #102942;
		font-weight: 500;
		padding: 33px 0;
	}
	header #contentNav p {
		border: none;
		padding: 0 17px;
	}
	header #contentNav p:before {
		content: none;
	}
	header #contentNav .pcOnly {
		display: block;
	}
	header #contentNav .spOnly {
		display: none;
	}
	header #contentNav .contact_link {
		background-color: #54c2f0;
		padding: 0;
		transition: all 0.3s ease;
		margin-left: 10px;
	}
	header #contentNav .contact_link:hover {
		background-color: #dc2a4e;
	}
	header #contentNav .contact_link a {
		color: #fff;
		padding-left: 20px;
		padding-right: 20px;
	}
	header #contentNav .navInner {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
	}
}

#menu_btn {
	position: fixed;
	top: 0;
	right: 0;
	margin: auto;
	cursor: pointer;
	text-align: center;
	padding: 16px 15px;
	cursor: pointer;
	background-color: #315A9E;
}
#menu_btn div {
	position: relative;
	width: 20px;
	height: 16px;
}
#menu_btn span {
	position: absolute;
	right: 0;
	width: 20px;
	height: 1px;
	background-color: #fff;
	transition: all 0.4s;
	margin: auto;
}
#menu_btn span:nth-of-type(1) {
	top: 0;
}
.open #menu_btn span:nth-of-type(1) {
	-webkit-transform: translateY(7px) rotate(-45deg);
	transform: translateY(7px) rotate(-45deg);
}
#menu_btn span:nth-of-type(2) {
	top: 0;
	bottom: 0;
}
.open #menu_btn span:nth-of-type(2) {
	opacity: 0;
}
#menu_btn span:nth-of-type(3) {
	top: auto;
	bottom: 0;
}
.open #menu_btn span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-8px) rotate(45deg);
}
@media (min-width: 768px) {
	#menu_btn {
		display: none;
	}
}

/*
footer
---------------------------*/
footer {
	position: relative;
	text-align: center;
	background-color: #000;
	color: #fff;
}
footer .footerInner {
	display: flex;
	flex-wrap: wrap;
}
footer .privacy:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 12px;
	height: 12px;
	background-image: url(../img/common/blank.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-left: 10px;
}
footer p {
	line-height: 1.6;
	letter-spacing: 0.06em;
}
footer .siteNameWrap {
	width: 100%;
	padding: 14px 0;
}
footer .siteNameWrap .siteName {
	width: 200px;
}
footer .no {
	display: inline-block;
}
footer .no + .no {
	padding-left: 10px;
}
footer .address {
	padding: 10px 0 10px;
}
footer .address span {
	display: block;
	padding-top: 6px;
}
footer .tel {
	padding: 10px;
}
footer .sitemap {
	width: 100%;
}
footer .sitemap li {
	border-bottom: 1px solid #fff;
}
footer .sitemap a {
	display: block;
	padding: 12px 0;
}
@media (min-width: 768px) {
	footer {
		padding: 25px 0;
	}
	footer .siteNameWrap {
		padding: 0;
		order: 1;
	}
	footer .siteNameWrap .siteName {
		width: 315px;
	}
	footer .address {
		padding: 30px 0 0;
	}
	footer .address span {
		display: inline-block;
		padding: 0 0 0 1em;
	}
	footer .tel {
		padding: 0;
	}
	footer .privacy {
		padding-top: 14px;
	}
	footer .privacy:after {
		width: 16px;
		height: 16px;
		margin-left: 10px;
	}
	footer p {
		font-size: 14px;
		line-height: 1.8;
	}
	footer .sitemap {
		padding-top: 10px;
		order: 2;
	}
	footer .sitemap ul {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	footer .sitemap ul a {
		padding: 0;
	}
	footer .sitemap li {
		border-bottom: none;
	}
	footer .sitemap li + li {
		position: relative;
		padding-left: 20px;
		margin-left: 20px;
	}
	footer .sitemap li + li:after {
		content: "";
		display: block;
		width: 1px;
		height: 15px;
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		margin: auto;
		background-color: #fff;
	}
	footer .sitemap p {
		font-size: 14px;
	}
}

.pagetop {
	display: none;
	position: fixed;
	z-index: 10;
	bottom: 10px;
	right: 10px;
	width: 50px;
	height: 50px;
}
.pagetop a {
	display: block;
}
.pagetop.stop {
	position: absolute;
	bottom: auto;
	top: -25px;
}
@media (min-width: 768px) {
	.pagetop {
		right: 5%;
		width: 77px;
		height: 77px;
	}
	.pagetop.stop {
		top: -38px;
	}
}

/*
contentBox
---------------------------*/
.contentBox {
	padding: 0 0 60px;
}
@media (min-width: 1000px) {
	.contentBox {
		padding: 0 0 100px;
	}
}

.bgBox {
	background-color: rgba(210, 210, 210, 0.2);
}

.contentWrap {
	padding-top: 47px;
}
@media (min-width: 768px) {
	.contentWrap {
		padding-top: 80px;
	}
}

/*
inview style
---------------------------*/
.bottom_to_top {
	transform: translate3d(0, 50px, 0);
	opacity: 0;
}

.bottom_to_top_fadeIn {
	transform: translate3d(0, 0, 0);
	transition: 1s ease-in-out 0.5s;
	opacity: 1;
}

.left_to_right {
	transform: translate3d(-50px, 0, 0);
	opacity: 0;
}

.left_to_right_fadeIn {
	transform: translate3d(0, 0, 0);
	transition: 1s ease-in-out 0.5s;
	opacity: 1;
}

.right_to_left {
	transform: translate3d(50px, 0, 0);
	opacity: 0;
}

.right_to_left_fadeIn {
	transform: translate3d(0, 0, 0);
	transition: 1s ease-in-out 0.5s;
	opacity: 1;
}

.zoom {
	transform: scale(0.8);
	opacity: 0;
}

.zoom_fadeIn {
	transform: scale(1);
	transition: 0.5s ease-out 0.5s;
	opacity: 1;
	overflow: hidden;
}

.zoomBnr {
	transform: scale(0.8);
	opacity: 0;
}

.zoomBnr_fadeIn {
	transform: scale(1);
	transition: 0.5s ease-out 0.5s;
	opacity: 1;
	overflow: hidden;
}

.zoomImageWrap {
	display: block;
	overflow: hidden;
}

.zoomImageWrap .zoomImage {
	transition: all 0.5s ease;
}

.zoomImageWrap:hover .zoomImage {
	transition: 0.5s;
	transform: scale(1.05);
}

/*
lineLink
---------------------------*/
@media (min-width: 768px) {
	.lineLink span {
		position: relative;
		font-weight: inherit;
	}
	.lineLink span:after {
		content: "";
		display: block;
		position: absolute;
		height: 1px;
		background: #315A9E;
		left: 0;
		right: 0;
		margin: auto;
		bottom: -3px;
		width: 100%;
		transform: scale(0, 1);
		transform-origin: left top;
		transition: transform 0.3s;
	}
	.lineLink span:hover:after {
		transform: scale(1, 1);
	}
	.lineLink.whiteLine span:after {
		background-color: #fff;
	}
}
/*
mainVisualLower
---------------------------*/
#mainVisualLower {
	background-image: url(../img/service/mv-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 84px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#mainVisualLower .mvTitle {
	font-size: 18px;
	font-family: "Noto Serif JP", sans-serif;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.1em;
	filter: drop-shadow(0 2px 7px rgba(59, 142, 246, 0.75));
}
@media (min-width: 768px) {
	#mainVisualLower {
		min-height: 168px;
	}
	#mainVisualLower .mvTitle {
		font-size: 24px;
	}
}
@media (min-width: 1000px) {
	#mainVisualLower .mvTitle {
		font-size: 36px;
	}
}

/*# sourceMappingURL=common.css.map */