@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  display: block;
  background: none;
  width: 32px;
  height: 62px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  color: transparent;
  padding: 0;
  border: none;
  outline: none;
  background-size: cover;
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 35px;
  margin-top: -31px;
}
@media screen and (max-width: 768px) {
  .slick-prev,
  .slick-next {
    width: 12px;
    height: 24px;
  }
}
.slick-prev:before,
.slick-next:before {
  content: "";
  width: 32px;
  height: 62px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../images/icon-arrow-1.png) no-repeat 0 0/cover;
}
@media screen and (max-width: 768px) {
  .slick-prev:before,
  .slick-next:before {
    width: 12px;
    height: 24px;
  }
}
.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  display: none;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0;
}

.slick-prev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  right: auto;
  left: 35px;
}

/* Dots */
.slick-dots {
  position: absolute;
  z-index: 1;
  bottom: -50px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  vertical-align: bottom;
  font-size: 0;
}
@media screen and (max-width: 768px) {
  .slick-dots {
    bottom: -35px;
  }
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 24px;
  width: 24px;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .slick-dots li {
    width: 16px;
    height: 16px;
    margin: 0 8px;
  }
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 24px;
  width: 24px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .slick-dots li button {
    width: 16px;
    height: 16px;
  }
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid #4D1A00;
  line-height: 24px;
  text-align: center;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
  .slick-dots li button:before {
    width: 16px;
    height: 16px;
  }
}
.slick-dots li.slick-active button:before {
  background: #4D1A00;
}

/* リセット
---------------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers
*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, div {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1;
  background-color: #000;
  color: #160a0a;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

/*pokemon-card-common*/
@font-face {
  font-family: "pokemoncard-font";
  src: url("../fonts/pokemoncard-font.eot");
  src: url("../fonts/pokemoncard-font.eot?#iefix") format("eot"), url("../fonts/pokemoncard-font.woff") format("woff"), url("../fonts/pokemoncard-font.ttf") format("truetype"), url("../fonts/pokemoncard-font.svg#pokemoncard-font") format("svg");
  font-weight: normal;
  font-style: normal;
}
main {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

body {
  color: #000;
  background: #fff;
}
body a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (min-width: 769px) {
  img.ani-zoom {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  img.ani-zoom:hover {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    position: relative;
    z-index: 100;
  }
  img.ani-zoom.sp:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#PageTop {
  position: relative;
  z-index: 700;
}

#PageTop2 {
  position: fixed;
  bottom: 60px;
  right: 60px;
  opacity: 0;
  z-index: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#PageTop2 > a {
  display: block;
}
#PageTop2 > a:hover {
  opacity: 0.6;
}
#PageTop2.is-show {
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  #PageTop2 {
    bottom: 25px;
    right: 25px;
  }
}
@media screen and (max-width: 768px) {
  #PageTop2 {
    width: 58px;
    height: 58px;
  }
}

#PageTop {
  margin-top: -48px;
  text-align: center;
}
#PageTop > a {
  display: inline-block;
}
#PageTop > a:hover {
  opacity: 0.8;
}

#PageTopSP {
  display: none;
}
@media screen and (max-width: 768px) {
  #PageTopSP {
    display: block;
    background-color: #fff;
    width: 100%;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 24px;
    font-family: 'Fjalla One',sans-serif;
  }
}

#PageTopSP a {
  color: #363636;
  text-decoration: none;
}

#PageTopSP a:before {
  font-family: pokemoncard-font;
  content: "\F700";
  margin-right: 11.2px;
  margin-right: .7rem;
  font-size: 90%;
}

.footer {
  padding: 68px 0;
}
.footer .copyright {
  margin-top: 25px;
}
.footer .copyright > small {
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 0 100px;
  }
  .footer .copyright {
    margin-top: 14px;
  }
  .footer .copyright > small {
    font-size: 8px;
  }
  .footer .trainer-web {
    max-width: 70%;
  }
}

.modal-card {
  display: none;
}
@media screen and (max-width: 768px) {
  .modal-card {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    z-index: -1;
    padding: 10vh 20px 0;
    display: block;
    text-align: center;
    opacity: 0;
  }
  .modal-card > img {
    width: 100%;
    max-width: 335px;
    border-radius: 16px;
  }
  .modal-card.is-show {
    opacity: 1;
    z-index: 9999;
  }
}

@media screen and (max-width: 768px) {
  .share-list li {
    padding: 13% 0;
    width: 53px;
  }
  .share-list li > a {
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 10px;
    width: 53px;
    height: 53px;
  }
}
br.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  br.sp-only {
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  br.pc-only {
    display: none;
  }
}

/*footer
  ----------------------------------------*/
.share {
  width: 100%;
  margin: 0 auto;
  background-color: #000;
}
.share-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 64.84375%;
  margin: 0 auto;
  padding: 60px 0 30px;
}
@media screen and (max-width: 768px) {
  .share-list {
    width: 60%;
    overflow: hidden;
    padding: 0;
  }
}
.share-list li {
  width: 30.1204819277%;
  border: solid 1px #fff;
  border-radius: 50px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .share-list li {
    width: 20%;
    width: 45px;
    border: none;
    border-radius: 0;
    padding: 10% 0;
  }
}
.share-list li:hover {
  opacity: 0.6;
}
.share-list li:nth-child(2) a img {
  margin-top: 1%;
}
@media screen and (max-width: 768px) {
  .share-list li:nth-child(2) a img {
    margin-top: 8%;
  }
}
.share-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .share-list li a {
    padding: 5% 0;
  }
}
.share-list li a img {
  width: 10%;
}
@media screen and (max-width: 768px) {
  .share-list li a img {
    width: 100%;
  }
}
.share-list li a span {
  font-size: 16px;
  padding-left: 3%;
  display: inline-block;
}
@media all and (-ms-high-contrast: none) {
  .share-list li a span {
    padding-top: 3%;
  }
}
@media screen and (max-width: 768px) {
  .share-list li a span {
    display: none;
  }
}
.share-list li a:hover {
  text-decoration: none !important;
}

.footer {
  position: relative;
  z-index: 100;
  background-color: #000;
  font-size: 10px;
  padding: 5% 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #999;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer a {
  color: #aaa;
}
.footer a:visited {
  color: #aaa;
}
.footer .footer-inner {
  max-width: 1280px;
  margin: 0 5%;
}
.footer .trainer_web {
  width: 100%;
  margin-bottom: 20px;
  letter-spacing: 1.4px;
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  .footer .trainer_web {
    font-size: 1.2em;
  }
}
.footer .trainer_web a {
  color: #fff;
  font-weight: bold;
  display: inline-block;
  padding-left: 1.5em;
  position: relative;
}
.footer .trainer_web a:before {
  content: "";
  display: block;
  width: 0;
  height: 0px;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer .note {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: .1px;
  margin-top: 18px;
}
.footer .note a {
  text-decoration: underline;
}
.footer .note a:hover {
  text-decoration: none;
}
.footer .copyright {
  line-height: 1.4;
}
.footer .copyright small {
  letter-spacing: .3px;
}

body {
  background: #FCF7E8 url(../images/body-bg.jpg) repeat-y center top/cover;
  color: #4D1A00;
  border-top: 16px solid #CF761E;
  line-height: 1.5;
  overflow-x: hidden;
}
body a {
  color: #4D1A00;
}
@media screen and (max-width: 768px) {
  body {
    border-top-width: 8px;
  }
}

p {
  margin-top: 2em;
}

main {
  background: url(../images/footer-icon-1.png) no-repeat center bottom;
  margin-bottom: 80px;
}
main.footer-icon-2 {
  background-image: url(../images/footer-icon-2.png);
}
@media screen and (max-width: 768px) {
  main {
    background-size: 146px 36px;
  }
  main.footer-icon-2 {
    background-size: 139px 56px;
  }
}
main > *:last-child {
  padding-bottom: 300px;
}
@media screen and (max-width: 768px) {
  main > *:last-child {
    padding-bottom: 150px;
  }
}

.section {
  padding: 160px 20px;
}
.section .section-inner {
  margin: 0 auto;
  max-width: 990px;
}
.section .section-inner > *:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 80px 20px;
    overflow-x: hidden;
  }
}
.section-hero {
  padding-top: 40px;
  padding-bottom: 40px;
  background: url(../images/top/bg-main.png) no-repeat 0 0/100% 100%;
}
.section-hero .section-inner {
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .section-hero {
    padding-top: 0;
    padding-bottom: 45px;
  }
}
.section-story {
  border-top: 4px solid #CF761E;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .section-story {
    border-top-width: 1px;
  }
}
.section-archive {
  border-top: 4px solid #CF761E;
}
@media screen and (max-width: 768px) {
  .section-archive {
    border-top-width: 1px;
  }
}
.section-illust {
  border-top: 4px solid #CF761E;
}
@media screen and (max-width: 768px) {
  .section-illust {
    border-top-width: 1px;
  }
}
.section-logo {
  padding-top: 60px;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .section-logo {
    padding-top: 40px;
  }
}
.section-page {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .section-page {
    padding-top: 35px;
  }
}
.section .section-inner2 {
  max-width: 702px;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .section .section-inner2 {
    margin-top: 32px;
  }
}

.path-topic > a {
  display: inline-block;
}
.path-topic > a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .path-topic {
    font-size: 14px;
  }
}

.logo-page {
  text-align: center;
}
.logo-page > a {
  display: inline-block;
  max-width: 242px;
}
.logo-page > a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .logo-page > a {
    max-width: 138px;
  }
}

.list-archive {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (max-width: 768px) {
  .list-archive {
    margin-top: 40px;
    width: calc(100% + 16px);
    margin-left: -8px;
    margin-right: -8px;
  }
}
.list-archive-item {
  width: 50%;
  padding: 0 20px;
}
.list-archive-item:nth-child(n+3) {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .list-archive-item:nth-child(n+3) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .list-archive-item {
    padding: 0 8px;
  }
}
.list-archive-image img {
  width: 100%;
}
.list-archive-head {
  font-weight: bold;
  font-size: 30px;
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .list-archive-head {
    font-size: 20px;
  }
}
.list-archive-text {
  margin-top: 15px;
  line-height: 2;
}
.list-archive-date {
  margin-top: 15px;
}
.list-archive-button {
  margin-top: 20px;
}
.list-archive-button > a {
  display: inline-block;
}
.list-archive-button > a:hover {
  opacity: 0.6;
}

.text-lead {
  font-size: 24px;
}

.post-image > img {
  width: 100%;
}
.post-image + p {
  line-height: 2.5;
}

.hero-wrap {
  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;
}

.hero-sp {
  width: 100%;
  text-align: center;
  padding-top: 45px;
}
.hero-sp img {
  max-width: 266px;
}

.hero-movie {
  width: 40%;
  padding-left: 20px;
}
.hero-movie > div {
  border: 2px solid #BA7E0A;
  padding: 5px;
  max-width: 399px;
  margin-left: auto;
  margin-right: auto;
}
.hero-movie > div > div {
  border: 5px solid #BA7E0A;
}
.hero-movie video {
  width: 100%;
  max-width: 375px;
  display: block;
}
@media screen and (max-width: 768px) {
  .hero-movie {
    width: calc(100% + 40px);
    padding-left: 0;
    margin-left: -20px;
    margin-right: -20px;
    position: relative;
  }
  .hero-movie:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/top/bg-main.png) no-repeat 0 0/100% 100%;
  }
  .hero-movie > div {
    border: none;
    padding: 0;
    max-width: inherit;
  }
  .hero-movie > div > div {
    border: none;
  }
  .hero-movie video {
    max-width: inherit;
  }
}

.hero-main {
  width: 60%;
  text-align: center;
}
.hero-main-logo img {
  max-width: 330px;
}
.hero-main-text {
  padding-top: 70px;
}
.hero-main-text img {
  max-width: 448px;
}
@media screen and (max-width: 768px) {
  .hero-main {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
  .hero-main-logo {
    background: #4D1A00;
    padding: 10px;
  }
  .hero-main-logo img {
    max-width: 212px;
  }
  .hero-main-text {
    padding-top: 0;
  }
}

.head-section {
  text-align: center;
  margin: 150px 0 60px;
}
.head-section-en {
  display: inline-block;
  margin-bottom: 20px;
  background: url(../images/head-bg-1.png) no-repeat center top;
  padding-top: 50px;
}
.head-section-special {
  display: inline-block;
  margin-bottom: 24px;
}
.head-section-special > img {
  width: 120px;
}
.head-section-new {
  position: relative;
  top: -16px;
  left: -16px;
  vertical-align: middle;
}
.head-section-text {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .head-section {
    margin: 75px 0 30px;
  }
  .head-section-en {
    margin-bottom: 10px;
    background-size: 36px 33px;
    padding-top: 40px;
  }
  .head-section-special {
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 768px) {
  .head-section-new {
    width: 38px;
    top: -7px;
    left: -10px;
  }

  .section-story .head-section-en {
    width: 60px;
  }
  .section-story .head-section-special {
    width: 80px;
  }
  .section-story .head-section-text {
    /* width: 220px; */
    width: 104px;
  }

  .section-archive .head-section-en {
    width: 86px;
  }
  .section-archive .head-section-text {
    width: 270px;
  }

  .section-illust .head-section-en {
    width: 115px;
  }
  .section-illust .head-section-text {
    width: 330px;
  }

  .section-page.archive .head-section-en {
    width: 86px;
  }
  .section-page.archive .head-section-text {
    width: 270px;
  }

  .section-page.story .head-section-en {
    width: 86px;
  }
  .section-page.story .head-section-text {
    width: 270px;
  }
}
.slide-story {
  margin-top: 60px;
  max-width: 762px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .slide-story {
    margin-top: 40px;
  }
}
.slide-story-item {
  border: 1px solid #4D1A00;
  margin: 0 50px;
  position: relative;
  opacity: 0.5;
}
.slide-story-item.slick-active {
  opacity: 1;
}
.slide-story-item > a {
  display: block;
}
.slide-story-item:hover .slide-story-content {
  display: block;
}
@media screen and (max-width: 768px) {
  .slide-story-item:hover .slide-story-content {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .slide-story-item {
    margin: 0 25px;
  }
}
.slide-story-content {
  border: 1px solid #4D1A00;
  background: #F7F7EE;
  padding: 1.2em;
  position: absolute;
  top: 100%;
  left: -1px;
  width: calc(100% + 2px);
  display: none;
}
.slide-story-content > *:first-child {
  margin-top: 0;
}
.slide-story .slick-list {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .slide-story .slick-list {
    padding: 0 15px !important;
  }
}
@media screen and (max-width: 768px) {
  .slide-story .slick-prev {
    left: 10px;
    margin-top: -12px;
  }
  .slide-story .slick-next {
    right: 10px;
    margin-top: -12px;
  }
}

.slide-archive {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .slide-archive {
    margin-top: 40px;
  }
}
.slide-archive-item {
  max-width: 340px;
  padding: 0 20px;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .slide-archive-item {
    padding: 0 5px;
  }
}
.slide-archive-item.slick-active {
  opacity: 1;
}
.slide-archive-card {
  border: 1px solid #4D1A00;
  position: relative;
}
.slide-archive-card > a {
  display: block;
}
.slide-archive-card:hover .slide-archive-content {
  display: block;
}
@media screen and (max-width: 768px) {
  .slide-archive-card:hover .slide-archive-content {
    display: none !important;
  }
}
.slide-archive-card + .slide-archive-card {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .slide-archive-card + .slide-archive-card {
    margin-top: 10px;
  }
}
.slide-archive-content {
  border: 1px solid #4D1A00;
  background: #F7F7EE;
  padding: 1.2em;
  position: absolute;
  top: 100%;
  left: -1px;
  width: calc(100% + 2px);
  display: none;
  z-index: 1;
}
.slide-archive-content > *:first-child {
  margin-top: 0;
}
.slide-archive .slick-list {
  position: relative;
  z-index: 2;
  padding: 0 !important;
}
.slide-archive .slick-next {
  right: -35px;
}
.slide-archive .slick-prev {
  left: -35px;
}
@media screen and (max-width: 768px) {
  .slide-archive .slick-arrow {
    margin-top: -12px;
  }
  .slide-archive .slick-next {
    right: -5px;
  }
  .slide-archive .slick-prev {
    left: -5px;
  }
}

.wrap-button {
  margin-top: 60px;
  text-align: center;
}
.wrap-button .btn-image {
  display: inline-block;
  margin: 0 15px;
}
.wrap-button .btn-image > a {
  display: inline-block;
}
.wrap-button .btn-image > a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .wrap-button {
    margin-top: 40px;
  }
  .wrap-button .btn-image {
    display: block;
  }
  .wrap-button .btn-image > a {
    max-width: 208px;
  }
  .wrap-button .btn-image + .btn-image {
    margin-top: 20px;
  }
}

.box-pokemon {
  margin-top: 80px;
  padding: 35px 20px;
  text-align: center;
  background: #F7F7EE;
  border: 1px solid #4D1A00;
}
@media screen and (max-width: 768px) {
  .box-pokemon {
    margin-top: 40px;
    padding: 25px 10px;
  }
}
.box-pokemon-head {
  font-weight: bold;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .box-pokemon-head {
    font-size: 20px;
  }
}
.box-pokemon > p {
  margin-top: 1em;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .box-pokemon > p {
    font-size: 12px;
  }
}
.box-pokemon-list {
  display: flex;
  justify-content: center;
}
.box-pokemon-link {
  text-align: center;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .box-pokemon-link {
    margin-top: 15px;
  }
}
.box-pokemon-link a {
  display: inline-block;
  position: relative;
  text-decoration: underline;
  font-weight: bold;
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .box-pokemon-link a {
    margin: 0 3px;
  }
}
.box-pokemon-link a:hover {
  text-decoration: none;
}
.box-pokemon-link a .icon-blank {
  vertical-align: middle;
  margin-left: 8px;
  margin-top: -2px;
}

.box-pack {
  margin-top: 100px;
  background: #77320F;
  color: #F7F7EE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 20px;
}
@media screen and (max-width: 768px) {
  .box-pack {
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 60px;
  }
}
.box-pack-content {
  text-align: center;
  width: 70%;
  padding: 0 20px;
}
.box-pack-head {
  font-weight: bold;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .box-pack-head {
    font-size: 16px;
  }
}
.box-pack-link {
  margin-top: 1em;
}
.box-pack-link a {
  color: #F7F7EE;
  font-weight: bold;
  text-decoration: underline;
}
.box-pack-link a:hover {
  text-decoration: none;
}
.box-pack-link a .icon-blank {
  vertical-align: middle;
  margin-left: 8px;
  margin-top: -2px;
}
.box-pack-image {
  position: relative;
  width: 30%;
}
.box-pack-image > img {
  position: absolute;
  width: 124px;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.box-share {
  background: #F7F7EE;
  border: 1px solid #4D1A00;
  margin-top: 100px;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .box-share {
    margin-top: 60px;
  }
}
.box-share-head {
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .box-share-head {
    font-size: 16px;
  }
}
.box-share-button {
  margin-top: 1em;
}
.box-share-button > a {
  display: inline-block;
}
.box-share-button > a:hover {
  opacity: 0.6;
}

.box-card {
  background: #F7F7EE;
  border: 2px solid #4D1A00;
  padding: 78px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .box-card {
    margin-top: 40px;
    padding: 24px;
  }
}
.box-card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% + 4%);
  margin-left: -2%;
  margin-right: -2%;
  position: relative;
}
.box-card-list-item {
  width: 33.33333%;
  padding: 0 2%;
  z-index: 0;
}
.box-card-list-item:nth-child(n+4) {
  margin-top: 4%;
}
.box-card-list-item:nth-child(9n+10), .box-card-list-item:nth-child(9n+11), .box-card-list-item:nth-child(9n+12), .box-card-list-item:nth-child(9n+13), .box-card-list-item:nth-child(9n+14), .box-card-list-item:nth-child(9n+15), .box-card-list-item:nth-child(9n+16), .box-card-list-item:nth-child(9n+17), .box-card-list-item:nth-child(9n+18) {
  position: absolute;
  top: 0;
  left: 0;
}
.box-card-list-item:nth-child(9n+11), .box-card-list-item:nth-child(9n+14), .box-card-list-item:nth-child(9n+17) {
  left: 50%;
  margin-left: -16.7%;
}
.box-card-list-item:nth-child(9n+13), .box-card-list-item:nth-child(9n+14), .box-card-list-item:nth-child(9n+15) {
  top: 50%;
  margin-top: -20.5%;
}
.box-card-list-item:nth-child(9n+12), .box-card-list-item:nth-child(9n+15), .box-card-list-item:nth-child(9n+18) {
  left: auto;
  right: 0;
}
.box-card-list-item:nth-child(9n+16), .box-card-list-item:nth-child(9n+17), .box-card-list-item:nth-child(9n+18) {
  top: auto;
  bottom: 0;
}
.box-card-list-item:nth-child(9n+10), .box-card-list-item:nth-child(9n+11), .box-card-list-item:nth-child(9n+12) {
  margin-top: 0;
}
.box-card-list-item > a {
  display: block;
}
.box-card-list-item.is-current {
  opacity: 1;
}
.box-card-list-item.is-end {
  z-index: -100 !important;
}
.box-card-list-item.is-move {
  z-index: 1;
  -webkit-animation-name: moveCard;
          animation-name: moveCard;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.box-card-list-item:hover {
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .box-card {
    border-width: 1px;
  }
  .box-card .wrap-button {
    margin-top: 20px;
  }
}

@-webkit-keyframes moveCard {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(50%) rotate(20deg);
            transform: translateX(50%) rotate(20deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(0) rotate(0);
            transform: translateX(0) rotate(0);
  }
}

@keyframes moveCard {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(50%) rotate(20deg);
            transform: translateX(50%) rotate(20deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(0) rotate(0);
            transform: translateX(0) rotate(0);
  }
}
.modal-movie {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px 20px 80px;
  z-index: 9999;
  background: #FCF7E8 url(../images/body-bg.jpg) repeat-y center top/cover;
  display: none;
}
.modal-movie-inner {
  width: 100%;
  max-width: 1000px;
  border: 2px solid #77320F;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 20px;
}
.modal-movie .modal-story-close {
  max-width: 1056px;
}
.modal-movie .modal-movie-youtube {
  padding-top: 56.25%;
  position: relative;
}
.modal-movie .modal-movie-youtube > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
@media screen and (max-width: 768px) {
  .modal-movie {
    padding: 40px 20px;
  }
  .modal-movie-inner {
    padding: 10px;
  }
}

.modal-story {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px 20px 80px;
  z-index: 9999;
  background: #FCF7E8 url(../images/body-bg.jpg) repeat-y center top/cover;
  display: none;
}
@media screen and (max-width: 768px) {
  .modal-story {
    padding: 15px 20px 0;
  }
}
.modal-story-inner {
  width: 100%;
  height: calc(100vh - 200px);
  overflow-y: scroll;
  max-width: 820px;
  border: 2px solid #77320F;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 60px;
}
@media screen and (max-width: 768px) {
  .modal-story-inner {
    height: calc(100vh - 160px);
    padding: 40px 20px;
  }
}
.modal-story-inner > p {
  line-height: 2.5;
}
.modal-story-close {
  width: 100%;
  max-width: 876px;
  text-align: right;
  margin: 0 auto;
  height: 27px;
  position: relative;
  z-index: 1;
}
.modal-story-close > a {
  display: inline-block;
}
.modal-story-close > a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .modal-story-close {
    height: 17px;
  }
  .modal-story-close > a {
    margin-right: -17px;
    width: 34px;
  }
}
.modal-story-close2 {
  margin-top: 24px;
  width: 100%;
  max-width: 820px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.modal-story-close2 > a {
  display: inline-block;
}
.modal-story-close2 > a:hover {
  opacity: 0.63;
}
@media screen and (max-width: 768px) {
  .modal-story-close2 > a {
    max-width: 208px;
  }
}
.modal-story-logo {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .modal-story-logo > img {
    max-width: 138px;
  }
}
.modal-story-head {
  font-size: 30px;
  font-weight: bold;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .modal-story-head {
    font-size: 20px;
  }
}
.modal-story > p {
  margin-top: 1.5em;
}

.layout-column {
  margin-top: 40px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.layout-column-item {
  max-width: 262px;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .layout-column {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .layout-column-item {
    max-width: 150px;
    padding: 0 8px;
  }
}

.ani-zoom {
  display: inline-block;
}

@media screen and (min-width: 769px) {
  .ani-zoom {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
  }
  .ani-zoom:hover {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    z-index: 2;
  }
  .ani-zoom.sp:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.u-ta-center {
  text-align: center;
}

.share-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.share-list li {
  margin-right: 2%;
  margin-left: 2%;
}

@media screen and (max-width: 768px) {
  .share-list li {
    padding: 13% 0;
    width: 53px;
  }
  .share-list li > a {
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 10px;
    width: 53px;
    height: 53px;
  }
}
