@charset "utf-8";


/* --------------------------------------- *

	Design CSS

 * --------------------------------------- */
html {
	font-size: 62.5%; /* 10px */
}
body {
	display: flex;
	flex-flow: column;
	min-height: 100vh;
	font-family: 'BIZ UDPGothic', sans-serif;
	color: #333;
	font-size: 1.4rem;
	line-height: 1.8;
	letter-spacing: .1em;
	text-align: center;
}
@media screen and (max-width: 979px) {
	body {
		font-size: 1.2rem;
		line-height: 1.6;
	}
}
img {
    max-width: 100%;
    width /***/: auto; /* IE8のみ */
    height: auto;
    vertical-align: bottom;
}
p {
	text-shadow: 1px 1px 1px rgba(255,255,255,0.3);
}
/* 文字位置 */
.txtL { text-align: left; }
.txtC { text-align: center; }
.txtR { text-align: right; }

/* link ---------------------------*/
a {
    color: #000;
	text-decoration: none;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}


/* --------------------------------------- *

	common

 * --------------------------------------- */
@media screen and (min-width: 980px) {
	.pcNone {
		display: none;
	}
}
@media screen and (max-width: 979px) {
	.wrap {
		padding: 0 1.6rem 0;
	}
	.spNone {
		display: none;
	}
}

/* ==========================
/* header
   ========================== */
/*pc*/
@media screen and (min-width: 980px) {
	header {
		position: fixed;
		top: 0;
		width: 100%;
		height: 6rem;
		border-bottom: 1px solid #f1f1f1;
		background-color: rgba(255, 255, 255, 1);
		z-index: 9999;
	}
	header .header {
		display: flex;
		align-items: center;
		margin: 0 auto;
		width: 100%;
		max-width: 98rem;
	}
	header .header .logo {
		display: flex;
		margin-right: auto;
		padding: 3px 0;	
	}
	header .header .logo a {
		width: 12rem;
		height: 6rem;
	}
	header .header #g-nav-list {
		display: flex;
	}
	header .header #g-nav-list ul {
		display: flex;
		font-size: 92.85%;
	}
	header .header #g-nav-list ul.menu-list-in li {
		margin-right: 28px;
	}
	header .header #g-nav-list ul.menu-list-out li {
		margin-left: 28px;
		font-weight: bold;
	}
}
/*sp*/
@media screen and (max-width: 979px) {
	header {
		position: fixed;
		top: 0;
		width: 100%;
		height: 4rem;
		background-color: rgba(255, 255, 255, 1);
		z-index: 9999;
	}
	header .logo {
		display: flex;
		align-content: center;
		margin-left: 6px;
		padding: 3px 0;
	}
	header .logo a {
		width: 10rem;
		height: 4rem;	
	}
	header .logo img {}
	#g-nav {
		/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
		position: fixed;
		z-index: 999;
		/*ナビのスタート位置と形状*/
		top: 0;
		right: -100%;
		width: 30%;
		height: 100vh;/*ナビの高さ*/
		background: #fff;
		/*動き*/
		transition: all 0.6s;
	}
	/*アクティブクラスがついたら位置を0に*/
	#g-nav.panelactive{
		right: 0;
	}
	/*ナビゲーションの縦スクロール*/
	#g-nav.panelactive #g-nav-list {
		/*ナビの数が増えた場合縦スクロール*/
		position: fixed;
		z-index: 999;
		width: 30%;
		height: 100vh;/*表示する高さ*/
		overflow: auto;
		background-color: #fff;
		-webkit-overflow-scrolling: touch;
	}
	/*ナビゲーション*/
	#g-nav,
	#g-nav.panelactive #g-nav-list {
		width: 100%;
		background-color: #fff;
	}
	#g-nav ul {
		padding-top: 6rem;
	}
	/*リストのレイアウト設定*/
	#g-nav li {
		list-style: none;
		text-align: left;
		border-bottom: 1px dotted #ccc;
	}
	#g-nav li:first-child {
		border-top: 1px dotted #ccc;
	}
	#g-nav li a {
		display: block;
		padding: 12px 0 12px 70px;
		background-repeat: no-repeat;
		background-size: 30px;
		background-position: 30px center;
		color: #333;
		text-decoration: none;
		letter-spacing: 0.1em;
		font-weight: bold;
		text-transform: uppercase;
	}

	/*========= ボタンのためのCSS ===============*/
	.openbtn1 {
		position: fixed;
		z-index: 9999;/*ボタンを最前面に*/
		top: 0;
		right: 5px;
		cursor: pointer;
		width: 50px;
		height: 50px;
	}
	/*×に変化*/
	.openbtn1 span {
		display: inline-block;
		position: absolute;
		left: 14px;
		border-radius: 2px;
		width: 45%;
		height: 3px;
		background-color: #666;
		transition: all .4s;
	  }
	.openbtn1 span:nth-of-type(1) {
		top: 10px;
	}
	.openbtn1 span:nth-of-type(2) {
		top:18px;
	}
	.openbtn1 span:nth-of-type(3) {
		top:26px;
	}
	.openbtn1.active span:nth-of-type(1) {
		top: 18px;
		left: 18px;
		transform: translateY(6px) rotate(-45deg);
		width: 30%;
	}
	.openbtn1.active span:nth-of-type(2) {
		opacity: 0;
	}
	.openbtn1.active span:nth-of-type(3){
		top: 30px;
		left: 18px;
		transform: translateY(-6px) rotate(45deg);
		width: 30%;
	}
}


/* ==========================
/* footer
   ========================== */
footer {
	position: relative;
	width: 100%;
	background-color: #f9f9f9;
}
@media screen and (min-width: 980px) {
	footer .footer {
		display: flex;
		align-items: center;
		margin: 0 auto;
		width: 100%;
		max-width: 98rem;
		height: 5rem;
		font-size: 85.71%;
	}
	footer .footer .logo {
		order: 1;
		margin-right: auto;
		padding: 3px 0;
		width: 8rem;
		height: 4rem;
	}
	footer .footer .f-nav-list {
		order: 2;
		display: flex;
	}
	footer .footer .f-nav-list li {
		margin-right: 24px;
	}
	footer .footer p.copy {
		order: 3;
	}
}
/*sp*/
@media screen and (max-width: 979px) {
	footer {}
	footer .footer {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
	footer .footer .logo {
		order: 2;
		padding-left: 1.6rem;
		width: 8rem;
		height: 4rem;
	}
	footer .footer .f-nav-list {
		order: 1;
		margin-bottom: 12px;
		width: 100%;
		border-top: 1px solid #ccc;
	}
	footer .footer .f-nav-list li a {
		display: block;
		padding: 12px 0;
		border-bottom: 1px solid #ccc;
	}
	footer .footer p.copy {
		order: 3;
		padding-right: 1.6rem;
	}
}

/* ==========================
/* main
   ========================== */
main {
	flex: 1;
	padding-top: 6rem;
}
@media screen and (max-width: 979px) {
	main {
		padding-top: 4rem;
	}
}

/* ==========================
/* top page
   ========================== */
section {
	background-color: #fff;
}
section.bg {
	background-color: #dfeff7;
}
section .main {
	margin: 0 auto;
	padding-top: 60px;
	padding-bottom: 60px;
	max-width: 960px;
}
section h2 {
	margin-bottom: 32px;
	padding-bottom: 12px;
	background-image: url("../images/icon_line.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	font-size: 200%;
}

/*sec1*/
.sec1 {}
.sec1 .ttlArea {
	display: flex;
	flex-direction: column;
	align-content: center;
}
.sec1 .ttlArea .ttl {
	margin-bottom: 1.2rem;
}
@media screen and (min-width: 980px) {
	.sec1 .ttlArea .ttl span {
		display: inline-block;
		margin-top: -1.2rem;
		margin-bottom: -1.2rem;
		margin-left: 1.2rem;
		font-size: 185.71%;
		line-height: 1;
	}
}
@media screen and (max-width: 979px) {
	.sec1 .ttlArea .ttl span {
		margin-top: -1.2rem;
		margin-bottom: -1.2rem;
		margin-left: 1.2rem;
		font-size: 185.71%;
		line-height: 1;
	}
}
.sec1 .descArea {
	display: flex;
	justify-content: space-between;
}
.sec1 .descArea .img-a {
	order: 1;
}
.sec1 .descArea .img-b {
	order: 3;
}
.sec1 .descArea .desc {
	order: 2;
	margin-top: 30px;
}
.sec1 .descArea .desc ul {
	font-size: 114.28%;
	color: #009245;
	text-align: left;
}
.sec1 .descArea .desc li {
	padding-left: 30px;
	background-image: url("../images/sec1_icon.png");
	background-repeat: no-repeat;
	background-position: left center;
}
@media screen and (max-width: 979px) {
	.sec1 .descArea {
		flex-direction: column;
		align-content: center;
		margin-top: 30px;
	}
	.sec1 .descArea .desc {
		margin: 30px auto 0;
	}
}
.sec1 .inquiryArea {}
.sec1 .inquiryArea p {
	font-size: 142.85%;
}
.sec1 .inquiryArea ul {
	display: flex;
	justify-content: center;
	margin-top: 12px;
}
.sec1 .inquiryArea ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	border-radius: 100vh;
	box-shadow: 2px 3px #959da1;
	color: #fff;
	text-align: center;
	font-weight: bold;
}
.sec1 .inquiryArea ul li a.btnDl {
	margin-right: 12px;
	background-color: #0089cb;
	font-size: 114.28%;
}
.sec1 .inquiryArea ul li a.btnTrial {
	margin-left: 12px;
	background-color: #f08300;
	font-size: 114.28%;
}
@media screen and (min-width: 980px) {
	.sec1 .inquiryArea ul li a {
		width: 260px;
	}
}
@media screen and (max-width: 979px) {
	.sec1 .inquiryArea {
		margin-top: 30px;
	}
	.sec1 .inquiryArea ul {
		justify-content: space-around;
		width: 100%;
	}
	.sec1 .inquiryArea ul li {
		width: 50%;
	}
}
.sec1 .newsArea {
	margin-top: 60px;
	padding: 30px 40px;
	width: 100%;
	max-width: 980px;
	background-color: #fff;
	border-radius: 16px;
}
.sec1 .newsArea p.ttl {
	font-size: 142.85%;
	color: #0089cb;
}
.sec1 .newsArea p.more {
	text-align: right;
}
.sec1 .newsArea a {
	text-decoration: underline;
}
@media screen and (min-width: 980px) {
	.sec1 .newsArea dl {
		display: flex;
		flex-wrap: wrap;
		margin: 24px 0;
		width: 100%;
		border-top: 1px solid #ccc;
		text-align: left;
	}
	.sec1 .newsArea dt {
		padding: 20px 0;
		width: 20%;
		border-bottom: 1px solid #ccc;
	}
	.sec1 .newsArea dd {
		padding: 20px 0;
		width: 80%;
		border-bottom: 1px solid #ccc;
	}
}
@media screen and (max-width: 979px) {
	.sec1 .newsArea {
		padding: 15px 20px;
	}
	.sec1 .newsArea dl {
		margin: 12px 0;
		border-top: 1px solid #ccc;
		text-align: left;
	}
	.sec1 .newsArea dt {
		padding-top: 10px;
	}
	.sec1 .newsArea dd {
		padding-bottom: 10px;
		border-bottom: 1px solid #ccc;
	}
}
/*sec2*/
.sec2 {}
.sec2 .troubleAera {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.sec2 .troubleAera li {
	padding: 12px;
	width: calc((100% - 24px) / 3);
}
.sec2 .troubleAera li h3 {
	font-size: 171.42%;
	color: #2693cf;
	font-weight: bold;
}
.sec2 .troubleAera li .img {
	margin: 12px 0;
}
@media screen and (max-width: 524px) {
	.sec2 .troubleAera {
		flex-direction: column;
	}
	.sec2 .troubleAera li {
		width: 100%;
	}
}
/*sec3*/
.sec3 {}
.sec3 .basic-function {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style-type: none;
}
.sec3 .basic-function li {
	margin-bottom: 30px;
	padding: 0 30px;
	width: calc((100% - 40px) / 2);
	background-color: #fff;
	border-radius: 16px;
	text-align: left;
}
.sec3 .basic-function li.ill {
	background-color: transparent;
}
.sec3 .basic-function li .ttlArea {
	display: flex;
	align-items: flex-end;
}
.sec3 .basic-function li .ttlArea .midashi {
	padding: 20px 5px 10px 10px;
	background-color: #22ac38;
	border-radius: 0 0 6px 6px;
	font-size: 228.57%;
	color: #fff;
	text-align: center;
	line-height: 1;
}
.sec3 .basic-function li .ttlArea .midashi span {
	display: inline-block;
	font-size: 40%;
}
.sec3 .basic-function li .ttlArea h3 {
	margin-left: 12px;
	font-size: 157.14%;
	color: #22ac38;
}
.sec3 .basic-function li .bodyArea {
	display: flex;
	margin: 30px 0;
}
.sec3 .basic-function li .bodyArea .img {
	flex-shrink: 0;
}
.sec3 .basic-function li .bodyArea p {
	margin-left: 16px;
}
@media screen and (max-width: 860px) {
	.sec3 .basic-function {
		flex-direction: column;
	}
	.sec3 .basic-function li {
		width: 100%;
	}
}
@media screen and (max-width: 414px) {
	.sec3 .basic-function li .bodyArea {
		flex-direction: column;
	}
	.sec3 .basic-function li .bodyArea .img {
		text-align: center;
	}
	.sec3 .basic-function li .bodyArea p {
		margin: 16px 0 0;
	}
}
/*sec4*/
.sec4 {}
.sec4 .option-function {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style-type: none;
}
.sec4 .option-function li {
	margin-bottom: 30px;
	padding: 0 30px;
	width: calc((100% - 40px) / 2);
	background-color: #f9f9f9;
	border-radius: 16px;
	text-align: left;
}
.sec4 .option-function li.ill {
	background-color: transparent;
}
.sec4 .option-function li .ttlArea {
	display: flex;
	align-items: flex-end;
}
.sec4 .option-function li .ttlArea .midashi {
	padding: 20px 5px 10px 10px;
	background-color: #f08300;
	border-radius: 0 0 6px 6px;
	font-size: 228.57%;
	color: #fff;
	text-align: center;
	line-height: 1;
}
.sec4 .option-function li .ttlArea .midashi span {
	display: inline-block;
	font-size: 40%;
}
.sec4 .option-function li .ttlArea h3 {
	margin-left: 12px;
	font-size: 157.14%;
	color: #f08300;
}
.sec4 .option-function li .bodyArea {
	display: flex;
	margin: 30px 0;
}
.sec4 .option-function li .bodyArea .img {
	flex-shrink: 0;
}
.sec4 .option-function li .bodyArea p {
	margin-left: 16px;
}
@media screen and (max-width: 860px) {
	.sec4 .option-function {
		flex-direction: column;
	}
	.sec4 .option-function li {
		width: 100%;
	}
}
@media screen and (max-width: 414px) {
	.sec4 .option-function li .bodyArea {
		flex-direction: column;
	}
	.sec4 .option-function li .bodyArea .img {
		text-align: center;
	}
	.sec4 .option-function li .bodyArea p {
		margin: 16px 0 0;
	}
}
/*sec5*/
.sec5 {}
.sec5 .txt {}
.sec5 .txt p {
	font-size: 142.85%;
	line-height: 1.4;
}
.sec5 .txt p span {
	color: #f08300;
	font-weight: bold;
}
.sec5 .txt p span b {
	font-size: 180%;
}
.sec5 .txt p.att {
	margin-top: 16px;
	font-size: 114.28%;
}
.sec5 h3 {
	margin: 24px auto;
	font-size: 171.42%;
	color: #0089cb;
}
.sec5 .basic-charge {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}
.sec5 .basic-charge .initial-cost {
	padding: 20px;
	background-color: #fff;
	width: 200px;
	border-radius: 16px;
}
.sec5 .basic-charge .monthly-cost {
	padding: 20px;
	background-color: #fff;
	border-radius: 16px;
}
.sec5 .basic-charge .initial-cost h4,
.sec5 .basic-charge .monthly-cost h4 {
	margin-bottom: 24px;
	padding: 3px 0;
	background-color: #f08300;
	color: #fff;
}
.sec5 .basic-charge .initial-cost p {
	font-size: 171.42%;
}
.sec5 .basic-charge .initial-cost p span {
	font-size: 285.71%;
}
.sec5 .basic-charge .monthly-cost ul {
	display: flex;
}
.sec5 .basic-charge .monthly-cost ul li {
	flex: 1;
}
.sec5 .basic-charge .monthly-cost ul li dl {
	padding: 0 6px;
}
.sec5 .basic-charge .monthly-cost ul li dl dt {
	margin-bottom: 12px;
}
.sec5 .basic-charge .monthly-cost ul li dl dd {
	font-size: 85.71%;
}
.sec5 .basic-charge .monthly-cost ul li dl dd span {
	font-size: 142.85%;
	font-weight: bold;
}
@media screen and (max-width: 860px) {
	.sec5 .basic-charge {
		flex-direction: column;
		align-items: center;
	}
	.sec5 .basic-charge .initial-cost {
		margin-bottom: 24px;
	}
	.sec5 .basic-charge .monthly-cost {
		width: 100%;
	}
}
@media screen and (max-width: 640px) {
	.sec5 .basic-charge .initial-cost {
		width: 100%;
	}
	.sec5 .basic-charge .monthly-cost ul {
		flex-direction: column;
	}
	.sec5 .basic-charge .monthly-cost ul li dl dt {
		margin-bottom: 6px;
		border: 1px solid #ccc;
	}
	.sec5 .basic-charge .monthly-cost ul li dl dd {
		margin-bottom: 12px;
	}
}
.sec5 .option-charge {
	padding: 20px;
	background-color: #fff;
	border-radius: 16px;
}
.sec5 .option-charge h4 {
	margin-bottom: 24px;
	padding: 3px 0;
	background-color: #f08300;
	color: #fff;
}
.sec5 .option-charge ul {
	display: flex;
}
.sec5 .option-charge ul li {
	flex: 1;
}
.sec5 .option-charge ul li dl {
	padding: 0 6px;
}
.sec5 .option-charge ul li dl dt {
	margin-bottom: 12px;
}
.sec5 .option-charge ul li dl dd {
	font-size: 85.71%;
}
.sec5 .option-charge ul li dl dd span {
	font-size: 142.85%;
	font-weight: bold;
}
@media screen and (max-width: 640px) {
	.sec5 .option-charge ul {
		flex-direction: column;
	}
	.sec5 .option-charge ul li dl dt {
		margin-bottom: 6px;
		border: 1px solid #ccc;
	}
	.sec5 .option-charge ul li dl dd {
		margin-bottom: 12px;
	}
}
/*sec6*/
.sec6 {}
.sec6 .step {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.sec6 .step li {
	padding: 12px;
}
.sec6 .step li.flow {
	width: 30%;
}
.sec6 .step li.flow h3 {
	font-size: 171.42%;
	color: #2693cf;
	font-weight: bold;
}
.sec6 .step li.flow .img {
	margin: 12px 0;
}
.sec6 .step li.flow h4 {
	font-size: 128.57%;
	font-weight: bold;
}
.sec6 .step li.flow p span {
	font-weight: bold;
}
.sec6 .step li.arrow {
	width: 5%;
	background-image: url("../images/sec6_arrow.png");
	background-repeat: no-repeat;
	background-position: center center;
}
@media screen and (max-width: 524px) {
	.sec6 .step {
		flex-direction: column;
	}
	.sec6 .step li.flow,
	.sec6 .step li.arrow {
		width: 100%;
	}
	.sec6 .step li.arrow {
		height: 60px;
		transform: rotate(90deg);
	}
}
.sec6 .motion {
	margin-top: 20px;
	padding: 40px;
	background-color: #f9f9f9;
	border-radius: 16px;
}
.sec6 .motion h3 {
	margin-bottom: 20px;
	font-size: 128.57%;
	font-weight: bold;
}
.sec6 .motion h4 {
	margin-bottom: 20px;
	padding-bottom: 3px;
	border-bottom: 1px solid #999;
	font-size: 114.28%;
}
.sec6 .motion .web-browser {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.sec6 .motion .web-browser .win {
	width: 55%;
}
.sec6 .motion .web-browser .mac {
	width: 45%;
}
.sec6 .motion .web-browser .win dl,
.sec6 .motion .web-browser .mac dl {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
	text-align: left;
}
.sec6 .motion .web-browser .win dl dt {
	width: 20%;
}
.sec6 .motion .web-browser .win dl dd {
	width: 80%;
}
.sec6 .motion .web-browser .mac dl dt {
	width: 40%;
}
.sec6 .motion .web-browser .mac dl dd {
	width: 60%;
}
.sec6 .motion .sp-appli {
	display: flex;
	justify-content: center;
	width: 100%;
}
.sec6 .motion .sp-appli dl {
	width: calc(100% / 2);
	display: flex;
	justify-content: center;
}
.sec6 .motion .sp-appli dl dt {
	width: 30%;
}
@media screen and (max-width: 979px) {
	.sec6 .motion .web-browser {
		flex-direction: column;
	}
	.sec6 .motion .web-browser .win,
	.sec6 .motion .web-browser .mac {
		width: 100%;
	}
	.sec6 .motion .web-browser .win dl dt,
	.sec6 .motion .web-browser .mac dl dt {
		width: 35%;
	}
	.sec6 .motion .web-browser .win dl dd,
	.sec6 .motion .web-browser .mac dl dd {
		width: 60%;
	}
	.sec6 .motion .sp-appli {
		flex-direction: column;
		justify-content: flex-start;
		text-align: left;
		width: 100%;
	}
	.sec6 .motion .sp-appli dl {
		justify-content: flex-start;
		width: 100%;
	}
	.sec6 .motion .sp-appli dl dt {
		width: 35%;
	}
	.sec6 .motion .sp-appli dl dd {
		width: 65%;
	}
}
@media screen and (max-width: 460px) {
	.sec6 .motion .web-browser .win dl,
	.sec6 .motion .web-browser .mac dl,
	.sec6 .motion .sp-appli dl {
		flex-direction: column;
	}
	.sec6 .motion .web-browser .win dl dt,
	.sec6 .motion .web-browser .mac dl dt,
	.sec6 .motion .sp-appli dl dt {
		margin-bottom: 3px;
		padding-bottom: 3px;
		width: 100%;
		border-bottom: 1px dotted#999;
	}
	.sec6 .motion .web-browser .win dl dd,
	.sec6 .motion .web-browser .mac dl dd,
	.sec6 .motion .sp-appli dl dd {
		margin-bottom: 12px;
		width: 100%;
	}
}
/*sec7*/
.sec7 {}
.sec7 .triarlArea {}
.sec7 .triarlArea .triarl-ill {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 90px;
	font-size: 128.57%;
	color: #f08300;
	font-weight: bold;
} 
.sec7 .triarlArea .btnTrial a {
	display: inline-block;
	padding: 16px 60px;
	background-color: #f08300;
	border-radius: 100vh;
	box-shadow: 2px 3px #959da1;
	font-size: 142.85%;
	color: #fff;
	text-align: center;
	font-weight: bold;
}
.sec7 .att {
	margin: 36px auto;
	padding: 12px 24px;;
	border-radius: 16px;
	width: 100%;
	max-width: 700px;
	background-color: #fff;
	text-align: left;
}
.sec7 .att p {
	margin: 12px 0;
}
.sec7 .att p a {
	text-decoration: underline;
}
.sec7 .inquiryArea {}
.sec7 .inquiryArea ul {
	display: flex;
	justify-content: center;
	margin-top: 12px;
}
.sec7 .inquiryArea ul li {
	margin: 0 12px;
}
.sec7 .inquiryArea ul li .triarl-ill {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 90px;
	text-align: left;
} 
.sec7 .inquiryArea ul li .btnDl a,
.sec7 .inquiryArea ul li .btnContact a {
	display: inline-block;
	padding: 16px 60px;
	width: 260px;
	border-radius: 100vh;
	box-shadow: 2px 3px #959da1;
	font-size: 114.28%;
	color: #fff;
	text-align: center;
}
.sec7 .inquiryArea ul li .btnDl a {
	background-color: #0089cb;
}
.sec7 .inquiryArea ul li .btnContact a {
	background-color: #22ac38;
}
@media screen and (max-width: 680px) {
	.sec7 .triarlArea .btnTrial a {
		width: 100%;
	}
	.sec7 .inquiryArea ul {
		flex-direction: column;
	}
	.sec7 .inquiryArea ul li:first-child {
		margin-bottom: 24px;
	}
	.sec7 .inquiryArea ul li .btnDl a,
	.sec7 .inquiryArea ul li .btnContact a {
		width: 100%;
	}
}
/*申し込む*/
.cv {
	background-image: url("../images/cv_bg.png");
}
.cv .txt {}
.cv .txt p {
	margin:12px 0 0;
	font-size: 142.85%;
	color: #fff;
}
.cv .txt p.b {
	margin: 0;
	font-size: 214.28%;
	color: #fff;
	font-weight: bold;
	line-height: 1.2;
}
.cv .txt p.b span {
	font-size: 214.28%;
}

.cv .btnTrial a {
	display: inline-block;
	margin: 24px auto;
	padding: 12px 60px;
	background-color: #f08300;
	border-radius: 100vh;
	box-shadow: 2px 3px #959da1;
	font-size: 142.85%;
	color: #fff;
	text-align: center;
	font-weight: bold;
}
.cv ul {
	display: flex;
	justify-content: center;
}
.cv ul li:first-child {
	margin-right: 40px;
}
.cv ul li a {
	font-size: 114.28%;
	color: #fff;
	font-weight: bold;
}
@media screen and (max-width: 680px) {
	.cv .btnTrial a {
		width: 100%;
	}
}
/* ==========================
/* main(form)
   ========================== */
#entryForm {
	position: relative;
	margin: 6rem auto;
	max-width: 820px;
	width: 100%;
}
#entryForm h1 {
	margin-bottom: 32px;
	padding-bottom: 12px;
	background-image: url("../images/icon_line.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	font-size: 200%;
}
#entryForm .att {
	margin: 24px auto;
	padding: 20px;
	border: 2px solid #ee0000;
	border-radius: 12px;
	max-width: 780px;
	width: 100%;
	text-align: center;
}
#entryForm .att h2 {
	color: #ee0000;
	font-size: 128.57%;
}
#entryForm .att p {
	margin: 12px 0;
}
#entryForm .att span {
	color: #ee0000;
}
#entryForm .att a {
	text-decoration: underline;
}
#entryForm .txt {
	margin: 24px auto;
	max-width: 680px;
	width: 100%;
	text-align: center;
}
#entryForm .txt p {
	margin: 12px auto;
}
#entryForm .dl-info {
	display: flex;
	justify-content: center;
	margin-bottom: 36px;
}
#entryForm .dl-info dl {
	margin-left: 24px;
	text-align: left;
}
#entryForm .dl-info dl dt {
	margin-bottom: 12px;
	font-size: 114.28%;
}
@media screen and (max-width: 979px) {
	#entryForm .dl-info {
		flex-direction: column;
	}
	#entryForm .dl-info dl {
		margin-top: 24px;
		margin-left: 0;
		text-align: center;
	}
}

/* ==========================
/*  フォーム周り
   ========================== */
#entryForm table.formTbl {
	margin: 20px auto;
	max-width: 820px;
	width: 100%;
	font-size: 100%;
}
#entryForm table.formTbl th {
	padding: 12px 0;
	width: 30%;
	text-align: left;
}
#entryForm table.formTbl th span {
	display: inline-block;
	margin-left: 6px;
	padding: 2px 6px;
	background-color: #e3040f;
	color: #fff;
	font-size: 71.42%;
	line-height: 1.2;
}
#entryForm table.formTbl td {
	padding: 12px 0;
	width: 70%;
	text-align: left;
	vertical-align: top;
}
#entryForm table.formTbl td p {
	margin-bottom: 12px;
}
#entryForm table.formTbl td span {
	display: inline-block;
	margin: 0 6px;
}
#entryForm table.formTbl td span.s1 {
	margin-left: 0;
}
#entryForm table.formTbl td span.s2 {
	margin-left: 0;
	margin-top: 12px;
}
#entryForm table.formTbl td span.s3 {
	margin-right: 0;
}
#entryForm table.formTbl td span.input {
	padding: 6px 0;
}
@media screen and (max-width: 979px) {
	#entryForm table.formTbl th,
	#entryForm table.formTbl td {
		display: block;
		width: 100%;
	}
	#entryForm table.formTbl th {
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
	}
}
/* ==========================
/*  フォーム関係
   ========================== */
/*ラジオボタン*/
#entryForm table.formTbl td input[type="radio"] {
    display: none;
}
#entryForm table.formTbl td input[type="radio"] + label {
    display: inline-block;
	position: relative;
	margin-left: 10px;
	padding: 4px 16px;
	line-height: 1.6;
	cursor: pointer;
}
#entryForm table.formTbl input[type="radio"] + label:before {
	position: absolute;
	content: "";
	top: 50%;
	left: -10px;
	margin-top: -10px;
	width: 20px;
	height: 20px;
	border: 2px solid #b5b5b5;
	border-radius: 50%;
	background-color: #fff;
}
#entryForm table.formTbl input[type="radio"] + label.err:before {
	border: 2px solid #ff0000;
}
#entryForm table.formTbl input[type="radio"].err + label:before {
	border: 2px solid #ff0000;
}
#entryForm table.formTbl input[type="radio"]:checked + label:after {
	position: absolute;
	content: "";
	top: 50%;
	left: -6px;
	margin-top: -6px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #0068b7;
}
/*チェックボックス*/
#entryForm table.formTbl td input[type="checkbox"] {
    display: none;
}
#entryForm table.formTbl td input[type="checkbox"] + label {
    display: inline-block;
	position: relative;
	margin-left: 10px;
	padding: 4px 16px;
	line-height: 1.6;
	cursor: pointer;
}
#entryForm table.formTbl input[type="checkbox"] + label:before {
	position: absolute;
	content: "";
	top: 50%;
	left: -10px;
	margin-top: -10px;
	width: 20px;
	height: 20px;
	border: 2px solid #b5b5b5;
	background-color: #fff;
}
#entryForm table.formTbl input[type="checkbox"]:checked + label:after {
	position: absolute;
	content: "";
	top: 50%;
	left: -6px;
	margin-top: -6px;
	width: 12px;
	height: 8px;
	border-bottom: 3px solid #0068b7;
	border-left: 3px solid #0068b7;
	transform: rotate(-45deg);
}
/*inputエリア*/
#entryForm table.formTbl td input[type='tel'],
#entryForm table.formTbl td input[type='email'],
#entryForm table.formTbl td input[type='text'],
#entryForm table.formTbl td input[type='number']{
	-webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
	padding: 12px;
	border: none;
	border-radius: 8px;
	background-color: #eee;
	font-size: 100%;
}
#entryForm table.formTbl td input[type='tel'].err,
#entryForm table.formTbl td input[type='email'].err,
#entryForm table.formTbl td input[type='text'].err,
	#entryForm table.formTbl td input[type='number'].err {
	border: 2px solid #ff0000;
}
/*テキストエリア*/
#entryForm table.formTbl td textarea {
	padding: 12px 6px;
	border-radius: 8px;
	width: 100%;
	background-color: #eee;
	height: 180px;
	font-size: 100%;
}
#entryForm table.formTbl td textarea.err {
	border: 2px solid #ff0000;
}
/*住所ボタン*/
#entryForm table.formTbl td button.btn {
	-webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
	padding: 8px 16px;
	border: 0;
	background-color: #f88325;
	border-radius: 3px;
	font-size: 78.57%;
	color: #fff;
	cursor: pointer;
}
/*想定月額金額*/
#entryForm .monthly-fee {
	margin-bottom: 40px;
	padding: 8px;
	background-color: #d3edf9;
	border-radius: 8px;
}
#entryForm .monthly-fee span {
	font-size: 171.42%;
}
#entryForm .monthly-fee button.btn {
	-webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
	padding: 8px 16px;
	border: 0;
	background-color: #f88325;
	border-radius: 3px;
	font-size: 78.57%;
	color: #fff;
	cursor: pointer;
}
/*年月日選択*/
#entryForm table.formTbl td .cancel-day {
	display: flex;
	align-items: center;
}
#entryForm table.formTbl td .cancel-day label.selectBtn {
	position: relative;
	display: block;
	padding: 4px;
	border: 2px solid #b3b3b3;
	border-radius: 5px;
	background-colo: #fff;
}
#entryForm table.formTbl td .cancel-day label.selectBtn {
	position: relative;
	display: block;
	padding: 4px;
	border: 2px solid #b3b3b3;
	border-radius: 5px;
	background-colo: #fff;
}
#entryForm table.formTbl td .cancel-day label.selectBtn.err {
	border: 2px solid #ff0000;
}
#entryForm table.formTbl td .cancel-day label.selectBtn:before {
	position: absolute;
	top: 18%;
	right: 5%;
	font-family: FontAwesome;
	content: "\f078";
}
#entryForm table.formTbl td .cancel-day select {
	-webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
	padding: 10px 20px;
	position: relative;
	display: block;
	padding: 6px 12px;
	border: 0;
	border-radius: 5px;
	background-color: transparent;
	font-size: 100%;
	color: #000;
	cursor: pointer;
}
/*枠のサイズ*/
.w2 { width: 40px; }
.w3 { width: 60px; }
.w4 { width: 70px; }
.w5 { width: 100px; }
.w200 { width: 200px; }
.w400 { width: 400px; }
.w500 { width: 100%; }
@media screen and (max-width: 979px) {
	.w200,
	.w400,
	.w500 { width: 100%; }
}
/*送信周り*/
#entryForm div.consent {
	position: relative;
	margin: 24px auto;
	width: 100%;
	max-width: 330px;
	text-align: center;
}
/*チェックボックス*/
#entryForm div.consent input[type="checkbox"] {
    display: none;
}
#entryForm div.consent input[type="checkbox"] + label {
    display: inline-block;
	position: relative;
	margin-left: 10px;
	padding: 4px 16px;
	line-height: 1.6;
	cursor: pointer;
}
#entryForm div.consent input[type="checkbox"] + label:before {
	position: absolute;
	content: "";
	top: 50%;
	left: -10px;
	margin-top: -10px;
	width: 20px;
	height: 20px;
	border: 2px solid #b5b5b5;
	background-color: #fff;
}
#entryForm div.consent input[type="checkbox"]:checked + label:after {
	position: absolute;
	content: "";
	top: 50%;
	left: -6px;
	margin-top: -6px;
	width: 12px;
	height: 8px;
	border-bottom: 3px solid #0068b7;
	border-left: 3px solid #0068b7;
	transform: rotate(-45deg);
}
/*個人情報へ*/
#entryForm iframe {
	margin: 24px auto 0;
	padding: 12px;
	width: 100%;
	height: 300px;
	border: 2px solid #b2b2b2;
	border-radius: 8px;
	box-sizing: border-box;
	background-color: #fff;
}
/* 確認ボタンロック用 */
#entryForm div.transmit {
	margin: 24px auto;
	text-align: center;
}
#entryForm div.transmit input.confirmation[type="submit"],
#entryForm div.transmit input.confirmation[type="button"] {
	-webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
	display: block;
	margin: 0 auto;
	width: 300px;
	height: 3em;
	background-color: #f08300;
	border: none;
	color: #fff;
	border-radius: 60px;
	outline: 0;
	font-size: 125%;
	color: #fff;
	cursor: pointer;
}
#entryForm div.transmit input.confirmation[type="submit"][disabled],
#entryForm div.transmit input.confirmation[type="button"][disabled] {
	background-color: #ccc;
}
/*ボタンが2つ*/
#entryForm div.transmit2 {
	display: flex;
	justify-content: space-around;
	margin: 24px auto;
	text-align: center;
}
#entryForm div.transmit2 input.sent[type="submit"],
#entryForm div.transmit2 input.prev[type="button"] {
	-webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
	display: block;
	margin: 0 auto;
	width: 350px;
	height: 2.5em;
	background-color: #f08300;
	border: none;
	color: #fff;
	border-radius: 60px;
	outline: 0;
	font-size: 125%;
	color: #fff;
	cursor: pointer;
}
@media screen and (max-width: 979px) {
	#entryForm div.transmit2 {
		flex-direction: column;
	}
	#entryForm div.transmit2 input.sent[type="submit"],
	#entryForm div.transmit2 input.prev[type="button"] {
		margin: 12px 0;
		width: 100%;
	}
}

/* -------------------------------------------------------
 *
 *   プライバシーポリシー(フォーム内)
 *
 * ------------------------------------------------------- */
#privacy h2.ttl {
	position: relative;
	top: 0;
	display: inline-block;
	margin-bottom: 24px;
	padding: .25em 0;
	background-image: none;
	font-size: 156.25%;
	font-family: "M PLUS 1p";
	font-weight: 700;
	line-height: 1.4;
}
#privacy h2.ttl span {
	display: block;
	font-size: 70%;
	font-family: 'Catamaran', sans-serif;
}
#privacy .policy {
	text-align: left;
}
#privacy .policy h3 {
	padding: 3px 12px;
	background-color: #f1f1f1;
	font-size: 112.5%;
	font-weight: 700;
}
#privacy .policy .txt {
	margin: 3px 12px 12px;
}
#privacy .policy .txt ol {
	margin-left: 2em;
}
#privacy .policy .txt ol li {
	list-style-type: none;
	counter-increment: cnt;
}
#privacy .policy .txt ol li::before {
	content: "(" counter(cnt) ") ";
	display: inline-block;
	margin-left: -2em;
	width: 2em;
}
#privacy .policy .txt dl {
	margin: 12px 0;
}
#privacy .policy .txt dl dt {
	border-bottom: 1px dotted #666;
	font-weight: 700;
}

/* -------------------------------------------------------
 *
 *   プライバシーポリシー
 *
 * ------------------------------------------------------- */
.privacypolicy {
	padding: 40px;
	background-color: #fff;
	text-align: left;
}
@media screen and (max-width: 640px) {
	.privacypolicy {
		padding: 20px;
	}
}
.privacypolicy h3 {
	margin-bottom: 12px;
	padding-bottom: 3px;
	border-bottom: 1px solid #ccc; 
	font-size: 128.57%;
	font-weight: bold;
}
.privacypolicy h4 {
	font-weight: bold;
}
.privacypolicy h5 {
	font-weight: bold;
}
.privacypolicy p {
	margin-bottom: 12px;
}
.privacypolicy p span {
	display: inline-block;
	font-weight: bold;
}
.privacypolicy address {
	margin: 32px auto;
	font-style: normal;
}
.privacypolicy .privacymark {
	display: flex;
	justify-content: space-between;
}
.privacypolicy .privacymark p {
	margin: 0;
	text-align: right;
}
@media screen and (max-width: 470px) {
	.privacypolicy .privacymark {
		flex-direction: column;
	}
	.privacypolicy .privacymark .img {
		margin-bottom: 32px;
		text-align: center;
	}
}
.privacypolicy ol {
	margin-left: 42px;
	margin-bottom: 24px;
}
.privacypolicy ol.type1 li {/*( )タイプ*/
	list-style-type: none;
	counter-increment: cnt;
	text-indent:-2.5em;
}
.privacypolicy ol.type1 li::before {
	content: "(" counter(cnt) ") ";
}
.privacypolicy ol.type2 {/*○タイプ*/
	position: relative;
	margin-left: 26px;
}
.privacypolicy ol.type2 li {
	margin-bottom: 6px;
	padding-left: 1.3em;
	text-indent: -1.3em;
	list-style: none;
}
.privacypolicy ol.type2 li span {
	font-weight: bold;
}
.privacypolicy ol.type2 li ul {
	margin: 6px 0 6px 24px;
}
.privacypolicy ol.type2 li ul li {
	padding-left: 0;
	text-indent: 0;
	list-style-type: disc;
	font-weight: normal;
}
.privacypolicy ol.type2 ol {
	margin: 0 12px;
}
.privacypolicy .tbArea {
	margin: 24px auto;
	margin-inline: auto;
	overflow-x: auto;
	width: 100%;
}
.privacypolicy .tbArea table {
	border: 1px solid #ccc;
	border-collapse: collapse;
	width: 100%;
}
.privacypolicy .tbArea table th {
	padding: 6px;
	border: 1px solid #ccc;
	background-color: #eee;
	text-align: center;
	font-weight: bold;
	vertical-align: middle;
}
.privacypolicy .tbArea table td {
	padding: 6px;
	border: 1px solid #ccc;
	width: 48%;
	vertical-align: middle;
}
.privacypolicy .txt {
	margin: 12px 24px;
}
.privacypolicy .txt p {
	margin-left: 2.5em;
}
.privacypolicy .txt a.dlfile {
	display: block;
	padding: 6px;
 	border: 1px dotted #ccc;
 	text-align: center;
}
.privacypolicy .txt a.dlfile::before {
	content: url("../images/adobe_odf_file_icon.png");
	position: relative;
    top: 4px;
	padding-right: 12px;
}
.privacypolicy .txt .ex {
	padding: 20px;
	border: 1px dotted #ccc;	
}
.privacypolicy .txt .ex2 {
	margin: 6px 0;
	padding: 12px;
	border: 1px dotted #ccc;
	text-align: center;
}
.privacypolicy .txt .ex p {
	margin-bottom: 0;
}
.privacypolicy .txt .ex ul {
	padding-left: 24px;
}
.privacypolicy .contactPrivacy {
	margin-bottom: 12px;
	padding: 24px;
	border: 1px dotted #ccc;
}
.privacypolicy .contactComplaint {
	margin: 12px 0 24px;
	padding: 24px;
	border: 1px dotted #ccc;
}


/* ----------------------------------------
 *   pageTop
 * ---------------------------------------- */
#pageTop a {
	display: block;
	position: fixed;
	z-index: 9999;
	bottom: -60px;
	right: 10px;
	width: 50px;
	height: 50px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #999;
	font-size: 200%;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition: .5s;
}
/*#pageTop a:before {
	content: "\f062";
    font-family: FontAwesome;
	font-size: 200%;
}*/
#pageTop a span { display: none; }
#pageTop a:hover{
	background: rgba(0,0,0,.8);
}