@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@media only screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .global_foot {
    height: 284px;
  }
}

@media only screen and (max-width: 767px) {
  html, body {
    position: relative;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-image: url(../img/bg.jpg);
  background-repeat: repeat;
  margin: 0;
}

h1 {
  line-height: 0.95;
  margin: 10px 0 0 0;
  color: #eeeeee;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 34px;
  }
}

h2 {
  text-align: center;
  color: #eeeeee;
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  color: #eeeeee;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  h3 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 25px;
  }
}

@media only screen and (min-width: 768px) {
  .dragon {
    padding-top: 20vh;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .dragon {
    padding-top: 25vh;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
}
.dragon__rotate {
  -webkit-animation: rotation 500s infinite linear;
          animation: rotation 500s infinite linear;
}
@media only screen and (min-width: 768px) {
  .dragon__rotate {
    max-width: 750px;
  }
}
@media only screen and (max-width: 767px) {
  .dragon__rotate {
    max-width: 100%;
  }
}

@-webkit-keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.wrap {
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.239);
  z-index: 10;
}

.top {
  max-width: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .top {
    padding-top: 2.5%;
  }
}
@media only screen and (max-width: 767px) {
  .top {
    padding-top: 15%;
  }
}
.top__title {
  margin-bottom: 50px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .top__title img {
    max-width: 100%;
    width: 98%;
  }
}
@media only screen and (min-width: 768px) {
  .top__catch {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .top__catch {
    margin-top: 50px;
  }
}
.top__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top__avatar {
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}

@-webkit-keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
.mid {
  padding: 50px 0;
}
.mid__title {
  padding-top: 50px;
}

.items {
  background-color: rgba(136, 136, 136, 0.3882352941);
  padding: 50px 0;
  border-radius: 15px;
}
@media only screen and (min-width: 768px) {
  .items {
    max-width: 1000px;
    width: 100%;
    margin: 50px auto;
  }
}
@media only screen and (max-width: 767px) {
  .items {
    margin: 10px;
  }
}
.items__title {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .items__title img {
    max-width: 100%;
    width: 80%;
  }
}
.items__flex {
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .items__flex {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .items__flex {
    padding-top: 50px;
  }
}
.items__left {
  opacity: 0;
}
@media only screen and (min-width: 768px) {
  .items__left {
    margin: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .items__left {
    text-align: center;
  }
}
.items__left img {
  height: 500px;
}
.items__right {
  padding-top: 50px;
  color: rgb(0, 0, 0);
}
@media only screen and (min-width: 768px) {
  .items__right {
    margin: 10px 0 0 50px;
  }
}
@media only screen and (max-width: 767px) {
  .items__right {
    text-align: center;
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
  }
}
.items__right p {
  padding: 0 10px 8px;
  background-color: rgb(255, 255, 255);
  font-weight: bolder;
  border-radius: 5px;
  box-shadow: 5px 5px 0px rgb(0, 0, 0), 6px 6px 0px rgb(255, 255, 255);
}
@media only screen and (min-width: 768px) {
  .items__right p {
    font-size: 35px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    text-align: right;
    margin-bottom: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .items__right p {
    font-size: 30px;
    text-align: center;
  }
}

.sale__date h2 {
  margin-top: 100px;
  padding: 50px;
  color: black;
  background: white;
}

.sns {
  padding-bottom: 50px;
}
.sns a {
  color: #eeeeee;
  text-decoration: none;
}
.sns:visited {
  color: #eeeeee;
}
.sns:hover {
  transition: 0.2s;
  opacity: 0.8;
}

.dubai__logo {
  margin: 50 0 50;
  text-align: center;
  color: #eeeeee;
}
.dubai__logo img {
  max-width: 150px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .dubai__logoimg:hover {
    transition: 0.2s;
    opacity: 0.5;
  }
}
@media only screen and (max-width: 767px) {
  .dubai:active {
    transition: 0.2s;
    opacity: 0.5;
  }
}

.tile {
  transform: translateY(50px) translateZ(0);
  opacity: 0;
}

.wordtile {
  transform: translateY(50px) translateZ(0);
  opacity: 0;
}

.inView {
  transition: 1.5s;
  opacity: 1;
  transform: translateY(0px) translateZ(0);
}

.wordinView {
  transition: 2.5s;
  opacity: 1;
  transform: translateY(0px) translateZ(0);
}/*# sourceMappingURL=style.css.map */