@charset "utf-8";
@import url('//fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&display=swap&subset=japanese');

/*
GLOBAL
***************************************************************************/
html {
	font-size: 62.5%;
	overflow-y: auto;
	overflow-x: hidden;
}

body {
	width: 100%;
	height: auto;
	font-size: 1.8rem;
	font-weight: 400;
	background-color: #fff;
	color: #333333;
	line-height: 1.7;
	font-family: 'Noto Sans JP', sans-serif;
	background: #fff;
}

/*
DEFAULT
***************************************************************************/
body,
h1,h2,h3,h4,h5,h6,p,
ul,ol,li,dl,dt,dd,
form,fieldset,legend,pre,blockquote,
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	word-wrap: break-word;
	font-feature-settings: "pkna";
	letter-spacing: 0.02rem;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 700;
	line-height: 1.5;
}
h2{
	font-size:3.5rem;
	margin:47px auto 42px;
	
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,video {
	display: block;
}

.clearfix:after {
	display: block;
	clear: both;
	content: "";
	overflow: hidden;
}

iframe { border:none; }

li {
	list-style-type: none;
}

table {
	width: 100%;
	text-align: left;
	border-collapse: collapse;
}

th {
	text-align: left;
	font-weight: normal;
}

/* ▼LINK▼ */
a {
	color: #333333;
	text-decoration: underline;
	outline: none;
	transition: .5s;
	backface-visibility: hidden;
}

a:hover, input[type="image"]:hover {
	text-decoration: none;
	opacity: 0.75;
}

.no_filter a:hover, .no_filter input:hover,
a.no_filter:hover, input.no_filter:hover {
	opacity: 1;
}

/* ▼IMG▼ */
img, input[type="image"] {
	border: 0;
	font-size: 0;
	line-height: 0;
	vertical-align: middle;
}

img, input[type="image"], button {
	transition: .5s;
	backface-visibility: hidden;
}
img{
	max-width:100%;
}
/* ▼▼ */
.btn_01{
	position: relative;
	border-radius:10px;
	background-color:#EA7240;
	color: #fff;
	display: block;
	font-size: 2.4rem;
	font-weight: 700;
	text-align:center;
	padding: 5px 30px 5px 0;
	text-decoration: none;
	margin: 5px auto;
	width: 550px;
	box-shadow: 0px 3px 0px  rgba(0,0,0,.2);
}
.btn_01 img{
	margin-right:5px;
}
.btn_01::after{
	position: absolute;
	content: "";
	display: inline-block;
	right:10px;
	top: calc(50% - 8px);
	width: 19px;
	height: 19px;
	margin: -3px 0 0 5px;
	background: url(../images/icon_btn.png) no-repeat right 50%;
	background-size: contain;
	vertical-align: middle;
}
.right{
	text-align:right;
}
.left{
	text-align:left;
}
.center{
	text-align:center;
}

/*

***************************************************************************/

.sp {
	display: none;
}
.pc {
	display: inline;
}
.contents{
	width: 100%;
	margin: 0 auto;
}
header{ 
	position:relative;
	line-height:1;
	z-index:10000;
	width:100%;
	height: 70px;
	background-color:#fff;
	box-shadow: 0px 0px 3px  rgba(0,0,0,.1);
}
.clone_h{
	position:fixed;
	top:0;
	left:0;
	z-index:10000;
	width:100%;
	transition:0.3s;
	transform:translateY(-100%);
}
.clone_h{
	background: rgba(255, 255, 255, 0.9);
}
header.clone_h.show .pagenav{
	display: block;
	background: rgba(241, 241, 241, 0.9);
	border: 1px solid #F1F1F1;
	border-width: 1px 0;
}
header.clone_h.show .pagenav a{
	border:0;
	padding: 10px 0;
}
.clone_h.show{
	transform:translateY(0);
}
.h_inner{
	width:100%;
	max-width: 1400px;
	margin: 0 auto;
	height: 70px;
	padding:0;
	box-sizing:border-box;
	display:flex;
	align-items:center;
	justify-content:flex-end;
}
header h1{
	flex:0 1 221px;
	line-height:1;
	margin-right:auto;
	margin-left:20px;
}
header h1 a,
header h1 img{
	width:100%;
	display:block;
}
header .pagenav{
	display: none;
}
.h_gnavi{
	flex:0 1 auto;
	max-width: 550px;
	text-align:center;
	flex:1 1 auto;
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding: 0px 15px;
	margin-left: 15px;
}
.h_gnavi a{
	font-size:1.4rem;
	line-height:1.2;
	margin:0;
	height:40px;
	position:relative;
	text-decoration: none;
	display:flex;
	align-items:center;
	padding:0;
}
.h_gnavi a:not(.h_btn)::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height:5px;
	border-radius: 3px 3px 0 0;
	background-color: #EA7240;
	bottom: -15px;
	transform: scale(0, 1);
	transform-origin: center bottom;
	transition: transform 0.3s;
}
.h_gnavi a.current::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height:5px;
	background-color: #EA7240;
	bottom: -15px;
	transform: scale(1, 1);
}
.h_gnavi a:hover::after {
	transform: scale(1, 1);
}
.h_gnavi a.current::after {
	transform: scale(1, 1);
}
.h_phone {
	margin-left: 30px;
	font-size: 1.2rem;
	text-align:center;
}
.h_phone span {
	font-size: 2.4rem;
	font-weight: 700;
}
.h_phone img {
	margin-right:4px;
}
.h_contact{ 
	flex:0 0 250px;	
	display:flex;
	justify-content:center;
	align-items:flex-end;

}
.h_contact a{
	display:block;
	background-color: #EA7240;
	color: #fff;
	height: 48px;
	border-radius: 5px;
	padding: 3px 10px;
	font-size:1.4rem;
	line-height:1.2;
	margin:0 0 0 10px;
	font-weight:700;
	position:relative;
	text-decoration: none;
	display:flex;
	align-items:center;
}
.h_contact a:last-of-type{
	background-color: #E1E1E1;
	color: #333333;
}
.h_menu{
	flex:0 0 28px;
	position:relative;
	height:26px;
	display:none;
	margin:0 15px;
	cursor: pointer;
}
.h_menu span{
	display:block;
	width:100%;
	height:2px;
	background-color:#0A0A0A;
	position:absolute;
	transition-duration: 0.5s;
}
.h_menu .m_top{top:2px;}
.h_menu .m_center{top:12px;}
.h_menu .m_btm{bottom:2px;}
.h_menu.opened .m_top{ transform:translateY(10px) rotate(45deg); }
.h_menu.opened .m_center{opacity:0;}
.h_menu.opened .m_btm{ transform:translateY(-10px) rotate(-45deg); }
.menu{
	display:none;
	position: absolute;
	left:0;
	width:100%;
	background:rgba(51,51,51,0.9);
}
header.show .menu{position:fixed;}

#footlink {
	background-color: #F1F1F1;
	padding: 80px 0 50px;
	text-align: center;
}
#footlink h2{
	margin-top: 0;
}
#footlink dl{
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
	align-items: center;
	font-size: 2.6rem;
}
#footlink dt{
	font-weight: 700;
	margin-right:20px;
}
#footlink dd:first-of-type{
	font-weight: 700;
	margin-right:10px;
	font-size:3.0rem;
}
#footlink dd:last-of-type{
	margin-right:10px;
	font-size:1.4rem;
}
footer {
	margin:0;
	padding: 50px 10px 10px;
	background-color: #333333;
	color: #FFFFFF;
	font-size: 1.4rem;
	line-height: 2;
}
footer .f_inner {
	max-width:1400px;
	margin:auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
footer p{
	font-size: 1.6rem;
}
footer a{
	text-decoration:none;
	color: #FFFFFF;
}
footer a:hover {
	text-decoration: underline;
}
footer .foottxt{
	flex-basis: calc(60% - 20px);
	margin: 10px;
}
footer .footmenu{
	flex-basis: 40%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
footer .footmenu ul{
	flex-basis:30%;
}
footer .footmenu li{
	line-height:3;
}
footer .footlogo{
	flex-basis: 100%;
	display: flex;
	align-items: center;
	margin:0 0 20px;
	font-size: 1.2rem;
}
footer .footlogo img {
	margin:0 5px;
}
footer .footlogo a:first-of-type img {
	width: 176px;
}
footer .footlogo img:last-of-type {
	width: 131px;
}
footer .copyright {
	flex-basis: 100%;
	text-align:center;
	margin-top:70px;
	font-size:1.4rem;
	font-weight:400;
	color:#A1A1A1;
}

@media screen and (max-width: 1080px){
	header h1 { flex: 0 1 160px;
		margin-left: calc((100vw / 768) * 10);
	}
	.h_gnavi{padding: 5px 10px;}
	.h_gnavi a{	font-size:1.4rem;}
	.h_contact{ display:none;flex: 0 0 220px;}
	.h_contact a{ font-size:1.4rem;}
	
	footer .footlogo{
		width:100%;
		margin-right:50px;
	}
}
@media screen and (max-width: 768px){
	.h_gnavi{display:none;}
	header{ height:60px;}
	.h_inner{ height:60px;}
	header h1{flex:0 1 40%;max-width:160px;}
	.h_menu{display:block;order:3;}
	.menu{ text-align:center; }
	.h_phone {
		margin-left: calc((100vw / 768) * 30);
		font-size: calc((100vw / 768) * 12);
	}
	.h_phone span {
		font-size: calc((100vw / 768) * 36);
	}
	.h_phone img {
		height: calc((100vw / 768) * 30);
	}
	.m_gnavi{
		display:flex;
		flex-wrap:wrap;
		box-shadow: 1px 1px 5px  rgba(0,0,0,0.4);
		padding-bottom:30px;
	}
	.m_gnavi a{
		flex:1 1 100%;
		box-sizing:border-box;
		display:block;
		color:#FFF;
		font-size:1.6rem;
		padding:25px 0;
	}
	.m_gnavi a{
		text-decoration: none;
	}
	.arrow {
		display:none;
	}
	#footlink {
		padding: calc((100vw / 768) * 50) 0 calc((100vw / 768) * 50);
	}
	#footlink h2{
		font-size:calc((100vw / 768) * 46) ;
	}
	#footlink dl{
		font-size: calc((100vw / 768) * 40);
		flex-direction:column;
	}
	#footlink dt{
		font-weight: 700;
		margin-right:calc((100vw / 768) * 20);
	}
	#footlink dd:first-of-type{
		margin-right:calc((100vw / 768) * 10);
		font-size:calc((100vw / 768) * 46);
	}
	#footlink dd img{
		height:calc((100vw / 768) * 40);
	}
	#footlink dd:last-of-type{
		margin-right:10px;
		font-size:calc((100vw / 768) * 14);
	}
	footer {
		margin:0;
		padding: calc((100vw / 768) * 50) calc((100vw / 768) * 10) calc((100vw / 768) * 10);
		font-size: calc((100vw / 768) * 20);
	}
	footer p{
		font-size: calc((100vw / 768) * 20);
	}
	footer .foottxt{
		flex-basis: 90%;
		order:3;
		margin:calc((100vw / 768) * 20) auto;
	}
	footer .footmenu{
		flex-basis:90%;
		justify-content: center;
		margin:calc((100vw / 768) * 20) auto;
		order:2;
	}
	footer .footlogo{
		margin:0;
		font-size: calc((100vw / 768) * 12);
		order:1;
	}
	footer .footlogo img {
		margin:0 calc((100vw / 768) * 5);
	}
	footer .footlogo a:first-of-type img {
		width: 176px;
	}
	footer .footlogo img:last-of-type {
		width: 90px;
	}
	footer .copyright {
		margin-top:calc((100vw / 768) * 70);
		font-size:calc((100vw / 768) * 14);
		order:4;
	}
}

@media screen and (max-width: 480px){
	.m_gnavi{
		flex-direction:column;
		border-right:none;
	}
	.h_contact{
		display:none;
	}
	.h_contact a{
		background:none;
		padding-left:0;
	}
}

/* TOP */
#mv {
	position: relative;
	width: 100%;
	height: auto;
	background-color: #BDE2EB;
	margin: 0 auto;
	padding: 40px 0 80px;
}

#mv .innerbox {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}
#mv h2 {
	max-width: 60%;
	margin:0 0 10px 20px;
	font-size:3.2rem;
	line-height: 1.2;
	color: #333;
}
#mv h2 span {
	font-size: 3.8rem;
}
#mv .c_form {
	position: absolute;
	top:0;
	right:10px;
	width: calc(34.1% - 50px);
	height: auto;
	min-width:250px;
	background-color: #FFFFFF;
	border-radius: 10px;
	box-shadow: 0px 10px 10px  rgba(0,0,0,.2);
	padding: 20px 25px;
	font-size:1.6rem;
}
#mv .c_form dl{
	display:flex;
	flex-wrap:wrap;
}
#mv .c_form dt{
	flex: 0 0 100%;
	margin-top:3px;
	font-weight: 500;
}
#mv .c_form dd{
	flex: 0 0 100%;
}
#mv .c_form input[type="text"],
#mv .c_form input[type="tel"],
#mv .c_form input[type="email"]{
	box-sizing:border-box;
	padding:10px 10px;
	transition:0.3s;
	border-radius:5px;
	border:1px solid #D5D5D5;
	background-color:#FAFAFA;
	font-size:1.6rem;
	width:100%;
}
#mv .c_form input::placeholder{
	color:#CCCCCC;
}
#mv .c_form .btn_01{
	position:relative;
	font-size: 1.8rem;
	border:0;
	padding: 15px 30px 15px 0;
	margin: 5px auto;
	width: 100%;
}
#mv .c_form .btn_01:hover{
	cursor: pointer;
	opacity: 0.75;
	transition: .5s;
}

#mv .c_form_btn{
	position:relative;
}
#mv .c_form_btn::after{
	position: absolute;
	content: "";
	display: inline-block;
	right:10px;
	top: calc(50% - 8px);
	width: 19px;
	height: 19px;
	margin: -3px 0 0 5px;
	background: url(../images/icon_btn.png) no-repeat right 50%;
	background-size: contain;
	vertical-align: middle;
}

#mv .c_form .btn_01 img{
	width:50px;
	height:50px;
}
#mv .btn_area {
    margin: 20px 0 20px;
}
.btn_area {
	margin: 50px 0 50px;
	text-align: center;
}
.btn_area .txt{
	display: inline-block;
	padding:2px 15px;
	background: url(../images/txt_l.png) no-repeat left ,
	url(../images/txt_r.png) no-repeat right;
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.2;
}
h2 img, h3 img {
	vertical-align:baseline;
	margin: 0 5px;
}
#mv .c_form .btn_area {
	margin-bottom:0;
}
#mv .c_form .btn_area .txt{
	font-size: 1.8rem;
}

#t_about{
	padding: 0 0 30px;
	text-align: center;
}
#t_about h2 {
	position: relative;
	display:inline-block;
	background-color: #457D8B;
	color:#FFFFFF;
	border: 5px solid #FFFFFF;
	text-align: center;
	font-size: 3.8rem;
	border-radius: 100px;
	padding: 12px 20px 14px;
	line-height: 1;
	margin: -32px auto 0;
	z-index:100;
}
#t_about h2:after {
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    border-width: 14px 18px;
    margin-left: -9px;
    border-top-color: rgba(63,125,139,1);
}
#t_about ul {
	display: flex;
	margin: 40px 0;
}
#t_about ul li{
	flex-basis: calc(33% - 20px);
	margin:10px;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: left;
	line-height: 1.5;
}
#t_about ul li picture {
	display: block;
	text-align:center;
	border: 3px dotted #BDE2EB;
	border-radius: 10px;
	padding:10px;
}
#t_about ul li p{
	background:url(../images/icon_check.png) no-repeat left top;
	padding-left: 24px;
	margin-top:5px;
}

#t_solution{
	padding: 50px 0 50px;
	position: relative;
	background: rgb(251,233,224);
	background: linear-gradient(180deg, rgba(251,233,224,1) 0%, rgba(255,247,243,1) 25%, rgba(255,247,243,1) 100%);
}
#t_solution:before {
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    top: 0%;
    left: 50%;
    border-width: 40px 70px;
    margin-left: -35px;
    border-top-color: rgba(255,255,255,1);
}
#t_solution h2{
	font-size: 3.8rem;
	text-align:center;
}
#t_solution h3{
	font-size: 3.0rem;
	text-align:center;
	margin: 50px 0 20px;
}
#t_solution h3 img{
	height: 30px;
}
#t_solution p{
	font-weight: 500;
	font-size: 2.4rem;
	max-width:900px;
	margin:auto;
}
#t_solution p strong{
	font-weight: 700;
	color: #EA7240;
}
#t_solution ul{
	display: flex;
	justify-content: center;
}
#t_solution ul.badge li{
	margin: 20px 15px;
}
#t_solution ul.feature li{
	flex-basis: calc(33% - 40px);
	margin: 10px 5px;
	padding: 10px 15px;
	border: 3px solid #E7E7E7;
	background-color: #FFFFFF;
	border-radius: 10px;
	display: flex;
	align-items: center;
	line-height:1.5;
}
#t_solution ul.feature li picture{
	width:100%;
	margin-right: 20px;
}
#t_solution ul.feature li p{
	font-size: 2.2rem;
}
#t_reason {
	padding: 50px 0 50px;
}
#t_reason h2{
	font-size: 3.0rem;
	text-align:center;
}
#t_reason h2 span{
	font-size: 4.0rem;
}
#t_reason h3{
	font-size: 2.4rem;
	margin: 10px 0;
}
#t_reason dl{
	position: relative;
	border-radius: 0 10px 10px 10px;
	box-shadow: 0px 0px 6px  rgba(0,0,0,.2);
	display: flex;
	margin: 20px auto;
	max-width:850px;
}
#t_reason dt{
	position: absolute;
	top:0;
	left:0;
	width:54px;
	height:54px;
	display: inline-block;
	color: #FFFFFF;
	background-color: #EA7240;
	border-radius: 0 0 10px 0;
	font-family:Roboto, Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size:3.6rem;
	text-align:center;
}
#t_reason dd{
	display: flex;
	align-items:center;
	font-size: 1.6rem;
	padding:10px;
}
#t_reason dd picture{
	flex-basis:calc(45% - 40px);
	margin-left:40px;
}
#t_reason dd .txt{
	flex-basis:calc(55% - 60px);
	margin:30px;
}
#t_client{
	padding: 50px 0 50px;
	background-color: #F1F1F1;
}
#t_client h2{
	font-size: 3.0rem;
	text-align:center;
}
#t_client h2 span{
	color:#EA7240;
}
#t_client h2 span>span{
	font-family:Roboto, Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size:6.0rem;
}
#t_client ul.cl-list{
	background-color:#FFFFFF;
	border-radius:10px;
	padding:40px;
	display: flex;
	flex-wrap: wrap;
}
#t_client ul.cl-list li{
	width: calc(20% - 40px);
	margin:20px;
	text-align:center;
}
#t_feature{
	padding: 50px 0 50px;
	text-align: center;
}
#t_feature .innerbox{
	background-color: #FFF7F3;
	border-radius:20px;
	margin:20px auto;
	padding:50px;
}
#t_feature h2{
	display: inline;
	font-size: 3.0rem;
	text-align:center;
	margin: 0 auto;
	padding: 0 30px;
	background: url(../images/txt_l.png) no-repeat left ,
	url(../images/txt_r.png) no-repeat right;
}
#t_feature h2 span{
	color:#EA7240;
}
#t_feature ul{
	text-align: left;
}
#t_feature li{
	display: flex;
	background-color:#FFFFFF;
	border-radius: 10px;
	margin:20px 0;
	padding:20px;
	align-items: center;
}
#t_feature li:nth-of-type(2) {
	flex-direction:row-reverse;
}
#t_feature li .txt{
	margin: 10px 30px;
}
#t_feature li h3{
	font-size:3.6rem;
	color: #12B6CC;
}
#t_price{
	padding: 50px 0 50px;
	background-color: #F1F1F1;
	text-align: center;
}
#t_price h2{
	font-size: 3.6rem;
	text-align:center;
}
#t_price .pricebox {
	position:relative;
	display: flex;
	margin:30px;
	justify-content: center;
	align-items: center;
}
#t_price .pricebox dl{
	border-radius: 10px;
	box-shadow: 0px 0px 6px  rgba(0,0,0,.2);
	padding:20px;
	margin:0 30px;
	background-color: #FFFFFF;
	min-width:250px;
	text-align:center;
	font-size:1.8rem;
	font-weight: 700;
	line-height:1.5;
}
#t_price .pricebox dl span{
	font-family:Roboto, Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size:4.6rem;
}
#t_price .pricebox::after{
	position:absolute;
	conetnt:'+';
	font-family:Roboto, Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size:4.6rem;
}

#t_price .pricebox p{
	font-family:Roboto, Arial, Helvetica, sans-serif;
	font-size:8.1rem;
	color:#BDE2EB;
}
#t_support{
	position:relative;
	padding: 50px 0 50px;
	text-align:center;
	z-index:1;
}
#t_support h2{
	font-size: 3.0rem;
	text-align:center;
}
#t_support .servicebox{
	display: flex;
}
#t_support .servicebox div{
	position:relative;
	flex-basis: calc(50% - 40px);
	margin: 0 20px;
	border-radius: 5px;
}
#t_support .servicebox div dl{
	background-color: #FFFFFF;
	border-radius: 10px;
	box-shadow: 0px -6px 6px  rgba(0,0,0,.2);
	margin: 200px 30px 0;
	padding:20px 0 0;
	min-height: 250px;
	font-size:1.8rem;
	text-align: left;
}
#t_support .servicebox div:first-of-type{
	background: url(../images/support_01_bg.png) no-repeat center top;
}
#t_support .servicebox div:last-of-type{
	background: url(../images/support_02_bg.png) no-repeat center top;
}
#t_support dt{
	font-size:2.4rem;
	border-left: 4px solid #BDE2EB;
	padding-left:20px;
	margin:20px;
	font-weight: 700;
}
#t_support dd{
	margin:20px 30px;
}
#t_support dd ul li{
	list-style-type:disc;
	padding-left:0px;
	margin-left:2em;
}

/* CONTACT */
.content_title {
	background-color: #FAFAFA;
}
.content_form {
	padding: 50px 0;
	max-width: 1200px;
}

.content_form .input_unit {
	display: flex !important;
	width: 60% !important;
}

form.myForm .checkbox_frame {
	float: none !important;
}

@media only screen and (max-width: 800px) {
	.content_form .input_unit {
		display: table !important;
		width: calc(100% - 20px) !important;
	}	
}

form.myForm select {
	width: calc(100% - 20px - 2.8px);
}

/* COMMON */
.pagenav ul {
	width: calc(100% - 20px);
	max-width:1280px;
	margin:0 auto;
	display: flex;
	font-size: 1.6rem;
	justify-content: flex-end;
	padding-right:20px;
	font-weight: 500;
	text-align: left;
}
.pagenav li {
	margin-left:40px;
}
.pagenav ul a{
	display: block;
	width: 100%;
	padding:10px 0 6px;
	text-decoration: none;
	border-bottom: 3px solid #fff;
}
.pagenav ul a:hover{
	border-bottom: 3px solid #F1F1F1;
}
.contents h1 {
	color: #fff;
	height:250px;
	line-height:1.2;
	font-size: 3.0rem;
	text-align:center;
	letter-spacing: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align:center;
	flex-direction: column;
}
.contents h1 span {
	font-size: 2.0rem;
	color:#EA7240;
	text-transform: uppercase;
}
.contents h2 {
	margin:0;
}
.contents h2>span{
	color: #fff;
	font-size: 4.0rem;
	background-color: #1B224C;
	padding:2px 50px;
	display:inline;
}
.contents h2 span span{
	font-size: 3.0rem;
	padding:2px 0px;
}
.innerbox {
	max-width: 1200px;
	margin: auto;
}
.right {
	text-align: right;
}


@media screen and (max-width: 959px){
	#mv .c_form {
		padding: calc((100vw / 768) * 20)  calc((100vw / 768) * 20) ;
		width: calc(39% -  calc((100vw / 768) * 40));
	}
}

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

	.sp {
	display: block;
	}
	.pc {
		display: none;
	}
	h2 {
		font-size: calc((100vw / 768) * 36);
	    margin: calc((100vw / 768) * 47) auto calc((100vw / 768) * 42);
	}
	p{
		font-size:calc((100vw / 768) * 30);
	}
	.btn_01{
		width:calc(96% - calc((100vw / 768) * 30));
		font-size: calc((100vw / 768) * 40);
		padding: calc((100vw / 768) * 10) calc((100vw / 768) * 30) calc((100vw / 768) * 10) calc((100vw / 768) * 0);
		border-radius:5px;
	}
	.btn_01::after{
	}
	.btn_01 img {
		width:calc((100vw / 768) * 100);
		max-width: 70px;
	}

/* TOP */
	#mv {
		text-align:center;
		margin:auto;
		padding: calc((100vw / 768) * 40) 0 calc((100vw / 768) * 80);
	}
	#mv  img{
		margin:auto;
	}
	#mv .c_form{
		position:relative;
		right:auto;
		width: 90%;
		margin:calc((100vw / 768) * 20)  auto;
		padding: calc((100vw / 768) * 30)  calc((100vw / 768) * 30) ;
		font-size:calc((100vw / 768) * 30);
		text-align: left;
	}
	#mv h2 {
		max-width: 100%;
		font-size:calc((100vw / 768) * 46) ;
		margin: 0 0 calc((100vw / 768) * 10) 0 ;
		text-align: center;
	}
	#mv h2 span{
		font-size:calc((100vw / 768) * 60) ;
	}
	#mv .c_form dl {
		align-items:center;
	}
	#mv .c_form dt {
		flex: 0 0 20%;
		margin:calc((100vw / 768) * 10)  0;
		line-height: 1.2;
}
	#mv .c_form dd{
		flex: 0 0 80%;
		margin:calc((100vw / 768) * 10)  0;
	}
	#mv .c_form input[type="text"], #mv .c_form input[type="tel"], #mv .c_form input[type="email"] {
		box-sizing: border-box;
		padding: calc((100vw / 768) * 10);
		font-size: calc((100vw / 768) * 30);
	}
	#mv .c_form .btn_01 {
		font-size: calc((100vw / 768) * 40);
	}
	#mv .c_form .btn_area .txt {
			font-size: calc((100vw / 768) * 30);
	}
	#mv p{
		margin:calc((100vw / 768) * 30) 0 0;
	}

	#t_about{
		padding: 0 0 calc((100vw / 768) * 30);
	}
	#t_about h2 {
		font-size: calc((100vw / 768) * 40);
		padding: calc((100vw / 768) * 12) calc((100vw / 768) * 20) calc((100vw / 768) * 14);
		margin-top: calc((100vw / 768) * -32);
	}
	#t_about h2:after {
		border-width: calc((100vw / 768) *14) calc((100vw / 768) * 18);
		margin-left: calc((100vw / 768) * -9);
	}
	#t_about ul {
		flex-direction: column;
		margin: calc((100vw / 768) * 30) 0;
	}
	#t_about ul li{
		display: flex;
		border: 3px dotted #BDE2EB;
		border-radius: 10px;
		padding:calc((100vw / 768) * 10);
		flex-basis: 100%;
		margin:calc((100vw / 768) * 10);
		font-size: calc((100vw / 768) * 32);
		align-items:center;
	}
	#t_about ul li picture {
		
		flex:0 0 calc((100vw / 768) * 250);
		border: none;
	}
	#t_about ul li p{
		margin-top:calc((100vw / 768) * 5);
	}

	#t_solution{
		padding: calc((100vw / 768) * 50) 0 calc((100vw / 768) * 50);
	}
	#t_solution:before {
		border-width: calc((100vw / 768) * 40) calc((100vw / 768) * 70);
		margin-left: calc((100vw / 768) * -55);
	}
	#t_solution h2{
		font-size: calc((100vw / 768) * 50);
		text-align:center;
	}
	#t_solution h2 img{
		height: calc((100vw / 768) * 50);
	}
	#t_solution h3{
		font-size:calc((100vw / 768) * 38);
		text-align:center;
		margin: calc((100vw / 768) * 50) 0 calc((100vw / 768) * 20);
	}
	#t_solution h3 img{
		height: calc((100vw / 768) * 36);
	}
	#t_solution p{
		font-size: calc((100vw / 768) * 32);
		max-width:100%;
		margin:auto calc((100vw / 768) * 20);
	}
	#t_solution ul.badge li{
		margin: calc((100vw / 768) * 20) calc((100vw / 768) * 10);
	}
	#t_solution ul.feature {
		flex-direction: column;
	}
	#t_solution ul.feature li{
		flex-basis: calc(100% - 40px);
		margin: calc((100vw / 768) * 10) calc((100vw / 768) * 5);
		padding: calc((100vw / 768) * 10) calc((100vw / 768) * 15);
	}
	#t_solution ul.feature li picture{
		flex: 0 0 40%;
		text-align:center;
		margin-right: calc((100vw / 768) * 20);
	}
	#t_solution ul.feature li p{
			font-size:calc((100vw / 768) * 32);
	}
	#t_reason {
		padding: calc((100vw / 768) * 50) 0;
	}
	#t_reason h2{
		font-size: calc((100vw / 768) * 36);
	}
	#t_reason h2 span{
		font-size: calc((100vw / 768) * 46);
	}
	#t_reason h2  img{
		height: calc((100vw / 768) * 46);
	}
	#t_reason h3{
		font-size:calc((100vw / 768) * 30);
		margin: calc((100vw / 768) * 10) 0;
	}
	#t_reason dl{
		margin: calc((100vw / 768) * 20) auto;
		max-width:96%;
	}
	#t_reason dt{
		flex:0 0 calc((100vw / 768) * 70);
		width:calc((100vw / 768) * 70);
		height:calc((100vw / 768) * 70);
		font-size:calc((100vw / 768) * 40);
	}
	#t_reason dd{
		display: flex;
		align-items:center;
		font-size: calc((100vw / 768) * 20);
	}
	#t_reason dd picture{
		flex:0 0 35%;
		margin:0;
	}
	#t_reason dd .txt{
		flex:0 1 65%;
		margin:calc((100vw / 768) * 30) calc((100vw / 768) * 20);
	}
	#t_client{
		padding: calc((100vw / 768) * 50) 0;
	}
	#t_client h2{
		font-size: calc((100vw / 768) * 40);
	}
	#t_client h2 span>span{
		font-size:calc((100vw / 768) * 65);
	}
	#t_client ul.cl-list{
		padding:calc((100vw / 768) * 40);
	}
	#t_client ul.cl-list li{
		width: calc(50% - 40px);
		margin:calc((100vw / 768) * 20);
	}
	#t_feature{
		padding: calc((100vw / 768) * 50) 0 ;
	}
	#t_feature .innerbox{
		margin:calc((100vw / 768) * 20) calc((100vw / 768) * 10);
		padding:calc((100vw / 768) * 30) calc((100vw / 768) * 20);
	}
	#t_feature h2{
		display:block;
		font-size: calc((100vw / 768) * 40);
		padding: 0 calc((100vw / 768) * 30);
		background: url(../images/txt_l.png) no-repeat left bottom ,
		url(../images/txt_r.png) no-repeat right bottom;
	}
	#t_feature h2  img{
		height: calc((100vw / 768) * 40);
	}
	#t_feature ul{
		text-align: left;
	}
	#t_feature li{
		margin:calc((100vw / 768) * 20) 0;
		padding:calc((100vw / 768) * 20);
	}
	#t_feature li .txt{
		margin: calc((100vw / 768) * 10) calc((100vw / 768) * 20);
	}
	#t_feature li h3{
		font-size:calc((100vw / 768) * 36);
	}
	#t_feature .btn_01 {
    width: calc(100% - calc((100vw / 768) * 30));
	}
	#t_price{
		padding: calc((100vw / 768) * 50) 0 ;
	}
	#t_price h2{
		font-size: calc((100vw / 768) * 40);
	}
	#t_price p{
		text-align: left;
		margin:calc((100vw / 768) * 30) calc((100vw / 768) * 10);
	}
	#t_price .pricebox {
		margin:calc((100vw / 768) * 10);
	}
	#t_price .pricebox dl{
		min-width: 100px;
		padding:calc((100vw / 768) * 30) calc((100vw / 768) * 40);
		margin:0 calc((100vw / 768) * 10);
		font-size:calc((100vw / 768) * 24);
	}
	#t_price .pricebox dl span{
		font-size:calc((100vw / 768) * 50);
	}
	#t_price .pricebox::after{
		font-size:calc((100vw / 768) * 70);
	}
	#t_support{
		padding: calc((100vw / 768) * 50) 0;
	}
	#t_support h2{
		font-size: calc((100vw / 768) * 36) ;
		text-align:left;
		margin:calc((100vw / 768) * 30)  calc((100vw / 768) * 10); 
	}
	#t_support h2  img{
		height: calc((100vw / 768) * 36);
	}
	#t_support .servicebox{
		flex-direction:column;
		margin-top: calc((100vw / 768) * 20);
	}
	#t_support .servicebox div{
		flex-basis: calc(100% - 0px);
		margin: 0;
	}
	#t_support .servicebox div +  div{
		margin-top:calc((100vw / 768) * 20);
	}
	#t_support .servicebox div:first-of-type,
	#t_support .servicebox div:last-of-type  {
		
		background-size: 100%;
	}
	#t_support .servicebox div dl{
		margin: calc((100vw / 768) * 250) calc((100vw / 768) * 20) calc((100vw / 768) * 20);
		padding: calc((100vw / 768) * 20) 0;
		font-size:calc((100vw / 768) * 30);
		min-height: unset;
		box-shadow: 0px 0px 6px rgb(0 0 0 / 20%);
	}
	#t_support dt{
		font-size:calc((100vw / 768) * 36) ;
		padding-left:calc((100vw / 768) * 20) ;
		margin:calc((100vw / 768) * 30) ;
	}
	#t_support dd{
		margin:calc((100vw / 768) * 30)  calc((100vw / 768) * 30) ;
	}
	#t_support dd ul li{
		margin-left:calc((100vw / 768) * 40) ;
	}


/* COMMON */
	.pagenav ul {
		font-size:calc((100vw / 768) * 16);
		padding-right:calc((100vw / 768) * 20);
	}
	.pagenav li {
		margin-left:calc((100vw / 768) * 20);
	}
	.contents h1 {
		height:150px;
		font-size: calc((100vw / 768) * 30);
	}
	.contents h1 span {
		font-size: calc((100vw / 768) * 20);
	}
	.contents h2 {
		margin:0;
	}
	.contents h2>span{
		font-size: calc((100vw / 768) * 36);
		padding:calc((100vw / 768) * 2) calc((100vw / 768) * 30);
	}
	.contents h2>span span{
		font-size: calc((100vw / 768) * 26);
		padding:calc((100vw / 768) * 20);
	}


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

}