@charset "utf-8";
/* CSS Document */
html {
  width: 100%;
}
body {
  color: #222; /* RGB */
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  background: #F1ECE5 url("../images/body/bg-repeat.png") repeat;
}
.text-orange {
  color: #E85716;
}
.font-archivo {
  font-family: "Archivo Narrow", sans-serif;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 1;
  width: 100%;
  
  border-bottom: solid 1px #C2BCB2;
  background-image: url("../images/body/bg-repeat.png");
}
.header__logo {
  width: max(6.25vw,56px);
  border-right: solid 1px #C2BCB2;
}
.header__logo img {
  width: 100%;
}
.header__nav {
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: 4.27vw;
}
.header__nav ul {
  display: flex;
  gap: 6.15vw;
}
.header__nav ul li a {
  font-size: min(14px, 3.2vw);
  font-weight: 600;
}
.header__nav ul li a:hover {
  border-bottom: solid 3px #E85716;
}
a {
  text-decoration: none;
  color: #222;
}
.pointer-events-none {
  position: relative;
  pointer-events: none;
  display: inline-block;
  width: 100%;
}
.pointer-events-none::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(59,59,59,0.7);
}
.pointer-events-none::after {
  position: absolute;
  content: "coming soon";
  font-family: "Archivo Narrow", sans-serif;
  color: #f5f5f5;
  font-size: 150%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
@media(min-width:768px) {
  .header {
    height: min(5.55vw,96px);
  }
  .header__logo {
    width: min(5.55vw,96px);
  }
  .header__nav {
    border-right: solid 1px #C2BCB2;
    padding-right: 2.22vw;
    margin-right: min(5.55vw,96px);
  }
  .header__nav ul {
    gap: 2.78vw;
  }
  .header__nav ul li a {
    font-size: min(24px, 1.25vw);
  }
  .window--border--rl::before {
    content: "";
    width: min(5.55vw,96px);
    height: 100vh;
    border-right:  solid 1px #C2BCB2;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
  }
  .window--border--rl::after {
    content: "";
    width: min(5.55vw,96px);
    height: 100vh;
    border-left: solid 1px #C2BCB2;
    margin: 0;
    position: fixed;
    top: 0;
    right: 0;
  }
}

.footer {
  background: url("../images/footer/footer-bg-img.png") repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 21.33vw 0 10.67vw;
  position: relative;
}
.footer::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 5.87vw;
  background: url("../images/footer/footer-bg-border.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: -5%;
}
.footer__logo {
  width: 37.33vw;
  margin-bottom: 10.67vw;
}
.footer__logo img {
  width: 100%;
}
.footer__nav {
  display: flex;
  flex-direction: row;
  gap: 8.53vw;
  margin-bottom: 4.27vw;
}
.footer__nav li {
  list-style: none;
  width: 22.56vw;
}
.footer__li-left {
  text-align: right;
}
.footer__li-center {
  text-align: center;
}
.footer__li-right {
  text-align: left;
}

.footer__nav li a {
  text-decoration: none;
  color: #f5f5f5;
  font-size: 4.27vw;
  font-weight: 600;
  line-height: 1;
}
.footer__nav li a:hover {
  border-bottom: solid 2px #f5f5f5;
}
.footer__name-tag p {
  font-family: "Archivo Narrow", sans-serif;
  color: #f5f5f5;
  font-size: 3.73vw;
  font-weight: 600;
  line-height: 1;
}
@media(min-width:768px) {
  .footer {
    padding: 3.89vw 0 2.78vw; 
  }
  .footer::before {
  top: -20%;
  }
  .footer__logo {
    width: 11.81vw;
    margin-bottom: 4.44vw;
  }
  .footer__nav {
    margin-bottom: 1.67vw;
    gap: 3.33vw;
  }
  .footer__nav li {
    list-style: none;
    width: 6.94vw;
  }
  .footer__nav li a {
    font-size: 1.39vw;
  }
  .footer__name-tag p {
    font-size: 0.97vw;
  }
}

















