.font17 {
  --fontsize: 1.7rem;
  font-size: var(--fontsize);
}
.font18 {
  --fontsize: 1.8rem;
  font-size: var(--fontsize);
}
.font19 {
  --fontsize: 1.9rem;
  font-size: var(--fontsize);
}
.font20 {
  --fontsize: 2rem;
  font-size: var(--fontsize);
}
.font24 {
  --fontsize: 2.4rem;
  font-size: var(--fontsize);
}
.font25 {
  --fontsize: 2.5rem;
  font-size: var(--fontsize);
}
.font28 {
  --fontsize: 2.8rem;
  font-size: var(--fontsize);
}
.font30 {
  --fontsize: 3rem;
  font-size: var(--fontsize);
}
.font40 {
  --fontsize: 4rem;
  font-size: var(--fontsize);
}
.font45 {
  --fontsize: 4.5rem;
  font-size: var(--fontsize);
}
.font55 {
  --fontsize: 5.5rem;
  font-size: var(--fontsize);
}
.font70 {
  --fontsize: 7rem;
  font-size: var(--fontsize);
}
.font80 {
  --fontsize: 8rem;
  font-size: var(--fontsize);
}
.font100 {
  --fontsize: 10rem;
  font-size: var(--fontsize);
}
input,
input:focus,
textarea,
textarea:focus,
button,
button:focus,
select {
  border: none;
  outline: none;
  resize: none;
}
* {
  line-height: 1;
}
html,
body {
  width: 100%;
  max-width: 100%;
}
html.scrollX,
body.scrollX {
  overflow: hidden;
}
a,
a:link,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: inherit;
}
#wrap,
footer {
  width: 100%;
  max-width: 100%;
  font-size: 1.6rem;
}
.w1200{
  width: 100%;
  height: 100%;
  max-width:1200px;
  margin: 0 auto;
}
.w1500 {
  width: 100%;
  height: 100%;
  max-width: 1500px;
  margin: 0 auto;
}
.w1690 {
  width: 100%;
  height: 100%;
  max-width: 1690px;
  margin: 0 auto;
}
.flexBox {
  display: flex;
}
.flexBox.column {
  flex-direction: column;
}
.colorM {
  color: #f29600 !important;
}
.swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 0 20px;
  position: relative;
  z-index: 2;
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
  left: auto;
  bottom: auto;
  transform: translateX(0);
}
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0;
}
.bold {
  font-weight: 700;
}
.auth,
.auth li a {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.auth {
  gap: 0 35px;
}
.auth li * {
  transition: all 0.2s;
}
.auth li .icon {
  filter: brightness(0) invert(1);
}
.auth li a {
  gap: 0 4px;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.menuButton {
  display: grid;
}
.menuButton span {
  width: 4px;
  height: 4px;
  background: #fff;
  transition: all 0.2s;
}
header {
  width: 100%;
  height: 90px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  transform: translateY(0);
  transition: transform 0.3s;
}
header.up{
	transform: translateY(-100%);
}
header .headerBox {
  padding: 0 45px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .headerBox > *:not(nav) {
  flex-shrink: 0;
}
header h1 {
  width: 254px;
  height: 50px;
}
header h1 a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
header h1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
header h1 img.svg {
  display: block;
}
header .depth1 a,
header .auth a {
  color: #fff;
  transition: all 0.4s;
}
header nav,
header .depth1,
header .depth1 > li {
  height: 100%;
}
header .depth2Bg {
  width: 100%;
  height: 0;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -2;
  opacity: 0;
  transition: all 0.12s 0.2s;
}
header .depth2Bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #eee;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
}
header nav {
/*  width: 39.75%;*/
  width: 44%;
  margin: 0 0 0 auto;
  transition: all 0.32s;
}
header nav .depth1 {
  width: 100%;
  transition: all 0.32s;
  display: flex;
  flex-direction: row;
  align-items: center;
}
header nav .depth1 > li {
  width: 100%;
  padding: 0 35px;
  position: relative;
  transition: all 0.2s;
}
header nav .depth1 > li::before {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #f29600;
  position: absolute;
  left: 50%;
  bottom: -3px;
  z-index: 2;
  transform: translateX(-50%);
  transition: all 0.2s;
}
header nav .depth1 > li > a {
  display: block;
  font-size: 1.7rem;
  font-weight: 500;
  white-space: nowrap;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .depth1 > li:hover::before {
  width: 100%;
  transition: all 0.2s;
}
header nav .depth1 > li:hover > .depth2 {
  background: #f9f9f9;
}
header nav .depth2 {
  width: 100%;
  height: 200px;
  border-right: 1px solid #eee;
  padding: 10px 0 30px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
header nav .depth2:first-child {
  border-left: 1px solid #eee;
}
header nav .depth2 li a {
  color: #777;
  font-size: 1.7rem;
  font-weight: 300;
  padding: 10px 0;
  white-space: nowrap;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav .depth2 li.stxt a {
  position: relative;
}
header nav .depth2 li.stxt a > span.t {
  font-size: 1.6rem;
}
header .auth {
  margin: 0 70px;
  margin: 0 70px 0 30px;
}
header .lang{
	position: relative;	
}
header .lang button{ 
	display: flex;
	align-items: center;
	font-size: 1.4rem;
	font-weight: 300;
	color: #FFF;
	letter-spacing: 0.05em;
	padding: 10px;
	padding-left: 5px;
	transition: all 0.4s;
}
header .lang button img{
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
	margin-right: 5px;
	transition: all 0.2s;
}
header .lang ul{ 
	width: 100%;
	background: #FFF; 
	position: absolute;
	top: 100%; 
	left: 50%; 
	transform: translateX(-50%) scaleY(0);
	transform-origin: top;
	padding: 8px 0;
	overflow: hidden;
	transition: transform 0.2s;
}
header .lang:hover ul{
	transform: translateX(-50%) scaleY(1);
}
header .lang ul li a{ 
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	color: #333;
	text-align: center;
	padding: 3px 10px;
}
header .lang ul li.on a{ 
	font-weight: 600;
	color: #f29600;
}
header .menuOpen {
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 0 0 0 20px;
}
header.menuOn .depth2Bg {
  height: 290px;
  opacity: 1;
  transition: all 0.12s ease-in-out;
}
header.menuOn .logoCls-1 {
  fill: #0b308e;
}
header.menuOn .depth1 {
  width: 100%;
}
header.menuOn .depth1 a {
  color: #111;
}
header.menuOn h1 img {
  display: block;
}
header.menuOn h1 img.svg {
  display: none;
}
/*header.menuOn nav {*/
/*  width: 59.25%;*/
/*}*/
/*header.menuOn nav .depth1 > li {*/
/*  width: 100%;*/
/*  max-width: 20%;*/
/*}*/
header.menuOn .auth .icon {
  filter: inherit;
}
header.menuOn .auth a {
  color: #666;
}
header.menuOn .lang button{
	color: #666;
}
header.menuOn .lang button img{
	filter: brightness(0) invert(0);
	-webkit-filter: brightness(0) invert(0);
}
header.menuOn .menuButton span {
  background: #111;
}
.allMenu {
  width: 100%;
  height: 100vh;
  background-image: url("/img/common/allMenuBg.jpg");
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.allMenu *,
.allMenu a {
  color: #fff;
}
.allMenu .inner {
  display: flex;
  flex-direction: column;
  gap: 120px 0;
  padding: 90px 0 120px;
  width: 100%;
  height: 100%;
}
.allMenu .top {
  gap: 0 70px;
  flex-shrink: 0;
  justify-content: flex-end;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.allMenu .lang{
	position: relative;	
}
.allMenu .lang button{ 
	display: flex;
	align-items: center;
	font-size: 1.4rem;
	font-weight: 300;
	color: #FFF;
	letter-spacing: 0.05em;
	padding: 10px;
	padding-left: 5px;
	transition: all 0.4s;
}
.allMenu .lang button img{
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
	margin-right: 5px;
	transition: all 0.2s;
}
.allMenu .lang ul{ 
	width: 100%;
	background: #FFF; 
	position: absolute;
	top: 100%; 
	left: 50%; 
	transform: translateX(-50%) scaleY(0);
	transform-origin: top;
	padding: 8px 0;
	overflow: hidden;
	transition: transform 0.2s;
}
.allMenu .lang:hover ul{
	transform: translateX(-50%) scaleY(1);
}
.allMenu .lang ul li a{ 
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	color: #333;
	text-align: center;
	padding: 3px 10px;
}
.allMenu .lang ul li.on a{ 
	font-weight: 600;
	color: #f29600;
}
.allMenu .menuClose {
  grid-template-columns: repeat(5, 4px);
  grid-template-rows: repeat(5, 4px);
}
.allMenu .menuClose span:nth-child(2) {
  grid-area: 1/5;
}
.allMenu .menuClose span:nth-child(3) {
  grid-area: 3/3;
}
.allMenu .menuClose span:nth-child(4) {
  grid-area: 5/1;
}
.allMenu .menuClose span:nth-child(5) {
  grid-area: 5/5;
}
.allMenu .flexBox {
  width: 100%;
  height: 100%;
}
.allMenu .text {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.allMenu .text p {
  font-size: 13px;
  letter-spacing: 0.025em;
}
.allMenu .logo {
  width: 254px;
  position: fixed;
  top: 22px;
  left: 45px; 
}
.allMenu h2 {
  font-size: 7rem;
  font-weight: 600;
/*  margin: -0.22em 0 0;*/
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.4s;
  font-family: "Oswald", sans-serif;
}
.allMenu #snb {
  width: 68%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 90px 0;
}
.allMenu #snb > li {
  display: flex;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.4s;
}
.allMenu #snb > li span,
.allMenu #snb > li > a {
  transition: all 0.4s;
}
.allMenu #snb > li span {
  display: block;
  width: 35px;
  font-size: 12px;
  font-weight: 300;
  font-family: "Oswald", sans-serif;
}
.allMenu #snb > li > a {
  display: block;
  width: 400px;
  font-size: 4.5rem;
  font-weight: 600;
  margin: -0.1em 0 0;
}
/*.allMenu #snb > li:hover span,*/
/*.allMenu #snb > li:hover > a,*/
/*.allMenu #snb > li.on span,*/
/*.allMenu #snb > li.on > a {*/
/*  color: #111;*/
/*}*/
.allMenu #snb > li:hover span,
.allMenu #snb > li:hover > a {
  color: #111;
}
.allMenu #snb .depth2 {
  width: calc(100% - 435px);
  display: flex;
  gap: 0 65px;
  margin: auto 0;
}
.allMenu #snb .depth2 li {
/*  opacity: 0;*/
/*  transform: translateX(-40px);*/
  transition: all 0.2s linear;
}
.allMenu #snb .depth2 li a {
  font-size: 1.8rem;
  font-weight: 300;
  transition: all 0.4s;
}
.allMenu #snb .depth2 li a span.t {
  display: inline-block;
  color: #fff
}
.allMenu #snb .depth2 li:hover  a span.t {
  color: #111
}
.allMenu #snb .depth2 li:hover a {
  color: #111;
}
.allMenu #snb .depth2.on li {
  opacity: 1;
/*  transform: translateX(0);*/
}
.allMenu #snb .depth2.on li:nth-child(1) {
  transition-delay: 0.14s;
}
.allMenu #snb .depth2.on li:nth-child(2) {
  transition-delay: 0.28s;
}
.allMenu #snb .depth2.on li:nth-child(3) {
  transition-delay: 0.42s;
}
.allMenu #snb .depth2.on li:nth-child(4) {
  transition-delay: 0.56s;
}
.allMenu.on h2 {
  opacity: 1;
  transform: translateX(0);
}
.allMenu.on #snb > li {
  opacity: 1;
  transform: translateY(0);
}
.allMenu.on #snb > li:nth-child(1) {
  transition-delay: 0.2s;
}
.allMenu.on #snb > li:nth-child(2) {
  transition-delay: 0.4s;
}
.allMenu.on #snb > li:nth-child(3) {
  transition-delay: 0.6s;
}
.allMenu.on #snb > li:nth-child(4) {
  transition-delay: 0.8s;
}
.allMenu.on #snb > li:nth-child(5) {
  transition-delay: 1s;
}
footer {
  background: #191919;
  padding: 85px 0 115px;
}
footer * {
  color: #fff;
}
footer .footerBox {
  display: flex;
  justify-content: space-between;
}
footer h6 {
  font-size: 1.8rem;
  font-weight: 700;
}
footer .contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 60px;
  margin: 20px 0 45px;
}
footer .contact li {
  opacity: 0.6;
}
footer .contact li.width100 {
  width: 100%;
}
footer .bottom {
  display: flex;
  gap: 0 40px;
}
footer .bottom p {
  font-size: 13px;
  letter-spacing: 0.025em;
}
footer .bottom a {
  font-size: 1.5rem;
  font-weight: 500;
}
footer .info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
footer .logo {
  width: 254px;
  /*filter: brightness(0) invert(1);*/
}
footer .family {
  width: 160px;
  position: relative;
}
footer .family button {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 2px solid #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 0;
  margin: 0 0 0 auto;
}
footer .family ul {
  background: #474747;
  padding: 10px 14px;
  position: absolute;
  left: 51%;
  bottom: 100%;
  transform: translateX(-50%);
  z-index: 2;
  display: none;
}
footer .family ul li a {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 300;
  padding: 8px 0;
}

/*privacy*/
.privacy { color:#666; width: 100%; overflow: hidden; box-sizing:border-box;	line-height: 140%; word-break:break-all; margin-top: 70px;}
.privacy h2 {font-weight:bold; color:#000; text-align: left; margin:50px 0 30px; }
.privacy h2:first-child { margin-top: 0; }
.privacy > p ,.privacy > dl > p{ margin:0 0 3px; }
.privacy > p+dl { margin-top: 30px; }
.privacy > dl { padding-bottom:20px;}
.privacy > dl > dt{color:#f29600; font-weight:700; padding-bottom:5px; font-size:2rem; margin-bottom: 15px;}
.privacy > dl > dd{ padding-bottom:10px;text-align:justify;  line-height:140%; font-size:1.9rem; line-height: 1.7;}
.privacy > dl > dd ul{ padding:10px; }
.privacy > dl > dd ul li{ line-height: 1.7; margin-top: 10px; font-size: 1.9rem; text-indent:-15px; margin-left: 15px;}
.privacy > dl > dd ul li:first-child { margin-top: 0; }
.privacy > dl > dd ul li p { margin:0 10px 5px; line-height: 140%; }
.privacy > dl > dd a{ color:#1083e7; text-decoration:underline; text-underline-offset : 3px;}
.sTxt h3 { font-size:16px; color: #333; font-weight: 700; margin: 20px 0 10px; }
.sTxt p { margin-top: 10px; }
.sTxt dt { margin-top: 10px; }
.sTxt dl { padding:20px; }
.sTxt dd { margin:0 8px; }


.quickMenu { transition:all 0.3s; position: fixed; right:40px; top:50%; transform:translateY(calc(-50% - 0.5px)); text-align:center; z-index:3 }
.quickMenu li:not(:last-child) { transition:all 0.3s; margin-bottom:10px; }
.quickMenu li a { display:flex; align-items:center; justify-content:center; flex-direction:column; width:70px; height:70px; border-radius:70px; filter:drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.15)); background:#fff }
.quickMenu li a:hover { background:#0f2c48 }
.quickMenu li .txt { margin-top:5px; color:#0f2c48; font-size:12px; font-weight:500; letter-spacing:-0.24px; line-height:1.3 }
.quickMenu li a:hover .txt { color:#fff; }
.quickMenu li .icon { filter:brightness(1) invert(0); }
.quickMenu li a:hover .icon { filter:brightness(0) invert(1); }
.active .quickMenu .txt { color:#fff; }
.active .quickMenu a:hover .txt { color:#0f2c48; }
.active .quickMenu li a { background:#0f2c48 }
.active .quickMenu li a:hover { background:#fff }
.active .quickMenu li .icon { filter:brightness(0) invert(1); }
.active .quickMenu li a:hover .icon { filter:brightness(1) invert(0); }