@charset "UTF-8";

@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Righteous&display=swap');
:root {
    --design-width-sp: 750;
    --design-width-pc: 1280;
    --vw: 1vw;
}
html {
  font-size: calc(var(--vw) * 100 / var(--design-width-sp) * 10);
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
@media screen and (min-width: 801px) {
    html {
        font-size: calc(10px * (1100 / 1280));
    }
}
@media screen and (min-width: 1101px) {
    html {
        font-size: calc(var(--vw) * 100 / var(--design-width-pc) * 10);
    }
}

body {
	background: #fff;
	color: #000000;
	text-align: center;
  font-size: 1.6rem;
	line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

a{
	outline: none;
	color: #000000;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.5;
}

a:focus{
	outline: none;
}

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

.is-pc {
  display: none;
}
.is-sp {
  display: inherit;
}

#wrap {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 801px) {
  .is-pc {
    display: inherit;
  }
  .is-sp {
    display: none;
  }
  #wrap {
    width: 1100px;
  }
}
@media screen and (min-width: 1101px) {
  #wrap {
    width: 100%;
  }
}


/* ==========================================
   header
   ========================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

.logo {
  width: 12.8rem;
  margin-left: 2.5rem;
}

#menu {
  position: fixed;
  top: 6rem;
  right: -100%;
  width: 100%;
  box-sizing: border-box;
  padding: 3rem 5rem 10rem;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 0.3s ease;
}
#menu.is-active {
  right: 0%;
}

#menu li {
  border-bottom: #999999 1px solid;
}

#menu li a {
  display: block;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: left;
  padding: 5rem 2rem;
  background-image: url(../images/menu_arrow.png?v12);
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 5rem auto;

}

.menu-btn {
  position: relative;
  width: 10rem;
  height: 6rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
  background-color: #000;
}

.menu-btn__line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.6rem;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.menu-btn__line::before,
.menu-btn__line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 3.6rem;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.menu-btn__line::before {
  top: -1.0rem;
}
.menu-btn__line::after {
  top: 1.0rem;
}

.menu-btn.is-active {
  transition: transform 0.4s ease;
}

.menu-btn.is-active .menu-btn__line {
  background-color: transparent;
}

.menu-btn.is-active .menu-btn__line::before {
  top: 0;
  transform: rotate(41deg);
}

.menu-btn.is-active .menu-btn__line::after {
  top: 0;
  transform: rotate(-41deg);
}

@media screen and (min-width: 801px) {
  .logo {
    width: 12.5rem;
    margin-left: 4.5rem;
  }

  #menu {
    width: 60rem;
    padding: 1rem 5.2rem 5rem;
  }

  #menu li a {
    font-size: 2.4rem;
    padding: 4rem 1.3rem;
    background-size: 2.8rem auto;
  }

}



/* ==========================================
   main
   ========================================== */

main {
  width: 100%;
  overflow: hidden;
}
.btn_more {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50rem;
  height: 7.6rem;
  box-sizing: border-box;
  padding-bottom: 0.6rem;
  background: url(../images/sp/btn_more.png?v12) no-repeat center center;
  background-size: contain;
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
}

#fv {
  position: relative;
}
#fv img {
  display: block;
}
@media screen and (min-width: 801px) {
  .btn_more {
    width: 38rem;
    height: 6.2rem;
    background-image: url(../images/pc/btn_more.png?v12);
    font-size: 2rem;
  }
}

#countdown {
  margin: 0 0 8rem;
  width: 100%;
  height: 18rem;
  background-color: #28272a;
  color: #fff;
  font-size: 4.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
}
.countdownDay {
  margin: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#countdown span {
  display: grid;
  place-items: center;
  width: 9.7rem;
  height: 12.45658rem;
  background: url(../images/counter_bg.png?v12) no-repeat center center;
  background-size: contain;
  font-family: "Righteous", sans-serif;
  font-size: 8rem;
}
@media screen and (min-width: 801px) {
  #countdown {
    margin: 0 0 11rem;
    height: 13rem;
    font-size: 3.7rem;
  }
  #countdown span {
    width: 7.4rem;
    height: 9.5rem;
    font-size: 6.1rem;
  }
}

#innav {
  position: relative;
  z-index: 10;
}
#innav ul {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
#innav li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30rem;
  height: 18rem;
  background: url(../images/sp/innav_bg.png?v12) no-repeat center center;
  background-size: contain;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.25;
  color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 0 rgba(0, 0, 0, 0.2);
}
#innav li a span {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 801px) {
  #innav ul {
    gap: 4rem;
  }
  #innav li a {
    width: 40rem;
    height: 16rem;
    background-image: url(../images/pc/innav_bg.png?v12);
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.6;
    border-radius: 1.3rem;
    box-shadow: 0 0.62rem 0 rgba(0, 0, 0, 0.2);
  }
  #innav li a span {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
}



.campaign {
  background: url(../images/sp/campaign_bg.jpg) no-repeat center top;
  background-size: 100% auto;
  padding-top: 15.1rem;
  margin-top: -5rem;
  min-height: 202.4rem;
  box-sizing: border-box;
  position: relative;
}
.campaign-box {
  margin: 7rem auto;
  width: 67rem;
  position: relative;
}

.campaign-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c8c8c8;
  z-index: 0;
  filter: blur(1rem);
  mix-blend-mode: multiply;
  border-radius: 2rem;
}

.campaign-boxInner {
  background: #fff;
  border-radius: 2rem;
  position: relative;
  z-index: 2;
  padding: 4.5rem 4rem 4rem;
}

.campaign-boxTxt {
  padding: 6rem 1.5rem 0;
  text-align: left;
}
.campaign-boxTxt h3 {
  font-size: 4.3rem;
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 3rem;
}
.campaign-boxTxt p {
  font-size: 2.9rem;
  line-height: 1.725;
  font-weight: bold;
  margin-bottom: 6.5rem;
}

.campaign-boxDate {
  border-top: #afafaf 1px solid;
  border-bottom: #afafaf 1px solid;
  text-align: center;
  padding: 3rem 0 6.5rem;
  margin-bottom: 5.5rem;
}

.campaign-boxDate dt {
  background: #000;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 0.5rem;
  width: 27.5rem;
  box-sizing: border-box;
  padding: 0.5em 1em;
  margin: 4rem auto 1rem;
}

.campaign-boxDate dd {
  font-size: 3rem;
  line-height: 1;
  font-weight: bold;
}
.campaign-boxDate dd strong {
  font-size: 5rem;
  font-weight: bold;
}
.campaign-boxDate dd span {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  width: 1.6em;
  height: 1.6em;
  box-sizing: border-box;
  padding-bottom: 0.2rem;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -0.5rem;
  margin-left: 0.2rem;
}
.campaign-boxDate dd span.sun {
  background-color: #ff0000;
}



.deco {
  position: absolute;
  z-index: 20;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.deco.is-active {
  opacity: 1;
  transform: translateY(0);
}
#deco01 {
  width: 32.28366rem;
  top: 144.1rem;
  left: 56.1rem;
}
#deco02 {
  width: 36.89801rem;
  top: 129.4rem;
  left: -14.5rem;
}
#deco03 {
  width: 13.344rem;
  top: 7.7rem;
  left: 3.4rem;
}
#deco04 {
  width: 17.56063rem;
  top: 114.5rem;
  left: 56.1rem;
}
#deco05 {
  display: none;
}
#deco06 {
  width: 9.5rem;
  top: 199.8rem;
  left: 8.8rem;
}

@media screen and (min-width: 801px) {
  .campaign {
    background-image: url(../images/pc/campaign_bg.jpg);
    padding-top: 19rem;
    margin-top: -9rem;
    min-height: 127.8rem;
  }

  .campaign-ttl {
    margin: 0 auto;
    width: 75.7rem;
  }
  .campaign-box {
    margin: 3rem auto;
    width: 100rem;
  }

  .campaign-boxInner {
    padding: 6.5rem 6rem 5.5rem 7rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .campaign-boxImg{
    width: 49rem;
  }

  .campaign-boxTxt {
    width: 35rem;
    box-sizing: border-box;
    padding: 1rem 0;
  }
  .campaign-boxTxt h3 {
    font-size: 3rem;
    line-height: 1.53;
    margin-bottom: 3rem;
  }
  .campaign-boxTxt p {
    font-size: 1.6rem;
    line-height: 1.875;
    margin-bottom: 3rem;
  }

  .campaign-boxDate {
    border: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .campaign-boxDate dt {
    font-size: 1.2rem;
    border-radius: 0.3rem;
    width: 13.7rem;
    padding: 0.5em;
    margin: 0;
  }

  .campaign-boxDate dd {
    font-size: 1.4rem;
  }
  .campaign-boxDate dd strong {
    font-size: 2.3rem;
  }
  .campaign-boxDate dd span {
    font-size: 0.9rem;
    padding-bottom: 0;
    top: -0.25rem;
  }
  .campaign-boxBtn {
    margin-top: 5.5rem;
    width: 100%;
  }

  #deco01 {
    width: 39.78393rem;
    top: 12.4rem;
    left: 97.73772rem;
  }
  #deco02 {
    width: 55.75469rem;
    top: 35.4rem;
    left: -22.80423rem;
  }
  #deco03 {
    width: 12.2rem;
    top: 15.2rem;
    left: 8.89802rem;
  }
  #deco04 {
    width: 14.94425rem;
    top: 104.1rem;
    left: 20.32787rem;
  }
  #deco05 {
    display: block;
    width: 11.41746rem;
    top: 94.1rem;
    left: 95.09127rem;
  }
  #deco06 {
    width: 7.34408rem;
    top: 120.9rem;
    left: 81.62796rem;
  }
}



.event {
  background: url(../images/sp/event_bg.png?v12) no-repeat center top;
  background-size: 100% auto;
  padding-top: 8.2rem;
  margin-top: -7rem;
  min-height: 150rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
.event-inner {
  margin: 3.6rem auto 0;
  width: 63rem;
  position: relative;
}
.event-box {
  padding-bottom: 8rem;
}
.event-boxImg {
  margin-bottom: 2.5rem;
}
.event-boxTxt {
  text-align: justify;
  margin-bottom: 2.5rem;
  font-size: 2.85rem;
  font-weight: bold;
  line-height: 1.72413793;
}
@media screen and (min-width: 801px) {
  .event {
    background-image: url(../images/pc/event_bg.png?v12);
    padding-top: 28.9rem;
    margin-top: -22rem;
    min-height: 126rem;
    box-sizing: border-box;
  }
  .event-ttl {
    margin: 0 auto;
    width: 50.56rem;
  }
  .event-inner {
    margin: 9.5rem auto 0;
    width: 104rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4rem;
  }
  .event-boxImg {
    margin-bottom: 2.5rem;
  }
  .event-boxTxt {
    margin-bottom: 2.5rem;
    font-size: 1.6rem;
    line-height: 1.875;
  }
}

#recommended {
  margin: 0 auto;
  width: 71rem;
  border-bottom: #afafaf 1px solid;
  position: relative;
  z-index: 1;
}
.recommended-ttl {
  background: #000;
  color: #fff;
  font-size: 2.6rem;
  font-weight: bold;
  border-radius: 1rem;
  box-sizing: border-box;
  padding: 1em;
  margin: 0 auto;
}
.recommended-inner {
  margin: 3.5rem auto 5.5rem;
  width: 67rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media screen and (min-width: 801px) {
  #recommended {
    margin-top: -1.9rem;
    width: 96rem;
  }
  .recommended-ttl {
    padding: 0.75em 1em;
  }
  .recommended-inner {
    margin: 6.3rem auto 5.9rem;
    width: 66rem;
    gap: 4rem;
  }
}


#links {
  border-bottom: #000 1px solid;
}
.links-ttl {
  margin: 3rem auto 2rem;
  font-size: 3rem;
  font-weight: bold;
}

.links-list {
  margin: 3.5rem auto 2.5rem;
  width: 67rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.8rem 1.8rem;
}

.links-list li {
  width: 65.8rem;
}

.links-list li.half {
  width: 32.5rem;
}

.links-list li a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 2.3rem;
  border: #666666 1px solid;
  border-radius: 100rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: left;
  box-shadow: 0 0.5rem 0 #c8c8c8;
}
.links-list li a img {
  width: 8rem;
}
.links-banner {
  margin: 0 auto 3.5rem;
  width: 64.5rem;
}


#footer {
  padding: 2.5rem;
}
.footer-banner {
  margin: 2.5rem auto 3.5rem;
  width: 66rem;
}
.footer-banner img {
  width: 100%;
}
.footer-copyright {
  font-size: 1.6rem;
}

@media screen and (min-width: 801px) {
  .links-ttl {
    margin: 5.5rem auto 3.5rem;
    font-size: 2.6rem;
  }

  .links-list {
    margin: 3.5rem auto 2rem;
    width: 55rem;
    gap: 1.7rem;
  }

  .links-list li {
    width: 55rem;
  }

  .links-list li.half {
    width: 26.5rem;
  }

  .links-list li a {
    padding: 0.5rem 1rem 0.5rem 3rem;
    gap: 1.0rem;
    font-size: 1.6rem;
    line-height: 1.4375;
    box-shadow: 0 0.3rem 0 #c8c8c8;
  }
  .links-list li a img {
    width: 6rem;
  }
  .links-banner {
    margin: 0 auto 3rem;
  }

  #footer {
    padding: 2rem;
  }
  .footer-banner {
    margin: 2rem auto 3rem;
    width: 86rem;
  }
  .footer-copyright {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }

}

