@charset "UTF-8";
/* CSS Document */


/* ////////////////////////////////////////////////////////////////////////////////

	Common

//////////////////////////////////////////////////////////////////////////////// */
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: min(3.2vw, 14px);
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
  background: #000 url("../images/main_bg.jpg") no-repeat center top;
  background-size: 100%;
  letter-spacing: 0.06em;
}

img {
	max-width: 100%;
	height: auto;
}
ul { list-style: none;}

.anim {
	opacity: 0;
	transition: all .8s linear;
}
.anim.on {
	opacity: 1;
}

@media screen and (min-width: 821px) {
	
	.sp { display: none;}
	
	a { transition: all 0.3s ease-out;}
	a:hover { opacity: 0.5;}
	
}
@media screen and (max-width: 820px) {
	
	.pc { display: none;}
	
}



/* ////////////////////////////////////////////////////////////////////////////////

	mv

//////////////////////////////////////////////////////////////////////////////// */
#mainTitle {
  padding: min(12vw, 100px) min(6vw, 60px) min(12vw, 80px);
  color: #fff;
}
#mainTitle.rouletteTtl {
  padding-bottom: 0;
}
#mainTitle h1 {
  line-height: 0;
  width: 100%;
  max-width: 740px;
  margin: 0 auto min(6vw, 30px);
}

.mvRoulette {
  line-height: 0;
  width: min(74vw, 560px);
  margin: 0 auto min(8vw, 60px);
}

#mainTitle p {
  text-align: center;
  font-size: min(3.1vw, 18px);
  letter-spacing: 0.1em;
  line-height: 2.2;
}


section {
  padding: min(10vw, 80px) min(6vw, 60px);
}

.contentWrap {
  max-width: 980px;
  margin: 0 auto;
}
.contentWrapWide{
  max-width: 1130px;
  margin: 0 auto;
}

section h2 {
  text-align: center;
  font-size: min(6vw, 34px);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
  margin-bottom: min(6vw, 30px);
  color: #fff;
}

/* ////////////////////////////////////////////////////////////////////////////////

	発行期間

//////////////////////////////////////////////////////////////////////////////// */
#period {
  background: url("../images/content_bg.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
}
.periodList {
  margin-bottom: min(4vw, 20px);
}
.periodList li {
  display: flex;
  align-items: center;
  padding: min(4vw, 20px) min(3vw, 20px);
  border-bottom: #fff solid 1px;
  gap: min(4vw, 20px);
}
.periodList li .date {
  font-size: min(3.6vw, 18px);
  font-weight: 600;
  width: min(20vw, 140px);
}
.periodList li .midTxt {
  flex: 1;
  text-align: right;
  line-height: 1.5;
}
.periodList li .period {
  font-size: min(3.6vw, 18px);
  font-weight: 600;
  width: min(43vw, 220px);
}


@media screen and (max-width: 820px) {
	
  .periodList li {
    padding: min(4vw, 20px) 0;
  }
  
	
}

/* ////////////////////////////////////////////////////////////////////////////////

	枚数

//////////////////////////////////////////////////////////////////////////////// */
.numberWrap {
  display: flex;
  justify-content: space-between;
}
.numberWrap li {
  background-color: #fff;
  width: 47%;
  padding: min(4vw, 20px);
  border-radius: min(2vw, 10px);
  text-align: center;
}
.numberWrap li h3 {
  padding-bottom: min(2vw, 10px);
  border-bottom: #d1ba1b solid 1px;
  margin-bottom: min(3vw, 15px);
}
.numberWrap li p {
  font-size: min(3.6vw, 18px);
}


@media screen and (max-width: 820px) {
  
  .numberWrap {
    flex-direction: column;
    gap: min(4vw, 20px);
  }
  .numberWrap li {
    width: 100%;
  }
  
}

/* ////////////////////////////////////////////////////////////////////////////////

	参加方法

//////////////////////////////////////////////////////////////////////////////// */
#entry {
  background: url("../images/content_bg.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
}

.entryList {
  display: flex;
  gap: 0 calc((100% - 23% * 4) / 3);
}
.entryList li {
  width: 23%;
  background-color: #fff;
  color: #000;
  text-align: center;
  border-radius: min(2vw, 10px);
  display: flex;
  flex-direction: column;
  border: #fff solid 1px;
  position: relative;
}
.entryList li::before {
  background-color: #000;
  color: #fff;
  display: block;
  border-radius: min(2vw, 10px) min(2vw, 10px) 0 0;
  padding: min(1vw, 5px);
  font-size: min(4vw, 18px);
  font-weight: 700;
}
.entryList li:nth-child(1)::before { content: "1";}
.entryList li:nth-child(2)::before { content: "2";}
.entryList li:nth-child(3)::before { content: "3";}
.entryList li:nth-child(4)::before { content: "4";}


.entryList li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transform: translateY(-50%);
  width: min(4vw, 20px);
  height: min(6vw, 36px);
}
.entryList li:last-child::after {
  display: none;
}

.entryList li .txt {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: min(2vw, 10px);
}
.entryList li p {
  font-weight: 600;
  font-feature-settings: "palt";
}
.entryList li a {
  text-decoration: underline;
  color: #000;
}


@media screen and (max-width: 820px) {
  
  .entryList {
    flex-direction: column;
    gap: min(6vw, 30px);
  }
  .entryList li {
    width: 100%;
  }
  .entryList li::after {
    top: 100%;
    left: 50%;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    transform: translateX(-50%);
    width: min(6vw, 30px);
    height: min(4vw, 20px);
  }
  
}


/* ////////////////////////////////////////////////////////////////////////////////

	特典

//////////////////////////////////////////////////////////////////////////////// */
.benefitList {
  display: flex;
  flex-direction: column;
  gap: min(4vw, 20px);
}
.benefitList li {
  background-color: #fff;
  display: flex;
  border-radius: min(2vw, 10px);
  overflow: hidden;
  border: #fff solid 1px;
  position: relative;
}
.benefitList li h3 {
  background-color: #b6a019;
  width: 25%;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(4.2vw, 20px);
}
.benefitList li .txt {
  width: 75%;
  padding: min(5vw, 20px) min(5vw, 25px);
}
.benefitList li .txt h4 {
  font-size: min(3.4vw, 20px);
  margin-bottom: min(2vw, 10px);
}
.benefitList li .txt p {
  font-size: min(3.4vw, 16px);
}
.benefitList li .txt .note {
  font-size: min(2.9vw, 14px);
}

.benefitList li .num {
  position: absolute;
  top: 0;
  right: min(3vw, 15px);
  width: min(14vw, 70px);
  aspect-ratio: 1/1;
  background: linear-gradient(-20deg, #e57700 20%, #c00008 70%);
  clip-path: polygon(0% 0%, 100% 0, 100% 100%, 50% 80%, 0% 100%);
  text-align: center;
  color: #fff;
  padding-top: min(2vw, 8px);
  font-size: min(4.2vw, 21px);
  font-weight: 700;
}
.benefitList li .num span {
  font-size: 0.6em;
}


@media screen and (max-width: 820px) {
  .benefitList li {
    flex-direction: column;
  }
  .benefitList li h3 {
    width: 100%;
    padding: min(2vw, 10px);
  }
  .benefitList li .txt {
    width: 100%;
  }
  
}

/* ////////////////////////////////////////////////////////////////////////////////

	注意事項

//////////////////////////////////////////////////////////////////////////////// */
#notice {
  color: #fff;
  padding: min(7vw, 40px) min(6vw, 60px);
}
#notice h3 {
  text-align: center;
  font-size: min(3.8vw, 20px);
  margin-bottom: min(6vw, 30px);
}
#notice .noticeBox {
  border: #fff solid 1px;
  padding: min(6vw, 30px);
}


/* ////////////////////////////////////////////////////////////////////////////////

	ルーレット

//////////////////////////////////////////////////////////////////////////////// */
.fadeMask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 1s linear;
}
.fadeMask.on {
  opacity: 1;
}

#roulette {
  width: min(74vw, 560px);
  aspect-ratio: 1/1;
  margin: 0 auto;
  text-align: center;
  position: relative;
  background: url("../images/roulette_bg.png") no-repeat center center;
  background-size: 90%;
  line-height: 0;
  margin-bottom: min(4vw, 20px);
}
#roulette::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/roulette_frame.png") no-repeat center center;
  background-size: contain;
}
.rouletteMain {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 77%;
}
.rouletteMain img {
  width: 100%;
  display: block;
  transform-origin: 50% 50%;
}


/* ////////////////////////////////////////////////////////////////////////////////

	結果

//////////////////////////////////////////////////////////////////////////////// */
.numberBox {
  background-color: #fff;
  padding: min(6vw, 40px) min(6vw, 60px);
  text-align: center;
  border-radius: min(2vw, 10px);
  margin-bottom: min(6vw, 40px);
}
.numberBox p {
  font-size: min(3.6vw, 18px);
  font-weight: 600;
}

.resultBox {
  background-color: #fff;
  border-radius: min(2vw, 10px);
  overflow: hidden;
  border: #fff solid 1px;
}
.resultBox h3 {
  background-color: #b6a019;
  color: #fff;
  padding: min(3vw, 15px);
  text-align: center;
  font-size: min(4.2vw, 24px);
}
.resultBox p {
  text-align: center;
  font-size: min(3.4vw, 16px);
  font-weight: 600;
  padding: min(6vw, 30px);
}




/* ////////////////////////////////////////////////////////////////////////////////

	footer

//////////////////////////////////////////////////////////////////////////////// */
footer {
  padding: min(10vw, 80px) min(6vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(8vw, 60px);
}
.btnSerial {
  display: block;
  width: fit-content;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(20deg, #e3b71f 10%, #b88704 90%);
  font-size: min(4vw, 28px);
  font-weight: 800;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
  border-radius: min(2vw, 10px);
  padding: min(4vw, 15px) min(14vw, 80px);
  position: relative;
}
.btnSerial::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: #fff solid 2px;
  opacity: 0.5;
  border-radius: min(1.8vw, 8px);
}

footer .fcBtn {
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: min(4vw, 20px) min(8vw, 60px);
  border-radius: 100px;
  border: #fff solid 1px;
  font-size: min(3.2vw, 14px);
}
footer .copyright {
  font-size: min(2.8vw, 10px);
  color: #fff;
}


@media screen and (max-width: 820px) {
  .btnSerial {
    margin-bottom: min(6vw, 30px);
  }
  .btnSerial::before {
    top: 3px;
    left: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
  }
  
}