@charset "UTF-8";
/*========================================
Re:vite
Date : 
Style : principal CSS "header" "footer" "nav"
Filename : principal.css
========================================*/
/*========================================
logo animation
========================================*/
.header-logo path,
.footer-contents path {
  fill-opacity: 0;
  transition: fill-opacity 0.5s;
}
.done .st0 {
  fill: #535454;
  fill-opacity: 1;
}
.done .st1 {
  fill: #1B1311;
  fill-opacity: 1;
}
.done .st2 {
  fill: red;
  fill-opacity: 1;
}
.done path {
  stroke: none;
}
.mainvisual-logo .done .st0 {
  fill: #535454;
  fill-opacity: 1;
}
.mainvisual-logo .done .st1 {
  fill: #1B1311;
  fill-opacity: 1;
}
.mainvisual-logo .st0,
.mainvisual-logo .st1 {
  stroke-width: 1;
}

/*========================================
Header Contents
========================================*/
.global-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
}
.global-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 15px;
}
.global-header .main-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.global-header h1 {
  width: 112px;
}
.global-header h1 a {
  display: block;
}
.global-nav {
  margin: 0 0 0 auto;
}
.global-nav ul {
  display: flex;
}
.global-nav ul li a {
  box-sizing: border-box;
  position: relative;
  display: block;
  padding: 25px;
  color: #131415;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 3px;
}
.global-nav ul li:not(:last-of-type) a:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 0px;
  height: 1px;
  background: #131415;
  transition: 0.4s;
}
.global-nav ul li:not(:last-of-type) a:hover:before {
  width: 50px;
  height: 1px;
}
.global-nav ul li a span:last-of-type {
  display: none;
}
.global-nav ul li.header-contact a {
  overflow: hidden;
  padding: 25px 100px 25px 50px;
  background: linear-gradient(
    to right,
    #131415 0%,
    #131415 25%,
    #131415 50%,
    #ffffff 50%,
    #ffffff 100%
  );
  background-size: 200% 100%;
  border: 1px solid #131415;
  color: #fff;
  transition: 0.4s;
}
.global-nav ul li.header-contact a span {
  position: relative;
  z-index: 10;
}
.global-nav ul li.header-contact a:hover {
  background-position: -100%;
}
.global-nav ul li.header-contact a:hover span {
  color: #131415;
}
.sp-menu {
  display: none;
}
@media (max-width: 959px) {
  .sp-menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 60px;
    height: 60px;
    margin: 0 0 0 auto;
    background-color: #131415;
  }
  .sp-menu span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 10px;
    transition: 0.4s;
    transform: translate(-50%, -50%);
  }
  .sp-menu span:nth-of-type(1) {
    transform: translate(-50%, -12px);
  }
  .sp-menu span:nth-of-type(3) {
    transform: translate(-50%, 9px);
  }
  .global-header.active .sp-menu span:nth-of-type(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .global-header.active .sp-menu span:nth-of-type(2) {
    display: none;
  }
  .global-header.active .sp-menu span:nth-of-type(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .global-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    background-color: #131415;
    transition: 0.4s;
  }
  .global-header.active .global-nav {
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
    padding: 50px 30px 15px;
  }
  .global-header.active .sp-menu {
    background: transparent;
  }
  .global-nav ul {
    display: none;
  }
  .global-nav ul li a {
    position: relative;
    color: #fff;
  }
  .global-nav ul li:not(:last-of-type) a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 10px;
    height: 15px;
    background: url("../images/common/arrow-w.svg") center / cover no-repeat;
    transform: translateY(-50%);
  }
  .global-nav ul li a span:first-of-type {
    display: block;
    margin: 0 0 5px;
    font-size: 1.5rem;
    letter-spacing: 10px;
  }
  .global-nav ul li a span:last-of-type {
    display: block;
    font-size: 0.9rem;
  }
  .global-nav ul li.header-contact a {
    padding: 25px;
    background: transparent;
    border: 1px solid #fff;
  }
}
@media (max-width: 767px) {
}
@media (max-width: 374px) {
}

/*========================================
Breadcrumb
========================================*/
@media (max-width: 959px) {
}
@media (max-width: 767px) {
}
@media (max-width: 374px) {
}

/*========================================
Top Return
========================================*/
#topBtn {
  top: 150px;
  right: -30px;
  position: absolute;
  display: flex;
  align-items: center;
  transform: rotate(90deg);
  z-index: 10;
}
#topBtn p {
  position: relative;
  color: #131415;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 3px;
}
#topBtn p:before {
  content: "";
  position: absolute;
  top: 40%;
  left: -70px;
  width: 60px;
  height: 6.5px;
  background: url(../images/common/btn-arrow-b.webp) center / cover no-repeat;
  transform: translateY(-50%);
  transition: 0.4s;
}
#topBtn:hover {
  cursor: pointer;
}
#topBtn:hover p:before {
  transform: translate(-20px, -50%);
}

@media (max-width: 959px) {
  #topBtn {
    top: 0;
    right: 0;
    width: 60px;
    height: 73px;
    background: url(../images/common/topBtn.webp) center / cover no-repeat;
    transform: none;
  }
  #topBtn p,
  #topBtn p:before {
    display: none;
  }
}
@media (max-width: 767px) {
}
@media (max-width: 374px) {
}

/*========================================
Footer Content
========================================*/
.global-footer {
  position: relative;
  background: #fff;
  z-index: 1;
}
.footer-nav {
  padding: 30px 0;
  background: #F2F2F2;
}
.footer-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-nav ul li a {
  position: relative;
  display: block;
  padding: 20px 40px;
  color: #131415;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 3px;
}
.footer-nav ul li a:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 0px;
  height: 1px;
  background: #131415;
  transition: 0.4s;
}
.footer-nav ul li a:hover:before {
  width: 50px;
  height: 1px;
}
.footer-contents {
  position: relative;
  padding: 50px 0 0;
}
.footer-logo_ar {
  position: fixed;
  bottom: 15px;
  left: 15px;
  display: flex;
  z-index: 100;
}
.footer-contents h2 {
  margin: 0 auto 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer-contents svg {
    width: 130px;
  }
}

.footer__logo {
  width: 235px;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .footer__logo {
  width: 120px;
  margin-top: 20px;
}
}

.insta-logo {
  width: 30px;
}
.tiktok-logo {
  width: 30px;
  margin: 0 10px 0 0;
}
.insta-logo a,
.tiktok-logo a {
  display: block;
}
.insta-logo a:hover,
.tiktok-logo a:hover {
  cursor: pointer;
  opacity: 0.8;
}
.copy-right {
  padding: 0 0 20px;
  color: #131415;
  font-size: 0.7rem;
  text-align: center;
  letter-spacing: 0.16em;
}
@media (max-width: 959px) {
}
@media (max-width: 767px) {
  .global-footer {
    border-top: 1px solid #c5c5c5;
    z-index: 101;
  }
  .footer-nav {
    display: none;
  }
  .footer-contents {
    padding: 20px 0 0;
  }
  .footer-contents h2 {
    margin: 0 auto 20px;
  }
}
@media (max-width: 374px) {
}
