@charset "UTF-8";
/* ***************************************************
 PC / SP共通
*************************************************** */
/* ////////////////// フォント ////////////////// */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400..700&display=swap");
/* ////////////////// タグ初期値 ////////////////// */
html,
body {
  height: 100%;
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

*, *::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  color: #000;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  line-height: 1.25em;
  font-family: Yu Gothic, "游ゴシック", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
}

a {
  color: #000;
  text-decoration: none;
  font-family: Yu Gothic, "游ゴシック", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
}

p {
  margin-top: 0;
  margin-bottom: 1.5em;
  font-family: Yu Gothic, "游ゴシック", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
}

ul,
dl {
  padding: 0;
}

li, dt, dd {
  margin: 0px;
  padding: 0px;
  font-family: Yu Gothic, "游ゴシック", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
}

table,
th,
td {
  border-collapse: collapse;
  border: 1px;
  font-family: Yu Gothic, "游ゴシック", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -moz-box-sizing: content-box;
  height: 0;
}

/* テーブル */
table {
  width: 100%;
  margin: 0 auto 1.5em;
  min-height: 0.1%;
  overflow: auto;
}

td,
th {
  padding: 0.5em;
  border: 1px solid #CCC;
}

th {
  white-space: nowrap;
  background-color: #EEE;
  font-weight: normal;
}

/* ////////////////// フォーム ////////////////// */
form {
  margin: 0px auto;
}

input[type=text],
input[type=email],
input[type=tel],
select,
option,
textarea {
  font-family: Yu Gothic, "游ゴシック", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
  font-size: 15px;
  border: 1px solid #e2e2e2;
  background-color: #D9D9D9;
  border: none;
  border-radius: 6px;
  width: 100%;
  padding: 8px 15px;
}

/* ボタン */
button,
input[type=button],
input[type=submit] {
  font-family: Yu Gothic, "游ゴシック", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
  font-size: 16px;
  letter-spacing: normal;
  text-transform: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* テキストエリア */
textarea {
  resize: none;
  min-height: 150px;
}

/* チェックボックス */
input[type=checkbox] {
  display: none;
  border: none;
}

input[type=checkbox] {
  cursor: pointer;
  display: inline-block;
  margin: 0 15px 0 0;
  padding: 0 0 0 25px;
  position: relative;
}

input[type=checkbox]::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 2px solid #e2e2e2;
  border-radius: 0;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
}

input[type=checkbox]::after {
  border-bottom: 3px solid #000;
  border-left: 3px solid #000;
  content: "";
  display: block;
  height: 7px;
  left: 11px;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 60%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 14px;
}

input[type=checkbox]:checked::after {
  opacity: 1;
}

/* ***************************************************
 SP
*************************************************** */
@media screen and (max-width:999px) {
  .pc {
    display: none !important;
  }
  html.scroll-prevent {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-width: 320px;
    min-height: 100vh;
    line-height: 1.75em;
    font-size: 1rem;
  }
  header {
    position: relative;
  }
  header h1 {
    width: 100%;
    padding: 22px 0;
    background: url("../images/head_bg.jpg") no-repeat center center;
    background-size: cover;
  }
  header h1 img {
    width: 95%;
    max-width: 684px;
    margin: 0 auto;
  }
  header .title {
    width: 100%;
    padding: 10px 0;
    background: url("../images/title_bg_sp.jpg") no-repeat center center;
    background-size: cover;
  }
  header .title img {
    width: 95%;
    max-width: 1257px;
    margin: 0 auto;
  }
  header .mainimage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  header .mainimage .text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    padding: 30px 4vw;
    background-color: #000;
  }
  header .mainimage .text .logo {
    width: 70%;
    max-width: 330px;
    margin: 0px auto 10px auto;
  }
  header .mainimage .text .banner {
    width: 100%;
    max-width: 400px;
    margin: 0px auto 20px auto;
  }
  header .mainimage .text .note {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-size: 12px;
    color: #fff;
    line-height: 1.6;
  }
  header .mainimage .image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  header .mainimage .image img {
    width: 100%;
    height: auto;
  }
  /* ////////////////// フッター ////////////////// */
  footer {
    margin: 0;
    padding: 30px 0px;
    text-align: center;
    background-color: #000;
  }
  footer p {
    margin: 0;
    text-align: center;
  }
  footer p small {
    font-weight: bold;
    font-size: 12px;
    color: #fff;
    line-height: 1.4;
  }
  footer .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
  footer .image img {
    width: 124px;
    height: auto;
  }
  /* ////////////////// 共通 ////////////////// */
  .pc {
    display: none;
  }
  /* タイトル */
  .title-blue {
    color: #082CA9;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
  }
  article {
    padding: 60px 4vw;
  }
  section,
  aside,
  form {
    max-width: 1120px;
    margin: 0 auto;
  }
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  /* ボタン */
  .button-white {
    margin: 20px auto;
  }
  .button-white a {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 0px auto;
    padding: 10px 0;
    border-radius: 30px;
    border: 1px solid #fff;
    background: #000;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
    text-align: center;
    font-weight: bold;
  }
  .button-white a:hover {
    background-color: #fff;
    color: #000;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .button-submit {
    margin: 0 auto;
  }
  .button-submit span {
    display: block;
    width: 90%;
    max-width: 540px;
    margin: 40px auto 0 auto;
    padding: 3px 0;
    border-radius: 50px;
    border: 2px solid #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF100), to(#FF9900));
    background: linear-gradient(#FFF100, #FF9900);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .button-submit span img {
    width: 90%;
    max-width: 200px;
    margin: 0 auto;
  }
  .button-submit a {
    display: block;
    width: 90%;
    max-width: 540px;
    margin: 40px auto 0 auto;
    padding: 11px 0;
    border-radius: 50px;
    border: 2px solid #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF100), to(#FF9900));
    background: linear-gradient(#FFF100, #FF9900);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .button-submit a img {
    width: 90%;
    max-width: 200px;
    margin: 0 auto;
  }
  .button-submit a:hover {
    -webkit-box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.8);
            box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.8);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .button-goods {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    margin: 0 auto;
  }
  .button-goods a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
    padding: 5px 0;
    border-radius: 25px;
    border: 1px solid #082CA9;
    background: #082CA9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
  }
  .button-goods a::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    margin-left: 3px;
    background: url("../images/icon_externallink_white.svg") no-repeat center center;
    background-size: contain;
  }
  .button-goods a:hover {
    background-color: #fff;
    color: #082CA9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .button-goods a:hover::after {
    background: url("../images/icon_externallink_blue.svg") no-repeat center center;
  }
  .button-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    max-width: 200px;
    margin: 80px auto 0 auto;
    padding: 10px 0;
    border-radius: 25px;
    border: 1px solid #082CA9;
    background: #082CA9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
  }
  .button-more.none {
    display: none;
  }
  .button-more::after {
    content: "";
    display: block;
    height: 12px;
    width: 14px;
    margin-left: 3px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #fff;
  }
  .button-more:hover {
    background-color: #fff;
    color: #082CA9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .button-more:hover::after {
    background: #082CA9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  /* ////////////////// ページ ////////////////// */
  /* リードコンテンツ */
  #read {
    background: url("../images/read_bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 30px 0;
  }
  #read h2 img {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
  }
  #read .image {
    margin: 30px auto;
    overflow: hidden;
  }
  #read .date img {
    width: 95%;
    max-width: 970px;
    margin: 0 auto;
  }
  .page-navi {
    padding: 15px 0;
    background-color: #000;
  }
  .page-navi ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1120px;
    margin: 0 auto;
  }
  .page-navi ul li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 15px;
  }
  .page-navi ul li:nth-child(even) {
    width: 55%;
  }
  .page-navi ul li:nth-child(odd) {
    position: relative;
    width: 45%;
  }
  .page-navi ul li:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: block;
    width: 1px;
    height: 24px;
    background-color: #fff;
  }
  .page-navi ul li:last-child {
    padding: 0 5px;
  }
  /* 主な取扱店舗 */
  #store {
    background: url("../images/read_bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }
  #store h2 {
    margin-bottom: 25px;
  }
  #store h2 img {
    width: 95%;
    max-width: 680px;
    margin: 0 auto;
  }
  #store .store-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #store .store-list .store-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 47%;
    max-width: 200px;
    margin-bottom: 25px;
  }
  #store .store-list .store-item > p {
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: bold;
  }
  #store .store-list .store-item > p .day {
    font-family: "Oswald", Yu Gothic, "游ゴシック", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
    font-size: 22px;
  }
  #store .store-list .store-item p {
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: #fff;
  }
  #store .store-list .store-item a {
    display: block;
    width: 100%;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #store .store-list .store-item a:hover {
    -webkit-box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
            box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #store .store-list .store-item a .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 110px;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    background-color: #EBE7E2;
    overflow: hidden;
  }
  #store .store-list .store-item a .image.bg-red {
    background-color: #d80c18;
  }
  #store .store-list .store-item a .image.bg-black {
    background-color: #000000;
  }
  #store .store-list .store-item a .image.radius img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 8px 8px 0 0;
  }
  #store .store-list .store-item a p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
    padding: 0;
    border-radius: 0 0 8px 8px;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    font-weight: normal;
  }
  #store .store-list .store-item a p::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    margin-left: 5px;
    background: url("../images/icon_externallink_white.svg") no-repeat center center;
    background-size: contain;
  }
  #store .store-list .store-item .soon {
    display: block;
    width: 100%;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #store .store-list .store-item .soon .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 110px;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    background-color: #EBE7E2;
    overflow: hidden;
  }
  #store .store-list .store-item .soon .image.radius img {
    border-radius: 8px 8px 0 0;
  }
  #store .store-list .store-item .soon p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
    padding: 0;
    border-radius: 0 0 8px 8px;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    font-weight: normal;
  }
  #store .store-list .empty_item {
    width: 47%;
    max-width: 200px;
    height: 0;
  }
  #store .last-text {
    margin: 20px auto 0 auto;
  }
  #store .last-text img {
    width: 90%;
    max-width: 736px;
    margin: 0 auto;
  }
  /* おすすめ商品 */
  #goods {
    background: url("../images/goods_bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }
  #goods h2 {
    margin-bottom: 40px;
  }
  #goods h2 img {
    width: 90%;
    max-width: 574px;
    margin: 0 auto;
  }
  #goods h4 {
    margin: 0 auto;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #fff;
  }
  #goods .chucky h4 {
    color: #000;
  }
  #goods .chucky .character-main .image img {
    border-radius: 10px 10px 0 0;
  }
  #goods .chucky .goods-recommended {
    background-color: #F0E520;
  }
  #goods .monsters .character-main .image img {
    border-radius: 10px 10px 0 0;
  }
  #goods .monsters .character-main .text {
    top: 40px;
    width: 90%;
    max-width: none;
  }
  #goods .monsters .character-main .text h3 {
    max-width: 230px;
    margin: 0 auto 20px auto;
  }
  #goods .monsters .character-main .text p {
    margin: 0 auto;
    color: #fff;
  }
  #goods .monsters .goods-recommended {
    background: url("../images/goods_content_bg_02_sp.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #goods .monsters .goods-recommended .goods-list .slider {
    overflow: hidden;
  }
  #goods .monsters .goods-recommended .goods-list .goods-item .release,
  #goods .monsters .goods-recommended .goods-list .goods-item .title {
    color: #fff;
  }
  #goods .other {
    background: url("../images/goods_content_bg_03.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
  }
  #goods .other h4 {
    color: #000;
  }
  #goods .other .character-main {
    padding: 20px 10px 0 10px;
  }
  #goods .other .character-main img {
    width: 100%;
    max-width: 962px;
    margin: 0 auto;
  }
  #goods .goods-character {
    margin-bottom: 100px;
  }
  #goods .goods-character:last-child {
    margin-bottom: 0;
  }
  #goods .character-main {
    position: relative;
  }
  #goods .character-main .image {
    position: relative;
  }
  #goods .character-main .text {
    position: absolute;
    top: 60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 80%;
    max-width: 240px;
  }
  #goods .character-main .text h3 {
    margin-bottom: 10px;
  }
  #goods .character-main .text p {
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 2;
  }
  #goods .goods-recommended {
    padding: 40px 0;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
  }
  #goods .goods-recommended .goods-list .display-content,
  #goods .goods-recommended .goods-list .more-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #goods .goods-recommended .goods-list .more-content {
    display: none;
  }
  #goods .goods-recommended .goods-list .more-content.display {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #goods .goods-recommended .goods-list .goods-item {
    position: relative;
    width: 180px;
    max-width: 24.5%;
    margin: 40px 0 0 0;
  }
  #goods .goods-recommended .goods-list .goods-item .image,
  #goods .goods-recommended .goods-list .goods-item .text {
    margin: 0 7px;
  }
  #goods .goods-recommended .goods-list .goods-item .image {
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
  }
  #goods .goods-recommended .goods-list .goods-item .text {
    padding: 0 0 40px 0;
  }
  #goods .goods-recommended .goods-list .goods-item .release {
    margin: 7px 0 0 0;
    color: #082CA9;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
  }
  #goods .goods-recommended .goods-list .goods-item .title {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
  }
  #goods .goods-recommended .goods-list .empty_item {
    width: 180px;
    max-width: 24.5%;
    height: 0;
  }
  /* キャンペーン応募方法 */
  #apply {
    background: url("../images/goods_bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }
  #apply h2 {
    margin-bottom: 60px;
  }
  #apply h2 img {
    width: 95%;
    max-width: 965px;
    margin: 0 auto;
  }
  #apply .apply-step .apply-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 60px;
  }
  #apply .apply-step .apply-item::after {
    content: "";
    position: absolute;
    display: block;
    bottom: -29px;
    left: calc((100% + 40px) / 2);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 30px;
    width: 60px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #ffffff;
  }
  #apply .apply-step .apply-item:first-child .title-blue {
    margin-bottom: 20px;
  }
  #apply .apply-step .apply-item:nth-child(2) .title-blue {
    margin-bottom: 20px;
  }
  #apply .apply-step .apply-item:last-child::after {
    display: none;
  }
  #apply .apply-step .apply-item:last-child .content .title-blue {
    margin: 0 auto 20px auto;
  }
  #apply .apply-step .apply-item .step-num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    border-radius: 10px 0 0 10px;
    background-color: #082CA9;
  }
  #apply .apply-step .apply-item .step-num p {
    margin: 0 auto;
    font-weight: bold;
    color: #fff;
    text-align: center;
    font-family: "Oswald", Yu Gothic, "游ゴシック", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
    font-size: 13px;
    line-height: 1.4;
  }
  #apply .apply-step .apply-item .step-num p .num {
    font-size: 16px;
  }
  #apply .apply-step .apply-item .content {
    width: calc(100% - 40px);
    padding: 40px 20px;
    background-color: #fff;
  }
  #apply .apply-step .apply-item .content p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
  }
  #apply .apply-step .apply-item .content .text-center {
    text-align: center;
  }
  #apply .apply-step .apply-item .content .normal-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #apply .apply-step .apply-item .content .normal-box .image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 140px;
    border-radius: 8px;
    background-color: #03031C;
  }
  #apply .apply-step .apply-item .content .normal-box .image img {
    width: 155px;
    height: auto;
  }
  #apply .apply-step .apply-item .content .normal-box .text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    margin-bottom: 20px;
  }
  #apply .apply-step .apply-item .content .normal-box .text p {
    line-height: 1.8;
  }
  #apply .apply-step .apply-item .content .case-box {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }
  #apply .apply-step .apply-item .content .case-box .flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #apply .apply-step .apply-item .content .case-box .flex .flex-item {
    width: 100%;
    max-width: 340px;
    margin-bottom: 20px;
  }
  #apply .apply-step .apply-item .content .case-box .flex .flex-item .title {
    padding: 10px 0;
    background-color: #082CA9;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
  }
  #apply .apply-step .apply-item .content .case-box .flex .flex-item .explanation {
    padding: 30px 20px;
    background-color: #EDF1FF;
  }
  #apply .apply-step .apply-item .content .case-box .flex .flex-item .explanation .image {
    width: 186px;
    margin: 0 auto 15px auto;
  }
  #apply .apply-step .apply-item .content .case-box .flex .flex-item .explanation .image img {
    width: 100%;
    height: auto;
  }
  #apply .apply-step .apply-item .content .case-box .flex .flex-item .explanation p {
    font-size: 14px;
  }
  #apply .apply-step .apply-item .content .note {
    font-size: 12px;
    font-weight: bold;
    line-height: 1.6;
  }
  #apply .text-link {
    margin: 40px auto 0 auto;
    text-align: center;
  }
  #apply .text-link a {
    font-size: 20px;
    font-weight: bold;
    text-decoration: underline;
    color: #fff;
  }
  #apply .text-link a:hover {
    text-decoration: none;
  }
  /* SNSキャンペーン */
  #campaign,
  #coming {
    background: url("../images/campaign_bg_sp.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 2vw;
  }
  #campaign h2,
  #coming h2 {
    margin-bottom: 30px;
  }
  #campaign h2 img,
  #coming h2 img {
    width: 90%;
    max-width: 761px;
    margin: 0 auto;
  }
  #campaign section > img,
  #coming section > img {
    margin: 0 auto;
  }
  /* 応募規約 */
  #agreement {
    padding: 60px 2vw;
    background-color: #000;
  }
  #agreement h2 {
    margin: 0 auto 30px auto;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }
  #agreement .agreement-outbox {
    height: 290px;
    padding: 20px 10px;
    border-radius: 8px;
    background-color: #242424;
  }
  #agreement .agreement-box {
    height: 250px;
    padding: 10px 7px;
    color: #fff;
    overflow-y: scroll;
  }
  #agreement .agreement-box::-webkit-scrollbar {
    margin: 10px;
    background: #242424;
    width: 6px;
  }
  #agreement .agreement-box::-webkit-scrollbar-thumb {
    background-color: #646464;
    border-radius: 2px;
  }
  #agreement .agreement-box h3,
  #agreement .agreement-box h4,
  #agreement .agreement-box p,
  #agreement .agreement-box li,
  #agreement .agreement-box a {
    margin: 0;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.6;
    color: #fff;
  }
  #agreement .agreement-box h4 {
    margin-top: 1.5em;
  }
  #agreement .agreement-box a {
    text-decoration: underline;
  }
  #agreement .agreement-box a:hover {
    text-decoration: none;
  }
  #agreement .agreement-box ul {
    list-style: none;
    margin: 0;
  }
  #agreement .agreement-box li {
    padding-left: 1em;
    text-indent: -1em;
  }
  /* 下部バナー */
  #banner {
    padding: 60px 2vw;
  }
  #banner aside {
    max-width: 700px;
  }
  #banner .banner-item {
    margin: 0 auto 30px auto;
  }
  #banner .banner-item iframe {
    width: 100%;
    height: 53vw;
  }
  #banner .banner-item:last-child {
    margin: 0 auto;
  }
}
/* ***************************************************
 PC
*************************************************** */
@media all and (min-width:1000px) {
  .sp {
    display: none !important;
  }
  body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-width: 320px;
    min-height: 100vh;
    line-height: 1.75em;
    font-size: 16px;
  }
  header {
    position: relative;
  }
  header h1 {
    width: 100%;
    padding: 22px 0;
    background: url("../images/head_bg.jpg") no-repeat center center;
    background-size: cover;
  }
  header h1 img {
    width: 95%;
    max-width: 684px;
    margin: 0 auto;
  }
  header .title {
    width: 100%;
    padding: 15px 0;
    background: url("../images/title_bg_pc.jpg") no-repeat center center;
    background-size: cover;
  }
  header .title img {
    width: 95%;
    max-width: 1257px;
    margin: 0 auto;
  }
  header .mainimage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .mainimage .text {
    width: 30%;
    padding: 1.6vw 2vw;
    background-color: #000;
  }
  header .mainimage .text .logo {
    width: 65%;
    max-width: 330px;
    margin: 3vw auto 15px auto;
  }
  header .mainimage .text .banner {
    width: 85%;
    max-width: 400px;
    margin: 0px auto 15px auto;
  }
  header .mainimage .text .note {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-size: 12px;
    color: #fff;
    line-height: 1.6;
  }
  header .mainimage .image {
    width: 70%;
  }
  header .mainimage .image img {
    width: 100%;
    height: auto;
  }
  /* ////////////////// フッター ////////////////// */
  footer {
    margin: 0;
    padding: 28px 0px;
    text-align: center;
    background-color: #000;
  }
  footer p {
    margin: 0;
    text-align: center;
  }
  footer p small {
    font-weight: bold;
    font-size: 12px;
    color: #fff;
  }
  footer .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px;
  }
  footer .image img {
    width: 124px;
    height: auto;
  }
  /* ////////////////// 共通 ////////////////// */
  /* タイトル */
  .title-blue {
    color: #082CA9;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
  }
  article {
    padding: 60px 4vw;
  }
  section,
  aside,
  form {
    max-width: 1120px;
    margin: 0 auto;
  }
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  /* ボタン */
  .button-white {
    margin: 0 auto 4vw auto;
  }
  .button-white a {
    display: block;
    width: 85%;
    max-width: 340px;
    margin: 0 auto;
    padding: 1vw 0;
    border-radius: 50px;
    border: 1px solid #fff;
    background: #000;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
    text-align: center;
    font-weight: bold;
  }
  .button-white a:hover {
    background-color: #fff;
    color: #000;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .button-submit span {
    display: block;
    width: 90%;
    max-width: 540px;
    margin: 40px auto 0 auto;
    padding: 3px 0;
    border-radius: 50px;
    border: 2px solid #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF100), to(#FF9900));
    background: linear-gradient(#FFF100, #FF9900);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .button-submit span img {
    width: 90%;
    max-width: 340px;
    margin: 0 auto;
  }
  .button-submit a {
    display: block;
    width: 90%;
    max-width: 540px;
    margin: 40px auto 0 auto;
    padding: 15px 0;
    border-radius: 50px;
    border: 2px solid #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF100), to(#FF9900));
    background: linear-gradient(#FFF100, #FF9900);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .button-submit a img {
    width: 90%;
    max-width: 340px;
    margin: 0 auto;
  }
  .button-submit a:hover {
    -webkit-box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.8);
            box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.8);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .button-goods {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    margin: 0 auto;
  }
  .button-goods a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
    padding: 5px 0;
    border-radius: 25px;
    border: 1px solid #082CA9;
    background: #082CA9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
  }
  .button-goods a::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    margin-left: 3px;
    background: url("../images/icon_externallink_white.svg") no-repeat center center;
    background-size: contain;
  }
  .button-goods a:hover {
    background-color: #fff;
    color: #082CA9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .button-goods a:hover::after {
    background: url("../images/icon_externallink_blue.svg") no-repeat center center;
  }
  .button-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    max-width: 200px;
    margin: 80px auto 0 auto;
    padding: 10px 0;
    border-radius: 25px;
    border: 1px solid #082CA9;
    background: #082CA9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
  }
  .button-more.none {
    display: none;
  }
  .button-more::after {
    content: "";
    display: block;
    height: 12px;
    width: 14px;
    margin-left: 3px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #fff;
  }
  .button-more:hover {
    background-color: #fff;
    color: #082CA9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .button-more:hover::after {
    background: #082CA9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  /* ////////////////// ページ ////////////////// */
  /* リードコンテンツ */
  #read {
    background: url("../images/read_bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }
  #read h2 img {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
  }
  #read .image {
    margin: 30px auto;
  }
  #read .date img {
    width: 90%;
    max-width: 970px;
    margin: 0 auto;
  }
  .page-navi {
    padding: 40px 0;
    background-color: #000;
  }
  .page-navi ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1120px;
    margin: 0 auto;
  }
  .page-navi ul li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .page-navi ul li:nth-child(2) {
    margin: 0 0 0 20px;
  }
  .page-navi ul li:nth-child(3) {
    margin: 0 20px;
  }
  /* 主な取扱店舗 */
  #store {
    background: url("../images/read_bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }
  #store h2 img {
    width: 90%;
    max-width: 680px;
    margin: 0 auto;
  }
  #store section {
    max-width: 960px;
  }
  #store .store-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #store .store-list .store-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 223px;
    margin-bottom: 40px;
  }
  #store .store-list .store-item > p {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
  }
  #store .store-list .store-item > p .day {
    font-family: "Oswald", Yu Gothic, "游ゴシック", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
    font-size: 28px;
  }
  #store .store-list .store-item p {
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: #fff;
  }
  #store .store-list .store-item a {
    display: block;
    width: 100%;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #store .store-list .store-item a:hover {
    -webkit-box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
            box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #store .store-list .store-item a .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 130px;
    border-radius: 8px 8px 0 0;
    background-color: #EBE7E2;
    overflow: hidden;
  }
  #store .store-list .store-item a .image.bg-black {
    background-color: #000000;
  }
  #store .store-list .store-item a .image.radius img {
    border-radius: 8px 8px 0 0;
  }
  #store .store-list .store-item a p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
    padding: 0;
    border-radius: 0 0 8px 8px;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
  }
  #store .store-list .store-item a p::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    margin-left: 5px;
    background: url("../images/icon_externallink_white.svg") no-repeat center center;
    background-size: contain;
  }
  #store .store-list .store-item .soon {
    display: block;
    width: 100%;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #store .store-list .store-item .soon .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 130px;
    border-radius: 8px 8px 0 0;
    background-color: #EBE7E2;
    overflow: hidden;
  }
  #store .store-list .store-item .soon .image.radius img {
    border-radius: 8px 8px 0 0;
  }
  #store .store-list .store-item .soon p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
    padding: 0;
    border-radius: 0 0 8px 8px;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
  }
  #store .store-list .empty_item {
    width: 223px;
    height: 0;
  }
  #store .last-text img {
    width: 90%;
    max-width: 736px;
    margin: 0 auto;
  }
  /* おすすめ商品 */
  #goods {
    background: url("../images/goods_bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }
  #goods h2 img {
    width: 90%;
    max-width: 574px;
    margin: 0 auto;
  }
  #goods h4 {
    margin: 0 auto;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    color: #fff;
  }
  #goods .chucky h4 {
    color: #000;
  }
  #goods .chucky .character-main .text {
    top: 57%;
  }
  #goods .chucky .goods-recommended {
    background-color: #F0E520;
  }
  #goods .monsters .character-main .text {
    top: 55%;
    left: auto;
    right: 6%;
  }
  #goods .monsters .character-main .text h3 {
    margin-bottom: 20px;
  }
  #goods .monsters .character-main .text h3 img {
    margin: 0 auto;
  }
  #goods .monsters .character-main .text p {
    color: #fff;
  }
  #goods .monsters .goods-recommended {
    background: url("../images/goods_content_bg_02_pc.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #goods .monsters .goods-recommended .goods-list .goods-item .release,
  #goods .monsters .goods-recommended .goods-list .goods-item .title {
    color: #fff;
  }
  #goods .other {
    background: url("../images/goods_content_bg_03.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
  }
  #goods .other h4 {
    color: #000;
  }
  #goods .other .character-main {
    padding: 70px 80px 0 80px;
  }
  #goods .other .character-main img {
    width: 100%;
    max-width: 962px;
    margin: 0 auto;
  }
  #goods .goods-character {
    margin-bottom: 150px;
  }
  #goods .goods-character:last-child {
    margin-bottom: 0;
  }
  #goods .character-main {
    position: relative;
  }
  #goods .character-main .image {
    position: relative;
  }
  #goods .character-main .text {
    position: absolute;
    top: 50%;
    left: 15%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #goods .character-main .text h3 {
    margin-bottom: 10px;
  }
  #goods .character-main .text p {
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 2;
  }
  #goods .goods-recommended {
    padding: 80px;
    border-radius: 0 0 10px 10px;
  }
  #goods .goods-recommended .goods-list .display-content,
  #goods .goods-recommended .goods-list .more-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #goods .goods-recommended .goods-list .more-content {
    display: none;
  }
  #goods .goods-recommended .goods-list .more-content.display {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #goods .goods-recommended .goods-list .goods-item {
    position: relative;
    width: 180px;
    max-width: 24.5%;
    margin: 40px 0 0 0;
  }
  #goods .goods-recommended .goods-list .goods-item .image {
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
  }
  #goods .goods-recommended .goods-list .goods-item .text {
    padding: 0 0 40px 0;
  }
  #goods .goods-recommended .goods-list .goods-item .release {
    margin: 7px 0 0 0;
    color: #082CA9;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
  }
  #goods .goods-recommended .goods-list .goods-item .title {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
  }
  #goods .goods-recommended .goods-list .empty_item {
    width: 180px;
    max-width: 24.5%;
    height: 0;
  }
  /* キャンペーン応募方法 */
  #apply {
    background: url("../images/goods_bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }
  #apply h2 {
    margin-bottom: 60px;
  }
  #apply h2 img {
    width: 90%;
    max-width: 965px;
    margin: 0 auto;
  }
  #apply .apply-step .apply-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 60px;
  }
  #apply .apply-step .apply-item::after {
    content: "";
    position: absolute;
    display: block;
    bottom: -29px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 30px;
    width: 60px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #ffffff;
  }
  #apply .apply-step .apply-item:first-child .title-blue {
    margin-bottom: 20px;
  }
  #apply .apply-step .apply-item:nth-child(2) .title-blue {
    margin-bottom: 40px;
  }
  #apply .apply-step .apply-item:last-child::after {
    display: none;
  }
  #apply .apply-step .apply-item:last-child .content .title-blue {
    margin: 0 auto 20px auto;
  }
  #apply .apply-step .apply-item .step-num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 80px;
    border-radius: 10px 0 0 10px;
    background-color: #082CA9;
  }
  #apply .apply-step .apply-item .step-num p {
    margin: 0 auto;
    font-weight: bold;
    color: #fff;
    text-align: center;
    font-family: "Oswald", Yu Gothic, "游ゴシック", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
  }
  #apply .apply-step .apply-item .content {
    width: calc(100% - 80px);
    padding: 40px 80px;
    background-color: #fff;
  }
  #apply .apply-step .apply-item .content p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
  }
  #apply .apply-step .apply-item .content .text-center {
    text-align: center;
  }
  #apply .apply-step .apply-item .content .normal-box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #apply .apply-step .apply-item .content .normal-box .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 240px;
    height: 140px;
    border-radius: 8px;
    background-color: #03031C;
  }
  #apply .apply-step .apply-item .content .normal-box .image img {
    width: 155px;
    height: auto;
  }
  #apply .apply-step .apply-item .content .normal-box .text {
    width: calc(100% - 280px);
  }
  #apply .apply-step .apply-item .content .normal-box .text p {
    line-height: 1.4;
  }
  #apply .apply-step .apply-item .content .case-box {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }
  #apply .apply-step .apply-item .content .case-box .flex .flex-item {
    width: 340px;
    margin-bottom: 20px;
  }
  #apply .apply-step .apply-item .content .case-box .flex .flex-item .title {
    padding: 10px 0;
    background-color: #082CA9;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
  }
  #apply .apply-step .apply-item .content .case-box .flex .flex-item .explanation {
    padding: 35px 30px;
    background-color: #EDF1FF;
  }
  #apply .apply-step .apply-item .content .case-box .flex .flex-item .explanation .image {
    width: 197px;
    margin: 0 auto 20px auto;
  }
  #apply .apply-step .apply-item .content .case-box .flex .flex-item .explanation .image img {
    width: 100%;
    height: auto;
  }
  #apply .apply-step .apply-item .content .case-box .flex .flex-item .explanation p {
    font-size: 16px;
  }
  #apply .apply-step .apply-item .content .note {
    font-size: 12px;
    font-weight: bold;
  }
  #apply .text-link {
    margin: 40px auto 0 auto;
    text-align: center;
  }
  #apply .text-link a {
    font-size: 24px;
    font-weight: bold;
    text-decoration: underline;
    color: #fff;
  }
  #apply .text-link a:hover {
    text-decoration: none;
  }
  /* SNSキャンペーン */
  #campaign,
  #coming {
    background: url("../images/campaign_bg_pc.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #campaign h2 img,
  #coming h2 img {
    width: 90%;
    max-width: 761px;
    margin: 0 auto;
  }
  /* 応募規約 */
  #agreement {
    background-color: #000;
  }
  #agreement h2 {
    margin: 0 auto 40px auto;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }
  #agreement .agreement-outbox {
    height: 230px;
    padding: 20px;
    border-radius: 8px;
    background-color: #242424;
  }
  #agreement .agreement-box {
    height: 190px;
    padding: 20px 40px;
    color: #fff;
    overflow-y: scroll;
  }
  #agreement .agreement-box::-webkit-scrollbar {
    background: #242424;
    width: 8px;
  }
  #agreement .agreement-box::-webkit-scrollbar-thumb {
    background-color: #646464;
    border-radius: 4px;
  }
  #agreement .agreement-box h3,
  #agreement .agreement-box h4,
  #agreement .agreement-box p,
  #agreement .agreement-box li,
  #agreement .agreement-box a {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
    color: #fff;
  }
  #agreement .agreement-box h4 {
    margin-top: 1.5em;
  }
  #agreement .agreement-box a {
    text-decoration: underline;
  }
  #agreement .agreement-box a:hover {
    text-decoration: none;
  }
  #agreement .agreement-box ul {
    list-style: none;
    margin: 0;
  }
  #agreement .agreement-box li {
    padding-left: 1em;
    text-indent: -1em;
  }
  /* 下部バナー */
  #banner aside {
    max-width: 700px;
  }
  #banner .banner-item {
    margin: 0 auto 30px auto;
  }
  #banner .banner-item iframe {
    width: 100%;
  }
  #banner .banner-item:last-child {
    margin: 0 auto;
  }
}
@media all and (min-width: 1000px) and (max-width: 1190px) {
  #topic section {
    padding: 100px 60px 80px 60px;
  }
  #topic .flex .text {
    width: 57%;
  }
  #topic .flex:last-child .image {
    margin: 0 0 0 -17%;
  }
  #topic .flex:last-child .text {
    width: 63%;
    margin-right: -2%;
  }
}