@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text&display=swap");
/* リセット
---------------------------------------------------------- */
/* 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: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1;
}

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;
}

#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: 2em;
  text-align: center;
}
#PageTop > a {
  display: inline-block;
  cursor: pointer;
}
#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%;
  }
}

.ani-zoom {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 1000;
}
.ani-zoom:hover {
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .ani-zoom:hover {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    z-index: 2000;
  }
}
@media screen and (max-width: 768px) {
  .ani-zoom {
    max-width: 252px;
    margin-left: auto;
    margin-right: auto;
  }
}
.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;
  }
  .modal-card.is-show {
    opacity: 1;
    z-index: 9999;
  }
}

.share-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.share-list > li {
  margin-left: 2.5%;
  margin-right: 2.5%;
}
@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;
  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: 55px;
    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: 50%;
  }
}
.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;
}

.ff-m {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: -0.1em;
}
.ff-m > span {
  display: inline-block;
  letter-spacing: 0;
}

header.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4000;
}

.header-logo > a {
  display: inline-block;
  width: 300px;
}
@media screen and (max-width: 768px) {
  .header-logo > a {
    width: 200px;
  }
}
.header-logo > a:hover {
  opacity: 0.6;
}

body {
  background: #1C1C1C;
  background: -webkit-gradient(linear, left top, right top, from(#1C1C1C), color-stop(#2b2b2b), to(#1C1C1C));
  background: linear-gradient(90deg, #1C1C1C, #2b2b2b, #1C1C1C);
  font-size: 16px;
  font-weight: 500;
  color: #ccc;
  line-height: 1.875;
}

main {
  overflow: hidden;
}

.section {
  padding: 0 20px;
  position: relative;
}
.section > .section-inner {
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}
.section > .section-inner > *:first-child {
  margin-top: 0;
}
.section.section-hero {
  padding: 0;
}
.section.section-about {
  padding-top: 65px;
  background: url(../images/about-bg-1.png) no-repeat right 240px;
}
@media screen and (max-width: 768px) {
  .section.section-about {
    padding-top: 40px;
    background-size: 100% auto;
    background-position: right 129vw;
  }
}
.section.section-deck {
  padding-bottom: 100px;
}
.section.section-deck > .section-inner {
  max-width: 875px;
}
@media screen and (max-width: 768px) {
  .section.section-deck {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.hero-head {
  margin: 60px auto 0;
  width: 100%;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-head > div:last-child {
  padding-left: 70px;
}
@media screen and (max-width: 768px) {
  .hero-head {
    display: block;
    padding: 0 20px;
    margin-top: 30px;
    text-align: center;
  }
  .hero-head > div:last-child {
    padding: 0;
    margin-top: 27px;
    text-align: center;
  }
}

.lyt-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-top: 60px;
}
.lyt-column-item {
  padding: 0 24px;
}
.lyt-column--about {
  margin-left: -10px;
  margin-right: -10px;
  width: calc(100% + 20px);
}
.lyt-column--about .lyt-column-item {
  padding: 0 9px;
  width: 50%;
}
.lyt-column--about .lyt-column-content {
  margin-top: 2em;
}
.lyt-column--about .lyt-column-content h2 {
  font-size: 48px;
  line-height: 1.3;
}
.lyt-column--about .lyt-column-content p {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .lyt-column--about {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .lyt-column--about .lyt-column-item {
    width: 100%;
    padding: 0;
  }
  .lyt-column--about .lyt-column-item:not(:first-child) {
    margin-top: 10px;
  }
  .lyt-column--about .lyt-column-content h2 {
    font-size: 28px;
  }
  .lyt-column--about .lyt-column-content p {
    margin-top: 1em;
  }
}
.lyt-column--col2 {
  margin-left: -50px;
  margin-right: -50px;
  width: calc(100% + 100px);
}
.lyt-column--col2 .lyt-column-item {
  width: 50%;
  padding: 0 50px;
}
.lyt-column--col2 .lyt-column-item:nth-child(n+3) {
  margin-top: 48px;
}
.lyt-column--col3 .lyt-column-item {
  width: 33.33333%;
}
.lyt-column--col3 .lyt-column-item:nth-child(n+4) {
  margin-top: 48px;
}
.lyt-column--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .lyt-column {
    margin-top: 30px;
  }
  .lyt-column--col2 {
    width: calc(100% + 16px);
    margin-left: -8px;
    margin-right: -8px;
  }
  .lyt-column--col2 .lyt-column-item {
    width: 100%;
    padding: 0 8px;
  }
  .lyt-column--col2 .lyt-column-item:nth-child(n+2) {
    margin-top: 40px;
  }
  .lyt-column--col3 {
    width: calc(100% + 16px);
    margin-left: -8px;
    margin-right: -8px;
  }
  .lyt-column--col3 .lyt-column-item {
    width: 50%;
    padding: 0 8px;
  }
  .lyt-column--col3 .lyt-column-item:nth-child(n+3) {
    margin-top: 40px;
  }
  .lyt-column--product {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .lyt-column--product .lyt-column-item {
    width: 100%;
    padding: 0;
  }
  .lyt-column--product .lyt-column-item:first-child {
    width: 100%;
  }
}

.list-logo {
  margin-top: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.list-logo-item {
  width: 33.33333%;
  position: relative;
  padding: 0 10px;
}
.list-logo-item:nth-child(2):before, .list-logo-item:nth-child(2):after {
  content: "";
  width: 16px;
  height: 15px;
  background: url(../images/icon-x.png) no-repeat 0 0/100% 100%;
  position: absolute;
  top: 50%;
  margin-top: -5px;
}
.list-logo-item:nth-child(2):before {
  right: 8px;
}
.list-logo-item:nth-child(2):after {
  left: 8px;
}
.list-logo-item a {
  display: inline-block;
}
.list-logo-item a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .list-logo {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 40px;
    text-align: center;
  }
  .list-logo-item {
    width: 100%;
    margin-top: 10px;
  }
  .list-logo-item:nth-child(2):before, .list-logo-item:nth-child(2):after {
    width: 10px;
    height: 9px;
    top: auto;
    margin-top: 0;
  }
  .list-logo-item:nth-child(2):before {
    right: 50%;
    margin-right: -5px;
    margin-top: -5px;
    top: 0;
  }
  .list-logo-item:nth-child(2):after {
    left: 50%;
    margin-left: -5px;
    top: 100%;
    margin-top: 5px;
  }
  .list-logo-item img {
    max-height: 63px;
  }
}

.lyt-movie {
  text-align: center;
  margin: 120px auto;
  max-width: 718px;
}
.lyt-movie-inner {
  padding-top: 56.25%;
  position: relative;
}
.lyt-movie-inner > iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .lyt-movie {
    margin: 50px 0;
  }
}

.lyt-content {
  margin-top: 100px;
  padding-left: 48%;
  position: relative;
}
.lyt-content-head {
  position: relative;
  padding: 25px 0;
  min-height: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lyt-content-head:before {
  content: "";
  display: block;
  height: 100%;
  width: 65vw;
  background: -webkit-gradient(linear, left top, right top, from(#1C1C1C), to(#434343));
  background: linear-gradient(90deg, #1C1C1C, #434343);
  position: absolute;
  top: 0;
  left: -30%;
}
.lyt-content-head > * {
  position: relative;
  z-index: 2;
}
.lyt-content-head-text {
  font-size: 30px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  display: inline-block;
}
.lyt-content-head-en {
  position: absolute;
  bottom: -40px;
  right: -50px;
  z-index: 1;
}
.lyt-content-image {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 43.5%;
}
.lyt-content-image--card {
  margin-right: 8%;
}
.lyt-content-image--card .lyt-content-image-img,
.lyt-content-image--card .lyt-content-image-caption {
  max-width: 335px;
}
.lyt-content-image--card .lyt-content-image-caption {
  font-size: 14px;
  margin-top: 1em;
  color: #CCC;
  line-height: 1.5;
}
.lyt-content-text {
  margin-top: 2.5em;
}
.lyt-content-text > *:first-child {
  margin-top: 0;
}
.lyt-content-text > p {
  margin-top: 2em;
}
.lyt-content--reverse {
  padding-left: 0;
  padding-right: 48%;
}
.lyt-content--reverse .lyt-content-image {
  left: auto;
  right: 0;
}
.lyt-content--reverse .lyt-content-head:before {
  background: -webkit-gradient(linear, left top, right top, from(#434343), to(#1C1C1C));
  background: linear-gradient(90deg, #434343, #1C1C1C);
  left: auto;
  right: -30%;
}
.lyt-content--reverse .lyt-content-head-en {
  left: -50px;
  right: auto;
}
.lyt-content--height {
  min-height: 460px;
}
.lyt-content--height2 {
  min-height: 500px;
}
.lyt-content--height3 {
  min-height: 340px;
}
@media screen and (max-width: 768px) {
  .lyt-content {
    margin-top: 50px;
    padding-left: 0;
    min-height: inherit;
  }
  .lyt-content-head {
    position: relative;
    padding: 20px 0;
  }
  .lyt-content-head:before {
    width: 100vw;
    left: -20px !important;
    background: -webkit-gradient(linear, left top, right top, from(#434343), to(#1C1C1C)) !important;
    background: linear-gradient(90deg, #434343, #1C1C1C) !important;
  }
  .lyt-content-head-text {
    font-size: 22px;
  }
  .lyt-content-head-en {
    bottom: -30px;
    right: auto !important;
    left: -20px !important;
  }
  .lyt-content-head-en img {
    max-width: 290px;
  }
  .lyt-content-image {
    margin-top: 30px;
    position: static;
    max-width: inherit;
    text-align: center;
  }
  .lyt-content-image--card {
    margin-right: 0;
  }
  .lyt-content-image--card .lyt-content-image-img {
    text-align: center;
  }
  .lyt-content-image--card .lyt-content-image-img,
  .lyt-content-image--card .lyt-content-image-caption {
    max-width: inherit;
  }
  .lyt-content-image--card .lyt-content-image-caption {
    text-align: left;
  }
  .lyt-content-text {
    margin-top: 2em;
  }
  .lyt-content-text p.sp-only {
    width: 100%;
  }
  .lyt-content-text p.sp-only > img {
    margin: 0 auto;
    display: block;
  }
  .lyt-content--reverse {
    padding-right: 0;
  }
  .lyt-content--reverse .lyt-content-image {
    left: auto;
    right: 0;
  }
}

.box-deck {
  border-top: 3px #B6D87C solid;
  background: #2E2D2D;
  padding: 80px;
  position: relative;
}
.box-deck:before {
  content: "";
  display: block;
  width: 100%;
  height: 500px;
  background: -webkit-gradient(linear, left top, left bottom, from(#2E4E06), to(#2E2D2D));
  background: linear-gradient(#2E4E06, #2E2D2D);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.3;
}
.box-deck > * {
  position: relative;
  z-index: 1;
}
.box-deck > *.list-card, .box-deck > *.lyt-detail {
  z-index: 2;
}
.box-deck-head {
  text-align: center;
  font-size: 36px;
  color: #B6D87C;
  line-height: 1.3;
}
.box-deck-head2 {
  text-align: center;
  font-size: 36px;
  line-height: 1.3;
  margin-top: 80px;
}
.box-deck .box-border {
  padding: 25px;
}
.box-deck + .box-deck {
  margin-top: 80px;
}
.box-deck--deck2 {
  border-top-color: #D26B4E;
}
.box-deck--deck2:before {
  background: -webkit-gradient(linear, left top, left bottom, from(#4E0D04), to(#2E2D2D));
  background: linear-gradient(#4E0D04, #2E2D2D);
}
.box-deck--deck2 .box-deck-head {
  color: #D26B4E;
}
.box-deck--deck3 {
  border-top-color: #6AAFD5;
}
.box-deck--deck3:before {
  background: -webkit-gradient(linear, left top, left bottom, from(#054D53), to(#2E2D2D));
  background: linear-gradient(#054D53, #2E2D2D);
}
.box-deck--deck3 .box-deck-head {
  color: #6AAFD5;
}
@media screen and (max-width: 768px) {
  .box-deck {
    padding: 60px 35px;
  }
  .box-deck-head {
    font-size: 28px;
  }
  .box-deck-head2 {
    font-size: 28px;
    margin-top: 60px;
  }
  .box-deck + .box-deck {
    margin-top: 60px;
  }
}

.list-card {
  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;
  margin-left: -17px;
  margin-top: 50px;
  width: calc(100% + 34px);
  row-gap: 30px;
}
.list-card > li {
  width: 33.33333%;
  padding: 0 17px;
}
.list-card > li img {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .list-card {
    margin-top: 20px;
    margin-left: -5px;
    width: calc(100% + 10px);
  }
  .list-card > li {
    width: 50%;
    padding: 0 5px;
    margin-top: 10px;
  }
}

.box-border {
  border: 1px solid #707070;
  padding: 34px 25px;
  margin-top: 45px;
}
.box-border > *:first-child {
  margin-top: 0;
}
.box-border-head {
  font-size: 30px;
  line-height: 1.3;
}
.box-border p {
  margin-top: 1em;
}
.box-border p + p {
  margin-top: 1.5em;
}
@media screen and (max-width: 768px) {
  .box-border-head {
    font-size: 28px;
  }
}

.box-border2 {
  border: 1px solid #707070;
  border-width: 1px 0;
  padding: 34px 0;
  margin-top: 60px;
}
.box-border2 > *:first-child {
  margin-top: 0;
}
.box-border2-head {
  font-size: 30px;
  line-height: 1.3;
}
.box-border2-head > small {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
}
.box-border2 p {
  margin-top: 1em;
}
.box-border2 p + p {
  margin-top: 1.5em;
}
@media screen and (max-width: 768px) {
  .box-border2-head {
    font-size: 28px;
  }
}

.lyt-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lyt-product-image {
  width: 45%;
  padding-right: 20px;
}
.lyt-product-content {
  width: 55%;
}
.lyt-product-content > *:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .lyt-product-image {
    width: 100%;
    padding-right: 0;
  }
  .lyt-product-content {
    width: 100%;
    margin-top: 1.5em;
  }
}

.lyt-nendo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lyt-nendo-image {
  width: 45%;
  padding-left: 20px;
  text-align: right;
}
.lyt-nendo-content {
  width: 55%;
}
.lyt-nendo-content p {
  font-size: 14px;
}
.lyt-nendo-content a {
  color: inherit;
  text-decoration: underline;
}
.lyt-nendo-content a:hover {
  text-decoration: none;
}
.lyt-nendo-content .icon-blank {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.lyt-nendo-content > *:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .lyt-nendo-image {
    width: 100%;
    padding-left: 0;
    margin-top: 1.5em;
    text-align: center;
  }
  .lyt-nendo-content {
    width: 100%;
  }
}

.txt-notes {
  font-size: 14px;
}

.btn-wrap {
  margin-top: 2em;
  text-align: center;
}
.btn-wrap > a {
  display: inline-block;
}
.btn-wrap > a:hover {
  opacity: 0.6;
}

.lyt-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 55px;
}

.before-evolve{
  display: flex;
  gap: 15%;
  margin-top: 9.8%;
}

.lyt-detail-card {
  width: 40%;
  padding-right: 35px;
}
.lyt-detail-card-back{
  width: 30%;
  position: absolute;
  transform: translate(10%,-120%);
}
.lyt-detail-content {
  width: 60%;
  border: 1px solid #707070;
  padding: 30px 25px;
}
.lyt-detail-content h4 {
  font-size: 30px;
  line-height: 1;
}
.lyt-detail-content p {
  margin-top: 1.5em;
}
.lyt-detail + .lyt-detail {
  margin-top: 85px;
}
.lyt-detail--reverse .lyt-detail-card {
  padding-right: 0;
  padding-left: 35px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: right;
}
.lyt-detail--reverse .lyt-detail-content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 768px) {
  .lyt-detail {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 25px;
  }
  .lyt-detail-card {
    width: 252px;
    padding-right: 0;
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
    text-align: center !important;
    margin: 0 auto;
  }
  .lyt-detail-card-back{
    width: 190px;
    position: absolute;
    transform: translate(-40%,-120%);
  }
  .lyt-detail-content {
    width: 100%;
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
    padding: 30px 20px;
    margin-top: 30px;
  }
  .lyt-detail-content h4 {
    font-size: 26px;
  }
  .lyt-detail + .lyt-detail {
    margin-top: 60px;
  }
  .lyt-detail--reverse .lyt-detail-card {
    padding-left: 0;
  }
}
@media screen and (max-width: 350px) {
  .lyt-detail-card {
    width: 90%;
  }

}
.lyt-detail--color1 {
  color: #B6D87C;
}
.lyt-detail--color2 {
  color: #B7C3F1;
}
.lyt-detail--color3 {
  color: #D26B4E;
}
.lyt-detail--color4 {
  color: #E4A94F;
}
.lyt-detail--color5 {
  color: #6AAFD5;
}
.lyt-detail--color6 {
  color: #46B5C3;
}

p.text {
  margin-top: 2em;
}

span.ex {
  font-size: 1.25em;
  display: inline-block;
  line-height: 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;
  }
}

.ta-center {
  text-align: center !important;
}

.ta-left {
  text-align: left !important;
}

.va-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 769px) {
  .pc-ta-center {
    text-align: center;
  }
}
.mt-0 {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .sp-ta-left {
    text-align: left !important;
  }

  .sp-mt-10 {
    margin-top: 10px !important;
  }

  .sp-mt-15 {
    margin-top: 15px !important;
  }

  .sp-width-100 {
    width: 100%;
  }
}
