:root {
	--color-text-01: #6d819c;
	--color-text-02: #e4e7ec;
	--color-text-03: #179b94;
	--color-text-04: #6e2a08;
	--color-text-05: #e7f0ff;
	--color-text-06: #bdcce6;

	--normal-text : #333333;
	--light-text : #ffffff;
	--dark-text : #000;
	--dark-bg-color : #444;
  }

  @font-face {
    font-family: 'EB';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/paybooc-ExtraBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'M';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/paybooc-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'L';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/paybooc-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'B';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/paybooc-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
* {
	font-family: 'M', sans-serif;
	color:var(--normal-text);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
.clear{
	clear:both;
}
*:focus {
    outline: 0;
	background:transparent;
}

h3{
	font-weight:normal;
}
html,body{
	margin:0;
	padding:0;
	
}
.blind {
	font-size:15px;
	letter-spacing:2px;

}
.center{
	text-align:center;
}

input:focus,select:focus,textarea:focus{
    outline: 0;
	background:var(--light-text);
	box-shadow:0 0 10px 0 rgba(0, 174, 255, 0.3);
	border:1px solid var(--color-text-03) !important;
	transition-property:all !important;transition-duration:.2s !important
}


.hidden-scroll {
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
}
.hidden-scroll::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera*/
}



a {text-decoration:none;}
ul {padding:0;margin:0}
li {list-style:none;padding:0;margin:0}
.ani{transition-property:all !important;transition-duration:.2s !important}
.ani-1s{transition-property:all;transition-duration:1s}


.table{
	display: table;
	width:100%;
	border-collapse: collapse;
}
.td {
	display:table-row;
}
.td {
	display:table-cell;
}

hr {
	background:transparent;
	border:0;
	border-top:1px solid var(--color-text-02);
	margin:30px 0;
	height:0px;
	display:block;
	
}


.top-space{
	height:100px;
}

header {
    height: 100px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    position: fixed;
	left:0;
	top:0;
	width:100%;
	background:#fff;
    z-index: 1000;
}

header > div{
	max-width:1200px;
	margin:0 auto;
	

	height:100px;
}

header > div > a > img{
	height:100px;
	width:245px;
	width:auto;
	padding: 20px 0;
	float:left;
}

header > div > ul {
	float:right;
	width:calc(100% - 265px);
	text-align: right;
}
header > div > ul > li {
	display: inline-block;
	height:100px;
}
header > div > ul a {
    font-family: 'EB';
    display: inline-block;
    text-align: center;
    padding: 38px 20px;
    font-size: 20px;
	position: relative;
	z-index: 1;
}
header > div > ul a > i {
	vertical-align: bottom;
	color:#dddddd;
	margin-right:3px;

}
header > div > ul a::after {
    content: " ";
    position: absolute;
    bottom: 34px;
    left: 18px;
    width: 0;
    height: 2px;
    background: #ffd71a;
    z-index: 1;
    display: block;
	transition-property:all !important;transition-duration:.2s !important
}

header > div > ul a:hover {
	color:#8a5922;
	/* transform:scale(1.1,1.1); */


}
header > div > ul a:hover i{
	color:#000;
}
header > div > ul a:hover::after {
	width: calc(100% - 34px);
}

.mo-menu,
.mo-menu-close,
.mo-call{
    background: #fff;
    border: 1px solid #d5e5fb;
	
    position: absolute;
    right: 23px;
    top: 28px;
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 5%;
    padding-top: 5px;
}
.mo-menu i,
.mo-menu-close i ,
.mo-call i {
	color:#a5b2c3;
}
.wrap-menu{
	background:#fff;
	height:100vh;
	width:100vw;
	position: fixed;
	left:0;
	right:0;
	top:0;
	bottom:0;
	z-index: 1000000;
	text-align:center;
	display:none;
}
.wrap-menu > div{
	max-width:720px;
	margin:0 auto;
}
.wrap-menu > div img {
	max-width:400px;
	margin-top:40px;
}
.wrap-menu > div ul{
	max-width:400px;
	margin:0 auto;
	text-align:left;
}
.wrap-menu > div ul a{
	font-size:32px;
    font-family: 'EB';
    display: inline-block;
    text-align: center;
    padding: 38px 20px;
    font-size: 32px;
	position: relative;
	z-index: 1;	
}
.wrap-menu > div ul a::after {
    content: " ";
    position: absolute;
    bottom: 34px;
    left: 18px;
    width: calc(100% - 34px);
    height: 3px;
    background: #ffd71a;
    z-index: 1;
    display: block;
	transition-property:all !important;transition-duration:.2s !important
}
.wrap-menu > div ul a > i {
	vertical-align: bottom;
	color:#dcda65;
	margin-right:3px;

}

.gold-line{
	background:linear-gradient(to right,#bd7d00 0%,45%,#ffd71a 67%,#bd7d00 88%);
	height:5px;
}

.main-idx{
	position: relative;
	z-index: -1;
	background-image: url(/assets/img/idx_bg_01_v2.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height:800px;
	text-align: center;
}
.main-idx::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 0 140px 140px;
    border-color: transparent transparent transparent var(--color-text-04);
    z-index: -1;
}
.main-idx::before {
    content: ' ';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 140px 140px 0 0;
    border-color: transparent var(--color-text-04) transparent transparent ;
    z-index: -1;
}

.lawyer {
	max-width:100%;
	margin-top:93px;
}
.lawyer-txt {
	height:Auto;
	width:580px;
	position:absolute;
	left:50%;
	margin-left:-620px;
	top:200px;
}
.main-info{

	background:#f7f7f7;
	text-align: center;
	position: relative;
	z-index: -1;
	background-image: url(/assets/img/idx_info.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;	
}
.main-info img{
	width:100%;
	width:1000px;
	margin:0 auto;
	padding:80px 0;	
}
/*
.main-info::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 0 500px 500px;
    border-color: transparent transparent transparent rgba(0,0,0, 0.08);
    z-index: -1;
}
.main-info::before {
    content: ' ';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 500px 500px 0 0;
    border-color: transparent rgba(0,0,0, 0.08) transparent transparent ;
    z-index: -1;
}
*/
.main-ex-box{
    background: #d6e8e8;
    padding: 100px 0;
}
.main-ex {
	width:1200px;
	margin:0 auto;
	font-size:0;
}

.main-ex img{
	width:50%;
	display: inline-block;
}


footer{
	background:#333;
	
}
footer > div{
	width:1200px;
	margin:0 auto;
	padding:20px 0;
	position:relative;
}
footer > div > h3 {
	font-size:26px;
	font-family: "B";
	color:#aaa;
}
footer > div > div{
	color:#aaa;
	font-size:18px;
	height:32px;
}
footer > div > .bottom-logo {
	position:absolute;
	right:0;
	top:60px;
	width:220px;
	opacity: .5;
}

.sub-title{
	position: relative;
	z-index: -1;
	background-image: url(/assets/img/idx_bg_01_v2.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height:300px;
	text-align:center;
}
.sub-title::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 0 70px 70px;
    border-color: transparent transparent transparent var(--color-text-04);
    z-index: -1;
}
.sub-title::before {
    content: ' ';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 70px 70px 0 0;
    border-color: transparent var(--color-text-04) transparent transparent ;
    z-index: -1;
}

.sub-title h3{
	position: relative;
	display: inline-block;
	text-align: center;
	margin-top:140px;
	font-size:36px;
	font-family: 'B';
	color:#6d2a07;
	letter-spacing: 0;
	text-shadow: 0 0 2px #fff;
	padding-left:10px;
	padding-right:10px;

	font-weight: normal;
}
.sub-title h3::before{
	content:"";
	width:100%;
	height:4px;
	background:linear-gradient(to right,#bd7d00 0%,45%,#ffd71a 67%,#bd7d00 88%);
	position: absolute;
	left:0;
	top:-5px;
}
.sub-title h3::after{
	content:"";
	width:100%;
	height:4px;
	background:linear-gradient(to right,#bd7d00 0%,45%,#ffd71a 67%,#bd7d00 88%);
	position: absolute;
	left:0;
	bottom:-5px;
}

.about-box {
	background:var(--color-text-04);
	text-align: center;
	padding:30px;
	height:150px;
	position: relative;
	background-image: url('/assets/img/title_bg_01.jpg');
	background-position: top center;
	background-size: 1280px;
	background-repeat: no-repeat;

	
}
.about-img-02 {
	background-image: url('/assets/img/title_bg_02.jpg');
}
.about-img-03 {
	background-image: url('/assets/img/title_bg_03.jpg');
}
.about-box h3 {
	margin:0;
	color:#fff;
	font-size:32px;
	text-align:center;
	font-family: 'B';
	display:inline-block;
	vertical-align: middle;
	margin-top: 30px;
}
.about-box img{
	height:90px;
	vertical-align: middle;
	margin-right:100px;
}

.about-content{
	min-height:600px;
	position: relative;
	padding:0 0 50px;
}
.about-content .lawyer{
	right:100px;
	margin-right:0;
	top:0;
}
.about-content .table{
	max-width:1200px;
	margin:0 auto;
}
.about-content .td {

	position:relative;
}
.about-content .td .lawyer-img{
	width:100%;
	margin-top:140px;
}
.about-content .td .lawyer-sign{
	width:274px;
	margin-top:50px;
}

.about-content .td1 {
	width:60%;
	vertical-align: top;
}
.about-content .td2 {
	width:40%;
	text-align:center;
}
.about-content .td1 div:first-child{
	padding:40px;
}
.about-content .td1 div h3{
	font-family: 'L';
	font-size:30px;
	line-height:164%;
	margin-bottom:60px;
}
.about-content .td1 div p{
	font-family: 'M';
	font-size:20px;
	line-height:164%;
}
.about-content .td1 span{
	background:#182142;
	color:#fff;
	padding:5px 8px 4px;
	font-family: 'B';
	font-size:20px;
	margin-top:20px;
	display:inline-block;
}
.about-history{
	padding-left:10px;
	font-size:17px;
}
.about-history li{
	margin-bottom:10px;
	position:relative;
}
.about-history li::before{
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    background: #182142;
    left: -10px;
    top: 8px;
}
.map-box {
	margin:0 auto;

}

.map-content{
	margin:60px auto 53px;
	width:1000px;
	padding-left:100px;
	text-align: center;
}
.map-content .title{
	display: inline-block;
	background:var(--color-text-04);
	color:#fff;
	font-size:20px;
	font-family: 'EB';
	padding:15px 35px;
	border-radius:32px;
	margin:0;
	margin-right:80px;
	
}
.map-content  .map-cont{
	vertical-align: top;
	margin-top:0;
	padding-top:0;
}
.map-content .map-box-s{
	text-align:left;
	margin-bottom:40px;
}
.map-content .map-box-s:last-child{
	margin-bottom:0;
}
.map-content .map-box-s > h3 {
	font-size:22px;
	color:var(--color-text-04);
	font-family: "B";
	position:relative;
	margin:0 0 20px 0;
}
.map-content .map-box-s > h3 > i {
	color: #ccc;
    font-size: 32px;
    position: absolute;
    left: -42px;
    top: -4px;
}
.map-content .map-box-s > span{
	font-size:20px;
}
iframe{
	display:block;
}

.contact-content {
	width:1200px;
	margin:55px auto 55px;
	font-size:0;
}
.contact-content .cc-box{
	background:#c38502;
	width:calc(50% - 20px);
	font-size:16px;
	display: inline-block;
	text-align:center;
	padding:55px 0;
	background-image: url('/assets/img/contact_call.jpg');
	background-position: top center;
	background-size: 100%;
	background-repeat: no-repeat;

}
.contact-content .cc-box:last-child{
	background:#ca7529;
	background-image: url('/assets/img/contact_call2.jpg');
	background-position: top center;
	background-size: 100%;
	background-repeat: no-repeat;
}
.contact-content .cc-box:first-child{
	margin-right:40px;
}
.contact-content .cc-box h3{
	color:#fff;
	font-size:32px;
	font-family: 'EB';
	text-align: center;
	letter-spacing: 4px;
	margin: 23px 0;
}
.contact-content .cc-box > span{
	padding:0 55px 40px 55px;
	color:#fff;
	display: block;
	font-size:18px;
	line-height: 164%;
	text-align:left;
	min-height: 111px;
}
.contact-content .cc-box .cc-icon{
	max-width:82px;
}
.contact-content .cc-box a{
	background:#fff;
	color:#333;
	font-size: 22px;
	padding:14px 0px;
	border-radius: 25px;
	font-family: 'B';
	min-width:222px;
	display: inline-block;
	line-height: 100%;
	height:49px;
	overflow: hidden;
}
.contact-content .cc-box a:last-child{
	margin-left:15px;
}
.contact-content .cc-box a i{
	display:inline-block;
	
	

	font-size:20px;
	overflow: hidden;
	color:#aaa;
	line-height: 100%;
	
	

	width:0px;
	margin-right:0px;
	opacity: 0;
	vertical-align: middle;
	margin-bottom:-10px;



}
.contact-content .cc-box a:hover i {
	width:34px;
	margin-right:-17px;
	opacity: 1;
	
	margin-bottom:3px;
	
}
.contact-content .cc-call a {
	width:360px;

}
.contact-cate,
.contact-cate i{
	text-align:center;
	font-size:32px;
	font-family: 'EB';
}
.contact-cate{
	margin-top:50px;
}

.content-box {
	min-height:calc(100vh - 388px);
}
.content-box2 {
	min-height:calc(100vh - 753px);
}

#map .marker{
	display:block;
	width:169px;
	height:50px;
	background-image:url(/assets/img/map_logo_01_v2.png);background-size:169px;
	font-family:"B";
	color:#fff;
	padding-left: 40px;
    padding-top: 11px;
}
.idx-box{
	min-height: auto;
	padding: 1px 0;
	background: #f5f5f5;
}
.idx-box .contact-content{
	width:1166px;
}
@import url("/assets/css/common.m.css");