@charset "utf-8";
/* CSS Document */

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

reset

-----------------------------------------------------------------------------  ***/
.clearfix:after {
	content:".";
	display:block;
	visibility:hidden;
	clear:both;
	height:0.1px;
	font-size:0.1em;
	line-height:0;
}
.clearfix {
	display:inline-table;
	zoom:1;
}
/*Hides from IE-mac \*/
* html .clearfix {
	height:1%;
}
.clearfix {
	display:block;
}
/* End hide from IE-mac */

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
	margin:0px;
	padding:0px;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset, img {
	border:0;
}
address, caption, cite, code, dfn, em, th, var {
	font-style:normal;
	font-weight:normal;
}
ul {
	list-style:none;
}
ol li{
	list-style:none;
}
caption, th {
	text-align:left;
}
h1, h2, h3, h4, h5, h6 {
	font-size:100%;
	font-weight:normal;
}
q:before, q:after {
	content:'';
}
abbr, acronym {
	border:0;
	font-variant:normal;
}
sup {
	vertical-align:top;
}
sub {
	vertical-align:text-bottom;
}
input, textarea, select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}
input, textarea, select {
 *font-size:100%;
}
legend {
	color:#000000;
}
img {
	vertical-align:bottom;
}
table caption {
	font-weight: bold;
	margin:0 0 5px;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
/*** ------------------------------------------------------------------------------ 

HTML5

-----------------------------------------------------------------------------  ***/
#header, footer, nav, section, article, figure, aside {
	display:block;
}
* {
	box-sizing:border-box;
}
i{
	margin: 0 5px 0 0;
}
img{
	max-width: 100%;
	height: auto;
}
/*** ------------------------------------------------------------------------------ 

common

-----------------------------------------------------------------------------  ***/
html {
	font-size: 62.5%;
	overflow-x: hidden;
}
body {
	background: #FFF;
	color:#333;
	line-height: 1.6;
	font-size: 1.6rem;
	font-family: Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", MS PGothic, "ＭＳ Ｐゴシック", Osaka;
}

a.anchor {
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

.pc{ display: block;}
.sp{ display: none;}
@media (max-width:737px){
	.pc{ display: none;}
	.sp{ display: block;}
}

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

リンク

-----------------------------------------------------------------------------  ***/
/* 基本 */
a{
	outline:none;
	-webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
}
a:link {
	color: #0068b7;
	text-decoration: none;
}
a:visited {
	color: #0068b7;
	text-decoration: none;
}
a:hover {
	color: #0068b7;
	text-decoration: none;
}
a:active {
	color: #0068b7;
	text-decoration: none;
}
a:hover img {
	opacity:0.7;
	filter: alpha(opacity=70);
	-moz-opacity:0.7;
}


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

pankuzu

-----------------------------------------------------------------------------  ***/
#pankuzu{
	background-color: #ececec;
}
#pankuzu ul{
	padding: 5px 10px;
}
#pankuzu ul li {
  display: inline-block;
  font-size: 1.2rem;
}
#pankuzu ul li:after {
  content: '\03e';
  margin: 0 .5em;
}
#pankuzu ul li:last-child:after{
	display: none;
}
#pankuzu ul li a{
	text-decoration: underline;
}
#pankuzu ul li a:hover{
	text-decoration: none;
}
@media (max-width:737px){
	#pankuzu ul li {
	  display: inline-block;
	  font-size: 1.2rem;
	}
}
/*** ------------------------------------------------------------------------------ 

header

-----------------------------------------------------------------------------  ***/
header{
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	height: 90px;
	background: #fff;
	display: block;
	position: relative;
}
header.fixed{
	position: fixed;
	top: 0;
}
header .logo-cont{
	position: absolute;
	left: 15px;
	top: 6px;
}
header .logo-cont h1{
	font-size: 1.1rem;
	color: #5a5758;
}

header .tel-cont{
	position: absolute;
	right: 230px;
	top: 15px;
	width: 260px;
	text-align: right;
}
header .tel-cont .number{
	font-family: 'Barlow', sans-serif;
	font-size: 2.6rem;
	font-weight: 800;
	color: #e6380d;
	padding: 0 10px 10px 0;
	line-height: 1.0;
}
header .tel-cont .text{
	font-size: 1.3rem;
	font-weight: 800;
	color: #5a5758;
}

header .contact-btn{
	width: 200px;
	position: absolute;
	right: 0;
	top: 0;
	text-align: center;
	display: table;
	background: #fff;
}
header .contact-btn a{
	display: table-cell;
	height: 90px;
	vertical-align: middle;
	background: url("../img/icon-memo.png") no-repeat left 20px center #fecc03;
	color: #001c4b;
	font-weight: 800;
	padding: 0 0 0 60px;
	transition: 0.3s;
}
header .contact-btn a:hover{
	opacity: 0.6;
}
@media (max-width:1020px){
	header{
	}
	header .logo-cont{
		left: 5px;
		top: 15px;
	}
	header .logo-cont h1{
		font-size: 1.5vw;
	}
	header .logo {
		padding: 0;
		width: auto;
		position: relative;
		margin: 20px 0 0 0;
		transform: translateY(-50%);
		-webkit- transform: translateY(-50%);
		height: auto;
	}
	header .logo img {
		max-width: 75% !important;
		height: auto !important;
		margin: 0 !important;
		width: auto;
	}
	header .tel-cont{
		display: none;
	}
	header .contact-btn{
		width: 80px;
	}
	header .contact-btn a{
		display: table-cell;
		height: 90px;
		vertical-align: middle;
		background: url("../img/icon-memo.png") no-repeat center top 15px #fecc03;
		background-size: 30px auto;
		padding: 45px 0 0 0;
		font-size: 12px;
		line-height: 1.2;
	}
}
@media (max-width:480px){
	header .logo-cont h1{
		font-size: 3.0vw;
	}
}

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

footer

-----------------------------------------------------------------------------  ***/
footer{
	margin: 120px 0 0;
}
footer .contact-cont{
	background: #767676;
	padding: 20px 10px;
}
footer .contact-cont .link-btn{
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	background: #fff;
}
footer .contact-cont .link-btn a{
	display: block;
	padding: 12px 0;
	background: #fecc03;
	font-size: 3.2rem;
	font-weight: 800;
	color: #001c4b;
	transition: 0.3s;
}
footer .contact-cont .link-btn a:hover{
	opacity: 0.6;
}
footer .contact-cont .link-btn a span{
	display: inline-block;
	background: url("../img/icon-memo.png") no-repeat left center;
	padding: 10px 0 10px 90px;
}
footer small{
	text-align: center;
	background: #001c4b;
	color: #fff;
	display: block;
	padding: 20px 0;
}
@media (max-width:737px){
	footer{
		margin: 60px 0 0;
	}
	footer .contact-cont .link-btn a{
		padding: 12px 10px;
		font-size: 1.6rem;
	}
	footer .contact-cont .link-btn a span{
		background: url("../img/icon-memo.png") no-repeat left center;
		background-size: 30px auto;
		padding: 10px 0 10px 40px;
	}
}

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

visual

-----------------------------------------------------------------------------  ***/
#visual{
	margin: 0;
	background: url("../img/visual-bg.jpg") no-repeat center center;
	background-size: cover;
	position: relative;
}
#visual::before{
	position: absolute;
	left: -10px;
	bottom: -100px;
	content: '';
	width: 100%;
	height: 100px;
	background: #ececec;
	transform:rotate(5.0deg);
}
#visual::after{
	position: absolute;
	right: -10px;
	bottom: -100px;
	content: '';
	width: 100%;
	height: 100px;
	background: #ececec;
	transform:rotate(-5.0deg);
}
#visual p{
	text-align: center;
	padding: 80px 0 0;
}
@media (max-width:737px){
	#visual{
		margin: 0 0;
		background: none;
	}
	#visual::before{
		display: none;
	}
	#visual::after{
		display: none;
	}
	#visual p{
		padding: 0;
	}
}

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

base

-----------------------------------------------------------------------------  ***/
.inner-01{
	width: 1320px;
	margin: 0 auto;
}
.inner-02{
	width: 1160px;
	margin: 0 auto;
}
.inner-03{
	width: 1024px;
	margin: 0 auto;
}

main{
	background: #ececec;
}
@media (max-width:737px){
	.inner-01{
		width: 100%;
		padding: 0 10px;
		box-sizing: border-box;
	}
	.inner-02{
		width: 100%;
		padding: 0 10px;
		box-sizing: border-box;
	}
	.inner-03{
		width: 100%;
		padding: 0 10px;
		box-sizing: border-box;
	}
}

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

text

-----------------------------------------------------------------------------  ***/
.attention{
	font-size: 1.4rem;
	font-weight: 800;
	color: #5a5758;
}
.txt-orange{
	color: #e6380d;
}
.txt-navy{
	color: #001c4b;
}

.ft-18{
	font-size: 1.8rem;
}
.ft-77{
	font-size: 7.7rem;
}
.ft-136{
	font-size: 13.6rem;
}




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

reason-msg

-----------------------------------------------------------------------------  ***/
.reason-msg{
	padding: 140px 0 20px;
}
.reason-msg .msg-cont .msg{
	line-height: 2.0;
	font-weight: 800;
	color: #001c4b;
	margin: 0 0 30px;
}
.reason-msg .msg-cont .attention{
	margin: 0 0 65px;
}
.reason-msg .msg-cont .img{
	text-align: center;
}
@media (max-width:737px){
	.reason-msg{
		padding: 30px 0 20px;
	}
	.reason-msg .msg-cont .attention{
		margin: 0 0 30px;
	}
}

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

reason

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

.reason .headline{
	width: 100%;
	display: table;
	background: #fbd6a2;
	border: 4px solid #e6380d;
	box-sizing: border-box;
}
.reason .headline .number{
	display: table-cell;
	width: 200px;
	padding: 25px 10px;
	box-sizing: border-box;
	background: #e6380d;
	text-align: center;
	vertical-align: middle;
}
.reason .headline .text{
	display: table-cell;
	vertical-align: middle;
	width: calc(100% - 200px);
	padding: 25px 40px;
	box-sizing: border-box;
	font-weight: 800;
}
.reason .headline .text h2{
	font-size: 5.6rem;
	font-weight: 800;
	line-height: 1.0;
}
.reason .headline .text h2 span{
	font-style: italic;
}
.reason .headline .text p{
	text-indent: -1em;
	padding: 0 0 0 1em;
}
.reason .col-01.reason-txt{
	text-align: center;
	font-size: 2.4rem;
	font-weight: 800;
	border-right: 4px solid #e6380d;
	border-bottom: 2px solid #e6380d;
	border-left: 4px solid #e6380d;
	padding: 45px 10px;
	box-sizing: border-box;
	background: #fff;
}
.reason .col-01{
	background: #fff;
}
.reason .col-02{
	display: flex;
	border-right: 4px solid #e6380d;
	border-bottom: 2px solid #e6380d;
	border-left: 4px solid #e6380d;
	background: #fff;
}
.reason .col-02 .box{
	width: 50%;
	padding: 45px 60px 45px 80px;
	box-sizing: border-box;
}
.reason .col-02 .box:first-of-type{
	border-right: 2px solid #e6380d;
}
.reason .col-01 .tit,
.reason .col-02 .tit{
	font-size: 2.0rem;
	font-weight: 800;
	margin: 0 0 25px;
}
.reason .col-01 .tit span,
.reason .col-02 .tit span{
	font-size: 3.2rem;
	display: inline-block;
	margin: 0 15px 0 0;
}
.reason .col-01 .img + p,
.reason .col-02 .img + p{
	color: #001c4b;
	font-weight: 800;
	margin: 25px 0 0;
}
.reason .col-01{
	border-right: 4px solid #e6380d;
	border-bottom: 2px solid #e6380d;
	border-left: 4px solid #e6380d;
	padding: 45px 80px;
	box-sizing: border-box;
}
.reason .col-01 .col-02-in{
	display: flex;
}
.reason .inner-01 .col-01 .tit01{
	margin: 60px 0 30px;
	font-size: 2.0rem;
}
.reason .col-01 table{
	width: 100%;
}

@media (max-width:737px){
	.reason .headline{
		display: block;
	}
	.reason .headline .number{
		width: 20%;
		display: block;
		float: left;
	}
	.reason .headline .text{
		width: auto;
		display: block;
		padding: 25px 20px;
	}
	.reason .headline .text h2{
		font-size: 7.0vw;
		margin: 0 0 0 22%;
	}
	.reason .headline .text h2 .ft-136{
		font-size: 12.0vw;
	}
	.reason .headline .text h2 .ft-77{
		font-size: 8.0vw;
	}
	.reason .headline .text p{
		margin: 9.5% 0 0 0;
		font-size: 1.4rem;
	}
	
	.reason .col-01.reason-txt{
		padding: 25px 15px;
		text-align: left;
		font-size: 2.0rem;
	}
	.reason .col-02{
		display: block;
	}
	.reason .col-02 .box{
		width: 100%;
		padding: 25px 15px;
		box-sizing: border-box;
	}
	.reason .col-02 .box:first-of-type{
		border-right: none;
		border-bottom: 2px solid #e6380d;
	}
	.reason .col-01 .tit,
	.reason .col-02 .tit{
		font-size: 1.6rem;
		margin: 0 0 15px;
	}
	.reason .col-01 .tit span,
	.reason .col-02 .tit span{
		display: block;
		font-size: 2.6rem;
	}
	.reason .col-01 .img + p,
	.reason .col-02 .img + p {
		margin: 15px 0 0;
	}
	.reason .col-01 {
		padding: 25px 15px;
	}
	.reason .col-01 .col-02-in{
		display: block;
	}
	.reason .col-01 .col-02-in .box{
		margin: 0 0 20px;
	}
}

#reason01,
#reason02{
	margin: 0 0 80px;
}
#reason02 .headline .text h2,
#reason03 .headline .text h2{
	font-size: 4.8rem;
	line-height: 1.25;
}

/* reason01 */
#reason01 .col-01 table{
	border-top: 1px solid #001c4b;
	border-left: 1px solid #001c4b;
	margin: 0 0 30px;
}
#reason01 .col-01 table th{
	border-right: 1px solid #001c4b;
	border-bottom: 1px solid #001c4b;
	padding: 15px 10px;
	font-size: 2.0rem;
	font-weight: 800;
	color: #001c4b;
	text-align: center;
}
#reason01 .col-01 table th span{
	display: block;
	font-size: 1.6rem;
}
#reason01 .col-01 table td{
	border-right: 1px solid #001c4b;
	border-bottom: 1px solid #001c4b;
	padding: 15px 10px;
	text-align: center;
	font-size: 2.0rem;
	font-weight: 800;
	color: #001c4b;
}
#reason01 .col-01 table .bg-gray{
	background: #f4f4f4;
    color: #e6380d;
}
#reason01 .col-01 table tr .border01{
	position: relative;
	border-bottom: 2px solid #e6380d;
}
#reason01 .col-01 table tr .border01::before{
	position: absolute;
	left: -1px;
	top: 0;
	content: '';
	width: 100%;
	height: 100%;
	border-left: 2px solid #e6380d;
}
#reason01 .col-01 table tr .border01::after{
	position: absolute;
	left: 0;
	top: -2px;
	content: '';
	width: 100%;
	height: 100%;
	border-top: 2px solid #e6380d;
}

#reason01 .col-01 table .border02{
	border-top: 2px solid #e6380d;
	border-bottom: 2px solid #e6380d;
	box-sizing: border-box;
}
#reason01 .col-01 table .border03{
	border-top: 2px solid #e6380d;
	border-right: 2px solid #e6380d;
	border-bottom: 2px solid #e6380d;
	box-sizing: border-box;
}

#reason01 .attention span{
	display: block;
	text-indent: -2.5em;
	padding: 0 0 0 2.5em;
}
#reason01 .txt-s{
	font-size: 1.2rem;
}
#reason01 .col-01 .col-02-in .box{
	width: 48%;
}
#reason01 .col-01 .col-02-in .box:nth-of-type(1){
	margin: 0 4% 0 0;
}

@media (max-width:737px){
	#reason02 .headline,
	#reason03 .headline{
		display: flex;
		align-items: center;
		background: #e6380d;
	}
	#reason02 .headline .number,
	#reason03 .headline .number{
		margin: 0;
		padding: 0 10px;
	}
	#reason02 .headline .text,
	#reason03 .headline .text{
		width: 80%;
		float: left;
		background: #fbd6a2;
	}
	#reason02 .headline .text h2,
	#reason03 .headline .text h2{
		font-size: 5.0vw;
		margin: 0;
	}
	.scroll-table table {
		display: block;
		overflow-x: scroll;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}
	#reason01 .col-01 .col-02-in .box{
		width: 100%;
	}
	#reason01 .col-01 .col-02-in .box:nth-of-type(1){
		margin: 0 0 20px 0;
	}
}

/* reason02 */
#reason02 .col-02 .box{
	position: relative;
	padding: 100px 60px 45px 80px;
}
#reason02 .col-02 .box .tit-pos{
	position: absolute;
	left: 0;
	top: 0;
	width: 400px;
	background: #e6380d;
	padding: 5px 0;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 800;
	color: #fff;
}

@media (max-width:737px){
	#reason02 .col-02 .box {
		padding: 100px 25px 50px;
	}
	#reason02 .col-02 .box .tit-pos{
		top: 30px;
		width: 70%;
	}
}

/* reason03 */
#reason03 .col-01{
	padding: 45px 40px;
}
#reason03 .col-01 ul{
	padding: 40px 0;
	display: flex;
	justify-content: center;
}
#reason03 .col-01 ul li{
	width: 250px;
	margin: 0 30px;
	text-align: center;
	font-size: 1.7rem;
	position: relative;
}
#reason03 .col-01 ul li::before{
	position: absolute;
	right: -55px;
	top: 50%;
	display: block;
	content: '';
	width: 48px;
	height: 32px;
	margin: -32px 0 0 0;
	background: url("../img/icon-arrow01.png") no-repeat center center;
}
#reason03 .col-01 ul li:nth-child(4)::before{
	display: none;
}

#reason03 .link-btn{
	max-width: 720px;
	margin: 60px auto 90px;
	text-align: center;
	background: #fff;
}
#reason03 .link-btn a{
	display: block;
	padding: 12px 0;
	background: #fecc03;
	font-size: 3.2rem;
	font-weight: 800;
	color: #001c4b;
	transition: 0.3s;
}
#reason03 .link-btn a:hover{
	opacity: 0.6;
}
#reason03 .link-btn a span{
	display: inline-block;
	background: url("../img/icon-memo.png") no-repeat left center;
	padding: 10px 0 10px 90px;
}
@media (max-width:737px){
	#reason03 .col-01 {
		padding: 25px 15px;
		text-align: left;
		font-size: 2.0rem;
	}
	#reason03 .col-01 ul {
		padding: 25px 0;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	#reason03 .col-01 ul li {
		width: 45%;
		margin: 0 10% 10% 0;
		font-size: 1.6rem;
	}
	#reason03 .col-01 ul li p.img{
		position: relative;
	}
	#reason03 .col-01 ul li p.img::before{
		position: absolute;
		right: -20%;
		top: 50%;
		display: block;
		content: '';
		width: 24px;
		height: 16px;
		margin: 15px 0 0 0;
		background: url(../img/icon-arrow01.png) no-repeat center center;
		background-size: 24px auto;
	}
	#reason03 .col-01 ul li:nth-child(2) p.img::before,
	#reason03 .col-01 ul li:nth-child(4) p.img::before{
		display: none;
	}
	#reason03 .col-01 ul li:nth-child(2n){
		margin: 0 0 10% 0;
	}
	#reason03 .col-01 ul li::before{
		display: none;
	}

	
	
	
	#reason03 .link-btn {
		margin: 40px 0;
	}
	#reason03 .link-btn a{
		padding: 12px 10px;
		font-size: 1.6rem;
	}
	#reason03 .link-btn a span{
		background: url("../img/icon-memo.png") no-repeat left center;
		background-size: 30px auto;
		padding: 10px 0 10px 40px;
	}
}

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

price

-----------------------------------------------------------------------------  ***/
.price{
	background: #e6380d;
	padding: 80px 0;
}
.price h2{
	font-size: 5.6rem;
	font-weight: 800;
	color: #fff;
	text-align: center;
	margin: 0 0 40px;
}

.price .trial{
	background: #fff;
	margin:  0 0 40px;
	padding: 60px 80px;
}
.price .trial h3{
	text-align: center;
	font-size: 4.0rem;
	font-weight: 800;
	margin: 0 0 20px;
	color: #001c4b;
}
.price .trial h3 + p{
	text-align: center;
	font-size: 1.8rem;
	font-weight: 800;
	margin: 0 0 50px;
	color: #001c4b;
}
.price .trial table{
	width: 100%;
	border-top: 1px solid #5a5758;
	border-left: 1px solid #5a5758;
	margin: 0 0 30px;
	display: table;
}
.price .trial table.sp{
	display: none;
}
.price .trial table tr th{
	border-right: 1px solid #5a5758;
	border-bottom: 1px solid #5a5758;
	color: #001c4b;
	padding: 0 20px;
	box-sizing: border-box;
	font-size: 2.0rem;
	font-weight: bold;
}
.price .trial table tr:nth-of-type(1) th{
	text-align: center;
	font-size: 2.4rem;
	font-weight: bold;
	padding: 15px 10px;
	box-sizing: border-box;
}
.price .trial table tr:nth-of-type(1) th:nth-of-type(1){ width: 20%;}
.price .trial table tr:nth-of-type(1) th:nth-of-type(2){ width: 50%;}
.price .trial table tr:nth-of-type(1) th:nth-of-type(3){ width: 30%;}
.price .trial table tr:nth-of-type(1) th span{
	font-size: 4.0rem;
}
.price .trial table tr th.pos-re {
	position: relative;
}
.price .trial table tr th.pos-re::after{
	position: absolute;
	left: 1px;
	bottom: -1px;
	border-bottom: 1px solid #5a5758;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
}
.price .trial table tr th.pos-re img{
	position: absolute;
	left: -35px;
	top: -15px;
	z-index: 2;
}

.price .trial table tr td{
	border-right: 1px solid #5a5758;
	border-bottom: 1px solid #5a5758;
	padding: 30px 40px;
	box-sizing: border-box;
	color: #001c4b;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 2.0;
}
.price .trial table tr:nth-of-type(3) td{
	text-align: center;
	font-size: 4.0rem;
	font-weight: bold;
	padding: 15px 10px;
}
.price .trial table tr:nth-of-type(3) td span{
	font-size: 2.4rem;
}
.price .trial table tr td .box{
	display: flex;
	align-items: center;
}
.price .trial table tr td .box .text{
	padding: 0 0 0 30px;
}
.price .trial table tr .bg-gray{
	background: #f4f4f4;
	color: #e6380d;
}
.price .trial table tr .border01{
	border-top: 2px solid #e6380d;
	border-right: 2px solid #e6380d;
	border-left: 2px solid #e6380d;
}
.price .trial table tr .border02{
	border-right: 2px solid #e6380d;
	border-left: 2px solid #e6380d;
}
.price .trial table tr .border03{
	border-right: 2px solid #e6380d;
	border-bottom: 2px solid #e6380d;
	border-left: 2px solid #e6380d;
}


.price .plan{
	background: #fff;
	padding: 60px 80px;
}
.price .plan h3{
	text-align: center;
	font-size: 4.0rem;
	font-weight: 800;
	margin: 0 0 20px;
	color: #001c4b;
}
.price .plan h3 + p{
	text-align: center;
	font-size: 1.8rem;
	font-weight: 800;
	margin: 0 0 50px;
	color: #001c4b;
}
.price .plan table{
	width: 100%;
	border-top: 1px solid #5a5758;
	border-left: 1px solid #5a5758;
	margin: 0 0 30px;
	display: table;
}
.price .plan table.sp{
	display: none;
}
.price .plan table tr .bg-gray{
	background: #f4f4f4;
	color: #e6380d;
}

.price .plan table tr th{
	width: 25%;
	border-right: 1px solid #5a5758;
	border-bottom: 1px solid #5a5758;
	color: #001c4b;
	padding: 15px 20px;
	box-sizing: border-box;
	font-size: 2.0rem;
	font-weight: bold;
}
.price .plan table tr th span{
	font-size: 4.0rem;
	display: inline-block;
	margin: 0 5px 0 0;
}
.price .plan table tr th .txt-s{
	font-size: 1.4rem;
	display: block;
}
.price .plan table tr:nth-of-type(1) th{
	text-align: center;
	font-size: 2.4rem;
	font-weight: bold;
	padding: 15px 10px;
	box-sizing: border-box;
}
.price .plan table tr th.pos-re {
	position: relative;
}
.price .plan table tr th.pos-re::after{
	position: absolute;
	left: 1px;
	bottom: -1px;
	border-bottom: 1px solid #5a5758;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
}
.price .plan table tr th.pos-re img{
	position: absolute;
	left: -65px;
	top: -18px;
	z-index: 2;
}
.price .plan table tr .border01{
	border-top: 2px solid #e6380d;
	border-right: 2px solid #e6380d;
	border-left: 2px solid #e6380d;
}
.price .plan table tr .border02{
	border-right: 2px solid #e6380d;
	border-left: 2px solid #e6380d;
}
.price .plan table tr .border03{
	border-right: 2px solid #e6380d;
	border-bottom: 2px solid #e6380d;
	border-left: 2px solid #e6380d;
}
.price .plan table tr td{
	text-align: center;
	border-right: 1px solid #5a5758;
	border-bottom: 1px solid #5a5758;
	padding: 30px 40px;
	box-sizing: border-box;
	color: #001c4b;
	font-weight: bold;
	font-size: 2.0rem;
}
.price .plan .col-02{
	display: flex;
	border-top:1px solid #5a5758;
	margin: 50px 0 0;
	padding: 50px 0 0;
}
.price .plan .col-02 .text{
	width: 50%;
	padding: 0 5% 0 0;
	box-sizing: border-box;
}
.price .plan .col-02 .text .tit{
	font-size: 4.0rem;
	font-weight: bold;
	color: #001c4b;
	margin: 0 0 15px;
}
.price .plan .col-02 .text .tit{
	font-size: 4.0rem;
	font-weight: bold;
	color: #001c4b;
	margin: 0 0 15px;
}
.price .plan .col-02 .text .txt{
	font-size: 1.8rem;
	font-weight: bold;
	color: #001c4b;
	margin: 0 0 30px;
}
.price .plan .col-02 table{
	width: 50%;
	margin: 0;
}
.price .attention span{
	padding: 0 0 0 1.5em;
	display: block;
}
@media (max-width:737px){
	.price {
		padding: 60px 0;
	}
	.price h2 {
		font-size: 4.2rem;
		margin: 0 0 20px;
	}
	.price .trial {
		margin: 0 0 20px;
		padding: 30px 20px;
	}
	.price .trial h3 {
		font-size: 3.0rem;
		margin: 0 0 10px;
	}
	.price .trial h3 + p{
		font-size: 1.6rem;
		margin: 0 0 30px;
		text-align: left;
	}
	.price .trial table.pc{
		display: none;
	}
	.price .trial table.sp{
		display: table;
	}
	.price .trial table.orange{
		border: 2px solid #e6380d;
	}
	.price .trial table tr:nth-of-type(1) th{
		font-size: 1.8rem;
		padding: 15px 10px;
	}
	.price .trial table.orange tr:nth-of-type(1) th{
		position: relative;
		color: #e6380d;
		padding: 15px 10px 15px 50px;
		border-right: none;
	}
	.price .trial table.orange tr:nth-of-type(1) th img{
		position: absolute;
		left: -22px;
		top: 2px;
		width: 107px;
	}
	.price .trial table tr td{
		text-align: center;
		padding: 20px 10px;
		font-size: 1.5rem;
	}
	.price .trial table.orange tr td{
		color: #e6380d;
		border-right: none;
	}
	.price .trial table tr:nth-of-type(3) td{
		text-align: center;
		padding: 20px 10px;
		font-size: 3.0rem;
		
	}
	.price .trial table.orange tr:nth-of-type(3) td{
		border-bottom: none;
	}
	.price .trial table tr:nth-of-type(3) td span{
		font-size: 1.5rem;
	}
	/* .price .trial table.orange tr:nth-of-type(3) td span{
		color: #001c4b;
	} */
	
	
	.price .plan{
    	padding: 30px 20px;
	}
	.price .plan h3 {
		font-size: 3.0rem;
		margin: 0 0 10px;
	}
	.price .plan h3 + p{
		font-size: 1.6rem;
		margin: 0 0 30px;
		text-align: left;
	}
	.price .plan .col-02{
		display: block;
		margin: 25px 0 0;
		padding: 25px 0 0;
	}
	.price .plan .col-02 .text{
		width: 100%;
		padding: 0;
	}
	.price .plan .col-02 .text .tit{
		font-size: 3.0rem;
	}
	.price .plan .col-02 .text .txt{
		font-size: 1.6rem;
	}
	.price .plan .col-02 table {
		width: 100%;
		margin: 0 0 20px;
	}
	.price .plan table.pc{
		display: none;
	}
	.price .plan table.sp,
	.price .plan .col-02 table.sp {
		display: table;
	}
	.price .plan table.orange {
		border: 2px solid #e6380d;
	}
	.price .plan table tr th{
		width: 60%;
		padding: 20px 10px;
		font-size: 1.5rem;
	}
	.price .plan table tr:nth-of-type(1) th{
		width: 100%;
		font-size: 1.8rem;
	}
	.price .plan table.orange tr:nth-of-type(1) th{
		color: #e6380d;
		position: relative;
	}
	.price .plan table.orange tr:nth-of-type(1) th img{
		position: absolute;
		left: -22px;
		top: 2px;
		width: 107px;
	}
	.price .plan table tr td{
		width: 40%;
		padding: 20px 10px;
		font-size: 1.5rem;
	}
	.price .plan table.orange tr td{
		color: #e6380d;
	}
	.price .plan table tr th .txt-s{
		font-size: 1.1rem;
	}
}

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

person

-----------------------------------------------------------------------------  ***/
#person{
	padding: 60px 0 80px
}
#person .link-btn{
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	background: #fff;
}
#person .link-btn a{
	display: block;
	padding: 12px 0;
	background: #fecc03;
	font-size: 3.2rem;
	font-weight: 800;
	color: #001c4b;
	transition: 0.3s;
}
#person .link-btn a:hover{
	opacity: 0.6;
}
#person .link-btn a span{
	display: inline-block;
	background: url("../img/icon-memo.png") no-repeat left center;
	padding: 10px 0 10px 90px;
}

#person .inner-01{
	position: relative;
	background: #fbd6a2;
	margin: 95px auto 0;
	padding: 65px 150px;
}
#person .inner-01 .msg-cont{
	background: #fff;
	border-radius: 25px;
	padding: 75px;
}
#person .inner-01 .msg-cont h3{
	font-size: 4.0rem;
	font-weight: 800;
	color: #001c4b;
	margin: 0 0 30px;
}
#person .inner-01 .msg-cont p{
	font-size: 1.8rem;
	font-weight: 800;
	color: #001c4b;
	margin: 0 0 40px;
	line-height: 2.5;
}
#person .inner-01 .msg-cont p:last-of-type{
	margin: 0;
}
#person .inner-01 .img{
	position: absolute;
	right: 30px;
	bottom: 0;
}
@media (max-width:737px){
	#person {
		padding: 40px 0 80px;
	}
	#person .inner-01{
		margin: 40px auto 0;
		padding: 35px 10px 100px;
	}
	#person .inner-01 .msg-cont{
		border-radius: 20px;
		padding: 55px 15px 130px;
	}
	#person .inner-01 .msg-cont h3{
		font-size: 2.8rem;
		margin: 0 0 20px;
	}
	#person .inner-01 .msg-cont p{
		margin: 0 0 30px;
	}
	#person .inner-01 .img{
		right: 10px;
	}
	#person .inner-01 .img img{
		width: 275px;
	}
	#person .link-btn {
		margin: 0 10px;
	}
	#person .link-btn  a{
		padding: 12px 10px;
		font-size: 1.6rem;
	}
	#person .link-btn  a span{
		background: url("../img/icon-memo.png") no-repeat left center;
		background-size: 30px auto;
		padding: 10px 0 10px 40px;
	}
}

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

form-area

-----------------------------------------------------------------------------  ***/
#form-area{
	background: #fecc03;
	padding: 60px 0 80px;
}
#form-area h2{
	text-align: center;
	font-size: 5.6rem;
	font-weight: 800;
	margin: 0 0 40px;
}
#form-area h2 span{
	display: inline-block;
	background: url("../img/icon-memo01.png") no-repeat left center;
	padding: 10px 100px 10px 120px;
}
#form-area iframe{
	height: 150vh !important;
	background: #fff;
}
@media (max-width:737px){
	#form-area h2{
		font-size: 2.8rem;
		margin: 0 0 20px;
	}
	#form-area h2 span{
		background: url("../img/icon-memo01.png") no-repeat left center;
		background-size: 46px auto;
		padding: 10px 10px 10px 60px;
	}
	#form-area iframe{
		height: 220vh !important;
	}
}

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

company

-----------------------------------------------------------------------------  ***/
#company{
	background: #333333;
	padding: 45px 0 80px;
}
#company .inner-03 table{
	width: 100%;
}
#company .inner-03 table th{
	width: 20%;
	color: #fff;
	padding: 35px 0;
	border-bottom: 1px solid #fff;
	font-weight: 800;
	line-height: 1.75;
	box-sizing: border-box;
	vertical-align: top;
}
#company .inner-03 table td{
	width: 80%;
	color: #fff;
	padding: 35px 0;
	border-bottom: 1px solid #fff;
	font-weight: 800;
	line-height: 1.75;
	box-sizing: border-box;
}
#company .inner-03 table td a{
	color: #fff;
}
#company .inner-03 table td p span{
	display: inline-block;
	width: 185px;
}
@media (max-width:737px){
	#company .inner-03 table th{
		width: 20%;
		padding: 35px 0;
	}
	#company .inner-03 table td{
		padding: 35px 0 35px 10px;
	}
	#company .inner-03 table td p{
		margin: 0 0 15px;
	}
	#company .inner-03 table td p span{
		display: block;
		width: 100%;
	}
}

.banner {
	margin: -40px 0 60px;
	text-align:center;
}
#form-area .banner{
	margin:40px 0 -20px;
}
@media (max-width:737px){
	.banner {
		margin: -10px 0 40px;
	}
	#form-area .banner{
		padding:0 10px;
		margin:30px 0 -20px;
	}
}








