@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  height: 100%;
  width: 100%;
  background-attachment: fixed;
}

html::before {
  content: '';
  display: block;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #2c4486;
}

@keyframes bgloop {
  from {
    background-position: -2000px 0;
  }
  to {
    background-position: 0 0;
  }
}

@font-face {
  font-family: 'sourceHansSans-jp';
  src: url('https://www.capcom-games.com/common/font/SourceHanSansJP-VF.otf.woff2') format('woff2-variations');
}


body {
  max-width: 750px;
  min-width: 375px;
  position: relative;

  display: flex;

  flex-direction: column;
  justify-content: center;
  gap: 40px 0;
  margin: 0 auto;
  padding-bottom: 106px;

  color: #FFFFFF;

  font-family: 'sourceHansSans-jp', sans-serif;
  font-feature-settings: "palt";
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  background-attachment: fixed;

}

body::before {
  content: '';
  display: block;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 750px;
  height: 100vh;
  background: url(../../img/campaign/summer2025/bg_outline.png) top/140% repeat;
  @media (480px <= width <= 750px) { background-size: 720px; }
  @media (750px < width) { background-size: 960px; }
  margin: 0 auto;
}

header{
  position: relative;
  padding: 0px 0px 0;
  margin-top: -44px;
}

header img{
  width: 100%;
}

header h2{
  position: absolute;
  top: 10%;
  right: 16px;
  font-size: 16px;
  font-weight: 700;
  width: 40%;
  @media (480px <= width <= 560px) { font-size: 20px; }
  @media (560px < width) { font-size: 24px; }
}

section{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
}

a{
  text-decoration: none;
}

a.appliInstall{
  display: block;
  height: auto;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;  
}
a.appliInstall img{
    width: 86%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 6px;
}
@media screen and (min-width:769px) {/* ウィンドウ幅が0〜769pxの場合に適用するCSS */
  a.appliInstall img {
    width: 94%;
    margin-top: 20px;
  }
  }
  a.appliInstall2 img{
    width: 94%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 6px;
}
@media screen and (min-width:769px) {/* ウィンドウ幅が0〜769pxの場合に適用するCSS */
  a.appliInstall2 img {
    width: 95%;
    margin-top: 20px;
  }
  }

a.getItem{
  display: block;
  height: auto;
}
a.getItem img{
    width: 220px;
}

a.termAndPP{
  display: block;
  height: auto;
  margin: 0 auto;
}
a.termAndPP img{
    width: 240px;
}

img.directImg{
  width: 100%;
  max-width: 512px;
}

img.directImg2{
  width: 100%;
  max-width: 600px;
}


a.noticeLink{
  color: #FFFFFF;
  font-size: 22px;
  line-height: 100%;
}


footer{
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer div.innerFooter{
    display: flex;
    padding: 16px 0px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 600px;

    border-radius: 16px;
    background: #9f7244;
}

footer img{
    width: 53%;
    /*min-width: 200px;*/
    max-width: 360px;
}

footer img.partner{  
  margin-right: 268px;
  margin-top: -12px;
  width:20%;
}
@media screen and (min-width:769px) {/* ウィンドウ幅が0〜769pxの場合に適用するCSS */
  footer img.partner {
  margin-right: 444px;
  margin-top: -12px;
  width:20%;
  }
  }


footer p{
    color: #FFFFFF;
    line-height: 120%;
    text-align: center;
}

footer p.copy{
    color: #FFFFFF;
    line-height: 120%;
    text-align: center;
    margin-top: -52px;
}
@media screen and (min-width:769px) {/* ウィンドウ幅が0〜769pxの場合に適用するCSS */
  footer p.copy {
    color: #FFFFFF;
    line-height: 120%;
    text-align: center;
    margin-top: -84px;
  }
  }

button.btnInstallFixed{
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 750px;
  height: 64px;
  padding: 0;

  background: url(../../img/campaign/summer2025/installAppli.jpg) center;
  background-size: auto 64px;
  cursor: pointer;
  border: none;
}

.bottom-fixed-button button a {
  text-decoration: none;
}



/* ハンバーガーメニュー */

#nav-toggle {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 52px;
  height: 52px;
  cursor: pointer;
  z-index: 999;
  background: #9f7244;
  border: 3px solid #FFFFFF;
  border-radius: 8px;
}

#nav-toggle span {
  display: inline-block;
  position: absolute;
  right: 0;
  left: 0;
  height: 5px;
  width: 32px;
  margin: auto;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#nav-toggle span:nth-child(1) {
  top: 10.5px;
}
#nav-toggle span:nth-child(2) {
  top: 21.5px;
}
#nav-toggle span:nth-child(3) {
  top: 32.5px;
}

.open #nav-toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 14px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

#gloval-nav {
  background-color: rgba(3, 31, 5, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  transform: translateX(-100%);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#gloval-nav a {
  display: block;
  color: #fff;
  padding: 26px 0;
  transition: color 0.6s ease;
  text-decoration: none;
}
#gloval-nav ul li {
  list-style: none;
  opacity: 0;
  transform: translateX(-200px);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
#gloval-nav ul li:nth-child(2) {
  transition-delay: 0.15s;
}
#gloval-nav ul li:nth-child(3) {
  transition-delay: 0.3s;
}
#gloval-nav ul li:nth-child(4) {
  transition-delay: 0.45s;
}

/* open */
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  transform: translateX(0);
  transition: transform 0.6s;
}
.open #gloval-nav li {
  font-weight: bold;
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}

#nav-toggle {
  z-index: 100;
}

#gloval-nav {
  z-index: 10;
}


/* 規約ページ用スタイル */

body.terms{
  gap: 16px;
  padding-bottom: 24px;
}

section.termsLabel{
  margin-top:8px;
  align-items:center;
}
section.termsLabel h1{
    font-size: 18px;
    text-align: center;
}

section.termsLead p{
  font-size: 14px;
  text-indent: -1em;
  margin-left: 1em;
}

section.termsBody ul li{
    font-size: 14px;
    list-style-position: inside;
    padding: 0 0 8px 8px;
}
section.termsBody ul li ul li{
      list-style-type: lower-roman;
      padding-bottom: 4px;
}

ul li.indent{
  list-style-type: circle;
  margin:0 auto 0 20px;
  padding: 0;
}

section.termsBody ul li ul li a{
      text-decoration: underline;
}

section.termsBody ul li div.greenLabel{
    border-radius: 8px;
}



/* 規約ページ 枠 */
.box_rule {
  color: #ffffff;
  font-size: 90px;
  border-width: 16px;
  text-align: center;
  padding: 20px;/* 内側の余白 */
  margin: 30px;/* 外側の余白 */

  background:#9f7244;  
  background-image: url("../../img/campaign/summer2025/flag.png");
  background-repeat: no-repeat;
  background-size: 56%;
  background-position: 130px 250px;

  box-shadow:
  0 0 0 4px #fcddaa,
  0 0 0 10px #9f7244;
  border-radius: 16px;
  width: 88%;
  max-width: 600px;
}
.box_rule p {
    font-size: 22px;
    font-weight: bold;
}
.box_rule li {
    font-size: 16px;
    text-align:left;
    margin-top: 10px;
    margin-left: 10px;
    line-height: 20px;  
}
.box_rule img {
    width: 100%;
    margin-top: 20px;
}
@media screen and (min-width:769px) {/* ウィンドウ幅が0〜769pxの場合に適用するCSS */
  .box_rule  {
    width: 75%;
    background-image: url("../../img/campaign/summer2025/flag.png");
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: 270px 86px;
  }
  .box_rule p {
    font-size: 28px;
    font-weight: bold;
    line-height: 32px;
}
.box_rule img {
    width: 96%;
    margin-top: 20px;
}
  }



/* 開催期間 枠 */
.box_period {
  color: #ffffff;
  font-size: 90px;
  border-width: 16px;
  text-align: center;
  padding: 14px;/* 内側の余白 */
  margin: 0px;/* 外側の余白 */

  background:#9f7244;  
  background-image: url("../../img/campaign/summer2025/flag.png");
  background-repeat: no-repeat;
  background-size: 28%;
  background-position: 226px 34px;

  box-shadow:
  0 0 0 4px #fcddaa,
  0 0 0 10px #9f7244;
  border-radius: 16px;
  width: 88%;
  max-width: 600px;
}
.box_period p {
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    margin-left: 6px;
}

.box_period .Imgterm{
    width: 60%;
    margin-bottom: 10px;
    margin-top: 5px;
}
.box_period img {
    width: 90%;
    margin-top: 20px;
}

@media screen and (min-width:769px) {/* ウィンドウ幅が0〜769pxの場合に適用するCSS */
  .box_period {
    width: 75%;
    background:#9f7244;  
    background-image: url("../../img/campaign/summer2025/flag.png");
    background-repeat: no-repeat;
    background-size: 26%;
    background-position: 396px 40px;
  }
  .box_period p {
    font-size: 26px;
    font-weight: bold;
    line-height: 42px;
    margin-left: 18px;
  }
  }

