@charset "UTF-8";
/*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;
に設定
```scss
  @include fontsize(引数);
```
 */
/*
---
name: 別窓付きリンク
category: -mixin
---
```pug
  a(href="//www.google.com" target="_blank") テキストリンク
  |　target="_blank"が喜寿されている要素に付与される
```
*/
/*
---
name: ブレイクポイントで表示切り替え
category: -helper
---

```pug
._showSp SPで表示
._showPc PCで表示
```
*/
@media screen and (min-width: 760px) {
  ._showSp {
    display: none !important;
  }
}

@media screen and (max-width: 759px) {
  ._showPc {
    display: none !important;
  }
}

main {
  overflow: hidden;
}

.m-hdr1 {
  position: relative;
  z-index: 1;
}

.container.beige {
  position: relative;
}

.container.beige::before {
  content: "";
  display: block;
  width: 300%;
  height: 1000%;
  background: #f6f1d3;
  position: absolute;
  top: 0;
  right: 50px;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: rotate(47deg);
          transform: rotate(47deg);
}

@media screen and (min-width: 760px) {
  .container.beige::before {
    right: 80px;
    -webkit-transform: rotate(55deg);
            transform: rotate(55deg);
  }
}

.poke-title {
  font-size: 16px;
  font-size: 1.6rem;
  color: #00157e;
  font-weight: bold;
  text-align: center;
  margin: 60px 0 30px;
}

@media screen and (min-width: 760px) {
  .poke-title {
    font-size: 28px;
    font-size: 2.8rem;
    text-align: left;
    margin: 120px 0 60px;
  }
}

.poke-title:first-child {
  margin-top: 0;
}

.poke {
  margin: -25px auto 15px;
  padding: 33px 0 33px;
  max-width: 690px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 759px) {
  .poke > div {
    margin: 0 -15%;
  }
  .poke > div.size100 {
    margin: 0;
  }
  .poke > div.size120 {
    margin: 0 -10%;
  }
  .poke > div.size115 {
    margin: 0 -7.5%;
  }
}

.poke::before, .poke::after {
  content: "";
  display: block;
  position: absolute;
}

.poke::before {
  width: 52px;
  height: 33px;
  background: url("../images/leaf_l@2x.png");
  background-size: cover;
  top: 0;
  left: 0;
}

.poke::after {
  width: 60px;
  height: 52px;
  background: url("../images/leaf_r@2x.png");
  background-size: cover;
  bottom: 0;
  right: 0;
}

@media screen and (min-width: 760px) {
  .poke {
    margin: -30px auto 50px;
    padding: 0;
    max-width: 784px;
  }
  .poke::before {
    width: 87px;
    height: 173px;
    background: url("../images/leaf_l.png");
    background-size: cover;
    top: 40px;
    left: -87px;
  }
  .poke::after {
    width: 106px;
    height: 109px;
    background: url("../images/leaf_r.png");
    background-size: cover;
    bottom: 0;
    right: -106px;
  }
}

@media screen and (min-width: 760px) and (max-width: 1024px) {
  .poke::before {
    left: -50px;
  }
  .poke::after {
    right: -50px;
  }
}

.poke-name {
  color: #182f93;
  text-align: center;
  line-height: 1em !important;
  font-weight: bold;
  position: relative;
  font-size: 29px;
  font-size: 2.9rem;
  margin-bottom: 27px;
}

@media screen and (min-width: 760px) {
  .poke-name {
    font-size: 62px;
    font-size: 6.2rem;
    margin-bottom: 55px;
  }
}

.poke-subname {
  color: #182f93;
  text-align: center;
  line-height: 1em !important;
  font-weight: bold;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

@media screen and (min-width: 760px) {
  .poke-subname {
    font-size: 26px;
    font-size: 2.6rem;
    margin-bottom: 30px;
  }
}

.poke-images {
  margin: 30px auto;
}

.poke-images .poke-img {
  margin: 15px auto 0;
}

@media screen and (min-width: 760px) {
  .poke-images {
    margin: 55px auto;
  }
  .poke-images .poke-img {
    margin: 30px auto 0;
    text-align: center;
  }
  .poke-images .poke-img img {
    max-width: 754px;
  }
}

@media screen and (min-width: 760px) {
  .thumblinks .thumblinks-container {
    max-width: 1246px;
    margin: auto;
  }
}

.thumblinks {
  padding: 0;
  margin: -20px 8px 0 7px;
  letter-spacing: -.4em;
}

.thumblinks .thumblink {
  width: 50%;
  padding: 0 7px 0 8px;
  margin-top: 20px;
  vertical-align: top;
}

@media screen and (min-width: 760px) {
  .thumblinks {
    padding: 0;
    margin: -60px -10px 0;
    letter-spacing: -.4em;
  }
  .thumblinks .thumblink {
    width: 20%;
    padding: 0 10px;
    margin-top: 60px;
  }
}

.thumblink {
  letter-spacing: 0;
  display: inline-block;
  text-decoration: none;
  color: black;
}

.thumblink .thumblink-image {
  text-align: center;
  max-width: 232px;
  display: block;
  margin: auto;
}

.thumblink .thumblink-image img:nth-child(1) {
  display: block;
}

.thumblink .thumblink-image img:nth-child(2) {
  display: none;
}

.thumblink .thumblink-text {
  text-align: center;
  display: block;
  font-weight: bold;
  margin-top: 6px;
  line-height: 1em;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (min-width: 760px) {
  .thumblink .thumblink-text {
    margin-top: 10px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.thumblink .thumblink-text::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../images/thumblink-arrow@2x.png");
  background-size: cover;
  vertical-align: middle;
  margin-right: 10px;
  position: relative;
  top: -2px;
}

@media screen and (min-width: 760px) {
  .thumblink .thumblink-text::before {
    width: 27px;
    height: 27px;
    margin-right: 15px;
  }
}

.thumblink .thumblink-text.noarrow::before {
  display: none;
}

.thumblink.is-active {
  color: black;
  color: #ff9729;
}

.thumblink.is-active .thumblink-image img:nth-child(1) {
  display: none;
}

.thumblink.is-active .thumblink-image img:nth-child(2) {
  display: block;
}

a.thumblink {
  color: black;
  text-decoration: none;
}

@media screen and (min-width: 760px) {
  a.thumblink:hover {
    color: black;
    position: relative;
    -webkit-animation: anim_mouseover 0.15s;
            animation: anim_mouseover 0.15s;
    color: #ff9729;
  }
  a.thumblink:hover .thumblink-image img:nth-child(1) {
    display: none;
  }
  a.thumblink:hover .thumblink-image img:nth-child(2) {
    display: block;
  }
}

@-webkit-keyframes anim_mouseover {
  0% {
    top: 0;
  }
  50% {
    top: -6px;
  }
  100% {
    top: 0;
  }
}

@keyframes anim_mouseover {
  0% {
    top: 0;
  }
  50% {
    top: -6px;
  }
  100% {
    top: 0;
  }
}

footer .thumblinks {
  margin: 0 0px 0;
  padding: 0 10px 30px;
  border-bottom: 1px solid #66b188;
  background: #01953a;
}

footer .thumblinks .thumblink {
  width: 25%;
}

@media screen and (min-width: 760px) {
  footer .thumblinks {
    margin: 0 0px 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #66b188;
    background: #01953a;
  }
  footer .thumblinks .thumblink {
    width: 12.5%;
    margin-top: 30px;
  }
}

ul.poke-spec {
  padding: 0 45px;
  margin-bottom: 41px;
  position: relative;
}

@media screen and (min-width: 760px) {
  ul.poke-spec {
    text-align: center;
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 760px) and (max-width: 1024px) {
  ul.poke-spec {
    padding: 0;
  }
}

ul.poke-spec li.poke-spec-item {
  margin-top: 9px;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
}

@media screen and (min-width: 760px) {
  ul.poke-spec li.poke-spec-item {
    width: 340px;
    font-size: 20px;
    font-size: 2rem;
    letter-spacing: 0;
    display: inline-block;
  }
  ul.poke-spec li.poke-spec-item:nth-child(2n) {
    width: 290px;
  }
}

@media screen and (min-width: 760px) and (max-width: 1024px) {
  ul.poke-spec li.poke-spec-item {
    width: 325px;
    display: inline-block;
  }
  ul.poke-spec li.poke-spec-item:nth-child(2n) {
    width: 290px;
  }
}

ul.poke-spec li.poke-spec-item .poke-spec-tag {
  color: white;
  line-height: 1;
  padding: 7px 10px;
  background: #182f93;
  border-radius: 3px;
  position: relative;
  display: inline-block;
  min-width: 5.5em;
  text-align: center;
  padding-left: 1.5em;
  vertical-align: middle;
  margin-right: 2em;
  font-weight: bold;
  font-size: 12.5px;
  font-size: 1.25rem;
}

@media screen and (min-width: 760px) {
  ul.poke-spec li.poke-spec-item .poke-spec-tag {
    font-size: 20px;
    font-size: 2rem;
    padding: 8px 10px;
    min-width: 4.5em;
  }
}

ul.poke-spec li.poke-spec-item .poke-spec-tag::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background: #b9fffb;
  border-radius: 100%;
  box-shadow: 0 0 1px 1px #b9fffb;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9px;
  margin: auto;
}

@media screen and (min-width: 760px) {
  ul.poke-spec li.poke-spec-item .poke-spec-tag::before {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 2px 2px #b9fffb;
    left: 8px;
  }
}

ul.poke-spec li.poke-spec-item .poke-spec-tag::after {
  content: "";
  display: block;
  width: 1.62em;
  height: 1.62em;
  background: #182f93;
  border-radius: 3px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 0;
  right: -.7em;
  bottom: 0;
  margin: auto;
}

@media screen and (min-width: 760px) {
  ul.poke-spec li.poke-spec-item .poke-spec-tag::after {
    width: 1.32em;
    height: 1.32em;
    right: -.60em;
  }
}

ul.poke-spec li.poke-spec-item .poke-spec-tag > span {
  position: relative;
  z-index: 1;
  font-size: 12.5px;
  font-size: 1.25rem;
}

@media screen and (min-width: 760px) {
  ul.poke-spec li.poke-spec-item .poke-spec-tag > span {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.poke-texts {
  border: 1px solid #e4e4de;
  border-radius: 8px;
  background-color: #fff;
  padding: 9px;
  display: flex;
  position: relative;
  max-width: 908px;
  margin: auto;
}

.poke-texts::before {
  content: "";
  display: block;
  width: 80px;
  height: 88px;
  background: url("../images/icon.png");
  background-size: cover;
  position: absolute;
  top: -20px;
  left: -12px;
}

@media screen and (min-width: 760px) {
  .poke-texts::before {
    top: -32px;
    left: -19px;
    width: 132px;
    height: 145px;
  }
}

@media screen and (max-width: 759px) {
  .poke-texts {
    flex-direction: column;
  }
}

.poke-texts > p {
  padding: 22px 35px;
  font-weight: bold;
}

@media screen and (min-width: 760px) {
  .poke-texts > p {
    padding: 55px 60px;
    width: 50%;
    box-sizing: border-box;
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 2em;
  }
}

.poke-texts > p + p {
  border: 1px dashed #e4e4de;
  border-width: 1px 0 0 0;
}

@media screen and (min-width: 760px) {
  .poke-texts > p + p {
    border-width: 0 0 0 1px;
  }
}

.poke-evolution {
  text-align: center;
  margin-top: 80px;
}

.poke-evolution .poke-evolution-title {
  font-size: 28px;
  font-size: 2.8rem;
  color: #182f93;
  font-weight: bold;
  margin-bottom: 60px;
  line-height: 1em;
}

@media screen and (max-width: 759px) {
  .poke-evolution .poke-evolution-title {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 759px) {
  .poke-evolution .poke-evolution-container {
    letter-spacing: -.34em;
    margin-left: -20px;
    text-align: left;
    padding: 0 20px;
  }
}

.poke-evolution .poke-evolution-container .poke-evolution-item {
  display: inline-block;
  vertical-align: top;
}

@media screen and (max-width: 759px) {
  .poke-evolution .poke-evolution-container .poke-evolution-item {
    width: 50%;
    padding-left: 20px;
    letter-spacing: 0;
  }
}

.poke-evolution .poke-evolution-container .poke-evolution-item + .poke-evolution-item {
  margin-left: 25px;
}

@media screen and (max-width: 759px) {
  .poke-evolution .poke-evolution-container .poke-evolution-item + .poke-evolution-item {
    margin: 0;
  }
}

@media screen and (min-width: 760px) and (max-width: 1024px) {
  .poke-evolution .poke-evolution-container .poke-evolution-item + .poke-evolution-item {
    margin: 0;
  }
}

.poke-evolution .poke-evolution-container .poke-evolution-item + .poke-evolution-item .thumblink-image {
  position: relative;
}

.poke-evolution .poke-evolution-container .poke-evolution-item + .poke-evolution-item .thumblink-image img {
  max-width: 232px;
}

.poke-evolution .poke-evolution-container .poke-evolution-item + .poke-evolution-item .thumblink-image::before {
  content: "";
  display: block;
  width: 83px;
  height: 43px;
  background: url("../images/icon-arrow.png");
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -55px;
  margin: auto;
}

@media screen and (max-width: 759px) {
  .poke-evolution .poke-evolution-container .poke-evolution-item + .poke-evolution-item .thumblink-image::before {
    width: 41px;
    height: 21px;
    background-size: cover;
    left: -30px;
  }
}

.poke-evolution .poke-evolution-container .poke-evolution-item + .poke-evolution-item .thumblink-image.noarrow::before {
  display: none;
}

@media screen and (max-width: 759px) {
  .poke-evolution .poke-evolution-container .poke-evolution-item + .poke-evolution-item:nth-child(2n+1) .thumblink-image::before {
    left: -18px;
  }
}

.poke-evolution .poke-evolution-container .poke-evolution-item.noarrow .thumblink-image::before {
  display: none;
}

@media screen and (min-width: 760px) and (max-width: 1024px) {
  .poke-evolution .poke-evolution-container.-tabVertical .poke-evolution-item:first-child {
    display: block;
  }
}

.poke-evolution.eevee .thumblink-image::before {
  display: none !important;
}

@media screen and (min-width: 760px) {
  .poke-evolution.eevee {
    margin-left: -55px;
    margin-right: -55px;
  }
}

@media screen and (min-width: 760px) and (max-width: 1024px) {
  .poke-evolution.eevee {
    margin-left: 0px;
    margin-right: 0px;
  }
}

@media screen and (max-width: 759px) {
  .poke-evolution.eevee .poke-evolution-container {
    text-align: center;
    margin-left: 0;
  }
  .poke-evolution.eevee .poke-evolution-container .poke-evolution-item {
    width: 100%;
    padding: 0;
  }
  .poke-evolution.eevee .poke-evolution-container .poke-evolution-item .thumblink {
    width: 49%;
  }
  .poke-evolution.eevee .poke-evolution-container .poke-evolution-item .thumblink .thumblink-image {
    margin: auto;
  }
}

.poke-evolution.eevee .poke-evolution-item {
  vertical-align: middle;
}

.poke-evolution.eevee .poke-evolution-item:nth-child(2) {
  background: #f6f1d3;
  position: relative;
  border-radius: 5px;
  padding: 20px 15px;
}

@media screen and (min-width: 760px) {
  .poke-evolution.eevee .poke-evolution-item:nth-child(2) {
    border-radius: 10px;
    padding: 35px 30px;
  }
}

@media screen and (min-width: 760px) and (max-width: 1024px) {
  .poke-evolution.eevee .poke-evolution-item:nth-child(2) {
    margin-top: 50px;
  }
}

@media screen and (max-width: 759px) {
  .poke-evolution.eevee .poke-evolution-item:nth-child(2) {
    margin-top: 50px;
  }
}

.poke-evolution.eevee .poke-evolution-item:nth-child(2)::before {
  content: "";
  display: block;
  width: 83px;
  height: 43px;
  background: url("../images/icon-arrow.png");
  background-size: cover;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: -55px;
  margin: auto;
}

@media screen and (max-width: 1024px) {
  .poke-evolution.eevee .poke-evolution-item:nth-child(2)::before {
    width: 41px;
    height: 21px;
    background-size: cover;
    top: -20px;
    left: 0;
    right: 0;
    bottom: auto;
    margin: auto;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

/*# sourceMappingURL=style.css.map */
