@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100..900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans+SC:wght@100..900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
	box-sizing: border-box;
}

html {
	color: #333;
	font-family: "Roboto","Noto Sans JP",  sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}

a {
	color: #1B9FFF;
	text-decoration: none;
	transition: .3s ease;
	}

a:hover {
	color: #44b0ff;
	}

img {
	display: block;
	width: 100%;
}

.sp {
	display: none;
	}

/* headerここから */
.header {
	position: relative;
	display: block;
	height: 60px;
	background: #1B9FFF;
	box-shadow: 0 0 3px rgba(0,0,0,.5);
	z-index: +1;
}

.header .logo {
	position: absolute;
	left: 10px;
	top: 10px;
	display: block;
	width: 177.9232px;
	height: 40px;
	margin: 0;
	padding: 0;
}

header p {
	position: absolute;
	left: 210px;
	top: 6px;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
}

.hamburger-menu {
	display: none;
}

.navigation {
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	
}

.navigation__list {
	display: flex;
	margin: 0;
	padding: 0;
	}

.navigation__list-item {
	display: block;
	height: 60px;
	position: relative;
	padding: 0 5px;
}

.navigation__link {
	display: block;
	padding: 22px 10px;
	color: #fff;
	background: #1B9FFF;
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	text-decoration: none;
	transition: .3s ease;
}

.navigation__link:hover {
	color: #1B9FFF;
	background: #fff;
}

.navigation__link i {
	display: none;
}

.subnav_list {
	display: flex;
	position: absolute;
	left: -70px;
	top: 40px;
	margin: 0;
	padding: 0;
	opacity: 0;
	z-index: 0;
	transition: .5s ease;
}

.navigation__list-item:hover .subnav_list {
	top: 50px;
	opacity: 1;
	z-index: +1;
}

.subnav_list-item {
	display: block;
}

.subnav_list-item a {
	display: block;
	margin-right: 5px;
	padding: 15px 20px;
	color: #1B9FFF;
	background: #fff;
	font-size: 16px;
	font-weight: 400;
	text-decoration: none;
	white-space: nowrap;
	border-radius: 10px;
	transition: .3s ease;
	box-shadow: 0 1px 2px rgba(0,0,0,.8);
}

.subnav_list-item a:hover {
	color: #fff;
	background: #1B9FFF;
}

/* headerここまで */

/* footerここから */
footer {
	position: relative;
	display: block;
	padding: 40px 0;
	text-align: center;
	background: #1B9FFF;
}

footer .logo {
	width: 222.404px;
	height: 50px;
	margin: 0 auto 40px;
}

footer ul {
	display: block;
	margin: 0 0 40px;
	padding: 0;
}

footer li {
	display: inline-block;
	padding: 0 5px;
}

footer a {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
}

footer p {
	color: #fff;
	font-size: 12px;
	font-weight: 400;
}
/* footerここまで */

/* mainここから */
main {
	position: relative;
	display: block;
}
/* mainここまで */

/* パン屑リストここから */
.crumb ul {
	display: flex;
	margin: 0;
	padding: 10px;
	font-size: 12px;
	line-height: 1em;
	background: #f4f4f4;
}
.crumb li {
	position: relative;
	display: block;
	margin: 0;
	padding: 0 10px;
}
.crumb li:after {
	position: absolute;
	right: -5px;
	top: 0;
	display: block;
	color: #aaa;
	font: var(--fa-font-solid);
	content: " \f054 ";
}
.crumb li:last-child:after {
	display: none;
}
.crumb a {
	display: block;
	margin: 0;
	padding: 0;
}
.crumb span {
	display: block;
	margin: 0;
	padding: 0;
}
/* パン屑リストここまで */

/* ページタイトルここから */
.page_title {
	position: relative;
	margin: 0;
	padding: 140px 4vw;
	overflow: hidden;
}
.page_title img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	display: block;
	width: auto;
	min-width: 100%;
	height: auto;
	min-height: 100%;
}
.page_title h1 {
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
	font-size: 36px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: .1em;
	text-shadow: 0 0 2px rgba(255,255,255,.9),0 0 5px rgba(255,255,255,.8),0 0 10px rgba(255,255,255,.8);
}
/* ページタイトルここまで */

/* カラムここから */
.column {
	margin: 0;
	padding: 80px 4vw 40px;
	background: #f4f4f4;
}
.column:nth-child(even) {
	background: #fbfbfb;
}
.column h2 {
	margin: 0 0 30px;
	padding: 0;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: .1em;
	text-align: center;
}
.column h3 {
	margin: 0 0 30px;
	padding: 0;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: .05em;
	text-align: center;
}
.column h4 {
	margin: 0 0 20px;
	padding: 0;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: .025em;
	text-align: center;
}
.column p {
	margin: 0 0 40px;
	padding: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 2em;
	letter-spacing: .05em;
	text-align: center;
}
.column img {
	display: block;
	width: 60%;
	max-width: 1000px;
	margin: 0 auto 40px;
}
/* カラムここまで */

/* ソリューションここから */
#solution ul.problem {
	display: block;
	width: 100%;
	max-width: 800px;
	margin: 0 auto 50px;
	padding: 0;
}
#solution ul.problem li {
	display: block;
	margin: 0;
	padding: 5px 0 5px 1em;
	font-size: 16px;
	font-weight: 400;
	line-height: 2em;
	letter-spacing: .05em;
	text-indent: -1em;
}
#solution ul.problem li:before {
	font: var(--fa-font-solid);
	content: " \f14a ";
	margin-right: .5em;
}
#solution ul.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0;
}
#solution ul.list li {
	display: block;
	width: 48%;
	margin: 0;
	padding: 0 0 30px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
}
#solution ul.list li h3 {
	margin: 0 0 20px;
	padding: 20px 0;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: .1em;
	text-align: center;
	background: #1B9FFF;
}
#solution ul.list li p {
	margin: 0 0 20px;
	padding: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 2em;
	letter-spacing: .05em;
	text-align: center;
}
#solution ul.list li img {
	display: block;
	width: auto;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	max-height: 200px;
}
/* ソリューションここまで */

/* メリットここから */
#merit div {
	position: relative;
	display: block;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 20px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
}
#merit h3 {
	position: relative;
	display: block;
	margin: 0;
	padding: 10px 10px 10px 50px;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	line-height: 1em;
	text-align: left;
	letter-spacing: .1em;
	background: #4EB4FF;
}
#merit h3 span {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 40px;
	padding: 10px 0;
	text-align: center;
	letter-spacing: 0;
	background: #1B9FFF;
	}
#merit div ul {
	display: block;
	margin: 0;
	padding: 20px;
}
#merit div li {
	display: block;
	margin: 0;
	padding: 0 0 0 1em;
	font-size: 16px;
	font-weight: 400;
	line-height: 2em;
	letter-spacing: .05em;
	text-indent: -1em;
}
#merit div li:before {
	content: "・";
}
#merit div li span {
	font-weight: 500;
}
#merit div p {
	display: block;
	margin: 0;
	padding: 20px 130px 20px 20px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	letter-spacing: .025em;
	text-align: left;
}
#merit div img {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0,-50%);
	display: block;
	width: auto;
	max-height: 100px;
}
/* メリットここまで */

/* システム構成ここから */
#system div {
	display: block;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 20px;
	padding: 0 0 30px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
}
#system h3 {
	margin: 0 0 20px;
	padding: 20px 0;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: .1em;
	text-align: center;
	background: #1B9FFF;
}
#system h4 {
	margin: 0 0 10px;
	padding: 0;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.5em;
	letter-spacing: .1em;
	text-align: center;
}
#system div p {
	margin: 0 0 20px;
	padding: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 2em;
	letter-spacing: .05em;
	text-align: center;
}
#system img {
	display: block;
	width: 90%;
	margin: 0 auto 20px;
	padding: 0;
}
#system table {
	width: 100%;
	max-width: 900px;
	margin: 0 auto 10px;
	border-collapse: collapse;
	background: #fff;
}
#system table thead {
	color: #fff;
	background: #999;
}
#system table th {
	padding: 5px;
	border: 1px solid #ccc;
}
#system table td {
	width: 17%;
	padding: 5px;
	text-align: center;
	border: 1px solid #ccc;
}
#system table thead {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	border-collapse: collapse;
}
#system ul.notice {
	display: block;
	width: fit-content;
	margin: 0 auto 50px;
	padding: 0;
}
#system ul.notice li {
	display: block;
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5em;
	letter-spacing: .05em;
}
/* システム構成ここまで */

/* 特長ここから */
#feature ul.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 30px;
	padding: 0;
}
#feature ul.list li {
	display: block;
	width: 48%;
	margin: 0;
	padding: 0 0 30px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
}
#feature ul.list li h3 {
	margin: 0 0 20px;
	padding: 10px 0;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: .1em;
	text-align: center;
	background: #1B9FFF;
}
#feature ul.list li p {
	margin: 0 0 20px;
	padding: 0 20px;
	font-size: 16px;
	font-weight: 400;
	line-height: 2em;
	letter-spacing: .05em;
	text-align: left;
}
#feature ul.list li img {
	display: block;
	width: auto;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	max-height: 200px;
}
#feature ul.exm {
	margin: 0;
	padding: 0;
}
#feature ul.exm li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 5px 5px 5px 1em;
	background: #fff;
	box-shadow: none;
	font-size: 16px;
	font-weight: 400;
	text-indent: -1em;
	line-height: 1.5em;
}
#feature ul.exm li:before {
	content: "・";
}
#feature ul.list li img {
	display: block;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
#feature ul.notice {
	display: block;
	width: fit-content;
	margin: 0 auto 50px;
	padding: 0;
}
#feature ul.notice li {
	display: block;
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5em;
	letter-spacing: .05em;
}
#feature .comparison {
	width: 100%;
	max-width: 900px;
	margin: 0 auto 50px;
	}
#feature .comparison table {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	border: 1px solid #ccc;
	border-collapse: collapse;
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
	}
#feature .comparison thead th {
	padding: 10px 0;
	color: #fff;
	border: 1px solid #ccc;
	background: #1B9FFF;
	}
#feature .comparison tbody th {
	padding: 10px 0;
	font-weight: 400;
	border: 1px solid #ccc;
	background: #fff;
	}
#feature .comparison tbody td {
	width: 45%;
	padding: 10px 0;
	border: 1px solid #ccc;
	background: #fff;
	}
#feature .comparison tbody td span {
	display: block;
	padding: 20px 0;
	font-size: 50px;
	}
#feature .comparison tbody td span.blue {
	color: #1B9FFF;
	}
/* 特長ここまで */

/* 利用シーンここから */
#scene ul.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 0;
}
#scene ul.list li {
	display: block;
	width: 48%;
	margin: 0;
	padding: 0;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
}
#scene ul.list li h3 {
	margin: 0;
	padding: 10px 0;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: .1em;
	text-align: center;
	background: #1B9FFF;
}
#scene ul.list li p {
	display: block;
	margin: 0;
	padding: 15px 0;
	font-size: 16px;
	line-height: 1.8em;
}
#scene ul.exm {
	display: block;
	margin: 0;
	padding: 15px;
}
#scene ul.exm li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 5px 5px 5px 1em;
	background: #fff;
	box-shadow: none;
	text-indent: -1em;
}
#scene ul.exm li:before {
	content: "・";
}
#scene ul.list li img {
	display: block;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
/* 利用シーンここまで */

/* 機能ここから */
#function ul.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0;
}
#function ul.list li {
	display: block;
	width: 48%;
	margin: 0;
	padding: 0;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
}
#function ul.list li h3 {
	margin: 0;
	padding: 10px 0;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: .1em;
	text-align: center;
	background: #1B9FFF;
}
#function ul.list li p {
	display: block;
	min-height: 120px;
	margin: 0;
	padding: 15px 0;
	font-size: 16px;
	line-height: 1.8em;
}
#function ul.list li img {
	display: block;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
/* 機能ここまで */

/* 導入の流れここから */
#flow div {
	position: relative;
	display: block;
	width: 100%;
	max-width: 800px;
	margin: 0 auto 20px;
}
#flow h3 {
	position: relative;
	display: block;
	margin: 0;
	padding: 10px 10px 10px 50px;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	line-height: 1em;
	text-align: left;
	letter-spacing: .1em;
	background: #4EB4FF;
}
#flow h3 span {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 40px;
	padding: 10px 0;
	text-align: center;
	letter-spacing: 0;
	background: #1B9FFF;
	}
#flow div p {
	display: block;
	margin: 0 0 10px;
	padding: 10px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	letter-spacing: .1em;
	text-align: left;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
}
#flow div ul {
	display: block;
	margin: 0;
	padding: 20px;
	background: #fff;
}
#flow div li {
	display: block;
	margin: 0;
	padding: 0 0 0 1em;
	font-size: 16px;
	font-weight: 400;
	line-height: 2em;
	letter-spacing: .05em;
	text-indent: -1em;
}
#flow div li:before {
	content: "・";
}
#flow div li span {
	font-weight: 500;
}
#flow div img {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0,-50%);
	display: block;
	width: auto;
	max-height: 200px;
}
/* 導入の流れここまで */

/* 導入イメージここから */
#introduction div {
	display: block;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 20px;
	padding: 0 0 30px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
}
#introduction h3 {
	margin: 0 0 20px;
	padding: 20px 0;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: .1em;
	text-align: center;
	background: #1B9FFF;
}
#introduction h4 {
	margin: 0 0 10px;
	padding: 0;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.5em;
	letter-spacing: .1em;
	text-align: center;
}
#introduction div p {
	margin: 0 0 20px;
	padding: 0 20px;
	font-size: 16px;
	font-weight: 400;
	line-height: 2em;
	letter-spacing: .05em;
	text-align: center;
}
#introduction img {
	display: block;
	width: 90%;
	margin: 0 auto 20px;
	padding: 0;
}
/* 導入イメージここまで */

/* 導入事例ここから */
#case ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0;
}
#case ul li {
	display: block;
	width: 48%;
	margin: 0;
	padding: 0;
	margin: 0 auto 20px;
	padding: 0 0 30px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
}
#case div {
	display: block;
	width: 100%;
	max-width: 800px;
	margin: 0 auto 20px;
	padding: 0 0 30px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
}
#case h3 {
	margin: 0 0 20px;
	padding: 20px 0;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: .1em;
	text-align: center;
	background: #1B9FFF;
}
#case h4 {
	margin: 0 0 10px;
	padding: 0;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.5em;
	letter-spacing: .1em;
	text-align: center;
}
#case p {
	margin: 0 0 20px;
	padding: 0 20px;
	font-size: 16px;
	font-weight: 400;
	line-height: 2em;
	letter-spacing: .05em;
	text-align: center;
}
#case img {
	display: block;
	width: 90%;
	margin: 0 auto 20px;
	padding: 0;
}
/* 導入事例ここまで */

/* 仕様ここから */
#spec table {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	border: 1px solid #ccc;
	border-collapse: collapse;
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
	}
#spec tbody th {
	padding: 10px;
	color: #fff;
	border: 1px solid #ccc;
	background: #1B9FFF;
	}
#spec tbody td {
	padding: 10px;
	border: 1px solid #ccc;
	background: #fff;
	}
#spec tbody td span {
	display: block;
	padding: 20px 0;
	font-size: 50px;
	}
#spec tbody td span.blue {
	color: #1B9FFF;
	}
/* 仕様ここまで */

/* プランここから */
#plan h3 {
	display: block;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 10px 0;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	background: #1B9FFF;
	}
#plan ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
	}
#plan li {
	display: block;
	width: 18%;
	padding: 20px 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	text-align: center;
	background: #fff;
	border: 1px solid #ccc;
	}
#plan ul.notice {
	display: block;
	width: fit-content;
	margin: 0 auto 50px;
	padding: 0;
}
#plan ul.notice li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5em;
	letter-spacing: .05em;
	background: none;
	border: 0;
}
#plan a.contract {
	display: block;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
	padding: 20px 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	text-align: center;
	background: #fff;
	border: 1px solid #1B9FFF;
	border-radius: 30px;
}
/* プランここまで */

/* 料金ここから */
#fee ul.price {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
	}
#fee ul.price li {
	display: block;
	width: 46%;
	}
#fee ul.price li h3 {
	display: block;
	margin: 0 0 10px;
	padding: 10px 0;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	background: #1B9FFF;
	}
#fee ul.price li p {
	display: block;
	margin: 0;
	padding: 20px 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	text-align: center;
	background: #fff;
	border: 1px solid #ccc;
	}
#fee ul.notice {
	display: block;
	width: fit-content;
	margin: 0 auto;
	padding: 0;
	}
#fee ul.notice li {
	display: block;
	margin: 0;
	padding: 5px;
	font-size: 10px;
	font-weight: 400;
	}
/* 料金ここまで */

/* 商品一覧ここから */
#products ul.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0;
}
#products ul.list li {
	display: block;
	width: 30%;
	margin: 0;
	padding: 0;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
}
#products ul.list li h3 {
	display: block;
	margin: 0;
	padding: 26.5px 0;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: .1em;
	text-align: center;
	background: #1B9FFF;
}
#products ul.list li h3.wide {
	padding: 13px 0;
}
#products ul.list li h4 {
	display: block;
	margin: 0;
	padding: 15px 0 0;
	color: #1B9FFF;
	font-size: 20px;
	line-height: 1.8em;
}
#products ul.list li p {
	display: block;
	min-height: 145px;
	margin: 0;
	padding: 15px 10px;
	font-size: 16px;
	line-height: 1.8em;
}
#products ul.exm {
	display: block;
	margin: 0;
	padding: 15px;
}
#products ul.exm li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 5px 5px 5px 1em;
	background: #fff;
	box-shadow: none;
	text-indent: -1em;
}
#products ul.exm li:before {
	content: "・";
}
#products ul.list li img {
	display: block;
	width: 100%;
	margin: 0 auto 20px;
	padding: 0;
}
/* 商品一覧ここまで */

/* 規約ここから */
#contract p {
	display: block;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 2rem;
	text-align: left;
}
/* 規約ここまで */

/* 共通ボタンここから */
a.bt {
	display: block;
	width: 120px;
	margin: 0 auto 20px;
	padding: 8px 0;
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	line-height: 1em;
	text-align: center;
	background: #1B9FFF;
	border: 1px solid #1B9FFF;
	border-radius: 15px;
	transition: .3s ease;
}

a.bt:hover {
	color: #1B9FFF;
	background: #fff;
	border: 1px solid #1B9FFF;
}
/* 共通ボタンここまで */

/* CVボタンここから */
.bt_cv {
	margin: 0;
	padding: 50px 4vw;
	background: #f4f4f4;
}
.bt_cv a {
	display: block;
	width: 400px;
	margin: 0 auto;
	padding: 28px 0;
	color: #fff;
	font-size: 24px;
	font-weight: 400;
	line-height: 1em;
	text-align: center;
	background: #1B9FFF;
	border: 1px solid #1B9FFF;
	border-radius: 50px;
	transition: .3s ease;
}
.bt_cv a:hover {
	color: #1B9FFF;
	background: #fff;
	border: 1px solid #1B9FFF;
}
/* CVボタンここまで */


.pagetop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 40px;
	width: 40px;
	background: #fff;
	border: solid 2px #1B9FFF;
	border-radius: 50%;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 2;
	cursor: pointer;
}
.pagetop__arrow {
	display: block;
	height: 10px;
	width: 10px;
	border-top: 3px solid #1B9FFF;
	border-right: 3px solid #1B9FFF;
	transform: translateY(20%) rotate(-45deg);
}



/* タブレットここから */
@media screen and (max-width: 1024px) {
}
/* タブレットここまで */

/* スマホここから */
@media screen and (max-width: 600px) {

.header {
	height: 50px;
}
.header .logo {
	width: 133.4424px;
	height: 30px;
}

header p {
	position: absolute;
	left: 170px;
	top: 7px;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
}

.hamburger-menu {
	position: absolute;
	right: 0px;
	top: 0px;
	display: block;
	width: 50px;
	height: 50px;
	border: none;
	background: transparent;
	appearance: none;
	padding: 0;
	cursor: pointer;
}

.hamburger-menu__bar {
	display: inline-block;
	width: 44%;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	transition: .5s;
}
.hamburger-menu__bar:first-child {
	top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
	top: 24px;
}
.hamburger-menu__bar:last-child {
	top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
	top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
	display: none;
}

.navigation {
	display: none;
	background: rgba(255,255,255,.8);
	position: absolute;
	right: 0;
	top: 50px;
	width: 100%;
	padding: 0;
	z-index: 9999;
}

.navigation__list {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

.navigation__list-item {
	display: block;
	margin: 0;
	padding: 0;
	height: auto;
	border-bottom: solid 1px #ccc;
}

.navigation__list-item:first-child {
	border-top: solid 1px #ccc;
}

.navigation__link {
	display: block;
	color: #1B9FFF;
	background: none;
	font-size: 16px;
	font-weight: 400;
	padding: 24px 20px;
	transition: .5s;
}
@media (hover: hover) and (pointer: fine) {
	.navigation__link:hover {
		color: #fff;
		background: #1B9FFF;
	}
}

.navigation__link i {
	display: inline;
	margin-right: 5px;
}

.subnav_list {
	display: block;
	position: relative;
	left: auto;
	top: auto;
	padding-bottom: 20px;
	opacity: 1;
}

.navigation__list-item:hover .subnav_list {
	top: 0px;
}

.subnav_list-item a {
	display: block;
	margin: 0;
	padding: 10px 24px;
	color: #1B9FFF;
	background: none;
	box-shadow: none;
	font-size: 16px;
	font-weight: 400;
	text-decoration: none;
	white-space: nowrap;
	transition: .3s ease;
}

footer {
	padding: 50px 0 20px;
}

footer ul {
	display: none;
}

footer p {
	font-size: 14px;
}

footer p span {
	display: none;
}

.sp {
	display: inline;
	}

/* ページタイトルここから */
.page_title {
	padding: 10vw 4vw;
}
.page_title h1 {
	font-size: 6vw;
	text-align: center;
}
/* ページタイトルここまで */

/* カラムここから */
.column {
	padding: 15vw 4vw 10vw;
}
.column h2 {
	margin: 0 0 5vw;
	padding: 0;
	font-size: 5vw;
}
.column p {
	margin: 0 0 10vw;
	font-size: 4vw;
	line-height: 2em;
	text-align: left;
}
.column img {
	margin: 0 auto 10vw;
}
/* カラムここまで */

/* ソリューションここから */
#solution ul.list li {
	width: 100%;
	padding: 0 0 30px;
}
#solution ul.list li h3 {
	font-size: 5vw;
}
#solution ul.list li p {
	font-size: 4vw;
}
#solution ul.list li img {
	width: auto;
	max-width: 100%;
}
/* ソリューションここまで */

/* メリットここから */
#merit h3 {
	font-size: 5vw;
}
#merit div ul {
	padding: 4vw;
}
#merit div li {
	padding: 0 110px .5em 1em;
	font-size: 4vw;
}
#merit div li span {
	font-weight: 500;
}
#merit div img {
	width: auto;
	max-width: 100px;
}
/* メリットここまで */

/* 利用シーンここから */
#scene ul.list li {
	width: 100%;
}
#scene ul.list li h3 {
	font-size: 5vw;
}
#scene ul.list li p {
	min-height: auto;
	padding: 4vw;
	font-size: 4vw;
	line-height: 1.8em;
}
/* 利用シーンここまで */

/* 機能ここから */
#function ul.list li {
	width: 100%;
}
#function ul.list li p {
	min-height: auto;
	padding: 4vw;
	font-size: 4vw;
	line-height: 1.8em;
}
/* 機能ここまで */

/* 導入の流れここから */
#flow h3 {
	font-size: 5vw;
}
#flow ul {
	padding: 4vw;
}
#flow li {
	padding: 0 110px .5em 1em;
	font-size: 4vw;
}
#flow div img {
	width: auto;
	max-width: 120px;
}
/* 導入の流れここまで */

/* 導入事例ここから */
#case h3 {
	font-size: 4.5vw;
}
#case h4 {
	font-size: 4.25vw;
}
#case p {
	font-size: 4vw;
	text-align: left;
}
#case p br {
	display: none;
}
#case ul li {
	width: 100%;
}
/* 導入事例ここまで */

/* 特長ここから */
#feature ul.list li {
	width: 100%;
}
/* 特長ここまで */

/* プランここから */
#plan li {
	width: 30%;
	padding: 20px 0;
	font-size: vw;
	}
#plan p.option {
	text-align: center;
}
/* プランここまで */

/* 商品一覧ここから */
#products ul.list li {
	width: 100%;
}
#products ul.list li h3 {
	font-size: 5vw;
}
#products ul.list li p {
	min-height: auto;
	padding: 4vw;
	font-size: 4vw;
	line-height: 1.8em;
}
/* 商品一覧ここまで */

/* 共通ボタンここから */
a.bt {
	width: 200px;
	margin: 0 auto 40px;
	padding: 16px 0;
	font-size: 16px;
	border-radius: 30px;
}
/* 共通ボタンここまで */

/* CVボタンここから */
.bt_cv {
	padding: 10vw 4vw;
}
.bt_cv a {
	width: 270px;
	padding: 18px 0;
	font-size: 4vw;
}
/* CVボタンここまで */

}
/* スマホここまで */
