@charset "UTF-8";

/*-----------------------------------------------------
sub
-------------------------------------------------------*/

#sub_content{
    padding: 100px 0 100px 0;
}

.sub_cta{
	margin-bottom: 100px;
}

/*-----------------------------------------------------
global_sub
-------------------------------------------------------*/

.g_sub_t1{
	text-align: center;
}

.g_sub_t1 h2{
	font-size: var(--s32);
	line-height: var(--lh14);
	font-weight: bold;
}

.g_sub_t1 h2 span.s1{
	font-size: var(--s26);
}

.g_sub_t2{
	text-align: center;
	position: relative;
}

.g_sub_t2 h2{
	font-size: var(--s28);
	line-height: var(--lh14);
	font-weight: bold;
}

.g_sub_text{
	padding: 40px 0 30px;
	line-height: var(--lh18);
	text-align: center;
}

/*-----------------------------------------------------
sub_table
-------------------------------------------------------*/

.sub_table{
	padding: 40px 0 0 0;
}

.sub_table dl{
    padding: 30px 0px;
    border-bottom: solid 1px #ccc;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    line-height: var(--lh18);
}

.sub_table dl dt{
    padding-left: 20px;
    width: 25%;
    font-weight: bold;
}

.sub_table dl dd{
    padding-left: 20px;
    width: 75%;
}

/*-----------------------------------------------------
plan
-------------------------------------------------------*/

.plan_box{
	padding: 40px 0 0 0 
}

.plan_box1{
	padding: 60px 0 60px 0 ;
	background-color: var(--blue2);
	margin-top: 20px;
}

.plan_row{
	-webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
	align-items: center;
	justify-content: center;
}

.plan_txt{
	width: 45% ;
}

.plan_txt h3{
	font-size: var(--s28);
	font-weight: bold;
	color: var(--blue1);
	margin-bottom: 45px;
}

.plan_txt ul li{
	padding-left: 34px;
	margin-bottom: 32px;
	position: relative;
	font-weight: bold;
	font-size: var(--s18);
}


.plan_txt ul li:last-child{
	margin-bottom: 0 ;
}

.plan_txt ul li::after{
	position: absolute;
	content: "";
	background-image:url("../../images/sub/check.svg"); 
	height: 20px;
	width: 20px;
	background-size: 20px 20px;
	background-repeat: no-repeat;
	top: 50% ;
	left: 0;
	transform: translateY(-50%);
}

.plan_img{
	width: 480px;
	height: auto;
}

.plan_img img{
	border-radius: 10px;
}


.plan_box2{
	padding: 40px 0 0 0;
}

.plan_table_wrap{
	padding: 40px 20px 40px 20px;
}

.plan_table{
	width: 100%;
	border-collapse: collapse;
}

.plan_table th,
.plan_table td {
  border: 1px solid #ccc;
  padding: 30px;
  text-align: left;
}

.plan_table th {
	background-color: var(--blue3);
	color: var(--blue1);
}

.customer{
	border-radius: 999px;
	background-color: #dcdcdc;
	text-align: center;
	width: 200px;
	padding: 8px 30px 8px 30px;
}


/*-----------------------------------------------------
price
-------------------------------------------------------*/

.table_wrap{
	width: 100%;
	margin-top: 50px;
}

.first{
	margin-top: 0;
}

.table_title{
	font-size: var(--s20);
	color: var(--blue1);
	padding: 20px 30px;
	color: ;
	margin: 0;
	border: 1px solid #EDF6F8;
	border-bottom: none;
	background-color: var(--blue2);
	border-radius: 10px 10px 0 0;
}


.price_table{
	width: 100%;
	border: 1px solid #eaeaea;
	border-radius: 0 0 10px 10px;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
}

.price_table td{
	padding: 20px 30px;
	font-weight: bold;
	line-height: var(--lh16);
	border-bottom: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
}

.price_table td:last-child {
  width: 32%;
}

.price_table tr:last-child td {
  border-bottom: none;
}

.price_table tr td:last-child {
  border-right: none;
}

.price_note{
	padding: 10px;
}
.price_note p{
	font-size: var(--s16);
	line-height: var(--lh16);
	padding-top: 10px;
}

/*-----------------------------------------------------
faq
-------------------------------------------------------*/
.faq_box{
	padding: 40px 0 0 0;
}

.faq_box ul{
	padding: 30px 0 50px 0;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	gap: 20px 0;
}

.faq_box ul li.q{
    background-color:var(--blue2);
    padding: 30px 70px;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
	font-weight: bold;
}

.faq_box ul li.q:hover{
    cursor: pointer;
}

.faq_box ul li.q::before{
    content: "";
    display: block;
    background: url("../../images/index/q.svg");
    height: 36px;
    width: 36px;
    background-size: 36px 36px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.faq_box ul li.q::after{
    content: "";
    background: url("../../images/index/open.svg");
    display: block;
    height: 18px;
    width: 18px;
    background-size: 18px 18px;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}


.faq_box ul li.q.active::after{
   content: "";
    background: url("../../images/index/open.svg");
    display: block;
    height: 18px;
    width: 18px;
    background-size: 18px 18px;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    opacity: 1;
	transform: translateY(-50%) rotate(180deg);
}

.faq_box ul li.a{
    display: none;
    padding: 16px 30px 30px 70px;
    position: relative;
    line-height: var(--lh18);
}


.faq_box ul li.a::before{
    content: "";
    display: block;
    background: url("../../images/index/a.svg");
    height: 36px;
    width: 36px;
    background-size: 36px 36px;
    position: absolute;
    top: 15px;
    left: 20px;
}

/*-----------------------------------------------------
flow
-------------------------------------------------------*/
.flow_box{
	padding: 40px 0 0 0;
	counter-reset: num;
}

.flow_list{
	position: relative;
	width: 100%;
	padding: 40px 0 50px;
	background-color: var(--blue2);
	border-radius: 10px;
	padding: 50px;
	margin-bottom: 50px;
}


.flow_list:last-child {
    margin-bottom: 0;
}

.flow_list::after{
	position: absolute;
	content: "";
	top:100%;
	left: 50%;
	width: 0;
	height: 0;
	border: solid transparent;
	border-width: 25px 30px;
	transform: translateX(-50%);
    margin-top: -2px;
    border-top-color:#EDF6F8;
}

.flow_list:last-child::after{
	display: none;
}

.flow_list ul{
	display: flex;
	justify-content: space-between;
}

.flow_list ul li.left{
	width: 56%;
}


.flow_txt h3{
	font-weight: bold;
	margin-bottom: 20px;
	font-size: var(--s24);
	position: relative;
	padding-left: 40px;
	counter-increment: num;
}

.flow_txt h3::before{
	position: absolute;
	top: -2px;
	left: 0;
	display: inline-block;
	content: counter(num);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	font-size: var(--s18);
	background-color: var(--blue1);
	color: #FFFFFF;
	text-align: center;
	padding: 5px 0 0 3px;
	box-sizing: border-box;
}

.flow_txt p{
	line-height: var(--lh16);
}


.flow_list ul li.right{
	width: 38%;
}

.flow_list ul li.right img{
	border-radius: 10px;
}

/*-----------------------------------------------------
reason
-------------------------------------------------------*/

.reason_box{
	padding: 40px 0 0 0;
}

.reason_row{
	-webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
	display: flex;
	justify-content: center;
	align-items: center;
	gap:40px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.06);
	border-radius: 10px;
	background: #fff;
	padding: 50px;
	margin-bottom: 70px;
}

.reason_row:last-of-type {
  margin-bottom: 0;
}

.reason_txt{
	width: 58%;
}

.reason_txt p{
	line-height: var(--lh16);
}

.reason_title{
	-webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
	display: flex;
	align-items: center;
	gap:20px;
	margin-bottom: 24px;
}

.reason_title img{
	width: 65px;
	height: auto;
}

.reason_title h3{
	font-size: var(--s26);
	line-height: var(--lh14);
}

.reason_img{
	width:42%;
}

.reason_img img{
	border-radius: 10px;
}




/*-----------------------------------------------------
mail
-------------------------------------------------------*/

.mail_list{
	background-color: var(--blue2);
	border-radius: 10px;
	padding: 20px 40px 35px 40px;
	margin-bottom: 40px;
}

.mail_list ul li{
	padding-top: 15px;
	line-height: var(--lh16);
}

.mail_tb{
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	border-top: 1px solid #eaeaea;
	padding: 0 0 0;
}

.mail_tb th,
.mail_tb td{
	padding: 50px 0 0 0;
	line-height: var(--lh16);
	text-align: left;
}

.mail_tb th{
	width: 28%;
	background: #fff;
}

.mail_tb td{
	width: 72%;
	background: #fff;
}

.mail_tb td input{
}

.mw_wp_form .error{
	font-size: 14px!important;
}


.mail_tb span.hissu{
	display: inline-block;
	margin: 0 0 0 8px;
	background: #F13716;
	padding: 4px 6px;
	font-size: var(--s13);
	color: #FFF;
	border-radius: 3px;
}

.mail_tb td input[type=text],[type=email],[type=tel]{
	width: 100%;
    height: 48px;
    padding: 15px;
    box-sizing: border-box;
    border: 1px solid #eaeaea;
    background: #f7f7f7;
    border-radius: 3px;
}

.mail_tb td span.input_s input[type=text]{
	width: 60%;
}

.mail_tb td span.input_ss input[type=text]{
	width: 20%;
}

.mail_tb td input[type="text"]:focus, textarea:focus{
    border: 2px solid #eaeaea !important;
    outline: 0;
    box-sizing: border-box;
    transition: all 0.1s ease-out;
}

input:focus::-webkit-input-placeholder {
	color: transparent;
}
input:focus::-moz-placeholder {
	color: transparent;
}
input:focus::-ms-input-placeholder {
	color: transparent;
}
input:focus::placeholder {
	color: transparent;
}

.mail_tb ::placeholder {
    color:#9f9e9f;
}

.mail_tb td label{
	display: inline-block;
	margin: 0 10px 0 0;
}

.mail_tb select{
	border:1px solid #ccc;
	padding: 4px 10px;

}

.mail_tb input[type=radio]{
	display: inline-block;
	position: relative;
	top:1px;
	margin: 6px 0;
}

.mail_tb input[type=checkbox]{
	display: inline-block;
	position: relative;
	top:2px;
	margin: 6px 0;
}

.mail_tb td input[type=file]{
	display: block;
	margin: 0 0 10px;
}

.mail_tb td span.txt{
	display: inline-block;
	margin: 0 16px 0 0;
}


.mail_tb td span.txt2{
	display: inline-block;
	margin: 0 16px 0 10px;
}


.mail_tb td textarea{
	width: 100%;
    height: 200px;
    padding: 15px;
    border: 1px solid #eaeaea;
    box-sizing: border-box;
    background: #f7f7f7;
    border-radius: 3px;
}


.mail_bt{
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	padding: 60px 0px 0 0px;
	border-collapse:0;
	border-spacing:0;
	text-align: center;
}

.mail_bt input.submit{
	width: 36%;
	padding: 20px 0 20px;
	border-radius: 100px;
	position: relative;
	display: inline-block;
	text-align: center;
	font-size: var(--s16);
    background:var(--blue1);
	border: 1px solid #005BAC;
	font-weight: bold;
	cursor: pointer;
	color: #FFFFFF;
}

.mail_bt input.submit:hover{
	text-decoration: none;
    opacity: 0.8;
	cursor: pointer;
}

.trigger_other{
    height: 60px !important;
    margin-top: 15px;
}

/*-----------------------------------------------------
line
-------------------------------------------------------*/

.line_wrap{
	-webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
	display: flex;
	gap:50px;
	text-align: center;
	justify-content: center;
	border-top: solid 1px  #eaeaea;
	padding-top: 40px;
}

.line_wrap h3{
	font-size: var(--s28);
	font-weight: bold;
}


.line_btn{
	max-width: 230px;
	display: block;
	background-color: #00AA55;
	border-radius: 30px;
	transition-property: opacity;
	transition-duration: 0.5s;
	margin: 40px auto 0;
}

.line_btn a{
    padding: 20px 0 20px;
    font-weight: bold;
    font-size: var(--s16);
	color: #fff;
	text-align: center;
}

.line_btn:hover{
    opacity: 0.7;
}

.line_img{
	max-width: 180px;
	height: auto;
	margin: 40px auto 0;
}


/*-----------------------------------------------------
privacy
-------------------------------------------------------*/

.privacy_box{
	padding: 40px 0 0 0;
}

.privacy_box .text{
    line-height: var(--lh18);
    margin-bottom: 40px;
}

.privacy_box .list .row:first-child{
    border-top: 1px solid #ccc;
}

.privacy_box .list .row{
    padding: 35px 0px;
    border-bottom: 1px solid #ccc;
}

.privacy_box .list .row h3{
    display: block;
    font-weight: bold;
    padding-bottom: 16px;
}

.privacy_box .list .row p{
    line-height: var(--lh18);
}


/*-----------------------------------------------------
pagenation
-------------------------------------------------------*/

.pagenation{
	width: auto;
	text-align: center;
	margin: 0 auto;
  	display:-webkit-box;
	display: -webkit-flex;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
	gap: 6px 10px;
}

a.page-numbers,
.pagination .current{
    color: #000;
	text-align: center;
	line-height: 1;
	padding: 14px 16px;
	display: inline-block;
	background: #fff;
	border: 1px solid #ccc;
	text-decoration: none;
	border-radius: 6px;
}

.current {
    color: #fff;
	background: var(--blue);
	text-align: center;
	line-height: 1;
	padding: 14px 16px;
	display: inline-block;
	text-decoration: none;
	border-radius: 6px;
}

a.page-numbers:hover,
.pagination a:hover .current a:hover {
	color: #fff;
	background: var(--blue);
	border: 1px solid var(--blue);
	text-decoration: none;
}

/*-----------------------------------------------------
breadcrumb
-------------------------------------------------------*/

#breadcrumb{
    padding-top: 36px;
}

#breadcrumb ul{
    display: flex;
}

#breadcrumb ul li{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    font-size: var(--s13);
    white-space: nowrap;
}

#breadcrumb ul li::after {
    content: '>';
    padding: 0px 8px;
}


#breadcrumb ul li:last-child::after {
    content: none;
    padding: 0px;
}
