* {
	padding: 0;
	margin: 0;
	font-size: 14px;
	font-weight: normal;
	list-style: none;
	font-family: sans-serif;
}

body {
	min-width: 900px;
}

@media screen and (max-width:768px) {}

/*ハンバーガーメニュー*/
.menu-btn {
	position: fixed;
	top: 0px;
	right: 0px;
	display: flex;
	height: 65px;
	width: 50px;
	justify-content: center;
	align-items: center;
	z-index: 90;
	background-color: #C4C4C4;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: #ffffff;
	position: absolute;
}

.menu-btn span:before {
	bottom: 8px;
}

.menu-btn span:after {
	top: 8px;
}

#menu-btn-check:checked~.menu-btn span {
	background-color: rgba(255, 255, 255, 0);
	/*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
}

#menu-btn-check {
	display: none;
}

.menu-content {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 80;
	background-color: #3584bb;
}

.menu-content ul {
	padding: 90px 10px 0;
}

.menu-content ul li {
	border-bottom: solid 1px #ffffff;
	list-style: none;
}

.menu-content ul li a {
	display: block;
	width: 100%;
	font-size: 15px;
	box-sizing: border-box;
	color: #ffffff;
	text-decoration: none;
	padding: 9px 15px 10px 0;
	position: relative;
}

.menu-content ul li a::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: solid 2px #ffffff;
	border-right: solid 2px #ffffff;
	transform: rotate(45deg);
	position: absolute;
	right: 11px;
	top: 16px;
}

.menu-content {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 100%;
	/*leftの値を変更してメニューを画面外へ*/
	z-index: 80;
	background-color: #C4C4C4;
	transition: all 0.5s;
	/*アニメーション設定*/
}

#menu-btn-check:checked~.menu-content {
	left: 0;
	/*メニューを画面内へ*/
}

@media screen and (min-width:768px) {
	div.hamburger-menu {
		display: none;
	}
}

/*ヘッダー*/
.header-all {
	position: fixed;
	width: 100%;
	background-color: white;
	z-index: 100;

}

/*ヘッダーメニュー*/

h1.mainlogo {

	width: 40%;

}

div.header-menu ul {
	display: flex;
}

@media screen and (max-width:768px) {
	img.mainlogo {
		height: 50px;
	}
}

/*ヘッダーメニューPC*/

div.header-menu ul.pc li {
	margin-left: 20px;
}

img.gruppo {
	height: 70px;
	margin-top: 30px
}

img.SRP {
	height: 70px;
	margin-top: 30px
}

img.inquiries {
	height: 100px;
}

/*ヘッダーメニュー携帯*/
div.header-menu ul.keitai li {
	margin-left: 5px;
}

li.menuicon {
	height: 50px;
	width: 50px;
}

img.menuicon {
	height: 50px;
	width: 50px;
}

@media screen and (min-width:768px) {
	div.header-menu ul.keitai {
		display: none;
	}
}

div.header-menu {
	display: flex;
	justify-content: space-between;
	margin-left: 20px;
	margin-right: 20px;
	height: 100px;
	padding: 15px 0px 0px 0px;
}

@media screen and (max-width:768px) {
	body {
		min-width: auto;
	}

	div.header-menu ul.pc {
		display: none;
	}

	div.header-menu {
		display: flex;
		justify-content: space-between;
		margin-left: 0px;
		margin-right: 0px;
		height: 50px;
		padding: 15px 0px 0px 0px;
	}
}

/*ヘッダーナビ*/
nav {
	width: 100%;
	padding: 5px 0px 5px 0px;
}

ul.nav {
	display: flex;
}

li.nav {
	width: 20%;
}

a.nav {
	text-align: center;
	display: block;
	color: black;
	font-size: 18px;
	position: relative;
	text-decoration: none;
}

a.nav::after {
	position: absolute;
	bottom: -0px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #C4C4C4;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}

a.nav:hover::after {
	transform: scale(1, 1);
}

.line {
	margin: 0 1rem;
	width: 2px;
	background-color: #E5E5E5;
}

@media screen and (min-width:768px) {}


@media screen and (max-width:768px) {
	nav {

		display: none;
	}
}

/*ヘッダー画像*/
@media screen and (min-width:768px) {
	div.header {
		height: 600px;
		padding-top: 150px;
	}


	div.header-image {
		position: relative;
	}

	div.title-text {
		position: absolute;
		top: 0;
		left: 0;
		padding: 20px 20px 20px 20px;
	}

	img.header-image {
		height: 600px;
		width: 100%;
	}

	h1.header-title {
		font-size: 60px;
		padding: 10px 20px 10px 40px;
		color: #E5E5E5;
	}

	p.header-text {
		font-size: 23px;
		padding: 10px 0px 10px 10px;
		color: #E5E5E5;
	}

	li.gruppo2 {
		display: none;
	}
}

@media screen and (max-width:768px) {
	div.header {
		height: 280px;
		padding-top: 60px;
	}

	div.header-image {
		position: relative;
	}

	div.title-text {
		position: absolute;
		top: 0;
		left: 0;
		padding: 10px 20px 20px 20px;
	}

	img.header-image {
		height: 280px;
		width: 100%;
	}

	h1.header-title {
		font-size: 20px;
		padding: 20px 20px 8px 20px;
		color: #E5E5E5;
	}

	p.header-text {
		font-size: 12px;
		padding: 8px 0px 8px 0px;
		color: #E5E5E5;
	}

	img.gruppo2 {
		height: 30px;
	}

	li.gruppo2 {
		position: absolute;
		bottom: 10px;
		right: 10px;
	}
}

/*コンテンツ*/
div.content {
	background-color: #38A1CE;
	padding-bottom: 30px;
}

div.content-title {
	text-align: center;
	padding: 30px 0px 30px 0px;
	color: #E5E5E5;
}

h1.content-title {
	font-size: 40px;
}

p.content-title {
	font-size: 20px;
}

@media screen and (min-width:768px) {}

@media screen and (max-width:768px) {
	h1.content-title {
		font-size: 20px;
	}

	p.content-title {
		font-size: 15px;
	}
}

/*コンテンツ-サービス*/
.content {
	padding-top: 150px;
	margin-top: -150px;
}

ul.content-service {
	display: flex;
	padding-bottom: 30px;
}

li.content-service {
	margin-left: auto;
	margin-right: auto;
	background-color: #ffffff;
	border-radius: 30px;
	width: 30%;
}

h1.content-service {
	font-size: 25px;
	padding: 20px;
	text-align: center;


}

img.service-image {
	padding-top: 20px;
	width: 98%;
}

@media screen and (min-width:768px) {
	div.content-service-keitai {
		display: none;
	}
}

@media screen and (max-width:768px) {
	div.content-service-pc {
		display: none;
	}

	ul.content-service {
		padding: 0px 10px 10px 10px;
	}

	li.content-service {
		width: 48%;
		border-radius: 20px;
	}

	h1.content-service {
		font-size: 15px;
		padding: 10px;
	}

	img.service-image {
		padding-top: 10px;
		width: 100%;
	}
}

/*助成金*/
img.joseikin {
	width: 100%;
}

/*料金*/
div.ryoukin {
	background-color: #38A1CE;

}


.content-ryokin {}

ul.ryokin-list1 {
	padding-bottom: 30px;
}

.serviceJump {
	padding-top: 180px;
	margin-top: -180px;

}

ul.ryokin-list2 {
	padding-bottom: 50px;
}

li.content-ryokin {
	margin-left: auto;
	margin-right: auto;
	background-color: #ffffff;
	border-radius: 30px;
	width: 88%;
	padding: 40px;


}

h1.content-ryokin {
	font-size: 2em;
	padding-bottom: 10px;
	font-weight: 900;
}

.ryokin-box {
	position: relative;
	height: 30px;
	width: 30px;
	background-color: #FC0707;
	top: 5px;
	right: 5px;
}

.ryokin-title {
	display: flex;
}

p.content-ryokin {
	font-size: 2em;
}

.ryokinhyo {
	text-align: right;
	padding: 0px 45px 45px 0px;
}

.hyoimage {
	width: 100px;
}

.ryokinhyo-image {
	width: 200px;
}

@media screen and (max-width:768px) {
	ul.ryokin-list1 {
		padding-bottom: 20px;
	}

	ul.ryokin-list2 {
		padding-bottom: 20px;
	}

	li.content-ryokin {
		margin-left: auto;
		margin-right: auto;
		background-color: #ffffff;
		border-radius: 30px;
		width: calc(100% - 20px);
		margin: 0 auto;
		padding: 20px;
		box-sizing: border-box;
	}

	h1.content-ryokin {
		font-size: 1em;
		padding-bottom: 10px;
		font-weight: 900;
	}

	p.content-ryokin {
		font-size: 1em;
	}

	.ryokin-box {
		position: relative;
		height: 15px;
		width: 15px;
		background-color: #FC0707;
		top: 2px;
		right: 5px;
	}

	.ryokinhyo {
		text-align: right;
		padding: 0px 10px 20px 0px;
	}

	.ryokinhyo-image {
		width: 20%;
	}
}

/*料金ページ*/
.ryokin-hyo {
	width: 100%;
}

.ryokin-hyo tr {
	width: 100%;
}

.ryokin-hyo th {
	text-align: left;
	font-size: 2em;
	height: 100px;
}

.ryokin-hyo td {
	font-size: 2em;
	height: 100px;
	width: 33%;
}

td,
th {
	border-bottom: 2px solid #38A1CE;
}

.none-border {
	border: none;
}

.ryokin-hyo2 th {
	width: 100%;
	border: none;
}

.ryokin-hyo2 td {
	font-size: 2em;
	height: 100px;
	width: 33%;
	border: none;
}

@media screen and (max-width:768px) {
	.ryokin-hyo th {
		font-size: 1em;
		height: 70px;
	}

	.ryokin-hyo td {
		font-size: 1em;
		height: 70px;
	}

	.ryokin-hyo2 th {
		font-size: 1em;
		height: 70px;
	}

	.ryokin-hyo2 td {
		font-size: 1em;
		height: 70px;
	}
}

/*news*/
.news {
	background-color: white;
	padding: 250px 60px 50px 60px;


	margin-top: -200px;
}


.news-left {
	width: 30%;
}

.news-left-ul {}

.news-title {
	font-size: 2.5em;
	color: #DBDDEA;
}

.news-title2 {
	font-size: 1.5em;
	font-weight: 700;
}

.news-right-ul {
	display: flex;
	padding-bottom: 20px;
}

.news-right-ul li {
	margin-right: 30px;
}

@media screen and (min-width:768px) {
	.news {
		display: flex;
	}

	.news-title {
		font-size: 3em;
	}

	.news-title2 {
		font-size: 2em;
		font-weight: 700;
	}

	.news-right-ul li {
		font-size: 1.5em;
	}

}

@media screen and (max-width:768px) {
	.news {
		padding: 20px 30px 20px 30px;
	}
}

/*contact*/
.contact1 {
	background-color: #DBDDEA;
}

.contact2 {
	margin: auto;
	width: auto;
	padding: 25px;
}

.contact2 ul {
	background-color: white;
	width: 100%;
	padding: 20px;
}

.contact2 li {
	color: #2E75B5;
	text-align: center;
}

.contact2 h1 {
	font-size: 3em;
}

.tel-number a {
	color: #2E75B5;
	text-decoration: none;
}

@media screen and (min-width:768px) {
	.contact2 {
		display: flex;
	}

	.content-line {
		width: 4px;
		background-color: #DBDDEA;
	}

	.content-line2 {
		border: none;
	}
}

@media screen and (max-width:768px) {
	.contact2 li h1 {
		font-size: 2em;
	}

	.contact2 {
		padding: 15px;
	}

	.contact2 ul {
		padding: 10px 0px 10px 0px;
	}

	.contact2 h1 {
		font-size: 1.3em;
	}

	.contact2 p {
		font-size: 0.5em;
	}

	.tel-number a {
		font-size: 1.3em;
	}

	.content-line2 {
		background-color: #DBDDEA;
		border-top: 0px
	}
}

/*フッター*/
div.footer {
	padding: 60px 20px 100px 20px;
	background-color: #2E75B5;
	display: flex;
	justify-content: space-between;
	color: white;
}

img.footerlogo {
	width: 150px;
}

img.footericon1 {
	width: 70px;
}

img.footericon2 {
	width: 70px;
}

/*フッター左*/
h1.footer-left {}

ul.footer-left1 {
	padding: 0px 0px 0px 0px;
}

ul.footer-left2 {
	padding: 30px 0px 0px 0px;
}

ul.footer-left2 li {
	padding: 5px 0px 5px 0px;
}

/*フッター右*/
h1.footer-right {
	text-align: right;
}

ul.footer-right2 {
	display: flex;
	justify-content: flex-end;
}

ul.footer-right2 li {
	padding: 0px 0px 0px 10px;
}

ul.footer-right3 {

	display: flex;
	justify-content: flex-end;
	padding: 30px 0px 0px 0px;

	display: none;
}

ul.footer-right3 li {
	padding: 0px 0px 0px 10px;
}

.footer-right3 img {
	width: 30px;
}

p.footer-right4 {
	padding: 60px 0px 0px 0px;
}

@media screen and (max-width:768px) {
	div.footer {
		padding: 30px 10px 50px 10px;
	}

	img.footerlogo {
		width: 100px;
	}

	/*フッター左*/
	ul.footer-left2 li {
		font-size: 0.8em;
	}

	/*フッター右*/
	ul.footer-right2 li {
		font-size: 0.8em;
	}

	.footer-right3 li {}

	p.footer-right4 {
		font-size: 0.5em;
	}
}

/*隙間*/
.sukima {
	padding-top: 150px;
}