@charset "UTF-8";

html,
body {
  font-family: "Hiragino Sans", sans-serif;
  font-weight: 300;
}

/* ヘッダーメニュー */
.header-container {
  width: 100%;
  height: 10vh;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.nav-container {
  width: 60%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-container img {
  width: auto;
  height: 10vh;
}

.nav-inner {
  display: flex;
  align-items: center;
}

.nav-inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10vw;
  height: 8vh;
  font-size: clamp(14px, 18px, 1.2vw);
  padding: 10% 0;
  border-radius: 40px;
}

.signup-btn {
  background-color: #ffa700;
  color: #fff;
  margin-right: 20px;
}

.login-btn {
  background-color: #fff;
  border: 1px solid #080808;
  color: #080808;
}
/* ヘッダーメニュー END*/

/************ TOPページ用レイアウト ************/
/* ヘッダースライダー */
.swiper {
  width: 60%;
  height: auto;
  margin: 0 auto;
}

.swiper-slide img {
  width: 100%;
  height: auto;
}

.swiper-pagination {
  bottom: 10px !important;
}

.swiper-pagination-bullet {
  background-color: #fff !important;
}
/* ヘッダースライダー END*/

/* プログレスバー設定 */
progress {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #000000;
  background-color: #fff;
  border-radius: 20px;
  width: 225px;
  margin-top: 3px;
}

::-webkit-progress-bar {
  background-color: #fff;
  border-radius: 20px;
}

::-moz-progress-bar {
  background-color: #e2ff43;
  border-radius: 20px;
}

::-webkit-progress-value {
  background-color: #e2ff43;
  border-radius: 20px;
}

.top-gacha-container {
  width: 100%;
}

.top-gacha-inner {
  background-color: #f2f2f2;
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding-top: 5px;
  padding-bottom: 120px;
  justify-content: space-evenly;
}

.gacha {
  background-color: #fff;
  padding: 3% 1%;
  width: 40%;
  margin: 0 10px;
  border-radius: 10px;
  text-align: center;
  margin-top: 75px;
}

.gacha img {
  width: 90%;
}

.gacha-info {
  font-weight: 500;
  font-size: clamp(14px, 16px, 1vw);
}

.gacha-btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.gacha-btn {
  width: 170px;
  display: block;
  padding: 15px 0px;
  margin: 0 8px;
  font-size: clamp(14px, 18px, 1.1vw);
}

.single-gacha {
  background-color: #212121;
  color: #fff;
  border-radius: 5px;
}

.tens-gacha {
  background-color: #d6001c;
  color: #fff;
  border-radius: 5px;
}

/************ 商品ページ用レイアウト ************/
.products-container {
  width: 60%;
  margin: 0 auto;
  background-color: #f2f2f2;
  text-align: center;
  margin-top: 1px;
}

.products-container img {
  width: 35vw;
}

.float-gacha {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  bottom: 0;
  left: 20%;
  z-index: 999;
  position: fixed;
  padding: 3% 0;
  transition: opacity 0.5s;
}

.hide {
  opacity: 0;
  pointer-events: none;
}

/************ 当選結果ページレイアウト(10連) ************/
.results-container {
  width: 60%;
  margin: 0 auto;
  background-color: #f2f2f2;
  padding: 105px 180px;
  font-size: clamp(14px, 18px, 1.1vw);
  color: #080808;
  margin-top: 5px;
}

.results-ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.results-ttl h1 {
  font-size: clamp(16px, 28px, 1.8vw);
}

.results-ttl a {
  font-size: clamp(15px, 20px, 1.5vw);
  background-color: #fff;
  width: 210px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
}

.results-ttl a::after {
  content: url("../images/Icon-arrow.png");
  padding-left: 15px;
  margin-top: 2px;
}

.result-content {
  position: relative;
}

.r-images-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 15px;
  padding-top: 10%;
  margin-bottom: 15px;
}

.r-images-container img {
  width: 42%;
  height: auto;
  margin-bottom: 5%;
}

.results-caution {
  position: absolute;
  top: 20%;
  left: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  width: 270px;
  height: 70px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  font-size: clamp(15px, 20px, 1.5vw);
  font-weight: 600;
}

.results-caution.r-2nd {
  top: 40%;
}
.results-caution.r-3rd {
  top: 60%;
}
.results-caution.r-4th {
  top: 80%;
}

.results-cta-box {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  padding: 3%;
  padding-bottom: 8%;
}

.r-cta-description {
  width: 80%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
}

.r-points p,
.r-ship-to p {
  font-size: clamp(16px, 20px, 1.2vw);
  margin-bottom: 10%;
}

.r-address {
  font-size: clamp(14px, 18px, 1vw) !important;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 10px;
  padding: 10px;
  margin-top: -5%;
}

.r-point-cta,
.r-shipping-cta {
  display: block;
  margin: 0 auto;
  width: 32vw;
  height: 8vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: clamp(16px, 28px, 1.2vw);
  margin-top: 2%;
}

.r-point-cta {
  background-color: #363636;
  color: #fff;
}

.r-shipping-cta {
  background-color: #ffa701;
  color: #fff;
}

/************ 当選結果ページレイアウト(シングル) ************/
.results-caution.r-single {
  top: 115%;
}

.results-cta-box.r-single {
  margin-top: 30%;
}

/* 共通フッター */
footer {
  background-color: #363636;
}

.footer-nav {
  color: #fff;
  font-size: clamp(14px, 16px, 1.1vw);
  padding: 5%;
  line-height: 2;
  margin-left: 20%;
  font-weight: 400;
}

.footer-nav li:first-child {
  font-weight: 500;
  font-size: clamp(16px, 20px, 1.5vw);
}

small {
  text-align: center;
  color: #fff;
  font-size: 13px;
  display: block;
  letter-spacing: 1px;
  padding-bottom: 2%;
}

.hidden {
  display: none !important;
}

.logout-btn {
  text-align: center;
  width: 10vw;
  height: 8vh;
  font-size: clamp(14px, 18px, 1.2vw);
  padding: 10% 0;
  border-radius: 40px;
  background-color: #fff;
  border: 1px solid #080808;
  color: #080808;
}
