@charset "utf-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
/*foucusReset*/
input[type="text"], 
input[type="password"], 
input[type="submit"],
textarea, 
button,
select {
	-webkit-appearance: none;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
body {
	line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}
nav ul {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	color: #000000;
}
/* change colours to suit your needs */
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}
/* change colours to suit your needs */
mark {
	background-color:#ff9;
	color:#000; 
	font-style:italic;
	font-weight:bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
/* change border colour to suit your needs */
hr {
	display:block;
	height:1px;
	border:0;   
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}
input, select {
	vertical-align:middle;
}
ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
ol{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
/*borderLineInBox*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
/*aReset*/
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
.a_line {
    border-bottom: 1px solid #0b71ff;
    color: #0b71ff
}
.a_line:hover {
    opacity: .7
}
a img {
	border-width: 0px;
	border-style: none;
	border-color: #fff;
	background: transparent;
}
/* pageNaviCss */
.wp-pagenavi:before,
.wp-pagenavi:after,
.cf:before,
.cf:after {
	content:"";
	display:table;
}
.wp-pagenavi:after,
.cf:after {
	clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.cf,
.wp-pagenavi {
	zoom:1;
}
::selection {
	background: #FFF000; /* Safari */
}
::-moz-selection {
	background: #FFF000; /* Firefox */
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
}
select::-ms-expand {
  display: none;
}
select {
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
}
input {
	display: block;
	margin: auto;
	margin-bottom: 3em;
}

/* ABSOLUTE-CENTER_
{
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
 }
 */
 
/*-------------------------------------------------------------------------
FLEX-STYLE
------------------------------------------------------------------------*/
/*初期値　横並び(左詰)*/
.fle_l{
    display: flex;
    flex-wrap: wrap;
}
/*横並び(右詰)*/
.fle_r{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
/*横並び(センタリング)*/
.fle_c{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
/*横並び(左右均等振り*コンテンツの間)*/
.fle_btw{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
/*横並び(左右均等振り*コンテンツの両端)*/
.fle_ard{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
/*コンテンツの横位置　右寄せ*/
.ps_right {
    justify-content: flex-end
}
/*コンテンツの高さ位置　中央*/
.ps_ctr {
    align-items: center
}
/*コンテンツの高さ位置　下揃え*/
.ps_btm {
    align-items: flex-end
}
/*コンテンツの並び順 右から左*/
.order_r-rv{
	flex-direction: row-reverse;
}
/*コンテンツの並び順 下から上*/
.order_c-rv{
	flex-direction: column-reverse;
}
@media only screen and (max-width: 750px){
	/*コンテンツの並び順 右から左*/
	.sp_order_r-rv{
		flex-direction: row-reverse;
	}
	/*コンテンツの並び順 下から上*/
	.sp_order_c-rv{
		flex-direction: column-reverse;
	}
}
/*-------------------------------------------------------------------------
WRAP
------------------------------------------------------------------------*/
.wide_inner{
	position: relative;
	width: 100%;
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 40px;
}
.inner{
	position: relative;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 40px;
}
.narrow_inner{
	position: relative;
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 40px;
}
.okomarigoto_inner{
	position: relative;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	padding: 0 10px;
}
/*-------------------------------------------------------------------------
MARGIN-BASE
------------------------------------------------------------------------*/
.mrg_base{
	margin-bottom: 60px;
}
/*-------------------------------------------------------------------------
BTN-BASE
------------------------------------------------------------------------*/
.mrg_base{
	margin-bottom: 60px;
}
/*-------------------------------------------------------------------------
BODY
------------------------------------------------------------------------*/
body{
	width: 100%;
	color: #323232;
	font-weight: normal;
	letter-spacing: 0.1em;
	font-size: 16px;
	text-align: justify;
	text-justify: inter-ideograph;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-weight: normal;
	font-family: arial, sans-serif;
	margin: 0;
}
p{
	line-height: 1.8em;
	margin-bottom: 15px;
}
img{
	width: 100%;
}

.header_head{
	padding: 10px 0 15px;
	border-bottom: 1px solid #eeeeee;
}
.header_left h1{
	width: 150px;
	padding-top: 10px;
}
.header_left h1 img{
	width: 100%;
}
.header_an_logo{
	width: 50px;
	display: block;
	margin-left: 15px;
}
.company_logo_txt{
	margin-left: 15px;
}
.company_logo_jp {
	font-weight: bold;
	margin-top: 1px;
	display: block;
	font-size: 11px;
	line-height: 1.6em;
	color: #12318b;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0em;
	letter-spacing: 0.05em;
}
.company_logo_en {
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	color: #12318b;
	display: block;
	margin-top: 0;
	font-size: 10px;
	letter-spacing: 0em;
}
.header_foot{
	border-bottom: 1px solid #dddddd;
}
.header_foot ul > *{
	position: relative;
	width: 13%;
}
.header_foot ul > *:nth-child(1){
	width: 8%;
}
.header_foot ul > *:nth-child(2){
	width: 20%;
}
.header_foot ul > *:nth-child(5),
.header_foot ul > *:nth-child(6){
	width: 14%;
}
.header_foot ul > *:nth-child(7){
	width: 18%;
}
.header_foot ul > *:after{
	content: "";
	display: block;
	height: 40%;
	width: 1px;
	position: absolute;
	top: 30%;
	left: 0;
	background: #dddddd;
}
.header_foot ul > *:last-child:before{
	content: "";
	display: block;
	height: 40%;
	width: 1px;
	position: absolute;
	top: 30%;
	right: 0;
	background: #dddddd;
}
.header_foot ul > * a{
	display: block;
	text-align: center;
	padding: 15px 0;
	font-weight: 600;
	width: 100%;
	transition: 0.3s;
	letter-spacing: 0;
}
.header_foot ul > * a:hover{
	color: #a5772b
}
/*CONTACT*/
.contact_tel{
	width: 245px;
	text-align: center
}
.contact_tel_txt_head{
	padding-top: 10px;
}
.contact_tel_txt_head,
.contact_tel_txt_foot{
	display: block;
	font-weight: 600;
	font-size: 12px;
	width: 100%;
	text-align: center;
	padding-left: 33px;
}
.contact_tel_num{
	font-family: "Montserrat", sans-serif;
	font-size: 25px;
	font-weight: bold;
	letter-spacing: 0;
	margin: 3px auto;
	display: block;
}
.contact_tel_num span{
	font-size: 15px;
}
/*-----*/

.sp_header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 5px 0 10px;
	background: #FFF;
	z-index: 100;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 5px 0 rgba(0, 0, 0, .1)
}
.sp_header_logo{
	width: 100px;
	transform: translateY(3px)
}
.sp_header_an_logo{
	width: 30px;
	margin-left: 10px;
}
.sp_header_company_logo{
	margin-left: 10px;
}
.sp_header_company_logo_jp {
	font-weight: bold;
	margin-top: 1px;
	display: block;
	font-size: 11px;
	line-height: 1.6em;
	color: #12318b;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0em;
	letter-spacing: 0.05em;
}
.sp_header_company_logo_en {
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	color: #12318b;
	display: block;
	margin-top: 0;
	font-size: 10px;
	letter-spacing: 0em;
}
.nav_btn_inner{
	max-width: 1180px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0 10px;
	position: relative;
	margin-top: 4px;
}
/*SP NAV*/
.nav_btn {
	width: 30px;
	height: 30px;
	cursor: pointer;
	z-index: 111;
	background: #FFF;
	border: 1px solid #12318b;
	border-radius: 17px;
	z-index: 101;
	position: relative
}
.nav_btn .icon {
	-webkit-transition: all 0.4s ease-out;
	position: absolute;
	top: 14px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 15px;
	height: 1px;
	background: #12318b;
	z-index: 100000;
}
.nav_btn .icon:before, .nav_btn .icon:after {
	-webkit-transition: all 0.25s ease-out;
	position: absolute;
	height: 1px;
	background: #12318b;
	content: '';
	width: 15px;
}
.nav_btn .icon:before {
	top: -5px;
	left: 0;
}
.nav_btn .icon:after {
	top: 5px;
	left: 0;
}
.nav_btn.open .icon {
	-webkit-transition: all 0.4s ease-out;
	background-color: transparent;
	-webkit-transform: rotate(180deg);
}
.nav_btn.open .icon:before {
	top: 0;
	-webkit-transform: rotate(45deg);
}
.nav_btn.open .icon:after {
	top: 0;
	-webkit-transform: rotate(-45deg);
}
.sp_nav{
	position: fixed;
	top: 44px;
	padding-bottom: 35px;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	overflow-y: hidden;
	visibility: hidden;
	z-index: 99;
	left: 0;
}
.sp_nav.open{
	visibility: visible;
}
.sp_nav a{
	color: #FFF;
	letter-spacing: 0.05em;
	font-weight: bold;
}
.sp_nav_inner{
	height: 100%;
	background: #FFF;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	transition: 0.3s;
	padding: 10px 10px 20px;
	line-height: 1em;
	transform: translate( 100% , 0);
	display: none;
}
.sp_nav.open .sp_nav_inner{
	transform: translate( 0 , 0);
}
.sp_nav_inner_list > li{
	margin-bottom: 10px;
}
.sp_nav_inner_list > li > a{
	padding: 7px 5px 14px;
	color: #323232;
	line-height: 1em;
	display: block;
	position: relative;
	font-size: 14px;
}
.sp_nav_inner_list > li > a i{
	position: absolute;
	right: 5px;
}
.sp_nav_inner_list > li > a:after{
	content: "";
	display: block;
	height: 1px;
	width: calc( 100% + 20px );
	background: #dedede;
	position: absolute;
	left: -10px;
	bottom: 0;
}
.sp_nav_inner_contact_link li:nth-child(2) a{
	display: block;
	width: 100%;
	height: 100%;
	padding: 15px 20px;
	font-size: 15px;
	background: #12318b;
	color: #FFF;
	font-weight: bold;
	border-radius: 5px;
	text-align: center;
	line-height: 1em;
	transition: 0.3s;
}
.sp_nav_inner_contact_link li:nth-child(2) a:hover{
	background: #a5772b
}
.sp_nav_inner_contact_link li:nth-child(2) a span{
	font-size: 10px;
	display: block;
	line-height: 1em;
	margin-top: 5px;
}
.sp_nav_wrap,
.sp_overlay {
	position: fixed;
	height: 100%;
	top: 0;
}
.sp_nav_inner_contact_link_tel{
	display: block;
	width: 230px;
	margin: 20px auto 15px;
	text-align: center
}
.sp_nav_inner_contact_link_tel a{
	color: #000000;
}
.sp_nav_inner_contact_link_tel_txt_head,
.sp_nav_inner_contact_link_tel_txt_foot{
	display: block;
	font-weight: 600;
	font-size: 12px;
	width: 100%;
	text-align: center;
	padding-left: 33px;
	line-height: 1.7em;
}
.sp_nav_inner_contact_link_tel_num{
	font-family: "Montserrat", sans-serif;
	font-size: 25px;
	font-weight: bold;
	letter-spacing: 0;
	margin: 3px auto;
	display: block;
}
.sp_nav_inner_contact_link_tel_num span{
	font-size: 15px;
}
.sp_header,
.sp_nav_inner,
.nav_btn {
	display: none;
}
/*CTA*/
.cta_btn{
	text-align: center;
	width: 220px;
}
.cta_btn_catch{
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0;
	margin-bottom: 5px;
	position: relative;
	color: #12318b
}
.cta_btn_catch:after{
	content: "";
	display: block;
	height: 100%;
	width: 2px;
	background: #12318b;
	position: absolute;
	left: -10px;
	top: 0;
	transform: rotate(-18deg);
	border-radius: 2px;
}
.cta_btn_catch:before{
	content: "";
	display: block;
	height: 100%;
	width: 2px;
	background: #12318b;
	position: absolute;
	right: -10px;
	top: 0;
	transform: rotate(18deg);
	border-radius: 2px;
}
.cta_btn a{
	display: block;
	width: 100%;
	font-size: 15px;
	font-weight: bold;
	position: relative;
	color: #FFF;
	padding: 15px 10px;
	letter-spacing: 0.2em;
	border-radius: 40px;
	overflow: hidden
}
.cta_btn a:after{
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #12318b;
	z-index: -2;
}
.cta_btn a:before{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	background: #a5772b;
	z-index: -1;
	transform: translate(-50%,-50%);
	border-radius: 50%;
	height: 0;
	width: 0;
	transition: 0.4s;
}
.cta_btn a:hover:before{
	height: 240px;
	width: 240px;
}
/*----*/
.page_link{
	transform: translateY(-30px);
}
.mv_nav{
	border-radius: 40px;
	border: 8px solid #a5772b;
	overflow: hidden;
	background: #a5772b
}
.mv_nav > li{
	width: 16%;
}
.mv_nav > li:nth-child(1){
	width: 17%;
}
.mv_nav > li:nth-child(2){
	width: 17%;
}
.mv_nav > li:nth-child(3){
	width: 17%;
}
.mv_nav > li:nth-child(4){
	width: 17%;
}
.mv_nav > li a{
	background: #a5772b;
	color: #FFF;
	line-height: 1.4em;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0;
	width: 100%;
	transition: 0.3s;
}
.mv_nav > li a:hover{
	opacity: 0.6
}
.mv_nav li a{
	display: flex;
	flex-wrap: wrap;
	align-items: center
}
.mv_nav li a span:nth-child(1){
	display: block;
	height: 50px;
	width: 50px;
	padding: 10px;
	background: #FFF;
	border-radius: 50%;
	margin-right: 10px;
}
.mv{
	padding-top: 25px;
	position: relative;
	overflow: hidden;
}
.mv:after{
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #12318b;
	z-index: -10;
	background: url(img/lp/mv_bg.jpg) center center;
	background-size: cover;
}
.mv:before{
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(img/blue_dot.jpg) center top;
	background-size: 16px 16px;
	opacity: 0.3;
	mix-blend-mode: color-burn;
}
.mv .inner{
	position: relative;
}
.mv_left{
	width: 680px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.mv_left_txt{
	color: #FFF;
	font-size: 17px;
	margin-top: 10px;
}
.mv_right{
	width: 450px;
}
.ttl_01 {
	text-align: center
}
.ttl_01 span{
	display: inline-block;
	font-size: 25px;
	font-weight: 600;
	letter-spacing: 0;
	position: relative;
	color: #000000;
	margin: 0 auto 15px;
}
.ttl_01 span:after{
	content: "";
	display: block;
	height: 100%;
	width: 3px;
	background: #000000;
	position: absolute;
	left: -10px;
	top: 0;
	transform: rotate(-18deg);
	border-radius: 2px;
}
.ttl_01 span:before{
	content: "";
	display: block;
	height: 100%;
	width: 3px;
	background: #000000;
	position: absolute;
	right: -10px;
	top: 0;
	transform: rotate(18deg);
	border-radius: 2px;
}
.service{
	background: #f8f8f8
}

.ttl_03{
	margin-bottom: 0;
}
.ttl_03_jp{
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	line-height: 1.6em; 
	color: #000000;
	display: inline-block;
}
.ttl_03_en{
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	line-height: 1em;
	display: block;
	margin-bottom: 5px;
	padding-left: 30px;
	position: relative;
	color: #000000
}
.ttl_03_en:after{
	content: "";
	display: block;
	height: 3px;
	width: 20px;
	position: absolute;
	top: 7px;
	left: 0;
	background: #a5772b;
	mix-blend-mode: multiply
}
.ttl_03_en:before{
	content: "";
	display: block;
	height: 3px;
	width: 20px;
	position: absolute;
	top: 4px;
	left: 0;
	background: #12318b;
}
.service_catch{
	font-size: 30px;
	font-weight: bold;
	line-height: 1.6em;
	margin-bottom: 5px;
	color: #12318b
}
.service_lo_content p strong{
	font-weight: bold;
	color: #a5772b
}
.service_lo_content_dl dt{
	display: inline-block;
	padding: 8px 14px;
	background: #12318b;
	color: #FFF;
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 5px;
}
.service_lo_content_dl ul li{
	font-weight: bold;
	line-height: 1.6em;
	padding-left: 17px;
	position: relative;
}
.service_lo_content_dl ul li a{
	color: #0081ff;
	text-decoration: underline;
	transition: 0.3s;
}
.service_lo_content_dl ul li a:hover{
	opacity: 0.6;
	text-decoration: none;
}
.service_lo_content_dl ul li a i{
	display: inline-block;
	transform: translate(-1px,-7px);
	font-size: 10px;
}
.service_lo_content_dl ul li:after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 50%;
	content:"\f061";
	font-family: FontAwesome;
	font-size: 13px;
}
.ttl_02{
	text-align: center;
}
.ttl_02_jp{
	font-family: "Montserrat", sans-serif;
	font-size: 40px;
	line-height: 1.6em; 
	border-radius: 30px;
	margin-bottom: 5px;
	display: inline-block;
	position: relative;
}
.ttl_02_en{
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	line-height: 1em;
	display: block;
	margin-bottom: 5px;
	color: #12318b;
}
.txt_c{
	text-align: center;
	margin-bottom: 20px;
}
.service_lo{
	padding-top: 50px;
	margin-top: 0;
}
.service_lo.service_lo_first{
	padding-top: 50px;
}
.top_column_list{
	margin-top: 30px;
}
.top_column_list.lower_column_list{
	margin-top: 0
}
.top_column_list > *{
	width: 50%;
	border-right: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd
}
.top_column_list > *:nth-child(odd){
	border-left: 1px solid #dddddd;
}
.top_column_list > *:nth-child(1),
.top_column_list > *:nth-child(2){
	border-top: 1px solid #dddddd;
}
.top_column_list > * a{
	padding: 15px;
	transition: 0.3s;
	background: #FFF;
}
.top_column_list > * a:hover{
	opacity: 0.7;
}
.top_column_list_thumb{
	width: 160px;
	margin-right: 20px;
}
.top_column_list_content{
	width: calc( 100% - 180px );
}
.top_column_list_content_info_date{
	color: #707070;
	padding: 8px 0;
	font-size: 12px;
}
.top_column_list_content_info_cate{
	background: #12318b;
	color: #FFF;
	font-size: 12px;
	padding: 8px 10px;
	border-radius: 3px;
	margin-right: 20px;
}
.top_column_list_content_ttl{
	font-weight: 600;
	font-size: 13px;
	line-height: 1.4em;
	margin-top: 0;
	margin-bottom: 5px;
}
.top_news{
	overflow: hidden;
	padding: 100px 0;
	position: relative;
	background: #eef2f8;
}
.top_news:after{
	content: "News";
	color: #FFF;
	position: absolute;
	bottom: -1px;
	left: 40px;
	font-family: 'Noto Serif JP', serif;
	font-weight: bold;
	font-size: 100px;
	z-index: 0;
	opacity: 0.8
}
.top_news_head{
	width: 300px;
}
.top_news_list{
	background: #FFF;
	max-width: 800px;
	position: relative;
	margin: 15px auto 0;
}
.top_news_list li:nth-child(1){
	border-top: 1px solid #dddddd;
}
.top_news_list li{
	border-bottom: 1px solid #dddddd;
	border-left: 1px solid #dddddd;
	border-right: 1px solid #dddddd;
}
.top_news_list li a{
	display: block;
	padding: 15px;
	transition: 0.3s;
	position: relative
}
.top_news_list li a:after{
	content: "";
	display: block;
	height: 10px;
	width: 10px;
	border-right: 2px solid #12318b;
	border-bottom: 2px solid #12318b;
	position: absolute;
	top: calc( 50% - 5px );
	right: 20px;
	transform: rotate(-45deg)
}
.top_news_list li a:hover{
	opacity: 0.7;
}
.top_news_list_content_info_date{
	color: #707070;
	padding: 8px 0;
	font-size: 12px;
	margin-right: 20px;
}
.top_news_list_content_info_cate{
	background: #12318b;
	color: #FFF;
	font-size: 12px;
	padding: 8px 10px;
	border-radius: 3px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}
.top_news_list h3{
	font-weight: normal !important;
	font-size: 13px;
	line-height: 1.4em;
	margin-top: 10px;
	margin-bottom: 0;
}
.top_news_anker a{
	display: inline-block;
	font-family: 'Noto Serif JP', serif;
	font-size: 13px;
	margin-top: 20px;
	padding: 15px 56px 15px 0;
	position: relative;
	z-index: 10;
	transition: 0.3s;
}
.top_news_anker a:hover{
	color: #a5772b;
}
.top_news_anker a:after{
	content: "";
	display: block;
	height: 8px;
	width: 8px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	transform: rotate(45deg);
	position: absolute;
	top: 18px;
	right: 16px;
}
.top_news_anker a span{
	content: "";
	display: block;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	position: absolute;
	top: 2px;
	right: 0;
	overflow: hidden;
}
.top_news_anker a span:before{
	content: "";
	display: block;
	height: 40px;
	width: 40px;
	background: #000000;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.3s;
	z-index: -3;
}
.top_news_anker a:hover span:after{
	left: 0;
}
.top_news_anker a span:after{
	content: "";
	display: block;
	height: 40px;
	width: 40px;
	background: #a5772b;
	border-radius: 50%;
	position: absolute;
	top: 100%;
	left: -102%;
	transition: 0.3s;
	z-index: -2;
}
.top_news_anker a:hover span:after{
	top: 0;
	left: 0;
}
.top_news_btn{
	display: none;
}
.case_list > *{
	width: calc( 50% - 15px );
	border: 1px solid #dddddd;
	padding: 20px;
	margin-bottom: 30px;
}
.case_list_ttl{
	margin-bottom: 10px;
	text-align: center;
}
.case_list_ttl_en{
	display: block;
	color: #a5772b;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	border-radius: 50%;
	font-size: 10px;
	margin-bottom: 3px;
	width: 100%;
}
.case_list_ttl_en span{
	font-size: 20px;
}
.case_list_ttl_jp{
	font-size: 18px;
	width: 100%;
	display: block;
	line-height: 1.6em;
}
.case_list dt{
	width: 60px;
	line-height: 60px;
	color: #FFF;
	text-align: center;
	display: block;
	background: #12318b;
	letter-spacing: 0.2em;
	font-weight: bold;
	margin-right: 15px;
	writing-mode: vertical-rl
}
.case_list dd{
	width: calc( 100% - 75px );
}
.case_list dd strong{
	color: #a5772b;
}
.case_list dd ol li{
	line-height: 1.6em;
	padding-left: 15px;
	position: relative;
	margin-bottom: 5px;
	font-size: 15px;
}
.case_list dd ol li:last-child{
	margin-bottom: 0;
}
.case_list dd ol li:after{
	content: "";
	display: block;
	height: 8px;
	width: 8px;
	background: #12318b;
	border-radius: 50%;
	position: absolute;
	top: 6px;
	left: 0;
}
.case_list dl{
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #dddddd;
}
.case_list dl.case_list_dl_last{
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}
.btn_base a{
	display: block;
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	position: relative;
	color: #FFF;
	padding: 15px 30px;
	letter-spacing: 0.2em;
	border-radius: 40px;
	overflow: hidden;
	z-index: 10;
	font-family: "Montserrat", sans-serif;
	width: 230px;
	text-align: center;
	margin: 30px auto 0;
}
.btn_base a:after{
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #12318b;
	z-index: -2;
}
.btn_base a:before{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	background: #a5772b;
	z-index: -1;
	transform: translate(-50%,-50%);
	border-radius: 50%;
	height: 0;
	width: 0;
	transition: 0.4s;
}
.btn_base a:hover:before{
	height: 240px;
	width: 240px;
}
.btn_base a i{
	font-size: 12px;
	position: absolute;
	top: calc( 50% - 7px );
	right: 30px;
}
.service_lo .btn_base a{
	margin: 10px auto 0 0;
	font-weight: bold
}
.service_lo .btn_base a i{
	font-size: 20px;
	position: absolute;
	top: calc( 50% - 10px );
	right: 35px;
}
.section_wrap{
	padding: 80px 0 80px;
}
.okomarigoto{
	padding: 20px 0 50px;
}
.okomarigoto_lo{
	position: relative
}
.okomarigoto_lo_left_img{
	width: 95px;
	position: absolute;
	left: -20px;
	bottom: 5px;
}
.okomarigoto_lo_right_img{
	width: 105px;
	position: absolute;
	right: -10px;
	bottom: 5px;
}
.okomarigoto_lo_content_list{
	width: 500px;
	padding: 28px 35px;
	border: 3px solid #000000;
	border-radius: 15px;
	margin: 0 auto;
	background: #f5faff
}
.okomarigoto_lo_content_list li{
	font-size: 16px;
	font-weight: bold;
	line-height: 1.6em;
	padding: 0 0 0 26px;
	position: relative;
	margin-bottom: 6px;
	letter-spacing: 0;
}
.okomarigoto_lo_content_list li:last-child{
	margin-bottom: 0;
}
.okomarigoto_lo_content_list li i{
	position: absolute;
	left: 0;
	font-size: 19px;
	top: 2px;
	display: block;
	border-radius: 50%;
	background: #FFF;
	color: #a5772b;
	//#12318b
}
.okomarigoto_after{
	font-size: 28px;
	font-weight: bold;
	text-align: center
}
.okomarigoto_after strong{
	font-size: 35px;
	color: #12318b;
	display: inline-block;
	padding-bottom: 3px;
	position: relative
}
.okomarigoto_after strong:after{
	content: "";
	display: block;
	height: 6px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	border-top: 2px solid #12318b;
	border-bottom: 2px solid #12318b;
}
.okomarigoto_after img{
	width: 220px;
	display: inline-block;
	transform: translateY(25px);
}
.okomarigoto_lo_content_after{
	font-size: 16px;
	font-weight: bold;
	line-height: 2em;
	text-align: right;
	display: block;
	padding-right: 100px;
}
.okomarigoto_after{
	padding-top: 40px;
	position: relative;
}
.okomarigoto_after:after {
	content: "";
	display: inline-block;
	width: 100.5px;
	height: 100px;
	background: linear-gradient(rgba(255, 223, 0, 0.04), #ffdf00);
	clip-path: polygon(0 63.2%, 31% 63.2%, 31% 0, 69% 0, 69% 63.2%, 100% 63.2%, 50% 100%);
	position: absolute;
	top: -60px;
	left: calc( 50% - 50px );
	z-index: -1
}
.service_lo_img{
	width: 400px;
}
.service_lo_content{
	width: calc( 100% - 440px )
}
.service_lo_content p a{
	color: #0081ff;
	text-decoration: underline;
	transition: 0.3s;
}
.service_lo_content p a:hover{
	opacity: 0.6;
	text-decoration: none;
}
.service_lo_content p a i{
	display: inline-block;
	transform: translate(-1px,-7px);
	font-size: 10px;
}
/*-------------------------------------------------------------------------
FAQ
------------------------------------------------------------------------*/
.lower_qa_list{
	margin-top: 30px;
}
.lower_qa_list > li{
	background: #FFF;
	border-radius: 3px;
	border: 1px solid #eeeeee;
	width: 100%;
	margin-bottom: 10px;
}
.lower_qa_list > li:last-child{
	margin-bottom: 0;
}
.lower_qa_list > li p{
	margin-bottom: 0;
}
.qa_ttl{
	position: relative;
	padding: 20px 45px;
	font-weight: bold;
	font-size: 16px;
	transition: 0.3s;
	color: #172575;
	cursor: pointer;
	line-height: 1.6em;
}
.qa_ttl:hover{
	color: #172575;
}
.qa_ttl:after{
	content: "Q";
	position: absolute;
	top: 16px;
	left: 10px;
	font-size: 18px;
	font-weight: bold;
	font-family: "Montserrat", sans-serif;
	line-height: 27px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #172575;
	color: #FFF;
	text-align: center;
	z-index: 1;
}
.qa_ttl:before{
	content: "";
	display: block;
	height: 10px;
	width: 10px;
	border-right: 2px solid #000000;
	border-bottom: 2px solid #000000;
	transform: rotate(45deg);
	position: absolute;
	top: 24px;
	right: 25px;
	transition: 0.3s;
}
.qa_ttl:hover:before{
	border-right: 2px solid #172575;
	border-bottom: 2px solid #172575;
}
.qa_ttl.active:before{
	transform: rotate(225deg);
}
.pa_desc{
	position: relative;
	border-top: 1px solid #eeeeee;
	display: none;
	padding: 20px 25px 20px 50px;
}
.pa_desc:after{
	content: "A";
	position: absolute;
	top: 16px;
	left: 10px;
	font-size: 18px;
	font-weight: bold;
	font-family: "Montserrat", sans-serif;
	line-height: 30px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #a5772b;
	color: #FFF;
	text-align: center;
	z-index: 1;
}
.pa_desc > .pa_desc_list_circle{
	display: block;
	padding-left: 15px;
	position: relative
}
.pa_desc > .pa_desc_list_circle:after{
	content: "";
	display: block;
	height: 6px;
	width: 6px;
	border-radius: 50%;
	background: #000000;
	position: absolute;
	top: 10px;
	left: 0px;
}
.pa_desc > .pa_desc_list_num{
	display: block;
	padding-left: 34px;
	position: relative
}
.pa_desc > .pa_desc_list_num:after{
	content: "(1)";
	display: block;
	position: absolute;
	top: -2px;
	left: 3px;
}
.pa_desc > .pa_desc_list_num:nth-child(2):after{
	content: "(2)";
}
.pa_desc > .pa_desc_list_num:nth-child(3):after{
	content: "(3)";
}
.pa_desc > .pa_desc_list_num:nth-child(4):after{
	content: "(4)";
}
.pa_desc > .pa_desc_list_num:nth-child(5):after{
	content: "(5)";
}
.pa_desc > .pa_desc_list_num:nth-child(6):after{
	content: "(6)";
}
.pa_desc > .pa_desc_list_num:nth-child(7):after{
	content: "(7)";
}
.pa_desc a{
	color: #0081ff;
	text-decoration: underline;
	transition: 0.3s;
}
.pa_desc a:hover{
	opacity: 0.6;
	text-decoration: none;
}
/*-------------------------------------------------------------------------
FORM_3
------------------------------------------------------------------------*/
.form_3{
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
  margin-top: 30px;
}
.form_3 th,
.form_3 td {
	position: relative;
	text-align: left;
	vertical-align: top;
	padding: 10px 20px;
	border-top: 1px dotted #dddddd;
	vertical-align: middle;
}
.form_3 th{
	background: #f8f8f8;
}
.form_3 tr:last-child th,
.form_3 tr:last-child td{
	border-bottom: 1px dotted #dddddd;
}
.form_3.confirm tr th,
.form_3.confirm tr td{
	padding: 20px 15px;
}
.form_3 th h2{
	font-size: 14px;
	color: #000000;
	font-weight: bold;
}
.form_3 th{
	width: 250px;
}
.form_3 th{
	padding-right: 10px;
}
.form_3 .fix-txt{
	margin-top: 30px;
	line-height: 1.8em;
}
.form_3 .fix-txt a{
	display: block;
	line-height: 1.8em;
	color: #4e4d4d;
	font-size: 25px;
	margin-top: 40px;
}
.form_3 .fix-txt a i{
	color: #FFAB00;
}
.form_3 .fix-title{
	font-size: 20px;
	padding-bottom: 30px;
	border-bottom: 1px solid #000000;
}
/*---formDesign---*/
.form_3 input[type="text"], 
.form_3 input[type="submit"],
.form_3 input[type="tel"],
.form_3 input[type="search"],
.form_3 input[type="email"],
.form_3 input[type="mail"],
.form_3 input[type="password"],
.form_3 textarea, 
.form_3 button,
.form_3 select{
	outline: 0;
	width: 100%;
	padding: 15px;
	margin: 5px auto;
	outline: 0;
	border: 1px solid #DDDDDD;
	font-size: 16px;
	line-height: 1.2em;
	background: #FFF;
	font-family: arial, sans-serif;
 }
input[type="file"]{
  padding: 15px;
  margin: 5px auto;
  outline: 0;
}
.form_3 .satsusu > div{
	width: 200px;
	float: left;
}
.form_3 .satsusu span{
	display: block;
	width: 20px;
	float: left;
	margin: 20px 10px;
}
.form_3 textarea{
	height: 10em;
}
.form_3 input[type="text"]:focus,
.form_3 input[type="tel"]:focus,
.form_3 select:focus,
.form_3 textarea:focus{
  border-color: #12318b;
  }
  
.required{
	font-size: 10px;
	background: #a5772b;
	display: inline-block;
	padding: 3px 10px;
	line-height: 1.4em;
	color: #FFF;
	border-radius: 3px;
	margin-left: 15px;
}
.any{
	font-size: 10px;
	background: #f0f0f0;
	display: inline-block;
	padding: 3px 10px;
	line-height: 1.4em;
	border-radius: 3px;
	margin-left: 15px;
	border: 1px solid #dddddd;
}
.radio_magazine input{
	display: none;
}
.radio_magazine label {
	display: block;
	font-weight: bold;
	display: block;
	font-weight: bold;
	position: relative;
	padding-left: 22px;
	padding-top: 0;
	padding-bottom: 0;
	transition: 0.3s;
	cursor: pointer;
	letter-spacing: 0;
	margin-right: 15px;
	line-height: 1.4em;
}
.radio_magazine label i{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	color: #a8a8a8;
}
.radio_magazine input:checked + label {
}
.radio_magazine input:checked + label i{
	color: #e61e19;
}
.form_3 .select_wrap{
	position: relative;
}
.form_3 .select_wrap:after{
	content: "";
	display: block;
	height: 13px;
	width: 13px;
	border-bottom: 2px solid #a5772b;
	border-right: 2px solid #a5772b;
	transform: rotate(45deg);
	position: absolute;
	top: calc( 50% - 8px );
	right: 15px;
	z-index: 1;
}
/*ENTRY BIRTHDAY*/
.form_birthday > div:nth-child(1){
	width: 105px;
}
.form_birthday > div:nth-child(1) input{
	width:70px;
	margin-right: 8px;
	padding: 10px !important;
}
.form_birthday > div:nth-child(2){
	width: 70px;
	margin-right: 13px;
}
.form_birthday > div:nth-child(2) select{
	width: 40px;
	margin-right: 8px;
	padding: 10px;
	font-size: 14px;
}
.form_birthday > div:nth-child(3){
	width: 75px;
}
.form_birthday > div:nth-child(3) select{
	width: 40px;
	margin-right: 8px;
	padding: 10px;
	font-size: 14px;
}
/*PRIVACY*/
.check_privacy{
	text-align: center;
}
.privacy_chack{
	margin-bottom: 30px;
	padding: 15px 20px;
	background: #f8f8f8
}
.lower_privacy_content_inner{
	background: #FFF;
	font-weight: normal
}
.contact_privecy_address{
	font-style: normal;
	line-height: 1.4em;
	font-size: 13px;
}
.lower_privacy_content_inner.lower_contact_privacy{
	padding: 10px;
	text-align: left;
	height: 300px;
	overflow-y: scroll;
	margin: 10px auto 20px;
	border: 1px solid #dddddd;
}
.lower_contact_privacy_ttl{
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-bottom: 1px solid #dddddd;
	font-weight: bold
}
.lower_privacy_content_inner{
	text-align: left
}
.lower_contact_privacy p{
	font-size: 12px;
}
.lower_contact_privacy dl{
	margin-bottom: 20px;
	font-size: 12px;
}
.lower_contact_privacy dt{
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-bottom: 1px solid #dddddd;
	font-weight: bold
}
.lower_contact_privacy dl ul li{
	padding-left: 30px;
	position: relative;
}
.lower_contact_privacy dl ul li:after{
	content: "(1)";
	display: block;
	position: absolute;
	top: -1px;
	left: 0;
}
.lower_contact_privacy dl ul li:nth-child(2):after{
	content: "(2)";
}
.lower_contact_privacy dl ul li:nth-child(3):after{
	content: "(3)";
}
.lower_contact_privacy dl ul li:nth-child(4):after{
	content: "(4)";
}
.lower_contact_privacy dl ul li:nth-child(5):after{
	content: "(5)";
}
.lower_contact_privacy dl ul li:nth-child(6):after{
	content: "(6)";
}
.lower_contact_privacy dl ul li:nth-child(7):after{
	content: "(7)";
}
.lower_contact_privacy dl ul li:nth-child(8):after{
	content: "(8)";
}
.lower_contact_privacy dl ul li:nth-child(9):after{
	content: "(9)";
}
.lower_contact_privacy dl ul li:nth-child(10):after{
	content: "(10)";
}
/*PRIVACY CHECK*/
.check_box01_wrap{
	margin: 0 auto 10px;
	text-align: center
}
.check_box01_inner{
	padding: 15px 30px;
	background: #f8f8f8;
	display: inline-block;
	margin: 0 auto;
	border: 1px solid #dddddd;
}
/*CHECK BOX*/
.check_box01 input{
	display: none;
}
.check_box01{
	padding-left: 27px;
	position: relative;
}
.check_box01 span{
	font-weight: bold;
}
.check_box01 span:after{
	content:"\f096";
	font-family: FontAwesome;
	margin-right: 7px;
	color: #ccc;
	font-size: 23px;
	position: absolute;
	top: -3px;
	left: 0;
}
.check_box01 span:before{
	content:"\f14a";
	font-family: FontAwesome;
	margin-right: 7px;
	color: #e61e19;
	font-size: 23px;
	position: absolute;
	top: -3px;
	left: 0;
	z-index: 1;
	transition: 0.3s;
	opacity: 0;
}
.check_box01 input[type="checkbox"]:checked + span:before{
	opacity: 1;
}
/*CHECK BOX*/
.check_box_multi li{
	margin-right: 24px;
	margin-bottom: 5px;
}
.check_box02 input{
	display: none;
}
.check_box02{
	padding-left: 19px;
	font-size: 13px;
	position: relative;
	letter-spacing: 0em;
}
.check_box02 span:after{
	content:"\f096";
	font-family: FontAwesome;
	margin-right: 7px;
	color: #ccc;
	font-size: 18px;
	position: absolute;
	top: -4px;
	left: 0;
}
.check_box02 span:before{
	content:"\f14a";
	font-family: FontAwesome;
	margin-right: 7px;
	color: #e61e19;
	font-size: 18px;
	position: absolute;
	top: -4px;
	left: 0;
	z-index: 1;
	transition: 0.3s;
	opacity: 0;
}
.check_box02 input[type="checkbox"]:checked + span:before{
	opacity: 1;
}
.contact_btn{
	margin: 20px auto 20px;
}
.contact_btn_inner{
	width: 270px;
	margin: 0 auto;
	position: relative;
}
.contact_btn_inner:before{
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background: #12318b;
	position: absolute;
	top: 0;
	right: 0;
	transition: 0.3s;
	z-index: 1;
}
.contact_btn_inner:after{
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background: #a5772b;
	position: absolute;
	top: 0;
	right: 0;
	transition: 0.3s;
	z-index: 0;
}
.contact_btn.contact_btn_back .contact_btn_inner:before{
	background: #818181;
}
.contact_btn.contact_btn_back .contact_btn_inner:after{
	background: #000000;
}
.contact_btn_inner:hover:before{
	width: 0;
}
.contact_btn a,
.contact_btn input{
	display: block;
	width: 100%;
	padding: 20px 10px;
	text-align: center;
	font-size: 14px;
	color: #FFF;
	font-weight: bold;
	letter-spacing: 0.2em;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
.contact_btn a{
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
}
.thanks_btn{
	margin: 20px auto 40px;
}
.thanks_btn li:nth-child(1){
	margin-bottom: 20px;
}
.thanks_btn li{
	margin-top: 0;
}
.thanks_btn_tel{
	width: 270px;
	text-align: center;
	margin: 0 auto;
}
.thanks_btn_tel_num_txt{
	font-weight: bold;
	letter-spacing: 0;
	font-size: 13px;
}
.thanks_btn_tel_num{
	font-size: 24px;
	font-weight: bold;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.05em;
	line-height: 1.4em;
}
.thanks_btn_tel_open{
	display: block;
	width: 100%;
	font-size: 13px;
	text-align: center;
	line-height: 1
}
.thanks_btn .contact_btn{
	margin-top: 0;
	margin-bottom: 0;
}
.privacy_check .error,
.form_3 .error{
	font-size: 11px;
	color: #f00000
}
p.error{
	font-size: 11px !important;
	color: #f00000 !important
}
.privacy_check .error{
	text-align: center
}

.lower_contact_step_chart ul{
	position: relative;
	margin: 0 auto 20px;
}
.lower_contact_step_chart li{
	position: relative;
	padding: 15px 15px;
	width: calc( 33.33333% - 20px );
	text-align: center;
	margin-right: 30px;
	border-radius: 3px;
	border: 1px solid #dddddd;
	line-height: 1em;
	font-weight: bold;
	background: #f8f8f8;
	letter-spacing: 0.02em;
	color: #aaaaaa;
	z-index: 1;
}
.lower_contact_step_chart li:after{
	content: "";
	display: block;
	height: 1px;
	width: 32px;
	background: #dddddd;
	position: absolute;
	top: 50%;
	right: 100%;
	z-index: 0;
}
.lower_contact_step_chart li:last-child{
	margin-right: 0;
}
.lower_contact_step_chart li:first-child:after{
	display: none;
}
.lower_contact_step_chart li span{
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	display: block;
	line-height: 1em;
	font-size: 13px;
	margin-bottom: 6px;
}
.lower_contact_step_chart li.active{
	background: #12318b;
	color: #FFF;
}

/*ENTRY RADIO*/
.radio_btn01 input{
	display: none;
}
.radio_btn01{
	padding-left: 25px;
	position: relative;
	margin-right: 15px;
}
.radio_btn01_wrap .radio_btn01:last-child{
	margin-right: 0;
}
.radio_btn01 span:after{
	content:"\f1db";
	font-family: FontAwesome;
	margin-right: 7px;
	color: #ccc;
	font-size: 23px;
	position: absolute;
	top: 0;
	left: 0;
}
.radio_btn01 span:before{
	content:"\f058";
	font-family: FontAwesome;
	margin-right: 7px;
	color: #12318b;
	font-size: 23px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: 0.3s;
	opacity: 0;
}
.radio_btn01 input[type="radio"]:checked + span:before{
	opacity: 1;
}
.radio_btn01_wrap_one_row .radio_btn01{
	width: 100%;
	display: block;
	margin-bottom: 13px;
}
.radio_btn01_wrap_one_row .radio_btn01:last-child{
	margin-bottom: 0;
}
.radio_btn01_wrap_one_flex .radio_btn01{
	display: inline-block;
	margin-bottom: 0;
}
.radio_btn_check-input_radio{
}
.radio_btn_check-input_input{
	width: 100%;
	max-width: 220px;
	margin-top: -8px;
}
body .radio_btn_check-input_input input{
	outline: 0;
	width: 100%;
	display: inline-block;
	padding: 8px 15px !important;
	margin: 0 auto 0;
	outline: 0;
	border: 1px solid #DDDDDD;
	font-size: 16px;
	line-height: 1.2em;
	background: #FFF;
	border-radius: 5px;
}
.form_3_input_col_half{
	max-width: 250px;
}
.form_3_input_col_half_ttl{
	font-weight: bold;
	margin-bottom: 3px;
}
@media screen and (max-width:700px) {
	.lower_contact_step_chart li{
		padding: 10px 5px;
		width: calc( 33% - 6px );
		margin-right: 9px;
		font-size: 12px;
		letter-spacing: 0em;
	}
	.lower_contact_step_chart li:after{
		width: 10px;
	}
	.lower_contact_step_chart li:last-child{
		margin-right: 0;
	}
	.radia_contact_type label {
		width: calc( 50% - 5px );
		margin-bottom: 10px;
		border-left: 1px solid #dddddd;
	}
	.radia_contact_type {
		border: none
	}
	.form_3{
		margin-bottom: 15px;
		border-left: none;
		border-right: none;
	}
	.form_3 th{
		width: 100%;
		display: block;
		padding: 15px 15px 13px 20px;
		background: #f8f8f8;
		border: none;
	}
	.form_3 td{
		width: 100%;
		display: block;
		padding: 5px 0 20px 0;
		border-top: none;
	}
	.form_3 td{
		width: 100%;
		display: block;
		padding: 5px 0 20px 0;
		border: none
	}
	.form_3 tr:last-child td{
		padding: 10px 0 0 0;
		border: none
	}
	.form_3 tr:last-child th,
	.form_3 tr:last-child td{
		border: none
	}
	.page_content_inner_head>div:nth-child(1) {
		margin-bottom: 10px;
	}
	.page_content_inner_head>div {
	  width: 100%
	}
	.page_content_inner_head:after {
		display: none;
	}
	.form_3 td.form_birthday{
		display: flex;
		justify-content: flex-start;
	}
	.check_privacy p{
		text-align: left;
	}
}

footer{
	padding-top: 30px;
	border-top: 1px solid #eeeeee;
}
.footer_logo{
	text-align: center;
	width: 200px;
	margin: 0 auto 15px;
}
.footer_logo img{
	width: 42px;
	margin: 0 auto;
	display: block;
}
.footer_logo_jp {
	font-weight: bold;
	margin-top: 1px;
	display: block;
	font-size: 21px;
	line-height: 1.6em;
	color: #12318b;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0em;
	letter-spacing: 0.05em;
}
.footer_logo_en {
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	color: #12318b;
	display: block;
	margin-top: 0;
	font-size: 12px;
	letter-spacing: 0em;
}
.footer_address{
	width: 100%;
	text-align: center;
}
.footer_address address{
	font-style: normal;
	line-height: 1.6em;
}
.footer_address address a{
	display: inline-block;
	padding: 10px 0 2px;
	line-height: 1em;
	border-bottom: 1px solid #000000;
	transition: 0.3s;
}
.footer_address address a:hover{
	border-bottom: 1px solid rgba(0, 0, 0, 0);
	opacity: 0.7;
}
.footer_address address a i{
	font-size: 11px;
	display: inline-block;
	transform: translate(2px,-1px)
}
.bottom_write{
	background: #f8f8f8;
	padding: 10px;
	margin-top: 30px;
}
.bottom_write small{
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
}
.footer_privacy_link{
	font-size: 13px;
}
.cta_fixed_banner_close{
	height: 25px;
	width: 25px;
	border-radius: 50%;
	background: #FFF;
	position: absolute;
	top: -10px;
	right: -10px;
	border: 1px solid #dddddd;
}
.cta_fixed_banner_close:before{
	content: "";
	display: block;
	height: 12px;
	width: 1px;
	background: #000000;
	transform: rotate(45deg);
	position: absolute;
	top: 5px;
	right: 11px;
}
.cta_fixed_banner_close:after{
	content: "";
	display: block;
	height: 12px;
	width: 1px;
	background: #000000;
	transform: rotate(-45deg);
	position: absolute;
	top: 5px;
	left: 11px;
}
.cta_fixed_banner{
	width: 260px;
	padding: 15px 15px 15px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 10;
	transition: 0.3s;
	color: #FFF
}
.cta_fixed_banner.close{
	opacity: 0;
	visibility: hidden;
}
.cta_fixed_banner:before{
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #12318b;
	z-index: -3;
	border-radius: 10px;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .3), 0 1px 5px 0 rgba(0, 0, 0, .2)
}
.cta_fixed_banner_strong_txt{
	font-size: 14px;
	font-weight: bold;
	line-height: 1em;
	letter-spacing: 0;
	position: relative;
	text-align: center;
	margin-bottom: 6px;
}
.cta_fixed_banner_btn li:nth-child(1){
	margin-bottom: 5px;
}
.cta_fixed_banner_btn li a{
	display: block;
	width: 100%;
	padding: 15px 20px;
	font-size: 15px;
	text-align: center;
	color: #FFF;
	font-weight: bold;
	border-radius: 30px;
	position: relative;
	z-index: 1;
	transition: 0.3s;
	overflow: hidden;
}
.cta_fixed_banner_btn li a:hover{
	color: #a5772b
}
.cta_fixed_banner_btn li a:after{
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #a5772b;
	z-index: -2;
}
.cta_fixed_banner_btn li a:before{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	background: #FFF;
	z-index: -1;
	transform: translate(-50%,-50%);
	border-radius: 50%;
	height: 0;
	width: 0;
	transition: 0.4s;
}
.cta_fixed_banner_btn li a:hover:before{
	height: 240px;
	width: 240px;
}
.cta_fixed_banner_btn li a i{
	font-size: 18px;
	position: absolute;
	top: calc( 50% - 9px );
	left: 35px;
}

.analysis_tel_num{
	font-family: "Montserrat", sans-serif;
	font-size: 25px;
	font-weight: bold;
	letter-spacing: 0;
	margin: 3px auto;
	display: block;
}
.analysis_tel_num span{
	font-size: 14px;
}
.cta_fixed_tel{
	text-align: center;
	font-weight: bold;
	font-size: 12px;
}
@media screen and (max-width:1180px) {
	.wide_inner{
		padding: 0 15px;
	}
	.inner{
		padding: 0 15px;
	}
	.narrow_inner{
		padding: 0 15px;
	}
	.okomarigoto_inner{
		padding: 0 15px;
	}
	.case_list > *{
		width: 100%;
		margin-bottom: 15px;
		padding-top: 15px;
	}
	.case_list > *{
		padding: 10px;
		margin-bottom: 10px;
	}
	.case_list > *:last-child{
		margin-bottom: 0;
	}
	.case_list dl{
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	.mv_nav li a span:nth-child(1){
		height: 40px;
		width: 40px;
		padding: 6px;
		margin-right: 6px;
	}
	.header_foot ul > * a{
		font-size: 14px;
		letter-spacing: 0;
	}
	.service_catch{
		font-size: 25px;
	}
	.service_lo_content{
		width: calc( 100% - 420px )
	}
}
@media screen and (max-width:915px) {
	.page_link{
		display: none;
	}
	header{
		display: none;
	}
	.section_wrap{
		padding: 40px 0 40px;
	}
	.okomarigoto{
		padding: 40px 0 40px;
	}
	.cta_fixed_banner_close{
		top: 10px;
		right: 10px;
		z-index: 5;
	}
	.cta_fixed_banner{
		width: 100%;
		padding: 0;
		position: fixed;
		bottom: 0;
		right: 0;
		z-index: 10;
		transition: 0.3s;
		color: #FFF
	}
	.cta_fixed_banner:before{
		display: none
	}
	.cta_fixed_banner_strong_txt{
		position: absolute;
		top: -20px;
		color: #12318b;
		display: block;
		text-align: center;
		width: 260px;
		left: calc( 50% - 130px );
		  text-shadow:
			1px 1px 1px #FFF,
			-1px 1px 1px #FFF,
			-1px -1px 0 #FFF,
			1px -1px 0 #FFF;
	}
	.cta_fixed_banner_strong_txt:before{
		content: "まずは"
	}
	.cta_fixed_banner_btn li a{
		border-radius: 0;
	}
	.cta_fixed_banner_btn li:nth-child(1){
		margin-bottom: 0;
	}
	.cta_fixed_banner_btn li:nth-child(2){
		display: none;
	}.cta_fixed_banner_btn li a:hover{
		color: #FFF
	}
	.cta_fixed_banner_btn li a:after{
		background: #12318b;
		transition: 0.4s;
	}
	.cta_fixed_banner_btn li a:hover:after{
		background: #a5772b;
	}
	.cta_fixed_banner_btn li a:hover:before{
		background: #a5772b;
	}
	.cta_fixed_banner_btn li a i{
		font-size: 18px;
		position: absolute;
		top: calc( 50% - 9px );
		left: calc( 50% - 80px );
	}
	.service_lo.service_lo_rv.fle_btw{
		flex-direction: column-reverse;
	}
	.service_lo_img{
		width: 100%;
		max-width: 500px;
		margin: 20px auto 0;
	}
	.service_lo_content{
		width: 100%;
	}
	.ttl_03{
		margin-bottom: 0;
		text-align: center;
	}
	.ttl_03_jp{
		font-family: "Montserrat", sans-serif;
		font-size: 18px;
		line-height: 1.6em; 
		color: #000000;
		display: inline-block;
		width: 100%;
	}
	.ttl_03_en{
		margin-bottom: 5px;
		padding: 10px 20px;
		background: #12318b;
		color: #FFF;
		width: 170px;
		display: inline-block;
		margin: 0 auto 10px;
	}
	.ttl_03_en:after{
		display: none;
	}
	.ttl_03_en:before{
		display: none;
	}
	.service_catch{
		text-align: center
	}
	
	.service_lo_content_dl dt{
		margin: 0 auto;
		width: 150px;
		display: block;
		text-align: center;
		margin-bottom: 10px;
		padding: 10px 0;
		background: none;
		border: 2px solid #12318b;
		color: #12318b;
	}
	.service_lo_content_dl dd{
		width: 100%;
	}
	.service_lo_content_dl ul{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.service_lo_content_dl ul li{
		padding-left: 0;
	}
	.service_lo_content_dl ul li:after{
		content: "/";
	}
	.service_lo_content_dl ul > li:last-child:after{
		display: none;
	}
	.service_lo_content_dl ul li i{
		display: none;
	}
	.service_lo{
		padding-top: 20px;
		margin-top: 0;
	}
	.service_lo.service_lo_first{
		padding-top: 20px;
	}
	.okomarigoto_lo_left_img{
		width: 65px;
		position: absolute;
		left: 40px;
		bottom: 5px;
	}
	.okomarigoto_lo_right_img{
		width: 75px;
		position: absolute;
		right: 30px;
		bottom: 5px;
	}
	.okomarigoto_lo_content_list{
		width: 380px;
		padding: 10px 10px;
		border: 2px solid #000000;
		border-radius: 5px;
	}
	.okomarigoto_lo_content_list li{
		font-size: 14px;
		padding: 0 0 0 18px;
		margin-bottom: 4px;
	}
	.okomarigoto_lo_content_list li:last-child{
		margin-bottom: 0;
	}
	.okomarigoto_lo_content_list li i{
		font-size: 15px;
		top: 2px;
		//#12318b
	}
	.okomarigoto_lo_content_after{
		font-size: 15px;
		padding-right: 110px;
	}
	.top_column_list > *{
		width: 100%;
		border-right: 1px solid #dddddd;
		border-left: 1px solid #dddddd;
		border-bottom: 1px solid #dddddd
	}
	.top_column_list > *:nth-child(odd){
		border-left: 1px solid #dddddd;
	}
	.top_column_list > *:nth-child(2){
		border-top: none;
	}
	.top_column_list_thumb{
		width: 100px;
		margin-right: 10px;
	}
	.top_column_list_content{
		width: calc( 100% - 110px );
	}
	.ttl_02_jp{
		font-size: 30px;
	}
	.sp_header,
	.sp_nav_inner,
	.nav_btn {
		display: block;
	}
	.sp_bl{
		height: 45px;
		width: 100%;
	}
}
@media screen and (max-width:600px) {
	.okomarigoto_lo_left_img{
		display: none;
	}
	.okomarigoto_lo_right_img{
		display: none;
	}
	.okomarigoto_lo_content_list{
		width: 100%;
	}
	.okomarigoto_lo_content_after{
		padding: 0;
	}
	
	
	.okomarigoto_after{
		font-size: 16px;
	}
	.okomarigoto_after strong{
		font-size: 20px;
	}
	.okomarigoto_after img{
		width: 120px;
		display: inline-block;
		transform: translateY(13px);
	}
	.okomarigoto_after{
		padding-top: 20px;
		position: relative;
	}
	.txt_c{
		text-align: left
	}
}
.tel_link{
	pointer-events: none;
}
@media screen and (max-width:480px) {
	.tel_link{
		pointer-events: auto;
	}
	.spinner{
		width: 40px;
		border: 2px solid #c9181d;
		border-radius: 50%;
	    position: absolute;
	    bottom: 120px;
		right: 30px;
	}
}

@media screen and (max-width:460px) {
	.ttl_01 span{
		font-size: 19px;
	}
}