/* Root */
:root {
	--transition-basic:all ease;
	--transition-basic2:all ease-out;
	--transition-basic3:all ease-in-out;
	--transition-basic4:all cubic-bezier(0.405, 0.00, 0.165, 1.000);
}


/* Rest */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	color: #191919;
	font-family: "Montserrat", sans-serif;
	font-size: 62.5% !important;
  letter-spacing: -0.02em;
	word-break: keep-all;
	word-wrap: break-word;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	-webkit-tap-highlight-color : transparent !important;
	animation:entry .4s ease forwards;
  opacity: 0;
}

html::-webkit-scrollbar {
	display: none;
}

html {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

body {
	font-size: 1.6rem;
}

a {
	color: inherit;
	outline: none;
	text-decoration: none;
}

ol, ul {
	list-style: none;
}

b, strong {
	font-weight: 700;
}

img {
	max-width: 100%;
}

button {
	font-family: inherit;
	border: none;
	outline: none;
	cursor: pointer;
	color: inherit;
	-webkit-appearance: none;
	background: none;
}

select {
	outline: none;
	border: 1px solid transparent;
	font-family: inherit;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-repeat: no-repeat;
}

input, textarea {
	font-family: inherit;
	outline: none;
	border: 1px solid transparent;
}

:focus {
	outline: none;
}

::placeholder {
	color:#959595;
}

em, i {
	font-style: normal;
}

@-webkit-keyframes entry {
	to{opacity: 1;}
}

@keyframes entry {
	to{opacity: 1;}
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Hidden */
.hidden {
	overflow: hidden;
}


/* Blind */
.blind {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
}


/* Line Break Max */
.max-md {
	display: none;
}

.max-xs {
	display: none;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.max-md {
		display: block;
	}
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {
	.max-xs {
		display: block;
	}
}

/* Line Break Min */
@media screen and (max-width:1201px) {

}
@media screen and (max-width:1025px) {
	.min-md {
		display: none;
	}
}
@media screen and (max-width:769px) {
	.min-sm {
		display: none;
	}
}
@media screen and (max-width:577px) {

}


/* Display */
.d-block {
	display: block;
}


/* Wrap */
.wrap--top {
	padding-top: 80px;
}

@media screen and (max-width:1200px) {
	.wrap {
		padding-top: 60px;
	}

	.wrap--top {
		padding-top: 60px;
	}
}


/* Main */
#main {
	min-height: calc(100vh - 520px);
	overflow: hidden;
}


/* Container */
.container {
	max-width: 1470px;
	width: 100%;
	margin: 0 auto;
	padding: 0px 15px;
}

.container-w1760 {
	max-width: 1790px;
}


/* Header Theme */
#header[data-header-theme="white"] {
	background-color: #fff;
	border-bottom: 1px solid #eee;
}

#header[data-header-theme="white"] .h-logo a {
	background-image: url('/asset/img/common/logo-black.png');
}

#header[data-header-theme="white"] .h-menu a {
	color:#191919;
}

/* Header */
#header {
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	z-index: 99;
	transition: var(--transition-basic);
	transition-duration: .5s;
}

#header .h-container {
	max-width: 1830px;
	width: 100%;
	margin: 0 auto;
	padding: 0px 15px;
}

#header .h-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header .h-logo {
	width: 174px;
	height: 25px;
}

#header .h-logo a {
	display: block;
	width: 100%;
	height: 100%;
	background: url('/asset/img/common/logo-white.png') no-repeat center;
}

#header .h-menu .ul {
	display: flex;
	margin: 0px -25px;
}

#header .h-menu a {
	display: block;
	margin: 0px 25px;
	padding:31px 0px;
	font-size: 1.8rem;
	line-height: 1;
	color:#fff;
	transition:all 0.2s ease-in;
}

#header .h-menu a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 600;
}

#header .h-mobile {
	display: none;
	position: absolute;
  top:0;
  right:0;
  width: 60px;
  height: 60px;
  z-index: 100000;
}

#header .h-mobile__btn {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}

#header .h-mobile__btn span {
  position: relative;
  margin: 0 auto;
}

#header .h-mobile__btn span::before,
#header .h-mobile__btn span::after {
  content: '';
  position: absolute;
}

#header .h-mobile__btn span,
#header .h-mobile__btn span::before,
#header .h-mobile__btn span::after {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #191919;
}

#header .h-mobile__btn span::before {
  margin-top: -8px;
  transition-property: margin, transform;
	transition-duration: 0.2s;
	transition-delay: 0.2s, 0s;
}

#header .h-mobile__btn span::after {
  margin-top: 8px;
  transition-property: margin, transform;
	transition-duration: 0.2s;
	transition-delay: 0.2s, 0s;
}

#header .h-mobile__btn[aria-pressed="true"] span {
  background-color: rgba(0, 0, 0, 0) !important;
  transition-delay: 0.2s;
}

#header .h-mobile__btn[aria-pressed="true"] span::before {
	margin-top: 0;
	background-color: #191919;
	transform: rotate(45deg);
	transition-delay: 0s, 0.2s;
}

#header .h-mobile__btn[aria-pressed="true"] span::after {
	margin-top: 0;
	background-color: #191919;
	transform: rotate(-45deg);
	transition-delay: 0s, 0.2s;
}

#header .h-nav {
	display: none;
	position: fixed;
	top:-100%;
	right: 0;
	width: 100%;
	height: 100%;
	padding: 80px 20px;
	background-color: #fff;
	z-index: 999;
	transition: var(--transition-basic4);
	transition-duration: .4s;
}

#header .h-nav{
	padding: 0;
}

#header .h-nav .ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	text-align: center;
}

#header .h-nav li {
	width: 100%;
	opacity: 0;
	transform: translateY(-20px);
	transition: var(--transition-basic);
	transition-duration: 0s;
	transition-delay: 0s;
}

#header .h-nav a {
	display: block;
	padding: 15px;
	font-size: 1.8rem;
	font-weight: 500;
}

#header.scroll-down{
	transform: translateY(-100%);
}

@media screen and (min-width:1201px) {
	#header.active {
		background-color: #fff;
		/* border-bottom: 1px solid #eee; */
	}

	#header.active .h-logo a {
		background-image: url('/asset/img/common/logo-black.png');
	}

	#header.active .h-menu a {
		color:#191919;
	}
}
@media screen and (max-width:1200px) {
	#header {
		height: 60px;
		background-color: #fff;
		border-bottom: 1px solid #eee;
	}
	
	#header .h-container {
		position: relative;
		padding: 0px;
	}

	#header .h-logo {
		position: absolute;
		top:19px;
		left: 20px;
		width: 154px;
		height: 22px;
	}

	#header .h-logo a {
		background-image: url('/asset/img/common/logo-black.png');
		background-size: auto 22px;
	}

	#header .h-menu {
		display: none;
	}

	#header .h-mobile {
		display: block;
	}

	#header .h-nav {
		display: block;
	}

	#header[data-header-mobile="on"] .h-nav {
		top: 0;
		padding: 80px 20px;
	}

	#header[data-header-mobile="on"] .h-nav li {
		opacity: 1;
		transform: translateY(0);
		transition-duration: .8s;
	}

	#header[data-header-mobile="on"] .h-nav li:nth-child(1) {
		transition-delay: .3s;
	}

	#header[data-header-mobile="on"] .h-nav li:nth-child(2) {
		transition-delay: .4s;
	}

	#header[data-header-mobile="on"] .h-nav li:nth-child(3) {
		transition-delay: .5s;
	}

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Footer */
#footer {
	background-color: #262626;
}

#footer .f-container {
	max-width: 1470px;
	width: 100%;
	margin: 0 auto;
	padding: 0px 15px;
}

#footer .f-inner {
	padding: 50px 0px 60px;
}

#footer .top {
	display: flex;
	justify-content: flex-end;
	position: relative;
}

#footer .btm {
	text-align: center;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,.5);
}

#footer .f-voice {
	position: absolute;
	top:0;
	left:0;
	font-size: 9rem;
	font-weight: 500;
	color:#fff;
}

#footer .f-info {
	text-align: right;
}

#footer .f-info .tit {
	font-size: 3.8rem;
	font-weight: 500;
	color:#fff;
}

#footer .f-info .dl {
	margin-top: 30px;
}

#footer .f-info .dl dt {
	font-size: 1.8rem;
	font-weight: 600;
	color:#fff;
	margin-bottom: 20px;
}

#footer .f-info .dl dd {
	font-size: 1.6rem;
	font-weight: 300;
	color:#fff;
	line-height: 1.5;
}

#footer .f-copy {
	font-size: 1.4rem;
	font-weight: 300;
	color:#fff;
}

@media screen and (max-width:1200px) {
	#footer .f-voice {
		font-size: 6.8rem;
	}

	#footer .f-info .tit {
		font-size: 3.2rem;
	}

	#footer .f-info .dl dt {
		font-size: 1.7rem;
	}

	#footer .f-info .dl dd {
		font-size: 1.5rem;
	}

	#footer .f-copy {
		font-size: 1.3rem;
	}
}
@media screen and (max-width:1024px) {
	#footer .btm {
		margin-top: 30px;
		padding-top: 12px;
	}

	#footer .f-voice {
		font-size: 6rem;
	}

	#footer .f-info .dl {
		margin-top: 20px;
	} 

	#footer .f-info .dl dt {
		margin-bottom: 12px;
	}
}
@media screen and (max-width:768px) {
	#footer .f-inner {
		padding: 36px 0px 40px;
	}

	#footer .top {
		flex-wrap: wrap;
	}

	#footer .f-voice {
		position: relative;
		top:unset;
		left: unset;
		width: 100%;
		margin-bottom: 30px;
		text-align: center;
		font-size: 4.8rem;
	}

	#footer .f-info {
		width: 100%;
		text-align: center;
	}

	#footer .f-info .tit {
		font-size: 2.6rem;
	}

	#footer .f-info .dl dt {
		font-size: 1.6rem;
	}

	#footer .f-info .dl dd {
		font-size: 1.4rem;
	}

	#footer .f-copy {
		font-size: 1.2rem;
	}
}
@media screen and (max-width:576px) {
	#footer .top{
		gap: 10px 0;
	}
	#footer .btm {
		margin-top: 20px;
		padding-top: 6px;
	}

	#footer .f-voice {
		margin-bottom: 20px;
		font-size: 4rem;
	}

	#footer .f-info .tit {
		font-size: 2.2rem;
	}
	#footer .f-info .tit img{
		max-height: 20px;
	}
	#footer .f-info .dl {
		margin-top: 12px;
	}

	#footer .f-info .dl dt {
		font-size: 1.4rem;
		margin-bottom: 6px;
	}

	#footer .f-info .dl dd {
		font-size:1.2rem;
	}

	#footer .f-copy {
		font-size: 1rem;
	}
}


@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}