@charset "utf-8";
/*=============================
		common
===============================*/

/*nav*/
html.fixed, body.fixed {
    overflow: hidden;
    width: 100%;
}
#content{
	/*padding-top: 80px;*/
}

/* clearfix */
.clearfix:after {
 content: ".";
 display: block;
 clear: both;
 height: 0;
 visibility: hidden;
}
.clearfix {
 	min-height: 1px;
	overflow: hidden;
}
* html .clearfix {
 height: 1px;
 overflow: hidden;
}

/* wrap */
.wrap{
	position: relative;
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    z-index: 1;
}

/* view */
.pc_view,
.sp_none {
	display: block!important;
}
.sp_view,
.pc_none {
	display: none!important;
}


/* button */

.btn1 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 270px;
	height: 65px;
	color: #333;
	border: 1px solid #333;
	border-radius: 65px;
	font-weight: 600;
	transition: ease 0.3s;
}
.btn1::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 40px;
	width: 12px;
	height: 12px;
	background: url("../images/ic_traiangle_btn_bl.svg") no-repeat;
	transform: translateY(-50%);
}
.btn1:hover {
	background: #333;
	color: #fff;
}
.btn1:hover::after {
	background: url("../images/ic_traiangle_btn_wh.svg") no-repeat;
}

.btn1.btnmap::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 40px;
	width: 20px;
	height: 20px;
	background: url("../images/ic_googlemap_bl.svg") no-repeat;
	transform: translateY(-50%);
}
.btn1.btnmap:hover::after {
	background: url("../images/ic_googlemap_wh.svg") no-repeat;
}
.btn1.center {
	margin: 0 auto 40px;
}



/*=============================
		header
===============================*/
header{
	padding: 0 25px 0 0;
	position: fixed;
	z-index: 999;
	min-width: 1200px;
	width: 100%;
	height: 165px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	transition: all ease 0.3s;
}
.header.is_scroll {
	height: 110px;
	background: #fff;
	transition: all ease 0.3s;
	box-shadow: 0 0 10px rgb(0 0 0 / 0.05);;
}

/* a */
header a{
	display: block;
	transition: all .3s ease;
}

/* left(logo) */
header .header_left {
	padding: 0 20px;
}
header .header_left h1 a .logo,
header .header_left p a .logo {
	width: 380px;
	height: auto;
	transition: all ease 0.3s;
}
header .header_left h1 a .logo.is_scroll,
header .header_left p a .logo.is_scroll {
	width: 245px;
	height: auto;
}

/* right(nav) */
header nav ul{
	display: flex;
	align-items: center;
}
header nav ul li{
	margin-left: 50px;
}
header nav ul li a {
	position: relative;
	color: #333333;
	text-align: center;
	font-weight: 500;
	transition: all .3s ease;
}

@media (any-hover: hover) {
	header nav ul li a::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 2px;
		bottom: -10px;
		left: 0;
		background: #333;
		transform: scaleX(0);
		transform-origin: left;
		transition: all ease 0.3s;
	}
	header nav ul li a:hover::before {
		transform: scaleX(100%);
	}
}

header .header_right .btn_contact{
	width: 200px;
	height: 80px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	background: #3da9fc;
	padding: 32px 0 20px;
	transition: all .3s ease;
}
header .btn_contact:hover{
	background: #0994ff;
	opacity: 1;
}
header .btn_contact span{
	padding-left: 28px;
	background: url("../images/ic_mail.svg") no-repeat left center;
	background-size: 20px auto;
}

/* sp_btn_nav */
header #btn_nav_wrapper{
	display: none;
	position: absolute;
    top: 40px;
    right: 40px;
	margin: auto;
	width: 80px;
	height: 24px;
	cursor: pointer;
	box-sizing: border-box;
	padding-top: 16px;
	z-index: 1001;
	transition: all .3s ease;
}
header #btn_nav_wrapper .btn_nav{
    position: relative;
    transform: translateY(5px);
    background: #fff;
    width: 80px;
    height: 1px;
    top: 50%;
    margin-top: -12px;
    left: 0;
}
header #btn_nav_wrapper.active .btn_nav{
    background: rgba(0,0,0,0);
	transition: background 0 linear;
}

header #btn_nav_wrapper .btn_nav::after,
header #btn_nav_wrapper .btn_nav::before {
	width: 80px;
	height: 1px;
}
header #btn_nav_wrapper .btn_nav::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 10px;
	background: #fff;
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
header #btn_nav_wrapper .btn_nav::after {
	content: "";
	position: absolute;
	right: 0;
	top: 10px;
	background: #fff;
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
header #btn_nav_wrapper.active .btn_nav:after {
	top: 0;
	transform: rotate(25deg);
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
header #btn_nav_wrapper.active .btn_nav:before {
	bottom: 0;
	transform: rotate(-25deg);
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/*=============================
　　　 Links
===============================*/

#links {
	
}
#links .wrap {
	width: 100%;
}
#links .wrap .fbox_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
#links .wrap .fbox_wrap .links_left,
#links .wrap .fbox_wrap .links_right {
	width: 50%;
	height: 355px;
	text-align: center;
	border-top: 0.5px solid #cdcdcd;
}
#links .wrap .fbox_wrap .links_left {
	border-right: 0.5px solid #cdcdcd;
}
#links .wrap .fbox_wrap .links_left a,
#links .wrap .fbox_wrap .links_right a {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: ease 0.3s;
}
#links .wrap .fbox_wrap .links_left a:hover,
#links .wrap .fbox_wrap .links_right a:hover {
	background: #333;
}
#links .wrap .fbox_wrap .links_left a p,
#links .wrap .fbox_wrap .links_right a p {
	color: #333;
	font-size: 50px;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 600;
	letter-spacing: 2.0px;
	padding: 0 0 10px 0;
}
#links .wrap .fbox_wrap .links_left a:hover p,
#links .wrap .fbox_wrap .links_right a:hover p {
	color: #fff;
}

#links .wrap .fbox_wrap .links_left a h2,
#links .wrap .fbox_wrap .links_right a h2{
	position: relative;
	color: #333;
	letter-spacing: 4.0px;
}
#links .wrap .fbox_wrap .links_left a:hover h2,
#links .wrap .fbox_wrap .links_right a:hover h2{
	color: #fff;
}
#links .wrap .fbox_wrap .links_left a h2::after,
#links .wrap .fbox_wrap .links_right a h2::after {
	content: "";
	position: absolute;
	bottom: -45px;
	left: 50%;
	background: url("../images/ic_triangle_down_bl.svg") no-repeat;
	transform: translateX(-50%);
	width: 25px;
	height: 21px;
}
#links .wrap .fbox_wrap .links_left a:hover h2::after,
#links .wrap .fbox_wrap .links_right a:hover h2::after {
	background: url("../images/ic_triangle_down_wh.svg") no-repeat;
}



/*============================
         footer
============================*/
footer{
	background: #686868;
}
/* a */
footer a{
	color: #fff;
	transition: all .3s ease;
}
footer a:hover{
	opacity: 0.7;
}

footer .wrap {
	display: flex;
	align-items: center;
	height: 86px;
	color: #fff;
}
footer .wrap ul {
	display: flex;
	width: 765px;
	margin: 0 auto;
	justify-content: space-between;
	align-content: center;
}
footer .wrap ul li a {
	color: #fff;
}

/*bottom*/
footer .footer_bottom {
	padding: 0 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 130px;
	background: url("../images/img_footer_bg.webp") no-repeat;
	background-size: cover;
}


/* left(info) */
footer .footer_left{
    /*padding: 0 20px;*/
}

footer .footer_left ul {
	display: flex;
	gap : 40px;
}
footer .footer_left ul li a {
	display: flex;
	align-items: center;
	color: #333;
}
footer .footer_left ul li a span {
	display: inline-block;
	font-size: 12px;
	padding: 0 10px 0 0;
}
