@charset "UTF-8";

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  color: inherit;
  font-family: 'メイリオ', 'Meiryo', sans-serif;
  scroll-behavior: smooth;
  transition: 1s;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  vertical-align: bottom;
}

.outer-wrapper {
  width: 100vh;
  height: 100vw;
  transform: rotate(-90deg) translateX(-100vh);
  transform-origin: top left;
  overflow-x: hidden;
  overflow-y: scroll;
  position: absolute;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

::-webkit-scrollbar {
  display: none;
}

.wrapper {
  display: flex;
  width: 600vw;
  transform: rotate(90deg) translateY(-100vh);
  transform-origin: top left;
}

.slide {
  width: 100vw;
  height: 100vh;
}

/* .one,
.two,
.three,
.four,
.five,
.six {
  width: 100vw;
} */

.top_img1 {
  width: 100vw;
  position: relative;
}

.lead_inner {
  width: 100%;
  display: flex;
  background-color: linear-gradient(to right, #41a4fd, #ffffff);
}

.lead_text {
  width: 40%;
  margin: 0 auto;
  text-align: center;
  margin-top: 300px;
}

.lead_img {
  width: 60%;
  display: flex;
  position: relative;
}

.lead_img1 {
  position: absolute;
  width: 28%;
  top: 25%;
  left: 10%;
}

.lead_img2 {
  position: absolute;
  width: 30%;
  top: 55%;
  left: 50%;
}


.coffee_inner {
  width: 100%;
  display: flex;
}

.coffee_img1 {
  width: 80%;
  margin: 5rem 8rem;
  margin-right: 0;
}

.coffee_img1_1 {
  width: 75%;
}

.coffee_text {
  width: 40%;
  margin: 0 auto;
  text-align: center;
  margin-top: 300px;
}

.coffee_title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.coffee_price {
  font-size: 0.9rem;
  margin-top: 1rem;
}

.coffee_img2 {
  width: 80%;
}

.coffee_img2_1 {
  width: 50%;
  margin: 8rem;
  margin-top: 10rem;
}

.beer_inner {
  width: 100%;
  display: flex;
}

.beer_img1 {
  position: relative;
  width: 40%;
}

.beer_img1_1 {
  position: absolute;
  z-index: 10;
  width: 50%;
  top: 10%;
  left: 10%;
}

.beer_img1_2 {
  position: absolute;
  width: 50%;
  top: 40%;
  left: 55%;
}

.beer_text {
  width: 40%;
  margin: 0 auto;
  text-align: center;
  margin-top: 300px;
}

.beer_img2 {
  width: 50%;
  margin-top: 5rem;
}

.beer_img2_2 {
  width: 10%;
}

.towel_inner {
  width: 100%;
  display: flex;
}

.towel_img1 {
  width: 40%;
  position: relative;
}

.towel_img1_1 {
  width: 40%;
  position: absolute;
  top: 10%;
  left: 10%;
}

.towel_img1_2 {
  width: 40%;
  position: absolute;
  top: 40%;
  left: 55%;
}

.towel_img2 {
  width: 35%;
  margin-top: 5rem;
  margin-left: 5rem;
}

.towel_img2_1 {
  width: 75%;
}

.towel_text {
  width: 25%;
  margin: 0 auto;
  text-align: center;
  margin-top: 20rem;
}

.close_inner {
  width: 100%;
  /* margin-left: 9%;
  margin-right: 9%; */
}

.close_text1 {
  margin: 0 auto;
  text-align: center;
  margin-top: 5rem;
  color: #1f80da;
}

.close_title {
  font-size: 60px;
  font-weight: 600;
}

.close_s_title {
  font-size: 20px;
}

.close_text2 {
  width: 500px;
  height: 300px;
  background-color: #1f80da;
  margin: 50px auto;
}

.link_inner {
  margin: 50px auto;
  padding: 25px;
  text-align: center;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.8;
}

.link_title {
  margin-bottom: 1.5rem;
}

.scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  font-size: 1.2rem;
  color: #808080;
}

.scroll::after {
  content: "";
  display: block;
  position: absolute;
  width: 120px;
  height: 1px;
  right: 1px;
  bottom: 1px;
  background-color: #808080;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media screen and (max-width: 767px) {
  .top_img1 {
    max-width: 100%;
    height: auto;
  }
}