:root {
  --color-main: #006AAA;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-border: #e0e0e0;
  --th-background: #f9f9f9;
  --th-fontColor: #111;
  --th-fontSize: 1.7rem;
  --td-background: #f9f9f9;
  --td-fontColor: #222;
  --td-fontSize: 1.6rem;
}

.font56 {
  --fontsize: 5.6rem;
  font-size: var(--fontsize);
}

.font48 {
  --fontsize: 4.8rem;
  font-size: var(--fontsize);
}

.font46 {
  --fontsize: 4.6rem;
  font-size: var(--fontsize);
}

.font44 {
  --fontsize: 4.4rem;
  font-size: var(--fontsize);
}

.font40 {
  --fontsize: 4.0rem;
  font-size: var(--fontsize);
}

.font32 {
  --fontsize: 3.2rem;
  font-size: var(--fontsize);
}

* {
  line-height: 1.3;
}

html,
body {
  width: 100%;
  max-width: 100%;
  word-break: inherit;
}

figure {
  padding: 0;
  margin: 0;
}

pre {
  white-space: pre-wrap;
}

textarea {
  resize: none;
}

#wrap {
  width: 100%;
  max-width: 100%;
  font-size: 1.6rem;
  overflow: hidden;
}

.w1760 {
  width: 100%;
  height: 100%;
  max-width: 1760px;
  margin: 0 auto;
}

.w1700 {
  width: 100%;
  height: 100%;
  max-width: 1700px;
  margin: 0 auto;
}

.w1200 {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.w1080 {
  width: 100%;
  height: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.tabContents > div {
  display: none;
}
.tabContents > div.on {
  display: block;
}

.animation {
  transition: all 0.6s;
}
.animation.down {
  transform: translateY(-80px);
}
.animation.up {
  transform: translateY(80px);
}
.animation.left {
  transform: translateX(80px);
}
.animation.right {
  transform: translateX(-80px);
}
.animation.opacity {
  opacity: 0;
}
.animation.on.down, .animation.on.up {
  transform: translateY(0);
}
.animation.on.left, .animation.on.right {
  transform: translateX(0);
}
.animation.on.opacity {
  opacity: 1;
}

.flexBox {
  display: flex;
}
.flexBox.column {
  flex-direction: column;
}

.pBox,
.dlBox {
  display: flex;
  flex-direction: column;
}

.paddingBox {
  padding: 120px 0;
}

.gridBox {
  display: grid;
}
.gridBox.grid3 {
  grid-template-columns: repeat(3, 1fr);
}
.gridBox.grid4 {
  grid-template-columns: repeat(4, 1fr);
}
.gridBox .item .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.gridBox .item .img img {
  object-fit: cover;
  transition: all 0.6s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gridBox .item h6 {
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin: 20px 0 0;
}
.gridBox:not(.hoverX) .item:hover .img img {
  transform: translate(-50%, -50%) scale(1.1);
}

.arrow.left,
.angle.left {
  transform: rotate(-90deg);
}
.arrow.right,
.angle.right {
  transform: rotate(90deg);
}
.arrow.down,
.angle.down {
  transform: rotateX(180deg);
}

.title {
  text-align: center;
  margin: 0 0 40px;
}
.title h2 {
  color: #111;
  font-weight: 900;
}
.title h5 {
  gap: 0 10px;
  color: var(--color-main);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.title h5::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-main);
  border-radius: 50%;
}
.title p {
  color: #222;
  font-size: 1.7rem;
  font-weight: 500;
  margin: 10px 0 0;
}

.hoverButton,
.hoverButton::before {
  border-radius: 100px;
}

.hoverButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-main);
  border: 2px solid var(--color-main);
  padding: 14px 24px;
  position: relative;
  overflow: hidden;
}
.hoverButton::before {
  content: "";
  display: block;
  width: 0;
  height: 200%;
  background: var(--color-white);
  opacity: 0;
  transition: all 0.4s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hoverButton span,
.hoverButton img {
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}
.hoverButton span {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
}
.hoverButton:hover::before {
  width: 100%;
  opacity: 1;
}
.hoverButton:hover span {
  color: var(--color-main);
}
.hoverButton.border, .hoverButton.reverse {
  background: var(--color-white);
}
.hoverButton.border::before, .hoverButton.reverse::before {
  background: var(--color-main);
}
.hoverButton.border span, .hoverButton.reverse span {
  color: var(--color-main);
}
.hoverButton.border:hover, .hoverButton.reverse:hover {
  background: var(--color-main);
  transition: background 0.4s 0.2s;
}
.hoverButton.border:hover span, .hoverButton.reverse:hover span {
  color: var(--color-white);
}
.hoverButton.reverse {
  border-color: var(--color-white);
}
.hoverButton.bottom {
  width: 280px;
  height: 60px;
	text-align: center;
  margin-top: 60px;
  left: 50%;
  transform: translateX(-50%);
}
.hoverButton.bottom span {
  font-size: 1.6rem;
}

.circleMore {
  width: 120px;
  height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circleMore .textBox {
  animation: rotate 4s 0.6s linear infinite;
  animation-play-state: paused;
}
.circleMore .arrowBox {
  width: 20%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.circleMore .arrowBox::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background: var(--color-black);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.6s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.circleMore .arrowBox img {
  filter: brightness(0) invert(1);
}
.circleMore:hover .textBox {
  animation-play-state: running;
}
.circleMore:hover .arrowBox::before {
  width: 70px;
  height: 70px;
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

li.none {
  display: none;
}

header {
  width: 100%;
  height: 100px;
  background: var(--color-white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
header .headerBox {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .logo {
  width: 221px;
}
header .logo a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .navWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .navWrap,
header nav,
header .depth1,
header .depth1 > li {
  height: 100%;
}
header .depth1 {
  display: flex;
}
header .depth1 > li {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .depth1 > li > span {
  display: block;
  overflow: hidden;
}
header .depth1 > li > span a {
  display: inline-block;
  color: #222;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 50px;
  position: relative;
  transition: all 0.4s;
}
header .depth1 > li > span a::after {
  content: attr(data-text);
  min-width: 100%;
  text-align: center;
  position: absolute;
  top: calc(100% + 0.5em);
  left: 50%;
  transform: translateX(-50%);
}
header .depth1 > li:hover > span > a {
  transform: translateY(calc(-100% - 0.5em));
}
header .depth2Wrap {
  width: 100vw;
  background: var(--color-white);
  border-top: 1px solid #eee;
  padding: 40px 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
header .depth2Wrap * {
  font-size: 1.8rem;
}
header .depth2Wrap .inner {
  width: 100%;
  max-width: 1700px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  margin: 0 auto;
  position: relative;
}
header .depth2Wrap .inner::before {
  content: "";
  display: block;
  background-color: #ffffff;
  background-size: calc(25% - 0.2px) 100%;
  background-image: linear-gradient(to right, #eeeeee 1px, #fff 1px);
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .depth2Wrap span {
  color: #222;
  font-weight: 700;
}
header .depth2Box > a {
  color: #222;
  font-size: 1.8rem;
  font-weight: 700;
}
header .depth2 {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  padding: 30px 0 0;
  display: none;
}
header .depth2 > li > a {
  color: #666;
}
header .depth3 {
  display: none;
}
header .online {
  padding: 6px 16px;
  margin: 0 0 0 auto;
}
header .language {
  padding: 20px 0;
  margin: 0 30px 0 40px;
  position: relative;
}
header .language ul {
  background: rgba(0, 0, 0, 0.9);
	text-align: center;
  padding: 15px 20px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
header .language ul > li > a {
  display: inline-block;
  color: var(--color-white);
  font-size: 1.5rem;
  padding: 5px 0;
}
header .menuButton {
  width: 32px;
  height: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header .menuButton span {
  display: block;
  width: 100%;
  height: 3px;
  position: relative;
  transition: all 0.4s;
}
header .menuButton span::before {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background: var(--color-black);
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 0.4s;
}
header .menuButton:hover span::before {
  width: 100%;
}
header .menuButton.on {
  align-items: center;
  justify-content: center;
}
header .menuButton.on span {
  background: var(--color-black);
}
header .menuButton.on span:nth-child(1) {
  transform: translate(0, 1.5px) rotate(-45deg);
}
header .menuButton.on span:nth-child(2) {
  display: none;
}
header .menuButton.on span:nth-child(3) {
  transform: translate(0, -1.5px) rotate(45deg);
  transition-delay: 0s;
}

.allMenu {
  width: 100vw;
  height: calc(100vh - 100px);
  background: var(--color-white);
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  z-index: 2;
  overflow-y: scroll;
  display: none;
}
.allMenu .inner {
  padding: 80px 0;
}
.allMenu .inner a {
  transition: all 0.4s;
}
.allMenu .depth1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 32px;
}
.allMenu .depth1 > li.wDepth3 {
  grid-area: 1/2/1/4;
}
.allMenu .depth1 > li > a {
  color: #111;
  font-size: 3rem;
  font-weight: 700;
}
.allMenu .depth1 > li:hover > a {
  color: var(--color-main);
}
.allMenu .depth2,
.allMenu .depth3 {
  display: flex;
  flex-direction: column;
}
.allMenu .depth2 {
  gap: 30px 32px;
  margin: 60px 0 0;
}
.allMenu .depth2.wDepth3 {
  max-height: 550px;
  flex-wrap: wrap;
}
.allMenu .depth2.wDepth3 > li {
  width: calc(50% - 16px);
}
.allMenu .depth2.wDepth3 > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0 15px;
}
.allMenu .depth2.wDepth3 > li > a img {
  width: 14px;
}
.allMenu .depth2 > li > a {
  color: #222;
  font-size: 2rem;
  font-weight: 500;
}
.allMenu .depth2 > li:hover > a {
  color: var(--color-main);
}
.allMenu .depth3 {
  gap: 10px 0;
  margin: 20px 0 0;
}
.allMenu .depth3 > li > a {
  color: #666;
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
}
.allMenu .depth3 > li > a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #333;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s;
}
.allMenu .depth3 > li:hover > a {
  color: #333;
}
.allMenu .depth3 > li:hover > a::after {
  width: 100%;
}

footer * {
  color: var(--color-white);
}
footer .contact .box {
  padding: 80px 0;
}
footer .contact .title * {
  color: var(--color-white);
}
footer .contact .title h5::before {
  background: var(--color-white);
}
footer .contact.typeMain {
  background: url("/img/main/bg_contact.jpg") no-repeat center/cover;
}
footer .contact.typeMain .box,
footer .contact.typeMain .title {
  display: flex;
  flex-direction: row;
  align-items: center;
}
footer .contact.typeMain .box {
  justify-content: space-between;
}
footer .contact.typeMain .title {
  gap: 0 80px;
  text-align: left;
  margin: 0;
}
footer .contact.typeMain .title h5 {
  justify-content: flex-start;
}
footer .contact.typeLink {
  background: #f5f5f5;
}
footer .contact.typeLink .box {
  display: grid;
  grid-template-columns: 47.5% 23.75% 23.75%;
  gap: 0 2.5%;
}
footer .contact.typeLink .map a {
  display: block;
  position: relative;
}
footer .contact.typeLink .map a::after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
footer .contact.typeLink .map a:hover::after {
  opacity: 1;
}
footer .contact.typeLink .map iframe {
  width: 100%;
  height: 100%;
}
footer .contact.typeLink h5 {
  color: #111;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 20px;
}
footer .contact.typeLink h5 span {
  display: inline-block;
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
  margin-left: 5px;
}
footer .contact.typeLink .img {
  padding: 50% 0;
  position: relative;
  overflow: hidden;
}
footer .contact.typeLink .img img {
  transition: all 0.6s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
footer .contact.typeLink .img:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}
footer .contact.typeBusiness {
  background: url("/img/sub/bg_contact.jpg") no-repeat center/cover;
}
footer .contact.typeBusiness .itemBox {
  display: flex;
  gap: 0 30px;
}
footer .contact.typeBusiness .item {
  width: 100%;
  height: 200px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .contact.typeBusiness .inquiry h4 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 30px;
}
footer .contact.typeBusiness .info h6,
footer .contact.typeBusiness .info span {
  font-weight: 700;
}
footer .contact.typeBusiness .info h6 {
  font-size: 1.8rem;
}
footer .contact.typeBusiness .info span {
  font-size: 3.6rem;
}
footer .contact.typeBusiness .info p {
  font-size: 1.6rem;
  margin: 10px 0 0;
}
footer .footerBox {
  background: #1c1c1c;
  padding: 30px 0 40px;
}
footer .footerBox .top,
footer .footerBox .link {
  display: flex;
  flex-direction: row;
  align-items: center;
}
footer .footerBox .top {
  justify-content: space-between;
}
footer .footerBox .logo {
  display: block;
  width: 221px;
  height: 35px;
  opacity: 0.5;
}
footer .footerBox .logo .symbolT,
footer .footerBox .logo .textCls {
  fill: var(--color-white);
}
footer .footerBox .logo .symbolB {
  fill: #ccc;
}
footer .footerBox .link {
  gap: 0 20px;
}
footer .footerBox .link a {
  font-size: 1.8rem;
  font-weight: 700;
  transition: all 0.4s;
}
footer .footerBox .link a:hover {
  opacity: 0.6;
}
footer .footerBox .link span {
  display: block;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
footer .footerBox hr {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  margin: 30px 0;
}
footer .footerBox .bottom {
  display: flex;
  justify-content: space-between;
}
footer .footerBox .text {
  display: flex;
  flex-direction: column;
}
footer .footerBox .text h5 {
  font-size: 1.8rem;
  font-weight: 700;
}
footer .footerBox .text p {
  font-weight: 500;
}
footer .footerBox .info {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  margin: 10px 0 30px;
}
footer .footerBox .info p {
  color: #ccc;
  font-size: 1.6rem;
}
footer .footerBox .copy {
  color: #aaa;
  font-size: 1.5rem;
  margin: auto 0 0;
}
footer .footerBox .button {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
footer .footerBox .language,
footer .footerBox .affiliate button,
footer .footerBox .topButton {
  border-radius: 60px;
}
footer .footerBox .language {
  display: inline-flex;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 10px;
  position: relative;
  padding: 5px;
}
footer .footerBox .language span {
  height: calc(100% - 10px);
  background: var(--color-white);
  border-radius: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.6s;
}
footer .footerBox .language a {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 6px 12px;
  position: relative;
  transition: all 0.6s;
}
footer .footerBox .language a.on {
  color: #1c1c1c;
}
footer .footerBox .affiliate {
  width: 300px;
  height: 50px;
  border-radius: 30px;
  margin: 10px 0 30px;
  position: relative;
  z-index: 1;
  transition: all 0.6s;
}
footer .footerBox .affiliate button,
footer .footerBox .affiliate ul {
  background: #111;
}
footer .footerBox .affiliate button {
  justify-content: space-between;
  padding: 0 30px;
  position: relative;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
footer .footerBox .affiliate button * {
  transition: all 0.4s;
}
footer .footerBox .affiliate button::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  transition: all 0.4s;
}
footer .footerBox .affiliate button span {
  font-size: 1.6rem;
  font-weight: 700;
}
footer .footerBox .affiliate button img {
  width: 14px;
  filter: brightness(0) invert(1);
}
footer .footerBox .affiliate ul {
  width: 100%;
  border-radius: 0 0 30px 30px;
  padding: 30px 30px 15px;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  z-index: -1;
  display: none;
}
footer .footerBox .affiliate ul li a {
  display: inline-block;
  padding: 5px 0;
}
footer .footerBox .affiliate.on button::after {
  width: calc(100% - 60px);
}
footer .footerBox .affiliate.on button span {
  opacity: 0.4;
}
footer .footerBox .affiliate.on button img {
  transform: rotateX(0);
}
footer .footerBox .topButton {
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footerBox .topButton img {
  width: 16px;
  filter: brightness(0) invert(1);
}

.cookiePopup {
  background: var(--color-white);
  border-top: 1px solid var(--color-main);
  padding: 40px 0;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.cookiePopup .inner,
.cookiePopup .buttonBox {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cookiePopup .inner {
  gap: 0 4%;
}
.cookiePopup .inner > *:not(.text) {
  flex-shrink: 0;
}
.cookiePopup .text p {
  color: #333;
  font-size: 1.5rem;
}
.cookiePopup .text a {
  color: var(--color-main);
  font-weight: 600;
}
.cookiePopup .buttonBox {
  gap: 0 10px;
}
.cookiePopup i {
  font-size: 2.4rem;
}