@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,700&display=swap&subset=japanese");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&display=swap');

/*==================================================
	Universal Reset
	Default Style
	hasLayout
==================================================*/
/*==================================================
	Base Layout
	Header Area
	Global Navigation
	Main Visual
	Contents Area
	Main Area
	Aside Area
	Footer Area
==================================================*/
/*==================================================
	Heading
	Text
	Unorderd List
	Orderd List
	Difinision List
	Link
	Table
	Form
	Layout
	Option
	Clear Fix
==================================================*/
/*--------------------------------------------------
	Universal Reset
--------------------------------------------------*/
* {
  box-sizing: border-box;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
del,
ins,
em,
img,
hr,
q,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}

ul,
ol {
  list-style: none;
}

table,
th,
td {
  border: 0 none;
}

th {
  font-weight: normal;
  text-align: left;
}

caption {
  text-align: left;
}

strong {
  font-weight: normal;
}

em {
  font-style: normal;
}

img {
  border: 0;
  vertical-align: top;
}

dt {
  font-weight: normal;
}

fieldset {
  border: 0 none;
}

legend {
  display: none;
}

textarea {
  font-size: 1em;
}

input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*--------------------------------------------------
	Default Style
--------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  font-family: "kozuka-mincho-pro", serif;
  margin-bottom: 0;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

a {
  color: #19378c;
}

a:link {
  color: #19378c;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
}

/* a:visited{
} */
p,
ul,
ol,
dl,
table {
  margin-bottom: 0;
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: baseline;
}

/*--------------------------------------------------
	hasLayout
--------------------------------------------------*/
div,
ul,
dl,
dt,
dd,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  zoom: 1;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*--------------------------------------------------
	Base Layout
--------------------------------------------------*/
body {
  width: 100%;

}

a:hover {
  opacity: 0.7;
}

.spOnly {
  display: none;
}

@media only screen and (max-width: 750px) {
  body {
    width: 100%;
    min-width: 100%;
  }

  .pcOnly {
    display: none;
  }

  .spOnly {
    display: block;
  }
}

/*--------------------------------------------------
	Header Area
--------------------------------------------------*/
.header_inner {
  max-width: 1120px;
  height: 104px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo_area {
  display: flex;
  align-items: center;
}

.header_logo_area img {
  width: 215px;
}


@media only screen and (max-width: 750px) {
  header {
    display: block;
    position: relative;
    /* z-index: -1; */
  }

  .header_inner {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }

  .header_logo_area {
    margin: 10px 0 0 20px;
    display: flex;
    align-items: center;
    width: 107px;
  }

  .header_logo_area img {
    width: 100%;
  }


}

/*--------------------------------------------------
	Main Visual
--------------------------------------------------*/
.kv_wrap {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100vw;
  margin: 0 auto;
  text-align: center;
}

.kv_wrap img {
  pointer-events: none;
  width: 100%;
}



#page_top {
  width:65px;
  height:65px;
  position: fixed;
  right: 10px;
  z-index: 10;
}

#page_top a img{
  width:100%;
}

#page_top a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;

}

/*--------------------------------------------------
	Global Navigation
--------------------------------------------------*/
/* gnav */
.gnav {
  width:93.75%;
  margin:20px auto 0;
  /*padding: 10px;*/
  position: relative;
  z-index: 1;


}

.gnav_box {
  width: 75%;
  margin: 0 auto 0;
}

.gnav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto 0;
}

.gnav-list li{
  width:24%;
  min-height:90px;
}

.gnav-list li a {
  width: 100%;
  padding:0.8em 0;
  text-align:center;
  display: block;
  color:#fff;
  font-size: clamp(14px, 2em, 21px);
  line-height: 1.3;
  transition: opacity .15s;
  text-decoration: none;
  background: linear-gradient(to bottom, #8b201a, #4d0b0d);
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.3);
}

.gnav-list a:hover {
  opacity: .7;
}

.gnav-list a img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%)
}

.gnav-list a img.btn_gnav_benefits {
  width: 104px;
}

.gnav-list a img.btn_gnav_limited {
  width: 172px;
}

.gnav-list a img.btn_gnav_normal {
  width: 78px;
}

.gnav-list a img.btn_gnav_movie {
  width: 97px;
}

.gnav_line {
  max-height: 100px;
}



@media only screen and (max-width: 750px) {

  /* gnav */
  .gnav {
    margin: 0 auto 0;
    padding: 0;
    background-color: white;
  }

  .gnav-list li{
    min-height: 50px;
  }
  
  .gnav-list li a {
    font-size: 3.5vw;
  }
  
  .gnav_box {
    width: 100%;
    /*height:500px;*/
    margin: 0 auto 0;
    padding: 2vw auto 2vw;
    background: none;
  }

  .gnav_first {
    width: 30%;
    margin: 0 auto 0;
    padding-top: 3vw;
  }

  .gnav_first img {
    width: 100%;
  }

  .gnav-list {
    flex-wrap: wrap;
    justify-content: center;
    column-gap: initial;
    width: 100%;
    height: auto;
    /*background: linear-gradient(to bottom, #8b201a, #4d0b0d);*/

    /*padding-bottom:2vw;*/
  }

  li.gnav-item {
    width: 46%;
    margin: 0 auto;
    /*margin-bottom:2vw;*/

  }


  li.gnav-item.gnav-limited a {
    min-height:87px;
    font-size:2rem;
    display:flex;
    justify-content: center;
    align-items: center;
  }

  li.gnav-item.btn_s {
    width: 26%
  }

  li.gnav-item a.li_benefits,
  li.gnav-item a.li_limited,
  li.gnav-item a.li_normal,
  li.gnav-item a.li_movie {
    width: 100%;
  }

  .gnav-list a {
    height: auto;
  }

  .gnav-list a img {
    width: 100%;
  }

  .gnav-list a img.btn_gnav_benefits {
    width: 60%;
    margin: 0 auto 0;
    display: block;
  }

  .gnav-list a img.btn_gnav_limited {
    width: 100%;
    margin: 0 auto 0;
    display: block;
  }

  .gnav-list a img.btn_gnav_normal {
    width: 45.3%;
    margin: 0 auto 0;
    display: block;
  }

  .gnav-list a img.btn_gnav_movie {
    width: 56.3%;
    margin: 0 auto 0;
    display: block;
  }

  li .gnav_line {
    width: auto;
    margin-top: 10px;
    margin-bottom: 10px;
  }

}


/*--------------------------------------------------
	更新情報
--------------------------------------------------*/
.info-block {
  width: 100%;
  margin:30px auto;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: self-start;
  /*position:absolute;
  top:-460px;
  bottom:0;
  left:0;*/
  background: url(../img/bg-info-block.jpg) center center no-repeat;
  background-size: contain;
}

.info-block p {
  color: #000000;
  margin-top:12px;
  margin-right: 1em;
  font-size: 1.8rem;
}

.info-block .info-news {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 71px;
  padding: 12px 0;
}

.info-block .info-news-item {
  /*width: 960px;*/
  margin: 2px 0;
  color: #000000;
  font-size: 1.8rem;
  text-align: left;
}

.info-block .info-news-item.is-new {
  position: relative;
  padding-left: 3.8em;
}

.info-block .info-news-item a {
  color: #000000;
  text-decoration: underline;
  transition: opacity .2s;
}

.info-block .info-news-item a:hover {
  opacity: .6;
}

.info-block .info-news-item.is-new::before {
  /*margin-right: 1em;*/
  /*color: red;*/
  /*font-weight: bold;*/
  /*content: "NEW!";*/
  position: absolute;
  left: 0;
  color: red;
  font-weight: bold;
  content: "NEW!";
}


.products-image {
  width: 960px;
  margin: 67px auto 0;
  text-align: center;
}

.products-image img {
  max-width: 100%;
}




@media only screen and (max-width: 750px) {
  .kv_wrap {
    width: 100%;
    overflow-x: initial;
    margin-top: 0;
    position: relative;
  }

  .kv_wrap .kv_block {
    height: auto;
    border: none;
  }

  .kv_wrap .kv_block_inner {
    width: 96%;
    margin: 0 auto 0;
    display: block;
    position: relative;
  }

  .info-block {
    position: static;
    flex-wrap: wrap;
    background: linear-gradient(to bottom, #f2d369, #be913f);
  }

  .info-block p {
    width: 100%;
    margin-left: 1em;
    font-size: 4vw;
    text-align: center;
  }

  .info-block .info-news {
    display: block;
    min-height: auto;
    padding: 3.2vw 4vw;

  }

  .info-block .info-news-item {
    width: auto;
    margin: 0.53333vw 0;
    font-size: 4vw;
    text-align: left;
    padding-left: 3em;
    /*text-indent: -3.5em;*/
    text-indent: 0px;
  }


}

/*--------------------------------------------------
	購入特典
--------------------------------------------------*/
section#section_benefits{
  margin-top:50px;
}
section#section_benefits .content_body{
  background: url(../img/bg_section_benefits.jpg) center center no-repeat;
  background-size: cover;
}
.benefits_contents {
  max-width: 1110px;
  padding-top: 0;
  padding-bottom: 15px;
  display: flex;
  justify-content: space-between;
  column-gap:20px;
  margin: 0 auto;
  width: 86.71%;
}

.decoline {
  text-align: center;
  margin: 0 auto;
}

.decoline img {
  width: 100%;
}

.benefits_contents.title_benefits_contents {
  max-width: 1280px;
  font-family: sans-serif;
  font-weight: bold;
  margin: 0 auto;
}


.title_benefits_contents h3 {
  padding-top: 50px;
  margin: 0 0 30px 0;
  font-size: 3.7rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: bold;

}


.txt_benefits_contents {
  width:100%;
  font-weight: bold;
  margin: 0 auto;
}

.w_adjust{
  /*width: 50%;*/
  flex: 1;
  margin-left: 0 ;
}
  

.txt_benefits_contents p {
  font-weight: bold;
  margin: 0 auto;
  font-size: 1.7rem;
}

.txt_benefits_contents h4 {
  font-size: 1.9rem;
  padding-top: 40px;
  font-weight: bold;
  margin: 0 auto;
}

h4.tokutenname{
  font-size: 1.3rem;
}


.txt_benefits_contents .benefits_caption h4 {
  font-weight: bold;
  margin: 0 auto;
}


.txt_benefits_contents h3 {
  padding-top: 50px;
  padding-bottom:40px;
  margin: 0 0 30px 0;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5em;
  text-align:center;
  border-bottom:5px solid #912018;
}

.benefits_caption {
  margin: 0 0 30px 0;
  font-size: 1.7rem;
  font-family: 'Noto Serif JP', serif;
}


.txt_benefits_contents p.benefits_detail {
  padding-top: 40px;
  margin: 0 0 0 0;
  font-size: 1.3rem;
}

ul.benefits_attention {
  margin: 0 auto;
  padding-top: 40px;
  font-size: 1.2rem;
}

ul.benefits_attention li {
  text-indent: -1em;
  padding-left: 1em;
}

.thumb_benefits_contents {
  width: 350px;
}

.thumb_benefits_contents img {
  width: 100%;
}

@media only screen and (max-width: 750px) {
  .benefits_contents {
    width: 96%;
    margin: 0 auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 35px;

  }

  .w_adjust{
    width: auto;
    margin-left: auto;
    }

  .txt_benefits_contents h3 {
    width: 100%;
    padding-top: 0;
    font-size: 5.4vw;
    font-family: 'Noto Serif JP', serif;
    font-weight: bold;
    margin: 0;

  }

  .benefits_caption {
    text-align: center;
  }

  .txt_benefits_contents h4 {
    width: 100%;
    text-align: left;
    padding-top: 20px;
    font-size: 3.3vw;
  }

  .thumb_benefits_contents {
    width: 90%;
    margin: 5vw auto 5vw;
  }

  ul.benefits_attention {
    padding-top: 30px;
  }

  .txt_benefits_contents p {
    font-size: 3.3vw;
    text-align: left;
  }

  .space_adjust {
    padding-top: 0px;

  }
}

/*--------------------------------------------------
	Treasure Box 限定グッズ
--------------------------------------------------*/
section#section_limited .content_block{
  padding-bottom:80px;
  background: url(../img/bg_section_limited.jpg) center center no-repeat;
  background-size: cover;
}

.limited_contents_area {
  width: 93.75%;
  position: relative;
  max-width: 1200px;
  border: solid 4px #8b201a;
  margin: 100px auto 0;
  text-align: center;
}

.limited_contents_area h3,
.normal_contents_area h3 {
  position: relative;
  width: 90%;
  aspect-ratio: 2218 / 193;
  left: 5%;
  /*top: -12.5%;*/
  transform: translateY(-50%);
  margin: 0 0 30px 0;
  background: url(../img/bg-section_limited_h3.png) center center no-repeat;
  background-size: contain;
  font-size:4rem;
  color:#fff;
  display:flex;
  justify-content: center;
  align-items: center;
}
.limited_contents_area h3#section_normal{
  top: -6.8%;
}

.limited_contents_area h3 img {
  width: 100%;
}

p.limited_content_caption {
  margin: 30px auto 50px;
  font-size: 2.6rem;
  line-height: 1.8em;
  padding-top: 50px;
  font-weight: bold;
}

img.img_limited_contents {
  margin: 0 auto 80px;
  max-width: 960px;
  width: 80%;
  display: block;
  filter: drop-shadow(2px 2px 10px #ffffff);
}

img.img_limited_contents img {
  width: 100%;

}

.limited_contents_area h4 {
  margin: 0 auto 50px;
  padding-bottom:10px;
  width: 90%;
  font-size: 4rem;
  letter-spacing: 0.15em;
  font-weight: bold;
  border-bottom: 3px solid #8b201a;
  background: linear-gradient(to bottom, #8f1b14, #1b0801);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.3),
  0 0 8px rgba(255, 255, 255, 0.2);
}

.included_limited_contents_area {
  width: 90%;
  margin: 0 auto 0;
  text-align: left;
}

.normal_content_area {
  /*width: auto;*/
  /*border: none;*/
}

.included_limited_contents_area h5 {
  margin: 0 auto 10px;
  font-size: 2.3rem;
  font-weight: bold;
}

.treasure_title {
  margin: 0 auto 0;
  width:100%;
  font-size: 4rem;
  letter-spacing: 0.15em;
  font-weight: bold;
  background: linear-gradient(to bottom, #8f1b14, #1b0801);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.3),
  0 0 8px rgba(255, 255, 255, 0.2);
}

.console_image_wrap {
  padding-bottom: 20px;
}

.console_area {
  text-align: center;
  width: 23.5%;

}

.console_area img {
  width: 100%;

}

.console_area p {
  font-family: 'Noto Serif JP', serif;
  font-weight: bold;
  font-size: 1.4rem;
}

.console_area p span {
  font-size: 2rem;
}

.console_area .image_wrap {
  position: relative;
}


.console_area .image_wrap .badge {
  position: absolute;
  top: -30px;
  right: -30px;

}


p.included_limited_contents {
  margin: 0 0 40px 0;
  font-size: 1.9rem;
}

div.included_limited_contents span {
  justify-content: space-between;
  margin: 0 auto;
}

ul.limited_attention {
  width:90%;
  margin:30px auto 50px;
  font-size: 1.6rem;
  text-align: left;
}

ul.limited_attention li {
  text-indent: -1em;
  padding-left: 1em;
}

.normal_contents_area {
  position: relative;
  max-width: 968px;
  border: solid 4px #8b201a;
  margin: 0 auto 0;
  text-align: center;
}

@media only screen and (max-width: 750px) {

  #section_limited div.limited_introduction_block {
    width: 100vw;
    height: auto;
    padding-bottom: 10vw;
    background: url(../img/bg_limited_introduction.png) top center no-repeat;
    background-size: cover;
  }


  .limited_contents_area {
    width: 90%;
    margin: 0 auto 0;
    text-align: center;
  }

  p.limited_content_caption {
    width:98%;
    margin: 0 auto 30px;
    padding-top:0;
    font-size: 5vw;
  }

  .limited_contents_area h4 {
    font-size: 6vw;
    line-height: 10vw;
  }

  .included_limited_contents_area h5 {
    margin: 0 auto 10px;
    font-size: 4.2vw;
    font-family: 'Noto Serif JP', serif;
    font-weight: bold;
  }

  .included_limited_contents_area h5 span {
    font-size: 6vw;
    display: inline;
  }

  p.included_limited_contents {
    font-size: 3.3vw;
    margin-bottom:20px;
  }


  .limited_contents_area h3 {
    width: 90%;
    margin: 0;
    font-size:4.8vw;
    /*left: 5%;*/
    /*top: -1.1%;*/
  }

  img.img_limited_contents {
    margin: 0 auto 10vw;
    width: 90%;

  }

  .limited_contents_area h4 {
    width: 96%;
    margin: 0 auto 6vw;
  }

  .included_limited_contents_area {
    width: 90%;
    margin: 0 auto 0;
  }

  ul.limited_attention {
    width: 90%;
    margin: 0 auto;
    text-align: left;
    padding-bottom: 50px;
  }

  .console_area {
    width: 100%;
    margin: 0 auto 30px;

  }
  
  ul.limited_attention li {
    font-size: 3vw;
  }

}

.purchase_block_single{
  width:100%;
  margin:20px auto 50px;
  text-align: center;
}

.purchase_block_single h6{
  margin-bottom:10px;
  font-size:2.6rem;
  font-weight: bold;
}

.purchase_block_single a{
  width:100%;
  color: #fff;
  font-size:2.3rem;
  line-height:2.2em;
  text-decoration: none;
  display:flex;
  justify-content: center;
  align-items: center;
  background-color: #d10e00;
  border-radius: 10px;
}

.purchase_block_single a:hover{
  background: linear-gradient(to bottom, #cf9e4a,#966e1e );
  opacity: 1;
}

.purchase_block_single a.buyend, .purchase_block a.buyend{
  background-color: #555555;
}

div.price_area{
  margin-top:10px;
  margin-bottom:10px;
  font-size:2.2rem;
}

div.price_area span{
  color: #ff0000;
}

div.price_area span.text-xs{
  color:#000;
  font-size:1.6rem;
}

.purchase_block {
  display: flex;
  justify-content: space-between;
  flex-wrap:wrap;
}

img.img_purchase{
  width:100%;
}

.purchase_block h6{
  width:100%;
  margin-bottom:10px;
  font-size:2.6rem;
  font-weight: bold;
  text-align: center;
}

.purchase_block a{
  width:100%;
  color: #fff;
  font-size:2.3rem;
  line-height:2.2em;
  text-decoration: none;
  display:flex;
  justify-content: center;
  align-items: center;
  background-color: #d10e00;
  border-radius: 10px;
}

.purchase_block a:hover{
  background: linear-gradient(to bottom, #cf9e4a,#966e1e );
  opacity: 1;
}

.purchase_block_title {
  margin-top:60px;
  margin-bottom:40px;
  text-align: center;
  display: flex;
  flex-wrap:wrap;

}

.treasure_title .badge {
  position: absolute;
  margin-left: 30px;
  right: -30%;
}

.purchase_block_single.secondary{
  width:90%;
  margin:40px auto 50px;
}

.purchase_block.secondary{
  width:90%;
  margin:0 auto 0;
}

@media only screen and (max-width: 750px) {
  #section_limited div.limited_purchase_block {
    width: 100%;
    height: auto;
    padding-bottom: 10vw;
    background: url(../img/bg_limited_purchase_sp.jpg) top center no-repeat;
    background-size: contain;
  }

  .purchase_block,
  .purchase_block2 {
    width: auto;
    margin: 0 auto;
    font-family: 'Noto Serif JP', serif;
    display: block;
    text-align: center;
  }

  .purchase_block2 {
    height: 90vw;
    background: url(../img/bg_purchase_block_sp2.png) top center no-repeat;
    background-size: contain;
  }

  .purchase_contents {
    width: 80%;
    margin: 0 auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 30px;
  }

  .purchase_contents h6 {
    width: 100%;
    margin-top: 5vw;
    font-size: 6vw;
    line-height: 1.5em;
    font-weight: bold;
    letter-spacing: 0.15em;
    text-align: center;
  }

  p.item_detail {
    margin-bottom: 2.5vw;
    font-size: 4vw;
    line-height: 1.5em;
  }

  a.btn_buy {
    width: 80%;
    height: 15vw;
    padding-top: 20px;
    background-color: #b20054;
    border-radius: 22.5px;
    color: #fff;
    font-size: 4vw;
    line-height: 1.6em;
    font-weight: bold;
    letter-spacing: 0.15em;
    text-align: center;
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
    box-sizing: border-box;
    cursor: pointer;
  }

  .purchase_block2 .purchase_contents h6 {
    margin-top: 11vw;
  }

  .purchase_block2 a.btn_buy {
    height: 20vw;
  }

  a.for_ps5 {
    padding: 0;
    line-height: 15vw;
    ;
    background-color: #b21d00;
  }

  a.for_ps4 {
    padding: 0;
    line-height: 15vw;
    ;
    background-color: #b65600;
  }

  .treasure_title {
    padding-top: 0;
    font-size: 6vw;
    line-height: 10vw;
  }

  .purchase_block_title h5 {
    font-size: 5vw;
  }

  .purchase_block_title .badge {
    top: -25%;
    right: -5%;
  }

  .purchase_block_title {
    margin-top:60px;
    margin-bottom:20px;
  }

  .purchase_block_single h6{
    margin-bottom:10px;
    font-size:5vw;
    font-weight: bold;
  }

  .purchase_block h6{
    font-size:5vw;
  }
}

/*--------------------------------------------------
	通常版
--------------------------------------------------*/
.normal_contents_area {
  position: relative;
  width: 968px;
  margin: 0 auto 0;
  padding-top: 100px;
  padding-bottom: 90px;
  text-align: center;
}

.normal_content_title {
  margin: 0 0 50px 0;
  font-size: 3rem;
  font-family: 'Noto Serif JP', serif;
}


@media only screen and (max-width: 750px) {
  .normal_contents_area {
    width: 96%;
    margin: 0 auto 0;
    padding-top: 15vw;
    padding-bottom: 90px;
  }

}

/*--------------------------------------------------
	通常版 購入ブロック
--------------------------------------------------*/

.content_body {
  padding-top: 0;
  padding-bottom: 50px;

}

@media only screen and (max-width: 750px) {
  .content_body {
    padding-top: 80px;
    padding-bottom: 0px;
    width: 100%;
    margin: 0 auto;

  }

  .top_adjust {
    padding-top: 0;
  }


}

/*--------------------------------------------------
	MOVIEブロック
--------------------------------------------------*/
#section_movie {
  margin:0;
}
section#section_movie .content_block{
  background: url(../img/bg_section_limited.jpg) center center no-repeat;
  background-size: cover;
}

.movie_contents_area {
  max-width: 1200px;
  margin: 0 auto 80px;
}

ul.movie_list {
  width: 100%;
  margin-top: 60px;
  font-family: 'Noto Serif JP', serif;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

ul.movie_list li {
  width: 100%;
  position: relative;
}

.title_movie {
  width: 100%;
  font-size: 2.2rem;
  line-height: 2.6em;
  text-align: center;
  border-bottom: 1px solid #fff;
}

.movie_container {
  width: 100%;
  margin-top: 20px;
}

.movie_container a img {
  width: 100%;
  border: 2px solid #333333;
}

.movie-wrapper {
  position: relative;
  width:100%;
  margin:0 auto 0;
  padding-top: 56.25%;
}

.movie-wrapper > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

img.ul_movie-wrapper{
  width:100%;
  margin:33px auto 0;
  display:block;
}

@media only screen and (max-width: 750px) {
  #section_movie {
    margin-top: 10vw;
  }

  .movie_contents_area {
    width: 96%;
    margin: 0 auto 15vw;
  }

  ul.movie_list li {
    width: 90%;
    margin: 0 auto;
  }
}



/*--------------------------------------------------
	Contents Area
--------------------------------------------------*/
main {
  color: #000;

}

section {
  width: 100%;

}

/*--------------------------------------------------
	head
--------------------------------------------------*/
.content_block .content_head {
  width: 100%;

}

.content_block .content_head h2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content_block .content_head h2 img {
  width: 100%;
  pointer-events: none;
}


@media only screen and (max-width: 750px) {
  .content_block .content_head {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .content_block .content_head h2 {
    width: 100%;
    height: auto;
    margin: 0;
  }


  #section_benefits .content_block .content_head h2 img {
    width: 100%;
  }


}

/*--------------------------------------------------
	section_products
--------------------------------------------------*/

.footer-bottom .footer-copy span {
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
}

.footer-bottom .footer-copy img {
  pointer-events: none;
  filter: drop-shadow(0 0 1px #000);
}

.logo-ps img {
  position: relative;
  top: 2px;
  height: 14px;
}

.logo-ps4 img {
  height: 10px;
}


/*--------------------------------------------------
	footer_area
--------------------------------------------------*/
.footer_area {
  /*background-color: #fff;*/
  background: url(../img/bg_section_limited.jpg) center center no-repeat;
  background-size: cover;
}

.footer_area .footer_head {
  width: 93.75%;
  max-width:1200px;
  margin: 0 auto 100px;
}

.footer_area .footer_head .bnr_item {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.footer_area .footer_head .bnr_item img {
  width: 100%;
}

.footer_area .footer_head .bnr_block {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

.footer_area .footer_head .bnr_block li{
  width: 47%;
}

@media only screen and (max-width: 750px) {
  .footer_area .footer_head {
    width: 100%;
    padding-bottom: 0;
    margin: 0 auto 40px;
  }

  .footer_area .footer_head .bnr_block {
    width: 100%;
    padding: 0;
    flex-wrap:wrap;
    row-gap: 16px;
  }

  .footer_area .footer_head .bnr_block li {
    width: 100%;
  }

  .footer_area .footer_head .bnr_block a {
    text-align: left;
    display: block;

  }

  .footer_area .footer_head .bnr_block a span {
    color: #fff;
  }

  .footer_area .footer_head .bnr_block a span:visited {
    color: #fff;
  }

  .footer_area .footer_head .bnr_item {
    width: 90%;
  }

  .footer_area .footer_head .bnr_block img {
    width: 100%;
    display: block;
    margin: 0;
  }


}


/* footer */
.main-footer {
  position: relative;
  z-index: 2;
  /*min-width: 1280px;*/
  background: url("../img/footer_bg.jpg") 50% 0;
}


.footer-bottom {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  /*width: 1128px;*/
  margin: 0 auto;
  height: 105px;
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 0 0 2px #000;
}

.footer-bottom .footer-logo {
  width: 108px;
  margin-right: 60px;
}

.footer-bottom .footer-logo img {
  width: 100%;
  display: block;
}

.footer-bottom-links {
  display: flex;
  margin-bottom: 12px;
}

.footer-bottom-links li {
  margin-right: 18px;
  padding-right: 18px;
  line-height: 1;
  border-right: 1px solid #fff;
}

.footer-bottom-links li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.footer-bottom-links a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  text-decoration: underline;
}

.footer-bottom-links a[target="_blank"] {
  padding-left: 16px;
  background: url("../img/icon_blank_w.svg") no-repeat 0 50%/11px auto;
}

@media screen and (max-width: 1800px) {

  .footer-bottom {
    margin: 0 0 0 7.5%;
  }
}


@media only screen and (max-width: 750px) {

  /* footer */
  .main-footer {
    z-index: auto;
    min-width: 0;
    background-size: auto 300px;
    padding-top: 44px;
  }

  .main-footer::after {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    width: auto;
    height: auto;
    margin: 0;
    text-shadow: none;
  }

  .footer-bottom .footer-logo {
    order: 2;
    width: 100%;
    margin: 0;
    padding: 40px 0 70px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.05);
  }

  .footer-bottom .footer-logo img {
    width: 40vw;
    margin: 0 auto;
  }

  .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0 0 0 25px;
  }

  .footer-bottom-links li {
    width: calc(50% - 25px);
    margin: 0 25px 30px 0 !important;
    padding: 0;
    border: none;
    font-size: 1.2rem;
  }

  .footer-bottom .footer-copy {
    position: relative;
    top: 100px;
    padding: 0 25px;
    font-size: 10.5px;
    text-align: center;
  }

  /* footer */
  .footer-bottom .footer-logo {
    margin-top: -80px;
    padding-bottom: 150px;
  }

  .footer-bottom .footer-copy {
    top: 50vw;
  }

  .footer-bottom .footer-copy img {
    filter: none;
  }

}