@import url("https://use.fontawesome.com/releases/v6.4.2/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&family=Zen+Old+Mincho&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
}

a {
  color: #000;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

figure {
  margin: 0;
  padding: 0;
}

.global_head {
  margin: 0;
}

.block {
  margin: 0 auto;
  width: calc(100% - 35px);
}
@media only screen and (min-width: 768px) {
  .block {
    max-width: 930px;
  }
}

h2 {
  text-align: center;
  margin: 0;
}

.wrap {
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .wrap {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 768px) {
  .wrap {
    font-size: 1rem;
  }
}
.wrap.initial-state::before {
  content: "";
  width: 100%;
  height: 100vh;
  left: 0;
  z-index: 2;
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .wrap.initial-state::before {
    background: radial-gradient(transparent 70%, #000) no-repeat top left/auto fixed;
  }
}
@media only screen and (min-width: 768px) {
  .wrap.initial-state::before {
    background: radial-gradient(transparent 60%, #000 80%) no-repeat top left/auto fixed;
  }
}
.wrap.fixed-bg::before {
  content: "";
  width: 100%;
  height: 100vh;
  left: 0;
  z-index: 2;
  position: fixed;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .wrap.fixed-bg::before {
    background: radial-gradient(transparent 70%, #000) no-repeat top left/auto fixed;
  }
}
@media only screen and (min-width: 768px) {
  .wrap.fixed-bg::before {
    background: radial-gradient(transparent 60%, #000 80%) no-repeat top left/auto fixed;
  }
}
.wrap.footer-visible::before {
  content: "";
  width: 100%;
  height: 100vh;
  left: 0;
  z-index: 2;
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .wrap.footer-visible::before {
    background: radial-gradient(transparent 70%, #000) no-repeat top left/auto fixed;
  }
}
@media only screen and (min-width: 768px) {
  .wrap.footer-visible::before {
    background: radial-gradient(transparent 60%, #000 80%) no-repeat top left/auto fixed;
  }
}

.head {
  background-color: #121220;
  background-image: url(../img/hero.jpg), url(../img/stars.png);
  background-repeat: no-repeat, repeat;
  background-position: top 50px center, top left;
  background-attachment: fixed;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .head {
    background-size: cover, auto;
  }
}
@media only screen and (min-width: 768px) {
  .head {
    background-size: contain, auto;
  }
}
.head::before {
  content: "";
  background: linear-gradient(transparent 40%, #121220);
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.hero {
  position: relative;
  height: calc(100vh - 40px);
}
.hero::before {
  content: "";
  position: relative;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, #00dedc, #115d89, #080f1c);
}
.hero::after {
  content: "";
  background: linear-gradient(transparent 40%, rgba(18, 18, 32, 0.7));
  width: 100%;
  height: 80%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.hero .star {
  position: absolute;
  display: block;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 4px 2px rgba(255, 255, 255, 0.2);
  opacity: 0;
  animation: twinkle 5s infinite;
}
@keyframes twinkle {
  0% {
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
.hero__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 50px);
  margin: 0 auto;
}
.hero__subttl {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .hero__subttl {
    top: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .hero__subttl {
    top: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .hero__subttl img {
    width: 250px;
  }
}
.hero h1 {
  text-align: center;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .hero h1 {
    max-width: 1000px;
  }
}
@media only screen and (max-width: 767px) {
  .hero h1 img {
    filter: drop-shadow(3px 3px 3px rgba(18, 18, 32, 0.6));
  }
}
@media only screen and (min-width: 768px) {
  .hero h1 img {
    filter: drop-shadow(5px 5px 7px rgba(18, 18, 32, 0.5));
  }
}
.hero h1.fadein-top {
  animation-delay: 0.3s;
}
.hero .scroll {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .hero .scroll {
    bottom: calc(50% - 180px);
  }
}
@media only screen and (min-width: 768px) {
  .hero .scroll {
    bottom: calc(50% - 300px);
  }
}
.hero .scroll p {
  margin: 0 0 10px;
  text-align: center;
  letter-spacing: 0.15rem;
}
@media only screen and (max-width: 767px) {
  .hero .scroll p {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .hero .scroll p {
    font-size: 0.9rem;
  }
}
.hero .scroll__arrow {
  margin: 0 auto;
  position: relative;
  animation: down 1.5s infinite;
}
@media only screen and (max-width: 767px) {
  .hero .scroll__arrow {
    width: 18px;
    height: 18px;
  }
}
@media only screen and (min-width: 768px) {
  .hero .scroll__arrow {
    width: 22px;
    height: 22px;
  }
}
.hero .scroll__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  .hero .scroll__arrow::before {
    width: 18px;
    height: 18px;
  }
}
@media only screen and (min-width: 768px) {
  .hero .scroll__arrow::before {
    width: 22px;
    height: 22px;
  }
}
@keyframes down {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateY(15px);
  }
  40% {
    transform: translate(0);
  }
}

.intro {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .intro {
    padding: 80px 0 150px;
  }
}
@media only screen and (min-width: 768px) {
  .intro {
    padding: 150px 0 50px;
  }
}
.intro::before {
  content: "";
  background: linear-gradient(rgba(18, 18, 32, 0.7), #121220);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.intro__bg-right img {
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .intro__bg-right img {
    opacity: 0.6;
    right: -300px;
  }
}
@media only screen and (min-width: 768px) {
  .intro__bg-right img {
    opacity: 0.5;
    left: calc(50% + 250px);
  }
}
.intro__bg-left img {
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .intro__bg-left img {
    opacity: 0.6;
    left: -300px;
  }
}
@media only screen and (min-width: 768px) {
  .intro__bg-left img {
    opacity: 0.5;
    right: calc(50% + 400px);
  }
}
.intro__content {
  display: grid;
  gap: 30px 0;
  position: relative;
  z-index: 10;
}
.intro p {
  font-family: "Sawarabi Gothic";
  text-align: center;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.15rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .intro p {
    line-height: 1.8;
  }
}
@media only screen and (min-width: 768px) {
  .intro p {
    font-size: 1.2rem;
    line-height: 2.3;
  }
}
.intro p:nth-of-type(2).fadein {
  animation-delay: 0.6s;
}
.intro p:nth-of-type(3).fadein {
  animation-delay: 1s;
}

.content {
  position: relative;
  background: url(../img/bg.jpg) no-repeat center/cover;
}
@media only screen and (max-width: 767px) {
  .content {
    padding: 50px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .content {
    padding: 300px 0 0;
  }
}
.content::before {
  content: "";
  background: linear-gradient(rgba(18, 18, 32, 0.8), transparent);
  width: 100%;
  height: 800px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.content::after {
  content: "";
  background: radial-gradient(transparent 50%, #121220 70%) no-repeat top left/auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .note {
    margin-bottom: 150px;
  }
}
@media only screen and (min-width: 768px) {
  .note {
    margin-bottom: 300px;
  }
}
.note__content {
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 7px rgba(18, 18, 32, 0.4);
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .note__content {
    padding: 45px 10px;
  }
}
@media only screen and (min-width: 768px) {
  .note__content {
    padding: 80px;
  }
}
.note h3 {
  text-align: center;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 767px) {
  .note h3 {
    font-size: 1.5rem;
    margin: 0 0 30px;
  }
}
@media only screen and (min-width: 768px) {
  .note h3 {
    font-size: 2.2rem;
    margin: 0 0 40px;
  }
}
.note h4 {
  text-align: center;
  margin: 0 0 20px;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 767px) {
  .note h4 {
    font-size: 1.05rem;
  }
}
@media only screen and (min-width: 768px) {
  .note h4 {
    font-size: 1.3rem;
  }
}
.note__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width: 767px) {
  .note__item {
    margin: 0 0 30px;
    padding: 0 0 30px;
  }
}
@media only screen and (min-width: 768px) {
  .note__item {
    margin: 0 0 40px;
    padding: 0 0 40px;
  }
}
.note__item:last-child {
  margin: 0;
  padding: 0;
  border-bottom: none;
}
.note__item ul {
  margin: 0;
  padding: 0;
  list-style: none;
  letter-spacing: 0.05rem;
}
.note__item ul > li {
  position: relative;
  padding-left: 20px;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .note__item ul > li {
    margin: 0 0 10px;
  }
}
@media only screen and (min-width: 768px) {
  .note__item ul > li {
    margin: 0 0 5px;
  }
}
.note__item ul > li:last-child {
  margin: 0;
}
.note__item ul > li::before {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  content: "*";
  color: #c8a128;
  position: absolute;
  top: 2px;
  left: 0;
  margin-right: 5px;
}
@media only screen and (max-width: 767px) {
  .note__item ul > li::before {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .note__item ul > li::before {
    font-size: 0.85rem;
  }
}
.note__item ol {
  margin: 20px 0 30px 20px;
  padding: 0;
  display: grid;
  gap: 10px 0;
}
.note__item ol li {
  margin: 0;
}
.note__item .note-memo li::before {
  color: #fff;
}
.note__item p {
  letter-spacing: 0.05rem;
  line-height: 1.7;
}
.note__item span {
  color: #c8a128;
  font-weight: 600;
}
.note__item .fa-asterisk {
  margin: 0 2px;
}

@media only screen and (max-width: 767px) {
  .sale {
    margin-bottom: 150px;
  }
}
@media only screen and (min-width: 768px) {
  .sale {
    margin-bottom: 300px;
  }
}
.sale__content {
  background-color: #fff;
  box-shadow: 5px 5px 7px rgba(18, 18, 32, 0.5);
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .sale__content {
    padding: 45px 28px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__content {
    padding: 80px;
  }
}
.sale__subttl {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sale__subttl {
    top: -26px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__subttl {
    top: -45px;
  }
}
.sale__subttl img {
  width: auto;
}
@media only screen and (max-width: 767px) {
  .sale__subttl img {
    height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .sale h2 {
    margin: 0 0 15px;
  }
}
@media only screen and (min-width: 768px) {
  .sale h2 {
    margin: 0 0 40px;
  }
}
.sale__soon {
  color: #c8a128;
  font-weight: 500;
  letter-spacing: 0.05rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sale__soon {
    margin: 80px 0 40px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__soon {
    font-size: 1.3rem;
    padding: 150px 0 100px;
  }
}
.sale__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-feature-settings: "palt";
}
.sale__item {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #c8a128;
  padding: 20px 0;
}
@media only screen and (min-width: 768px) {
  .sale__item {
    transition: 0.3s;
  }
  .sale__item:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.sale__item::before {
  content: "";
  background-color: rgba(200, 161, 40, 0.4);
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: right;
}
.sale__item a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.sale__date {
  color: #c8a128;
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 600;
}
.sale__date--small {
  font-size: 0.9rem;
  margin-right: 3px;
}
.sale__ttl {
  margin: 0;
  letter-spacing: 0.07rem;
  font-weight: 500;
}
.sale__more {
  position: relative;
  background-color: #c8a128;
}
@media only screen and (max-width: 767px) {
  .sale__more {
    width: 140px;
    height: 23px;
    margin: 33px 0 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  .sale__more {
    width: 160px;
    height: 30px;
    margin: 35px 0 0 auto;
    transition: 0.3s;
  }
  .sale__more:hover {
    background-color: rgba(200, 161, 40, 0.4);
  }
  .sale__more:hover::after {
    right: 4px;
  }
}
.sale__more::after {
  content: "";
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  background-color: #000;
  position: absolute;
  top: 50%;
  right: 7px;
  translate: 0 -50%;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .sale__more::after {
    width: 8px;
    height: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__more::after {
    width: 10px;
    height: 12px;
  }
}
.sale__more a {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.sale__more img {
  width: auto;
}
@media only screen and (max-width: 767px) {
  .sale__more img {
    height: 14px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__more img {
    height: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .sns {
    padding-bottom: 180px;
  }
}
@media only screen and (min-width: 768px) {
  .sns {
    padding-bottom: 350px;
  }
}
.sns .block {
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .sns h2 {
    margin: 0 0 50px;
  }
}
@media only screen and (min-width: 768px) {
  .sns h2 {
    margin: 0 0 100px;
  }
}
.sns h2 img {
  width: auto;
}
@media only screen and (max-width: 767px) {
  .sns h2 img {
    height: 30px;
  }
}
.sns__item {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .sns__item {
    transition: 0.3s;
  }
  .sns__item:hover {
    filter: brightness(0.8);
  }
}
.sns__item a {
  display: inline flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .sns__item a {
    gap: 0 15px;
  }
}
@media only screen and (min-width: 768px) {
  .sns__item a {
    gap: 0 20px;
  }
}
.sns__icon {
  background-color: #c8a128;
  display: grid;
  place-content: center;
}
@media only screen and (max-width: 767px) {
  .sns__icon {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .sns__icon {
    width: 50px;
    height: 50px;
  }
}
.sns__icon::before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 900;
  content: "\e61b";
  position: relative;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .sns__icon::before {
    font-size: 1.9rem;
  }
}
@media only screen and (min-width: 768px) {
  .sns__icon::before {
    font-size: 2.1rem;
  }
}
.sns__txt img {
  width: auto;
}
@media only screen and (max-width: 767px) {
  .sns__txt img {
    height: 43px;
  }
}
@media only screen and (min-width: 768px) {
  .sns__txt img {
    height: 55px;
  }
}

.fadein-top {
  opacity: 0;
  animation-name: fadein-bottom;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
}

@keyframes fadein-bottom {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.fadein {
  opacity: 0;
  translate: 0 80px;
  transition: 1.3s;
}
.fadein.scrollin {
  opacity: 1;
  translate: 0 0;
}

@media only screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .pconly {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */