@charset "UTF-8";
html,
body {
  font-family: "rialto-grande-df", serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  font-size: 16px;
  overflow-x: hidden;
  margin: 0 auto;
  transition: all 1.6s ease 0s;
  background-color: #fff;
  scroll-behavior: smooth;
}
html.active,
body.active {
  overflow: hidden;
}

img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

a {
  display: block;
  text-decoration: none;
  transition: all 0.4s;
  color: #000;
}
@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.6;
    transition: all 0.4s;
  }
}
a[href=""] {
  pointer-events: none;
}
a[href=""] span:before {
  display: none;
}

#loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 999;
}

header {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 20px;
  z-index: 10;
}
header::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 8px solid #000;
  transform: translateX(-50%) rotate(180deg);
  left: 50%;
  bottom: -10px;
}

.fv {
  margin-bottom: 100px;
  position: relative;
}
.fv .title {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 50px;
  z-index: 10;
}
.fv .logo {
  max-width: 200px;
}
.fv .slider {
  width: 33.3333333333%;
}

.fade {
  position: relative;
  height: clamp(630px, 168vw, 671px);
}
.fade li {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation-iteration-count: infinite;
  animation-duration: 7s;
}
.fade li:nth-child(1) {
  animation-name: slider_1;
  animation-delay: 1s;
}
.fade li:nth-child(2) {
  animation-name: slider_1;
  animation-delay: 4.5s;
  opacity: 0;
}

@keyframes slider_1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
[class*=code_swiper] {
  position: relative;
  max-width: 280px;
  margin: 0 48px 0 48px;
}
[class*=code_swiper] .swiper-scrollbar {
  position: absolute !important;
  transform: translateX(-50%);
  left: 50% !important;
  width: 50% !important;
  margin: 10px auto !important;
  background-color: #fff;
  opacity: 1 !important;
}
[class*=code_swiper] .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #a89c82;
}

.credit {
  margin: 30px auto 0;
  font-size: 12px;
}
.credit li {
  margin-bottom: 10px;
}
.credit li:last-child {
  margin-bottom: 0;
}
.credit li:last-child a {
  margin: 0;
}

.modal_open,
.credit li a {
  display: flex;
  justify-content: center;
  gap: 35px;
  font-size: 13px;
  transition: all 0.6s;
  margin: 0 auto 20px;
  width: fit-content;
}
.modal_open:hover span:before,
.credit li a:hover span:before {
  transform: translateY(-50%) scale(2);
  background-color: transparent;
  border: 0.5px solid rgba(168, 156, 130, 0.35);
  left: -5px;
}
.modal_open span,
.credit li a span {
  display: block;
  position: relative;
}
.modal_open span:before,
.credit li a span:before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background-color: rgba(168, 156, 130, 0.35);
  border-radius: 50px;
  transform: translateY(-50%) scale(1);
  top: 50%;
  left: -20px;
  transition: all 0.6s;
}
.modal_open span:after,
.credit li a span:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 0.5px;
  background-color: #000;
  transform: translateY(-50%);
  top: 50%;
}

.credit li a {
  min-width: 180px;
  justify-content: space-between;
}

.modal_open {
  margin: 30px 70px 70px auto;
}
.modal_open span:after {
  width: 70px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 100;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

.fix_logo {
  position: fixed;
  transform: translateX(-50%);
  max-width: 150px;
  left: 50%;
  top: 30px;
  z-index: 101;
}

.modal_container {
  width: clamp(350px, 93.3333333333vw, 365px);
  margin: 0 auto;
}

.close {
  cursor: pointer;
  width: 105px;
  height: 105px;
  background-color: rgba(168, 156, 130, 0.35);
  border-radius: 50%;
  position: fixed;
  top: -55px;
  left: -55px;
  z-index: 101;
}
.close:after {
  content: "←";
  position: absolute;
  bottom: 20px;
  right: 25px;
}

.pc_flex {
  padding-top: 130px;
}

#sec1 {
  padding-top: 100px;
}

#sec20 {
  padding-bottom: 50px;
}

[class*=modal-swiper] {
  width: 83.5%;
  max-width: 365px;
  position: relative;
}
[class*=modal-swiper] [class*=thumb] .swiper-wrapper {
  width: 20%;
  position: absolute;
  z-index: 100;
  top: 0;
  right: -20.5%;
  display: grid;
  grid-template-columns: 1fr;
}
[class*=modal-swiper] [class*=thumb] .swiper-wrapper [class*=swiper-slide] {
  cursor: pointer;
  filter: brightness(70%);
}
[class*=modal-swiper] [class*=thumb] .swiper-wrapper [class*=swiper-slide][class*=swiper-slide-thumb-active] {
  filter: brightness(100%);
}

#all_look {
  padding-top: 100px;
}
#all_look .container {
  margin: 0 auto;
  position: relative;
  max-width: 850px;
}
#all_look .container::before, #all_look .container::after {
  content: "";
  width: 130px;
  height: 130px;
  position: absolute;
  border: solid #000;
}
#all_look .container::before {
  top: 15px;
  left: 0;
  border-width: 1px 0 0 1px;
}
#all_look .container::after {
  right: 0;
  bottom: -15px;
  border-width: 0 1px 1px 0;
}
#all_look h3 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
}
#all_look ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
  max-width: 571px;
  margin: 0 auto;
}
#all_look ul li {
  width: 100px;
  margin: 0;
}
#all_look ul li a {
  margin: 0;
}

.footer {
  padding: 150px 0 50px;
}
.footer .all_item {
  width: 250px;
  margin: 0 auto 230px;
  padding: 10px 0;
  border: 1px solid #000;
  text-align: center;
}
.footer .logo {
  max-width: 130px;
  margin: 0 auto;
}
.footer .copy {
  font-size: 11px;
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .credit .number {
    display: none;
  }
  #all_look .container {
    width: 88%;
  }
  #all_look ul::after {
    content: "";
    width: 100px;
    height: 100%;
    display: block;
  }
  .credit li:last-child {
    margin-bottom: 0;
  }
  .credit li:last-child a {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1200px) {
  nav {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  nav {
    position: fixed;
    right: 120px;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
  }
  nav li {
    width: 40px;
    margin-bottom: 20px;
    font-size: 14px;
  }
  nav li.active {
    font-size: 30px;
    position: relative;
  }
  nav li.active:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: rgba(168, 156, 130, 0.35);
    border-radius: 50%;
    transform: translateY(-50%);
    top: 55%;
    right: -20px;
  }
  .fv_flex {
    display: flex;
    overflow-y: hidden;
    height: 100vh;
  }
  .fv_flex ul {
    width: 33.3333333333%;
  }
  .modal {
    display: flex;
    justify-content: center;
  }
  [class*=code_swiper] {
    margin: 0;
  }
  .modal_container {
    margin: 0;
    min-width: 880px;
  }
  #sec1 {
    padding-top: 0;
  }
  .pc_flex {
    padding-top: 0;
    height: 100vh;
    position: relative;
    display: flex;
    min-width: 880px;
    align-items: center;
    margin-bottom: 130px;
  }
  .pc_flex:after {
    content: "";
    position: absolute;
    right: 0;
    width: 400px;
    height: 487px;
    border: #000 solid;
    border-width: 1px 1px 1px 0;
    z-index: -1;
  }
  .number {
    position: absolute;
    font-size: 56px;
    right: 30px;
    margin-top: -400px;
  }
  .modal_open {
    margin: 30px auto 115px;
  }
  .modal_open span {
    font-size: 20px;
  }
  .modal_open span::before {
    width: 50px;
    height: 50px;
    left: -38px;
  }
  .modal_open span:hover::before {
    left: -13px;
  }
  .credit {
    margin: 0 0 0 min(190px, 15.8333333333vw);
  }
  .credit li a {
    margin: 0 0 30px 0;
    font-size: 16px;
  }
  .code {
    width: 850px;
    margin: 0 auto;
  }
  .code .swiper-slide {
    margin-right: 5px;
  }
  .code .swiper-slide:last-child {
    margin-right: 0;
  }
  .swiper-scrollbar {
    display: none;
  }
  #all_look h3 {
    margin-bottom: 50px;
  }
  #all_look .container::after {
    bottom: -50px;
  }
  .close {
    transform: scale(1.5);
  }
}/*# sourceMappingURL=style.css.map */