@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

body {
	min-width: 1240px;
	color: #333333;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	outline: none;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;

	padding-top: 190px;
}

.inner {
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 40px;
}

.vis-hidden {
	display: block;
	visibility: visible;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 4px;
	height: 4px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: none;
}

.vis-sp,
.vis-tb {
	display: none;
}

.hovact {
	transition-duration: 0.4s;
}

.hovact:hover {
	cursor: pointer;
}

.mb-100 {
	margin-bottom: 100px;
}

html {
	scroll-padding-top: 100px;
}


/* header */

.cmnhd {
	width: 100%;
	margin: 0 auto;
	padding: 30px;
	position: fixed;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 10000;
}

.cmnhd_row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cmnhd_list {
	display: flex;
	justify-content: right;
	align-items: center;
	gap: 2%;
	width: 100%;
}

.cmnhd_list li a {
	font-size: 20px;
	font-weight: 500;
}

.cmnhd_list li a:hover {
	opacity: .7;
}

.cmnhd_list .contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	background: #2EA7E0;
	border: solid 2px #2EA7E0;
	border-radius: 5px;
	padding: 10px 20px;
	color: #fff;
}

.cmnhd_list .contact a:hover {
	opacity: 1;
	color: #2EA7E0;
	background: #fff;
}

.cmnhd_list .contact a:hover::before {
	color: #2EA7E0;
}

.cmnhd_btn {
    padding: 23px 25px;
    background: #2EA7E0;
    border-radius: 3px;
    position: relative;
}

.cmnhd_btn span {
	display: block;
	position: absolute;
	right: 50%;
	width: 23px;
	height: 3px;
	border-radius: 1px;
	background: #ffffff;
	transform: translate(50%, 50%);
	transition: all 0.4s;
}

.cmnhd_btn span:first-child {
	top: 30%;
}

.cmnhd_btn span:nth-child(2) {
	bottom: 50%;
}

.cmnhd_btn span:last-child {
	top: 55%;
}

.cmnhd_btn.-open span:first-child {
	transform: translate(50%, 270%) rotate(45deg);
}

.cmnhd_btn.-open span:nth-child(2) {
	opacity: 0;
}

.cmnhd_btn.-open span:last-child {
	transform: translate(50%, -100%) rotate(-45deg);
}


/* cmnnav */

.cmnnav {
	height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #2EA7E0;
	display: none;
	padding-top: 130px;
	z-index: 100;
}

.cmnnav .cmnhd_list {
	flex-flow: column;
	align-items: center;
	gap: 10px;
}


.cmnnav .cmnhd_list li a {
	font-size: 20px;
	color: #fff;
	width: 100%;
}

.cmnnav .cmnhd_list .contact a {
	background: #fff;
	border: solid 2px #fff;
	color: #2EA7E0;
	font-size: 16px;
}

.cmnnav .cmnhd_list .contact a::before {
	color: #2EA7E0;
}

.cmnnav .cmnhd_list .contact a:hover {
	opacity: 1;
	color: #fff;
	background: #2EA7E0;
}

.cmnnav .cmnhd_list .contact a:hover::before {
	color: #fff;
}

/* section */

.sec {
	padding: 85px 0;
}

.sec_ttl {
	font-size: 40px;
	padding-bottom: 20px;
	margin-bottom: 45px;
	position: relative;
	text-align: center;
}

.sec_ttl::after {
	content: '';
	width: 135px;
	height: 5px;
	background: #036EB8;
	position: absolute;
	transform: translateX(50%);
	right: 50%;
	bottom: 0;
}

.sec_ttl.-single {
	text-align: left;
}

.sec_ttl.-single::after {
	width: 260px;
	height: 8px;
	transform: unset;
	right: unset;
	left: 0;
}

.bg-white {
	background: #fff;
	border-radius: 15px;
}

.sec_comment {
	font-size: 30px;
	position: relative;
	width: fit-content;
	margin: 0 auto 25px;
}

.sec_comment::before {
	content: '';
	width: 3px;
	height: 30px;
	background: #000;
	position: absolute;
	left: -5%;
	bottom: 50%;
	transform: translateY(50%) rotate(-20deg);
	border-radius: 40px;
}

.sec_comment::after {
	content: '';
	width: 3px;
	height: 30px;
	background: #000;
	position: absolute;
	right: -5%;
	bottom: 50%;
	transform: translateY(50%) rotate(20deg);
	border-radius: 40px;
}



/* footer */

.footer {
	position: relative;
}

.totop {
	position: absolute;
	top: -72%;
    right: 6%;
}

.totop a {
	display: block;
	width: fit-content;
}

.totop a:hover {
	opacity: .7;
}

.footer {
	background: #036EB8;
	padding: 35px;
}

.cmnft_cnt {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cmnft_cnt .copy {
	color: #fff;
}

.cmnft_link {
	display: flex;
	align-items: center;
}

.cmnft_link li a {
	color: #fff;
	padding-right: 10px;
	margin-right: 10px;
	border-right: solid 1px #fff;
}

.cmnft_link li:last-child a {
	border: none;
	padding-right: 0px;
	margin-right: 0px;
}

@media screen and (max-width:1100px) {
	.cmnhd_list li a {
		font-size: 16px;
	}
}

@media screen and (max-width:767px) {
	body {
		min-width: 0;
		padding-top: 90px;
	}

	.inner {
		padding: 0 18px;
	}

	.vis-sp {
		display: block;
	}

	.hide-sp {
		display: none;
	}


	/* header */

	.cmnhd {
		padding: 15px 20px;
	}

	.cmnhd_logo {
		width: 45%;
	}

	/* section */

	.sec {
		padding: 30px 0;
	}

	.sec_ttl {
		font-size: 24px;
		padding-bottom: 10px;
		margin-bottom: 20px;
	}

	.sec_ttl.-single::after {
		height: 3px;
	}


	/* footer */

	.footer {
		padding: 25px 15px;
	}

	.footer .inner {
		padding: 0px;
	}

	.cmnft_cnt {
		flex-flow: column-reverse;
	}

	.cmnft_link {
		margin-bottom: 10px;
	}

	.cmnft_link li a {
		font-size: 14px;
	}

	.cmnft_cnt .copy {
		font-size: 12px;
	}

	.totop {
		top: -22%;
		right: 0%;
	}

	.totop a {
		width: 70%;
	}
}

@media print {
}
