@charset "UTF-8";
/*========================================
Re:vite
Date : 20190130
URL : 
Style : principal CSS "header" "footer" "nav" "principal-item"
Filename : principal.css
min-css : main-min.css
========================================*/

/*========================================
Header Contents
========================================*/
header {
	width: 100%;
	height: auto;
	margin: 0;
	position: absolute;
	top: 30px;
	left: 0;
	z-index: 10;
}

.header-contents_ar {
	width: calc(100% - 100px);
	margin: 0 50px;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0px 3px 2px 0px #c2c2c2;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* header logo */
.header-logo_ar {
	width: 280px;/* 290px */
	height: 46px;
	margin: 10px 0;
	float: left;
	box-sizing: border-box;
}
.header-logo_ar a {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.header-logo_ar h1 {
	font-size: 2.2rem;
	font-weight: 700;
	color: #474747;
}
.header-logo_ar img {
	width: 100%;
	height: auto;
	max-width: 314px;
	max-height: 40px;
	float: left;
}
_:-ms-input-placeholder, :root .header-logo_ar img {
  width: 280px;
	height: 32px;
}
.header-logo_ar img.logo-jp {
	display: block;
}
.header-logo_ar img.logo-icon {
	display: none;
}


/* header navi */
.header-nav_ar {
	width: 824px;
	height: auto;
	margin: 10px;
	float: left;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

/* header link */
.header-link_ar {
	width: 200px;
	margin: 10px;
	height: auto;
	float: left;
}
.header-link_ar g {
	width: 30px;
	height: 30px;
	margin-right: 14px;
	fill: #454545;
}
.header-link_ar p {
	font-size: 1rem;
}
.header-link_ar a {
	width: 100%;
	height: 3em;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-link_ar a.hd-link_english {
	color: #454545;
	border: 1px solid #454545;
	border-radius: 6px;
	background: #fff;
	transition: all .4s;
}
.header-link_ar a.hd-link_english:hover {
	color: #fff;
	background: #1d1a7d;
}
.header-link_ar a.hd-link_english:hover g {
	fill: #fff;
}
.header-link_ar a.hd-link_contact {
	margin: 10px 0 0;
	color: #fff;
	border: 1px solid #454545;
	border-radius: 6px;
	background: #454545;
	transition: all .4s;
}
.header-link_ar a.hd-link_contact:hover {
	background: #1d1a7d;
}
.header-link_ar .hd-link_contact-ar {
	width: 100%;
	float: left;
}
.header-link_ar .hd-link_contact-ar:hover .nav-contact_ar-bg  {
	display: block;
	opacity: 1;
}

/* Animation */
@keyframes sub-nav_show {
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}
@keyframes sub-nav_show-out {
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
	}
}

/* SP menu */
.header-sp-menu_ar {
	width: 50px;
	height: 50px;
	margin: 3px;
	border-radius: 30px;
	background: #f1f1f1;
	float: right;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.header-sp-menu_ar img {
	width: 26px;
	height: 26px;
}
.header-sp-menu_ar p {
	font-size: .55rem;
	font-weight: 700;
	line-height: 1;
}

@media screen and (min-width: 319px) and (max-width: 374px){
	header {
		position: absolute;
		top: 0;
	}
	.header-contents_ar {
		width: 100%;
		margin: 0;
		border-radius: 0;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 2;
	}
	.header-logo_ar {
		width: 90%;
		height: auto;
		margin: 0 10px;
	}
	_:-ms-input-placeholder, :root .header-logo_ar img {
		width: 216px;
		height: 24px;
	}
	.header-link_ar {
		display: none;
	}
	.header-nav_ar {
		width: calc(100% - 80px);
		margin: 0 10px;
	}
	.header-sp-menu_ar {
		display: flex;
	}
}
@media screen and (min-width: 375px) and (max-width: 767px) {
	header {
		position: absolute;
		top: 0;
	}
	.header-contents_ar {
		width: 100%;
		margin: 0;
		border-radius: 0;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 2;
	}
	.header-logo_ar {
		width: 90%;
		height: auto;
		margin: 0 10px;
	}
	_:-ms-input-placeholder, :root .header-logo_ar img {
		width: 266px;
		height: 30px;
	}
	.header-link_ar {
		display: none;
	}
	.header-nav_ar {
		width: calc(100% - 80px);
		margin: 0 10px;
	}
	.header-sp-menu_ar {
		display: flex;
	}
}
@media screen and (min-width: 768px) and (max-width: 959px) {
	header {
		position: absolute;
		top: 0;
	}
	.header-contents_ar {
		width: 100%;
		margin: 0;
		border-radius: 0;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 2;
	}
	.header-logo_ar {
		height: auto;
		margin: 10px;
	}
	.header-link_ar {
		display: none;
	}
	.header-nav_ar {
		width: calc(100% - 80px);
		margin: 10px;
	}
	.header-sp-menu_ar {
		display: flex;
	}
}


/*========================================
Footer Content
========================================*/
footer {
	width: 100%;
	margin: 0;
	padding: 0;
	background: #f9f9f9;
	float: left;
}
.footer-contents_ar {
	width: 100%;
	float: left;
	position: relative;
}
.footer-link_ar {
	width: 40%;
	margin: 40px auto 40px 30%;
	float: left;
}
.footer-link_ar h2 {
	margin: 100px 0 0;
	font-size: 2rem;
	line-height: 1.5;
	text-align: center;
}
.footer-link_ar img {
	width: 100%;
	max-width: 314px;
	max-height: 40px;
	margin: 0 0 20px;
}
.footer-link_ar p {
	font-size: .9rem;
	line-height: 1.5;
}

.footer-btn_ar {
	width: 200px;
	margin: 10px;
	height: auto;
	float: left;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
.footer-btn_ar img {
	width: 30px;
	height: 30px;
	margin-right: 14px;
}
.footer-btn_ar g {
	width: 30px;
	height: 30px;
	margin-right: 14px;
	fill: #454545;
}
.footer-btn_ar p {
	font-size: 1rem;
}
.footer-btn_ar a {
	width: 100%;
	height: 3em;
	color: #454545;
	border: 1px solid #454545;
	border-radius: 6px;
	background: #fff;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .4s;
}
.footer-btn_ar a:hover {
	color: #fff;
	background: #1d1a7d;
}
.footer-btn_ar a:hover g {
	fill: #fff;
}

/* copyright */
.copyright_ar {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	border-top: 1px solid #fff;
	float: left;
}
.copyright_ar p {
	padding: 20px 0;
	color: #fff;
	font-size: .9rem;
	line-height: 1.2;
}
small {
	width: 100%;
}

/* Footer Link borders come in */
.footer-link_txt p:before, .footer-link_txt p:after {
	position: absolute;
	width: 0;
	height: 4px;
	background: rgba(80, 61, 18, .2);
	content: "";
	opacity: 0;
	transition: all 0.6s;
}
.footer-link_txt p:before {
	position: absolute;
	left: 50%;
	width: 0;
	bottom: 0px;
}
.footer-link_txt p:after {
	position: absolute;
	right: 50%;
	width: 0;
	bottom: 0px;
}
.footer-link_txt p:hover:before, .footer-link_txt p:hover:after {
	opacity: 1;
	width: 50%;
}


@media screen and (min-width: 319px) and (max-width: 374px){
	.footer-link_ar {
		width: calc(100% - 60px);
		margin: 40px 30px 10px;
		float: left;
	}
	.footer-link_ar h2 {
		margin: 100px 0 0;
		font-size: 2rem;
		line-height: 1.5;
		text-align: center;
	}
	.footer-link_ar img {
		width: 100%;
		max-width: 314px;
		max-height: 40px;
		margin: 0 0 20px;
	}
	.footer-link_ar p {
		font-size: 1rem;
		line-height: 1.5;
	}
	.footer-btn_ar {
		width: 60%;
		margin: 10px auto 20px 20%;
		height: auto;
		float: left;
		position: static;
		top: 0;
		right: 0;
		transform: translateY(0);
	}
	.footer-btn_ar img {
		width: 30px;
		height: 30px;
		margin-right: 14px;
	}
	.footer-btn_ar p {
		font-size: 1rem;
	}
}
@media screen and (min-width: 375px) and (max-width: 767px) {
	.footer-link_ar {
		width: calc(100% - 60px);
		margin: 40px 30px 10px;
		float: left;
	}
	.footer-link_ar h2 {
		margin: 100px 0 0;
		font-size: 2rem;
		line-height: 1.5;
		text-align: center;
	}
	.footer-link_ar img {
		width: 100%;
		max-width: 314px;
		max-height: 40px;
		margin: 0 0 20px;
	}
	.footer-link_ar p {
		font-size: 1rem;
		line-height: 1.5;
	}
	.footer-btn_ar {
		width: 60%;
		margin: 10px auto 20px 20%;
		height: auto;
		float: left;
		position: static;
		top: 0;
		right: 0;
		transform: translateY(0);
	}
	.footer-btn_ar img {
		width: 30px;
		height: 30px;
		margin-right: 14px;
	}
	.footer-btn_ar p {
		font-size: 1rem;
	}
}
@media screen and (min-width: 768px) and (max-width: 960px) {
	.footer-link_ar {
		width: 54%;
		margin: 40px auto 40px 23%;
		float: left;
	}
	.footer-btn_ar {
		width: 120px;
	}
}


/*========================================
Nav Content
========================================*/
nav {
}
.nav-main_link {
}
.nav-main_link ul.global-nav {
	width: 80%;
	list-style: none;
	float: left;
}
.nav-main_link ul.global-nav li {
	margin: 0;
	padding: 0;
	font-size: 1rem;
	text-align: center;
	float: left;
	box-sizing: border-box;
	position: relative;
}
.nav-main_link ul.global-nav li:nth-child(1) {
	width: 16%;
}
.nav-main_link ul.global-nav li:nth-child(2) {
	width: 30%;
}
.nav-main_link ul.global-nav li:nth-child(3) {
	width: 30%;
}
.nav-main_link ul.global-nav li:nth-child(4) {
	width: 24%;
}
.nav-main_link ul.global-nav li:before {
	content: '\02f';
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
}
.nav-main_link ul.global-nav li:last-child:after {
	content: '\02f';
	padding: 0;
	position: absolute;
	top: 0;
	right: 0;
}

.nav-main_link ul.global-nav li:hover .nav-sub_link-bg {
	display: block;
	transition: all 0.4s;
}

.nav-main_link a.main-link_txt {
	padding: 10px 20px;
	color: #474747;
	position: relative;
}
.nav-main_link a.main-link_txt:hover {
	color: #1d1a7d;
}
.nav-main_link a.main-link_txt:before, .nav-main_link a.main-link_txt:after {
	position: absolute;
	width: 0;
	height: 2px;
	background: rgba(29,26,125,.8);
	content: "";
	opacity: 0;
	transition: all 0.6s;
}
.nav-main_link a.main-link_txt:before {
	position: absolute;
	left: 50%;
	width: 0;
	bottom: 0px;
}
.nav-main_link a.main-link_txt:after {
	position: absolute;
	right: 50%;
	width: 0;
	bottom: 0px;
}
.nav-main_link a.main-link_txt:hover:before, .nav-main_link a.main-link_txt:hover:after {
	opacity: 1;
	width: 50%;
}

/* Sub Link */
.nav-sub_link-bg {
	position: absolute;
	top: 20px;
	left: 0;
	width: 680px;
	height: auto;
	margin: 0;
	padding: 60px 0 0;
	display: none;
	z-index: 11;
	transition: all 0.4s;
}
.nav-sub_link {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 30px;
	border-radius: 6px;
	background: rgba(215,215,215,1);
	box-sizing: border-box;
	float: left;
	position: relative;
}
.nav-sub_link:before {
	position: absolute;
	top: -30px;
	left: 70px;
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 30px 50px 30px;
	border-color: transparent transparent #d7d7d7 transparent;
}
.nav-sub_link ul {
	width: 100%;
	float: left;
}
.nav-sub_link li {
	width: calc(50% - 20px)!important;
	margin: 5px 10px!important;
	float: left;
	transition: all 0.4s;
}
.nav-sub_link li:before {
	display: none;
}
.nav-sub_link li:last-child:after {
	display: none;
}
.nav-sub_link li:hover {
	background: #fff;
}
.nav-sub_link li a {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.nav-sub_link li img {
	width: 20%;
	margin-right: 10px;
}
.nav-sub_link li p {
	font-size: 1rem;
	color: #454545;
}

/* Contact Btn */
.nav-contact_ar-bg {
	position: absolute;
	top: 109px;
	left: 50%;
	transform: translateX(-50%);
	width: 980px;
	height: 0;
	margin: 0 auto;
	padding: 60px 0 0;
	display: none;
	z-index: 11;
}
.nav-contact_ar {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 40px 30px 30px;
	border-radius: 6px;
	background: rgba(215,215,215,1);
	box-sizing: border-box;
	float: left;
	position: relative;
}
.nav-contact_ar:before {
	position: absolute;
	top: -30px;
	right: 40px;
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 30px 50px 30px;
	border-color: transparent transparent #d7d7d7 transparent;
}
.nav-contact_ar ul {
	width: 100%;
	float: left;
}
.nav-contact_ar li {
	width: calc(33.333% - 40px);
	margin: 0 20px;
	float: left;
}
.nav-contact_ar li a {
	width: 100%;
	height: 80px!important;
	color: #454545;
	border-radius: 6px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	transition: all .4s;
}
.nav-contact_ar li:last-child a {
	background: #454545;
}
.nav-contact_ar li:last-child a:hover {
	background: #1d1a7d;
}
.nav-contact_ar p.date-txt {
	padding: 10px 0 0;
	font-size: .9rem;
	text-align: center;
	float: left;
}
.nav-contact_ar p.txt-center {
	text-align: center;
}
.nav-contact_btn-txt {
	width: 100%;
	margin: 0 0 6px;
	text-align: center;
}
.nav-contact_btn-txt p {
	font-size: 1rem;
}
.nav-contact_btn-image {
	display: flex;
	align-items: center;
	justify-content: center;
}
.nav-contact_btn-image img {
	width: 30px;
	height: 30px;
	margin-right: 6px;
}
.nav-contact_btn-image p {
	font-size: 1.6rem;
}
.nav-contact_btn-image p.mail-txt {
	font-size: 1rem;
}
.nav-contact_btn-image g {
	width: 30px;
	height: 30px;
	margin-right: 6px;
	fill: #fff;
}

/* nav-bg */
.nav-modal_ar {
	width: 100%;
	height: 120%;
	margin: 0;
	padding: 0;
	background: rgba(0,0,0,.4);
	float: left;
	position: fixed;
	display: none;
}
.nav-modal_ar-2 {
	width: 100%;
	height: 120%;
	margin: 0;
	padding: 0;
	background: rgba(0,0,0,.4);
	float: left;
	position: fixed;
	display: none;
}
.nav-modal_ar-3 {
	width: 100%;
	height: 120%;
	margin: 0;
	padding: 0;
	background: rgba(0,0,0,.4);
	float: left;
	position: fixed;
	display: none;
}

.nav-sub_item {
	width: 50%;
	float: left;
}
.nav-sub_item a {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.nav-sub_item a:hover {
}
.nav-sub_item img {
	width: 30%;
	margin-right: 10px;
}
.nav-sub_item p {
	font-size: 1rem;
}

/* SP TABLET nav */
.nav-sp_link-ar {
	width: 100%;
	height: 100vh;
	padding: 60px 0 0;
	background: #efefef;
	float: left;
	box-sizing: border-box;
	display: none;
}
.nav-sp_link {
	width: 100%;
	height: calc(100vh - 60px);
	margin: 2px 0 0;
	padding: 0 0 70px;
	overflow-x: scroll;
	float: left;
	box-sizing: border-box;
}
.nav-sp_link ul {
	width: 100%;
	margin: 0;
	padding: 5px 0;
	list-style: none;
	float: left;
}
.nav-sp_link li {
	width: calc(100% - 40px);
	height: auto;
	margin: 0 20px;
	padding: 0;
	text-align: left;
	font-size: 1.4rem;
	font-weight: 700;
	border-bottom: 1px solid #474747;
	box-sizing: border-box;
	float: left;
	position: relative;
}
.nav-sp_link a {
	padding: 20px 10px;
	color: #454545;
	display: block;
}
.nav-sp_link a span {
	float: right;
}

.nav-sp-sub_link {
	width: 100%;
	float: left;
	display: none;
}
.nav-sp-sub_link ul {
	width: 100%;
	float: left;
}
.nav-sp-sub_link li {
	width: calc(50% - 8px);
	margin: 0 8px 16px 0;
	border: none;
	background: #fff;
	float: left;
}
.nav-sp-sub_link li:nth-child(2n) {
	margin: 0 0 16px 8px;
}
.nav-sp-sub_link li a {
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.nav-sp-sub_link li img {
	width: 20%;
	margin-right: 10px;
}
.nav-sp-sub_link li p {
	display: inline-block;
	font-size: 1rem;
	line-height: 1.2;
	color: #454545;
}

.nav-sp-btn_ar {
	width: calc(100% - 40px);
	margin: 20px 20px;
	float: left;
}
.nav-sp-btn_ar a {
	padding: 10px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nav-sp-btn_ar img {
	width: 30px;
	height: 30px;
	margin-right: 14px;
}
.nav-sp-btn_ar p {
	font-size: 1rem;
}
.nav-sp-btn_ar a.sp-link_english {
	width: 70%;
	margin: 0 auto 0 15%;
	color: #454545;
	border: 1px solid #454545;
	border-radius: 6px;
	background: #fff;
}

.nav-sp-contact_ar {
	width: calc(100% - 40px);
	margin: 0 20px;
	padding: 0;
	float: left;
}
.nav-sp-contact_ar ul {
	width: 100%;
	float: left;
}
.nav-sp-contact_ar li {
	color: #fff;
	border-radius: 6px;
	background: #454545;
	border: none;
	float: left;
}
.nav-sp-contact_ar li:nth-child(1) {
	width: calc(50% - 10px);
	margin: 0 10px 20px 0;
}
.nav-sp-contact_ar li:nth-child(2) {
	width: calc(50% - 10px);
	margin: 0 0 20px 10px;
	color: #454545;
	background: #fff;
}
.nav-sp-contact_ar li:nth-child(3) {
	width: 100%;
	margin: 0;
}
.nav-sp-contact_ar li img {
	width: 30px;
	height: 30px;
	margin-right: 10px;
}
.nav-sp-contact_ar li a {
	width: auto;
	height: 50px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nav-sp-contact_ar li:nth-child(2) a {
	color: #454545;
	flex-direction: column;
}
.nav-sp-contact_ar li:nth-child(3) a {
	height: 70px;
	flex-direction: column;
}
.nav-sp-contact_ar p.date-txt {
	padding: 10px 0 0;
	font-size: .9rem;
	color: #fff;
	text-align: center;
	float: left;
}
.nav-sp-contact_ar p.txt-center {
	text-align: center;
}

/* menu overlay */
#main-menu_overlay {
	z-index: 9;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background-color: rgba( 0,0,0, 0.75 );
}


@media screen and (min-width: 319px) and (max-width: 374px){
	.nav-main_link {
		display: none;
	}
	.nav-sp_link li {
		font-size: 1rem;
	}
	.nav-sp-sub_link li {
		width: calc(50% - 4px);
		margin: 0 4px 8px 0;
	}
	.nav-sp-sub_link li:nth-child(2n) {
		margin: 0 0 8px 4px;
	}
	.nav-sp-sub_link li a {
		padding: 3px;
	}
	.nav-sp-sub_link li img {
		width: 30%;
		margin-right: 10px;
	}
	.nav-sp-sub_link li p {
		font-size: .8rem;
	}
	.nav-sp-contact_ar li p {
		font-size: .7rem;
		line-height: 1.5;
	}
	.nav-sp-contact_ar li img {
		width: 24px;
		height: 24px;
		margin-right: 5px;
	}
	.nav-sp-contact_ar li a {
		width: auto;
		height: 40px;
		padding: 10px 0;
	}
	.nav-contact_btn-image p {
		font-size: 1rem!important;
	}
}
@media screen and (min-width: 375px) and (max-width: 767px) {
	.nav-main_link {
		display: none;
	}
	.nav-sp_link li {
		font-size: 1rem;
	}
	.nav-sp-sub_link li {
		width: calc(50% - 4px);
		margin: 0 4px 8px 0;
	}
	.nav-sp-sub_link li:nth-child(2n) {
		margin: 0 0 8px 4px;
	}
	.nav-sp-sub_link li a {
		padding: 3px;
	}
	.nav-sp-sub_link li img {
		width: 30%;
		margin-right: 10px;
	}
	.nav-sp-sub_link li p {
		font-size: .8rem;
	}
	.nav-sp-contact_ar li p {
		font-size: .8rem;
		line-height: 1.5;
	}
	.nav-sp-contact_ar li img {
		width: 24px;
		height: 24px;
		margin-right: 5px;
	}
	.nav-sp-contact_ar li a {
		width: auto;
		height: 40px;
		padding: 10px 0;
	}
	.nav-contact_btn-image p {
		font-size: 1.2rem!important;
	}
}
@media screen and (min-width: 768px) and (max-width: 959px) {
	.nav-main_link {
		display: none;
	}
}



/*========================================
Breadcrumb
========================================*/
.breadcrumb-list_ar {
	width: 100%;
	margin: 0;
	padding: 20px 0;
	float: left;
	box-sizing: border-box;
}
.breadcrumb-list_ar li{
	display: inline;
	list-style: none;
	float: left;
	font-size: .9rem;
	color: #474747;
	position: relative;
}
.breadcrumb-list_ar li:after{
	content: '\03e';
	padding: 0 12px 0 10px;
	position: relative;
	top: -2px;
}
.breadcrumb-list_ar li:last-child:after{
	content: '';
	padding: 0;
}
.breadcrumb-list_ar li a {
	color: #474747;
	text-decoration: none;
}
.breadcrumb-list_ar li a:hover {
	color: #6063a8;
}
@media screen and (max-width: 767px) {
	.breadcrumb-list_ar {
		margin: 0;
		padding: 20px 0 20px 10px;
		float: left;
	}
	.breadcrumb-list_ar li{
		font-size: .7rem;
	}
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
	.breadcrumb-list_ar {
		margin: 0;
		padding: 20px;
		float: left;
	}
}

/*========================================
Top Return
========================================*/
.topBtn {
  position: fixed;
  bottom: 80px;
  right: 20px;
	width: 60px;
	height: 60px;
	margin: 10px 0;
	background: rgba(0,0,0,.6);
	border: 1px solid #454545;
	box-shadow: 0px 0px 6px 1px #ccc;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all .4s ease;
}
.topBtn p {
	text-align: center;
	line-height: 1;
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	transition: all .4s ease;
}
.topBtn:hover {
	background: #1d1a7d;
}
@media screen and (min-width: 319px) and (max-width: 960px) {
	.topBtn {
		right: 5px;
	}
}



/*========================================
Change Global Nav Contents
========================================*/
.cg_hd {
	width: 100%;
	height: auto;
	margin: 0;
	background: #fff;
	box-shadow: 0px 3px 2px 0px #c2c2c2;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
  transform: translateY(-80px);
}
.cg_hd .header-contents_ar {
	width: 960px;
	max-width: 1024px;
	margin: 0 auto;
	background: #fff;
	border-radius: 0;
	box-shadow: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Header NAV */
.cg_hd .header-nav_ar {
	width: calc(100% - 300px);
	margin: 5px 0;
	flex-direction: row;
}

/* Header LOGO */
.cg_hd .header-logo_ar {
	width: 50px;
	height: 46px;
	margin: 5px 0;
	float: left;
	box-sizing: border-box;
}
.cg_hd .header-logo_ar img {
	width: 44px;
	height: 40px;
	float: left;
}
.cg_hd .header-logo_ar img.logo-jp {
	display: none;
}
.cg_hd .header-logo_ar img.logo-icon {
	display: block;
}

/* Header LINK */
.cg_hd .header-link_ar {
	width: 300px;
	margin: 0;
	height: auto;
	float: left;
	display: flex;
}
.cg_hd .header-link_ar g {
	width: 24px;
	height: 24px;
	margin-right: 14px;
	fill: #454545;
}
.cg_hd .header-link_ar p {
	font-size: .9rem;
}
.cg_hd .header-link_ar a {
	width: calc(100% - 10px);
	height: 2.5em;
	margin: 0 0 0 10px;
}
.cg_hd .header-link_ar a.hd-link_contact {
	margin: 0 0 0 10px;
}

/* Golbal NAV */
.cg_hd .nav-main_link {
	width: calc(100% - 60px);
	display: flex;
	align-items: center;
}
.cg_hd .nav-main_link ul.global-nav {
	width: 100%;
	list-style: none;
	float: left;
}
.cg_hd .nav-main_link ul.global-nav li {
	margin: 0;
	padding: 0;
	font-size: 1rem;
}
.cg_hd .nav-main_link ul.global-nav li:first-child:before, .cg_hd .nav-main_link ul.global-nav li:last-child:after {
	content: '';
}

/* Sub Link */
.cg_hd .nav-sub_link:before {
	position: absolute;
	top: -30px;
	left: 50px;
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 30px 50px 30px;
	border-color: transparent transparent #d7d7d7 transparent;
}

/* Contact Btn */
.cg_hd .nav-contact_ar-bg {
	position: absolute;
	top: 44px;
	left: 50%;
	transform: translateX(-50%);
	width: 980px;
	height: 0;
	margin: 0 auto;
	padding: 60px 0 0;
	display: none;
	z-index: 11;
}
.cg_hd .nav-contact_ar:before {
	position: absolute;
	top: -30px;
	right: 20px;
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 30px 50px 30px;
	border-color: transparent transparent #d7d7d7 transparent;
}

/* MOVE Item */
.cg_hd-time {
	transition: .3s;
}
.cg_hd-show {
  transform: translateY(0);
}
.cg_hd-none {
	display: none;
}