@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
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, font, 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 {
  margin: 0;
  padding: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing=0' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*#overview
色
*/
/*
---
name: 色／フォントサイズなど
category: -color fontsize
tag: setting
---
## ベースフォントサイズ
**PC**：16px  
**SP**：14px  

***

## BGカラー
**ベースBG　**：<font color="#fff">■</font> #fff  
**フッターBG**：<font color="#054c53">■</font> #054c53  

***

## フォントカラー
**通常テキスト**：<font color="#341c02">■</font> #000000  
**重要　　　　**：<font color="#AA0000">■</font> #AA0000  
**アクセント　**：<font color="#BF62EB">■</font> #BF62EB  
**注意　　　　**：<font color="#AA0000">■</font> #AA0000  
**リンクカラー**：<font color="#054c53">■</font> #054c53  
**ボタンテキスト**：<font color="#ffffff">■</font> #ffffff  
**ボタン**：<font color="#0f525e">■</font> #0f525e  

*/
/*
---
name: media query
category: -mixin
---
```scss
@include screen_s() {
  @content;
}
@include screen_m() {
  @content;
}
@include screen_l() {
  @content;
}
```
 */
@font-face {
  font-family: "icon";
  src: url("./fonts/icon.eot");
  src: url("./fonts/icon.eot?#iefix") format("eot"), url("./fonts/icon.woff2") format("woff2"), url("./fonts/icon.woff") format("woff"), url("./fonts/icon.ttf") format("truetype"), url("./fonts/icon.svg#icon") format("svg");
}

.mod-icon:before {
  font-family: "icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  /* speak: none; only necessary if not using the private unicode range (firstGlyph option) */
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  margin: 0 .5em;
}

.mod-icon.-arrow1:before {
  content: "\F001";
}

.mod-icon.-arrow1Left:before {
  content: "\F002";
}

.mod-icon.-arrow2:before {
  content: "\F003";
}

.mod-icon.-arrow2Left:before {
  content: "\F004";
}

.mod-icon.-blankWindow:before {
  content: "\F005";
}

.mod-icon.-blankWindow2:before {
  content: "\F006";
}

.mod-icon.-dotarrow:before {
  content: "\F007";
}

.mod-icon.-dotarrow_l:before {
  content: "\F008";
}

.mod-icon.-monbo:before {
  content: "\F009";
}

.mod-heading {
  font-weight: 500;
  margin-bottom: 20px;
}

.mod-heading.-lv1 {
  /*
---
name: 見出しレベル1
category: heading
---
```jade
h1.mod-heading.-lv1
  .sub-inner 見出し1
```
*/
}

@media screen and (min-width: 768px) {
  .mod-heading.-lv1 {
    font-size: 40px;
    font-size: 4rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

@media screen and (max-width: 767px) {
  .mod-heading.-lv1 {
    font-size: 40px;
    font-size: 4rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

.mod-heading.-lv2 {
  border: 1px solid #ddd;
  padding: .3em;
  /*
---
name: 見出しレベル2
category: heading
---
```jade
h2.mod-heading.-lv2
  .sub-inner 見出し2
```
*/
}

@media screen and (min-width: 768px) {
  .mod-heading.-lv2 {
    font-size: 30px;
    font-size: 3rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

@media screen and (max-width: 767px) {
  .mod-heading.-lv2 {
    font-size: 30px;
    font-size: 3rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

.mod-heading.-lv3 {
  border-bottom: 1px solid #ddd;
  padding-bottom: .3em;
  /*
---
name: 見出しレベル3
category: heading
---
```jade
h3.mod-heading.-lv3
  .sub-inner 見出し3
```
*/
}

@media screen and (min-width: 768px) {
  .mod-heading.-lv3 {
    font-size: 25px;
    font-size: 2.5rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

@media screen and (max-width: 767px) {
  .mod-heading.-lv3 {
    font-size: 25px;
    font-size: 2.5rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

.mod-heading.-lv3 > .sub-inner {
  border-left: 4px solid #ddd;
  padding-left: .3em;
}

.mod-heading.-lv4 {
  border-bottom: 1px solid #ddd;
  padding-bottom: .3em;
  /*
---
name: 見出しレベル4
category: heading
---
```jade
h4.mod-heading.-lv4
  .sub-inner 見出し4
```
*/
}

@media screen and (min-width: 768px) {
  .mod-heading.-lv4 {
    font-size: 20px;
    font-size: 2rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

@media screen and (max-width: 767px) {
  .mod-heading.-lv4 {
    font-size: 20px;
    font-size: 2rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

.mod-heading.-lv5 {
  /*
---
name: 見出しレベル5
category: heading
---
```jade
h5.mod-heading.-lv5
  .sub-inner 見出し5
```
*/
}

@media screen and (min-width: 768px) {
  .mod-heading.-lv5 {
    font-size: 18px;
    font-size: 1.8rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

@media screen and (max-width: 767px) {
  .mod-heading.-lv5 {
    font-size: 18px;
    font-size: 1.8rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

.mod-heading.-lv6 {
  /*
---
name: 見出しレベル6
category: heading
---
```jade
h6.mod-heading.-lv6
  .sub-inner 見出し6
```
*/
}

@media screen and (min-width: 768px) {
  .mod-heading.-lv6 {
    font-size: 16px;
    font-size: 1.6rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

@media screen and (max-width: 767px) {
  .mod-heading.-lv6 {
    font-size: 16px;
    font-size: 1.6rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

.mod-heading.-yellow {
  display: block;
  margin-left: -500%;
  padding-left: 500%;
  background: #fdd000;
  padding-top: 15px;
  padding-right: 30px;
  padding-bottom: 25px;
  color: #6a3906;
  font-size: 18px;
  font-size: 1.8rem;
  /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  line-height: 1.2em;
}

.mod-heading.-yellow.-lv1 {
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .mod-heading.-yellow {
    display: inline-block;
    font-size: 32px;
    font-size: 3.2rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
    line-height: 1.2em;
  }
  .mod-heading.-yellow.-lv1 {
    top: -65px;
    margin-bottom: -50px;
  }
}

.mod-heading.-green {
  line-height: 1.4;
  font-size: 21px;
  font-size: 2.1rem;
  /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  color: #054c53;
  text-align: center;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .mod-heading.-green {
    font-size: 38px;
    font-size: 3.8rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

.mod-heading.-middle {
  line-height: 1.47;
  font-size: 17px;
  font-size: 1.7rem;
  /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  color: #341c02;
  text-align: left;
  font-weight: bold;
  margin: 30px 0 10px;
}

@media screen and (min-width: 768px) {
  .mod-heading.-middle {
    line-height: 2.27;
    font-size: 22px;
    font-size: 2.2rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
    margin: 65px 0 15px;
  }
}

.mod-heading.-newsMiddle {
  line-height: 1.47;
  font-size: 17px;
  font-size: 1.7rem;
  /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  color: #054c53;
  text-align: center;
  font-weight: bold;
  margin: 30px 0 10px;
}

@media screen and (min-width: 768px) {
  .mod-heading.-newsMiddle {
    line-height: 2.27;
    font-size: 22px;
    font-size: 2.2rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
    margin: 0 0 15px;
  }
}

.mod-heading.-newsindex {
  background: #fdd000;
  text-align: center;
  padding: 15px;
  margin: 50px 0 30px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .mod-heading.-newsindex {
    padding: 30px;
    margin: 65px 0;
  }
}

.mod-heading.-newsindex img {
  max-height: 47px;
}

@media screen and (min-width: 768px) {
  .mod-heading.-newsindex img {
    max-height: 100px;
  }
}

.mod-heading.-newsindex::after {
  content: "";
  display: block;
  width: auto;
  height: 5px;
  background: url("/ex/meitantei_pikachu/common/images//gizagiza.png") bottom left repeat-x;
  background-size: auto 5px;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .mod-heading.-newsindex::after {
    height: 12px;
    background-size: auto 12px;
    bottom: -12px;
  }
  .mod-heading.-newsindex::after img {
    max-width: 100%;
  }
}

.mod-heading.-img {
  text-align: center;
  margin: 2em auto;
  /*
---
name: 画像見出し
category: heading
---
```jade
.mod-heading.-img
  img(data-imagesrc="/ex/meitantei_pikachu/common/images/about/heading3@2x.png" alt="舞台")
```
*/
}

@media screen and (min-width: 768px) {
  .mod-heading.-img {
    margin: 60px auto;
  }
}

.mod-heading.-type1 {
  margin-bottom: 0;
  /*
---
name: 見出しレベル6
category: heading
---
```jade
h6.mod-heading.-type1
  .sub-inner PC22px:SPxxpx
```
*/
}

@media screen and (min-width: 768px) {
  .mod-heading.-type1 {
    font-size: 22px;
    font-size: 2.2rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

@media screen and (max-width: 767px) {
  .mod-heading.-type1 {
    font-size: 18px;
    font-size: 1.8rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

@font-face {
  font-family: 'icon';
  src: url("fonts/icon.eot?-sctq16");
  src: url("fonts/icon.eot?#iefix-sctq16") format("embedded-opentype"), url("fonts/icon.ttf?-sctq16") format("truetype"), url("fonts/icon.woff?-sctq16") format("woff"), url("fonts/icon.svg?-sctq16#icon") format("svg");
  font-weight: normal;
  font-style: normal;
}

/*
---
name: テキスト
category: text
---
font-weightは300と500を使用（デザインに合わせて）
 */
sup {
  vertical-align: super;
  font-size: xx-small;
}

sub {
  vertical-align: sub;
  font-size: xx-small;
}

.mod-para {
  margin: 1em 0;
  /*
---
name: 段落
category: text
---
段落
上下にマージンあり。first/last-childでマージンカット
```jade
p.mod-para ああああああああああ
p.mod-para ああああああああああ
p.mod-para ああああああああああ
```
*/
}

.mod-para:first-child {
  margin-top: 0;
}

.mod-para:last-child {
  margin-bottom: 0;
}

.mod-para.-lead {
  /*
---
name: リードテキスト
category: text
---
リードテキスト
フォントサイズ大きめ
上下にマージンあり。first/last-childでマージンカット
```jade
p.mod-para.-lead ああああああああああ
p.mod-para.-lead ああああああああああ
p.mod-para.-lead ああああああああああ
```
*/
}

@media screen and (min-width: 768px) {
  .mod-para.-lead {
    max-width: 820px;
    margin: 2em auto;
  }
}

/*
---
name: 太字
category: text
---
```jade
p._bold あああああああああああああああああああああああああああああああ
```
*/
._bold {
  font-weight: bold;
}

/*
---
name: 重要
category: text
---
```jade
p._strong あああああああああああああああああああああああああああああああ
```
*/
._strong {
  font-weight: bold;
  color: #AA0000;
}

/*
---
name: アクセント
category: text
---
```jade
p._accent あああああああああああああああああああああああああああああああ
```
*/
._accent {
  color: #BF62EB;
}

/*
---
name: 注意
category: text
---
```jade
p._attention あああああああああああああああああああああああああああああああ
```
*/
._attention {
  color: #AA0000;
}

.mod-caption {
  margin: 5px 0px;
  line-height: 1.5em;
  /*
---
name: キャプション
category: text
---
画像の上や下に置くキャプション。
```jade
p.mod-image: img(src="https://placehold.jp/fff/800x400.png?text=dummy" alt="")
p.mod-caption キャプション。
```
*/
}

.mod-caption.-type2 {
  text-align: center;
  /*
---
name: キャプション
category: text
---
画像の上や下に置くキャプション。
```jade
p.mod-image: img(src="https://placehold.jp/fff/800x400.png?text=dummy" alt="")
p.mod-caption.-type2 キャプション。
```
*/
}

@media screen and (max-width: 767px) {
  .mod-caption.-type2 {
    font-size: 12px;
    font-size: 1.2rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

.mod-caption:first-child {
  margin-top: 0;
}

.mod-caption:last-child {
  margin-bottom: 0;
}

._cw {
  padding-left: 30px;
  padding-right: 30px;
}

@media screen and (min-width: 768px) {
  ._cw {
    max-width: 980px;
    margin: auto;
  }
}

body {
  background: #054c53;
}

.outline {
  background: #fff;
}

.outline > .o-body > .o-content {
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .outline > .o-body > .o-content {
    max-width: 980px;
  }
}

.outline > .o-footer {
  background: #054c53;
}

.outline > .o-footer .links {
  line-height: 1em;
}

@media screen and (min-width: 768px) {
  .outline > .o-footer .links {
    text-align: center;
    padding: 30px 0;
  }
}

.outline > .o-footer .links li {
  font-size: 13px;
  font-size: 1.3rem;
  /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  border-bottom: 1px solid #5f7d80;
}

.outline > .o-footer .links li:first-child {
  border-top: 1px solid #5f7d80;
}

.outline > .o-footer .links li a {
  display: block;
  padding: 15px 15px;
  text-decoration: none;
  color: white;
}

@media screen and (min-width: 768px) {
  .outline > .o-footer .links li {
    font-size: 14.34px;
    font-size: 1.434rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
    display: inline-block;
    border-width: 0;
    padding: 0 30px;
  }
  .outline > .o-footer .links li:first-child {
    border-top: none;
  }
  .outline > .o-footer .links li a {
    display: inline-block;
    padding: 0;
    font-weight: 500;
  }
}

.outline > .o-footer .copyright {
  font-size: 10px;
  font-size: 1rem;
  /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  line-height: 1.4em;
  padding: 10px 15px 15px;
  color: white;
}

@media screen and (min-width: 768px) {
  .outline > .o-footer .copyright {
    padding: 0px 0px 15px;
    text-align: center;
    line-height: 2em;
  }
}

.outline > .o-footer .scrollTop {
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 50;
  display: none;
}

.outline > .o-footer .scrollTop a {
  display: block;
  width: 60px;
  padding-top: 60px;
  height: 0;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 851% 733%;
  background-position: 78.13541% 59.28854%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
}

.outline > .o-footer .scrollTop a:after {
  content: '';
  display: block;
  padding-top: 100%;
}

@media screen and (min-width: 768px) {
  .outline > .o-footer .scrollTop a {
    width: 87px;
    padding-top: 87px;
    height: 0;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    font-size: 0;
    background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
    background-size: 851% 733%;
    background-position: 78.13541% 59.28854%;
    /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
  }
  .outline > .o-footer .scrollTop a:after {
    content: '';
    display: block;
    padding-top: 100%;
  }
}

.mod-gNav .mod-nav {
  display: block;
  background: white;
}

@media screen and (max-width: 767px) {
  .mod-gNav .mod-nav {
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem.top {
    position: fixed;
    z-index: 1;
    background: white;
  }
  .mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem.news {
    padding-left: 122.5px;
  }
}

@media screen and (min-width: 768px) and (max-width: 768px) {
  .mod-gNav .mod-nav {
    zoom: .75;
    padding: 10px 0;
  }
}

.mod-gNav .mod-nav > ul.sub-navlist {
  display: block;
  letter-spacing: -.34em;
  white-space: nowrap;
  line-height: 0;
}

.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem {
  letter-spacing: 0;
  display: inline-block;
  position: relative;
}

.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem::before {
  content: "";
  display: block;
  width: 2px;
  padding-top: 20px;
  height: 0;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 25525% 2198%;
  background-position: 100% 14.89869%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem::before:after {
  content: '';
  display: block;
  padding-top: 1000%;
}

@media screen and (min-width: 768px) {
  .mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem::before {
    width: 2px;
    padding-top: 14px;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    font-size: 0;
    background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
    background-size: 51050% 6279%;
    background-position: 99.80373% 20.23121%;
    /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
  }
  .mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem::before:after {
    content: '';
    display: block;
    padding-top: 700%;
  }
}

.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem > a {
  display: block;
}

.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem.is-current a,
.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:hover a {
  opacity: .75;
}

.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem.top.is-current {
  opacity: 1;
}

.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(1) > a {
  width: 122.5px;
  padding-top: 50px;
  height: 0;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 417% 879%;
  background-position: 66.88144% 86.0077%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
}

.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(1) > a:after {
  content: '';
  display: block;
  padding-top: 40.81633%;
}

@media screen and (min-width: 768px) {
  .mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(1) > a {
    width: 168px;
    padding-top: 65px;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    font-size: 0;
    background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
    background-size: 608% 1352%;
    background-position: 26.61196% 95.8231%;
    /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
  }
  .mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(1) > a:after {
    content: '';
    display: block;
    padding-top: 38.69048%;
  }
}

.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(2) > a {
  width: 84.5px;
  padding-top: 50px;
  height: 0;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 604% 879%;
  background-position: 82.62911% 43.6457%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
}

.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(2) > a:after {
  content: '';
  display: block;
  padding-top: 59.1716%;
}

@media screen and (min-width: 768px) {
  .mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(2) > a {
    width: 101px;
    padding-top: 65px;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    font-size: 0;
    background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
    background-size: 1011% 1352%;
    background-position: 98.47826% 15.35627%;
    /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
  }
  .mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(2) > a:after {
    content: '';
    display: block;
    padding-top: 64.35644%;
  }
}

.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(3) > a {
  width: 163.5px;
  padding-top: 50px;
  height: 0;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 312% 879%;
  background-position: 0% 50.06418%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
}

.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(3) > a:after {
  content: '';
  display: block;
  padding-top: 30.58104%;
}

@media screen and (min-width: 768px) {
  .mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(3) > a {
    width: 217px;
    padding-top: 65px;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    font-size: 0;
    background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
    background-size: 471% 1352%;
    background-position: 0% 95.8231%;
    /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
  }
  .mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(3) > a:after {
    content: '';
    display: block;
    padding-top: 29.95392%;
  }
}

.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(4) > a {
  width: 124.5px;
  padding-top: 50px;
  height: 0;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 410% 879%;
  background-position: 33.67876% 86.0077%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
}

.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(4) > a:after {
  content: '';
  display: block;
  padding-top: 40.16064%;
}

@media screen and (min-width: 768px) {
  .mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(4) > a {
    width: 163px;
    padding-top: 65px;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    font-size: 0;
    background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
    background-size: 626% 1352%;
    background-position: 47.2028% 95.8231%;
    /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
  }
  .mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(4) > a:after {
    content: '';
    display: block;
    padding-top: 39.8773%;
  }
}

.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(5) > a {
  width: 144px;
  padding-top: 50px;
  height: 0;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 355% 879%;
  background-position: 45.97544% 50.06418%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
}

.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(5) > a:after {
  content: '';
  display: block;
  padding-top: 34.72222%;
}

@media screen and (min-width: 768px) {
  .mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(5) > a {
    width: 187px;
    padding-top: 65px;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    font-size: 0;
    background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
    background-size: 546% 1352%;
    background-position: 84.41247% 71.25307%;
    /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
  }
  .mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(5) > a:after {
    content: '';
    display: block;
    padding-top: 34.75936%;
  }
}

.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(6) > a {
  width: 125px;
  padding-top: 50px;
  height: 0;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 408% 879%;
  background-position: 0% 86.0077%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
}

.mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(6) > a:after {
  content: '';
  display: block;
  padding-top: 40%;
}

@media screen and (min-width: 768px) {
  .mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(6) > a {
    width: 160px;
    padding-top: 65px;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    font-size: 0;
    background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
    background-size: 638% 1352%;
    background-position: 67.13124% 95.8231%;
    /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
  }
  .mod-gNav .mod-nav > ul.sub-navlist > li.sub-navitem:nth-child(6) > a:after {
    content: '';
    display: block;
    padding-top: 40.625%;
  }
}

.mod-gNav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

@media screen and (min-width: 768px) {
  .mod-gNav {
    margin: 0 -500%;
    padding: 0 500%;
    text-align: center;
  }
}

.mod-section {
  padding: 0px 0 60px;
  background: url("/ex/meitantei_pikachu/common/images/bg_section@2x.png") top left no-repeat;
  background-size: 81% auto;
  /*
---
name: セクション
category: section
---
見出しを伴うコンテンツの括りとして使用。  
見出しがない場合は.mod-group。  
コンテンツの括りとして見出しとセットで使います。
```jade
section.mod-section
  h2.mod-heading.-lv2
    div.sub-inner ほげほげ
  p.mod-para あああああああああああああああああああああああああああああああああああああああああああああああ
  p.mod-para あああああああああああああああああああああああああああああああああああああああああああああああ

  section.mod-section
    h3.mod-heading.-lv3
      div.sub-inner フガフガ1
    p.mod-para あああああああああああああああああああああああああああああああああああああああああああああああ
    p.mod-para あああああああああああああああああああああああああああああああああああああああああああああああ

  section.mod-section
    h3.mod-heading.-lv3
      div.sub-inner フガフガ2
    p.mod-para あああああああああああああああああああああああああああああああああああああああああああああああ
    p.mod-para あああああああああああああああああああああああああああああああああああああああああああああああ
```
 */
}

@media screen and (min-width: 768px) {
  .mod-section {
    padding: 0px 0 120px;
    background: url("/ex/meitantei_pikachu/common/images/bg_section.png") top left no-repeat;
    background-size: auto;
  }
}

.mod-section.-last {
  background-image: url("/ex/meitantei_pikachu/common/images/bg_section@2x.png"), url("/ex/meitantei_pikachu/common/images/bg_sectionBottom@2x.png");
  background-position: top left,
 bottom right;
  background-repeat: no-repeat,
 no-repeat;
  background-size: 81% auto,
 81% auto;
}

@media screen and (min-width: 768px) {
  .mod-section.-last {
    background-image: url("/ex/meitantei_pikachu/common/images/bg_section.png"), url("/ex/meitantei_pikachu/common/images/bg_sectionBottom.png");
    background-position: top left,
 bottom right;
    background-repeat: no-repeat,
 no-repeat;
    background-size: auto,
 auto;
  }
}

.mod-section.-wide {
  margin-left: -30px;
  margin-right: -30px;
  padding-left: 30px;
  padding-right: 30px;
}

@media screen and (min-width: 768px) {
  .mod-section.-wide {
    margin-left: -500%;
    margin-right: -500%;
    padding-left: 500%;
    padding-right: 500%;
  }
}

.mod-section.-bg {
  background: url("/ex/meitantei_pikachu/common/images/bg_sectionfill.png") top center;
  background-size: 60px 60px;
}

@media screen and (min-width: 768px) {
  .mod-section.-bg {
    background-size: auto;
  }
}

.mod-pager {
  text-align: center;
  letter-spacing: -.222em;
  /*
---
name: ページャー
category: pager
---
```jade
ul.mod-pager
  li.sub-prev: span 前へ
  li.sub-li: span 1
  li.sub-li: a(href="") 2
  li.sub-li: a(href="") 3
  li.sub-next: a(href="") 次へ
```
 */
}

.mod-pager > li {
  display: inline-block;
  margin: 0 5px;
  letter-spacing: normal;
}

.mod-pager > li > a, .mod-pager > li > span {
  display: block;
  padding: 5px 10px;
  line-height: 1em;
}

.mod-pager > li > span {
  background: #ccc;
}

.mod-pager > li.sub-prev > span, .mod-pager > li.sub-next > span {
  background: transparent;
}

@media screen and (max-width: 767px) {
  .mod-pager > li {
    display: none;
  }
  .mod-pager > li.sub-prev, .mod-pager > li.sub-next {
    display: inline-block;
    width: 40%;
    margin: 0;
  }
}

/*
---
name: imgのレスポンシブ対応
category: image
---
`<img[data-imagesrc="画像のパス"]>`としておき、スマホ用画像ファイル名を「xxx@2x.png」のように「@2x」をつける。大きな画面では「@2x」の付いていない画像を表示します。
```jade
p.mod-image: img(data-imagesrc="/ex/meitantei_pikachu/styleguide/aigis_assets/images/dummyimage@2x.png" alt="")
```
*/
img {
  vertical-align: top;
  max-width: 100%;
}

.mod-image {
  text-align: center;
  /*
---
name: デフォルト
category: image
---
画像を左右中央配置し、max-width:100%にします。
```jade
p.mod-image: img(src="https://placehold.jp/fff/800x400.png?text=dummy" alt="")
```
*/
}

.mod-image.-wide {
  margin-left: -15px;
  margin-right: -15px;
  /*
---
name: ワイド
category: image
---
通常より大きく表示します。
```jade
p.mod-image.-wide: img(src="https://placehold.jp/fff/800x400.png?text=dummy" alt="")
```
*/
}

.mod-image.-wide > img {
  max-width: auto;
  width: 100%;
}

.mod-image.-narrow {
  padding-left: 15%;
  padding-right: 15%;
  /*
---
name: ナロー
category: image
---
通常より小さく表示します。
```jade
p.mod-image.-narrow: img(src="https://placehold.jp/fff/800x400.png?text=dummy" alt="")
```
*/
}

.mod-image.-cv {
  padding-left: 35px;
  padding-right: 35px;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .mod-image.-cv {
    padding-left: 0px;
    padding-right: 35px;
    margin-bottom: 0px;
  }
}

.mod-image.-fit img {
  max-width: auto;
  width: 100%;
  /*
---
name: フィット
category: image
---
エリアいっぱいに表示します。
```jade
p.mod-image.-fit: img(src="https://placehold.jp/fff/800x400.png?text=dummy" alt="")
```
*/
}

.mod-image.-dot {
  position: relative;
}

.mod-image.-dot::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: url(/ex/meitantei_pikachu/common/images/overlaydot.png);
  opacity: .8;
}

.mod-image.-dot img {
  width: 100%;
}

.mod-image.-main {
  margin-top: 50px;
}

@media screen and (min-width: 768px) {
  .mod-image.-main {
    margin-top: 65px;
    height: 400px;
  }
  .mod-image.-main img {
    display: none;
  }
  #about .mod-image.-main {
    background: url("/ex/meitantei_pikachu/common/images/about/main.jpg") top center no-repeat;
    background-size: cover;
  }
  #pikachu .mod-image.-main {
    background: url("/ex/meitantei_pikachu/common/images/pikachu/main.jpg") top center no-repeat;
    background-size: cover;
  }
  #game .mod-image.-main {
    background: url("/ex/meitantei_pikachu/common/images/game/main.jpg") top center no-repeat;
    background-size: cover;
  }
  #character .mod-image.-main {
    background: url("/ex/meitantei_pikachu/common/images/character/main.jpg") top center no-repeat;
    background-size: cover;
  }
}

.mod-image.-topbanner {
  margin: 10px auto 0px;
}

@media screen and (min-width: 768px) {
  .mod-image.-topbanner {
    margin: 25px auto 0px;
  }
}

.mod-list {
  list-style: none;
  margin: 1em 0;
  line-height: 1.2em;
  /*
---
name: リスト
category: list
---
デフォルトではビュレットはつきません。
```jade
ul.mod-list
  li.sub-li: .sub-div デフォルト
  li.sub-li: .sub-div デフォルト
```
*/
}

.mod-list:first-child {
  margin-top: 0;
}

.mod-list:last-child {
  margin-bottom: 0;
}

.mod-list > .sub-li {
  *zoom: 1;
  /*
---
name: clearfix
category: -mixin
---
```scss
  @include clearfix;
```
 */
  margin: .5em 0;
}

.mod-list > .sub-li:after {
  content: '';
  display: table;
  clear: both;
}

.mod-list > .sub-li > .sub-div {
  overflow: hidden;
}

.mod-list.-dot {
  /*
---
name: リスト（ドット）
category: list
---
```jade
ul.mod-list.-dot
  li.sub-li: .sub-div ドット
  li.sub-li: .sub-div ドット
```
*/
}

.mod-list.-dot > li.sub-li {
  margin-left: 1em;
  list-style-type: none;
}

.mod-list.-dot > li.sub-li:before {
  content: '・';
  font-size: larger;
  font-weight: 500;
  margin-left: -1em;
  vertical-align: middle;
}

.mod-list.-dot > li.sub-li > .sub-div {
  display: inline;
}

.mod-list.-note {
  font-size: 11px;
  font-size: 1.1rem;
  /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  color: #666666;
  /*
---
name: リスト（注釈）
category: list
---
```jade
ul.mod-list.-note
  li.sub-li: .sub-div 注釈
  li.sub-li: .sub-div 注釈
```
*/
}

@media screen and (min-width: 768px) {
  .mod-list.-note {
    font-size: 12px;
    font-size: 1.2rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

.mod-list.-note > li.sub-li {
  margin-left: 1em;
  list-style-type: none;
}

.mod-list.-note > li.sub-li:before {
  content: '※';
  margin-left: -1em;
  vertical-align: middle;
}

.mod-list.-note > li.sub-li > .sub-div {
  display: inline;
}

.mod-list.-num {
  counter-reset: olcount 0;
  /*
---
name: リスト（数字）
category: list
---
```jade
ul.mod-list.-num
  li.sub-li: .sub-div 数字
  li.sub-li: .sub-div 数字
```
*/
}

.mod-list.-num > li.sub-li {
  list-style-type: none;
}

.mod-list.-num > li.sub-li:before {
  content: counter(olcount, decimal) ". ";
  counter-increment: olcount 1;
  float: left;
}

.mod-list.-num > li.sub-li > .sub-div {
  display: block;
}

.mod-list.-num > li.sub-li > .sub-div .mod-list.-num > li.sub-li:before {
  content: "（" counter(olcount, decimal) "）";
}

.mod-list.-note.-num {
  /*
---
name: リスト（注釈数字）
category: list
---
```jade
ul.mod-list.-note.-num
  li.sub-li: .sub-div 注釈数字
  li.sub-li: .sub-div 注釈数字
```
*/
}

.mod-list.-note.-num > li.sub-li:before {
  content: "※" counter(olcount, decimal) ". ";
}

.mod-list.-link {
  /*
---
name: リスト（リンク）
category: list
---
```jade
ul.mod-list.-link
  li.sub-li: a.sub-div(href="" target="_blank") リンク
  li.sub-li: a.sub-div(href="" target="_blank") リンク
```
*/
}

.mod-list.-link > li.sub-li {
  list-style-type: none;
  margin-left: 1em;
}

.mod-list.-link > li.sub-li:before {
  font-family: 'icon';
  content: "\F003";
  vertical-align: middle;
  display: inline-block;
  margin-left: -1em;
  margin-right: .5em;
}

.mod-list.-link > li.sub-li > .sub-div {
  display: inline-block;
  vertical-align: top;
}

.mod-list.-horizontal {
  margin-right: -2em;
  /*
---
name: リスト（横並び）
category: list
---
```jade
ul.mod-list.-dot.-horizontal
  li.sub-li: .sub-div ドット
  li.sub-li: .sub-div ドット
ul.mod-list.-note.-horizontal
  li.sub-li: .sub-div 注釈
  li.sub-li: .sub-div 注釈
ul.mod-list.-num.-horizontal
  li.sub-li: .sub-div 数字
  li.sub-li: .sub-div 数字
ul.mod-list.-note.-num.-horizontal
  li.sub-li: .sub-div 注釈数字
  li.sub-li: .sub-div 注釈数字
ul.mod-list.-link.-horizontal
  li.sub-li: a.sub-div(href="" target="_blank") リンク
  li.sub-li: a.sub-div(href="" target="_blank") リンク
```
*/
}

.mod-list.-horizontal > li.sub-li {
  display: inline-block;
  margin-right: 2em;
}

@media screen and (min-width: 768px) {
  .mod-list.-horizontalPc {
    margin-right: -3em;
    /*
---
name: リスト（横並びPCのみ）
category: list
---
```jade
ul.mod-list.-dot.-horizontalPc
  li.sub-li: .sub-div ドット
  li.sub-li: .sub-div ドット
ul.mod-list.-note.-horizontalPc
  li.sub-li: .sub-div 注釈
  li.sub-li: .sub-div 注釈
ul.mod-list.-num.-horizontalPc
  li.sub-li: .sub-div 数字
  li.sub-li: .sub-div 数字
ul.mod-list.-note.-num.-horizontalPc
  li.sub-li: .sub-div 注釈数字
  li.sub-li: .sub-div 注釈数字
ul.mod-list.-link.-horizontalPc
  li.sub-li: a.sub-div(href="" target="_blank") リンク
  li.sub-li: a.sub-div(href="" target="_blank") リンク
```
*/
  }
  .mod-list.-horizontalPc > li.sub-li {
    display: inline-block;
    margin-right: 3em;
  }
}

@media screen and (max-width: 767px) {
  .mod-list.-horizontalSp {
    margin-right: -3em;
    /*
---
name: リスト（横並びSPのみ）
category: list
---
```jade
ul.mod-list.-dot.-horizontalSp
  li.sub-li: .sub-div ドット
  li.sub-li: .sub-div ドット
ul.mod-list.-note.-horizontalSp
  li.sub-li: .sub-div 注釈
  li.sub-li: .sub-div 注釈
ul.mod-list.-num.-horizontalSp
  li.sub-li: .sub-div 数字
  li.sub-li: .sub-div 数字
ul.mod-list.-note.-num.-horizontalSp
  li.sub-li: .sub-div 注釈数字
  li.sub-li: .sub-div 注釈数字
ul.mod-list.-link.-horizontalSp
  li.sub-li: a.sub-div(href="" target="_blank") リンク
  li.sub-li: a.sub-div(href="" target="_blank") リンク
```
*/
  }
  .mod-list.-horizontalSp > li.sub-li {
    display: inline-block;
    margin-right: 3em;
  }
}

.blankicon, a[target="_blank"]:after, ._areaLink[target="_blank"] .mod-button > .sub-inner::after,
a.mod-button[target="_blank"] > .sub-inner::after, .mod-button[target="_blank"] > .sub-inner:after {
  font-family: 'icon';
  content: "\F006";
  font-size: smaller;
  font-weight: normal;
  margin-left: 5px;
  vertical-align: middle;
  display: inline-block;
}

._areaLink {
  display: inline-block;
  text-decoration: none;
  color: #341c02;
  /*
---
name: エリアリンク
category: link/button
---
一区画をまるっとクリカブルにしたいきに。
配下のボタンにhoverを適用します。
```jade
.mod-column
  .sub-cell._x1of3
    .sub-inner
      a._areaLink(href="")
        .mod-group.-typeDummy2
          p.mod-image: img(src="https://placehold.jp/fff/1000x700.png?text=dummy" alt="")
          p.mod-para ああああああああああああああああああああああああああああああああああああああ
          ._inlineCenter: span.mod-button._x2of3: span.sub-inner ボタン
  .sub-cell._x1of3
    .sub-inner
      a._areaLink(href="" target="_blank")
        .mod-group.-typeDummy2
          p.mod-image: img(src="https://placehold.jp/fff/1000x700.png?text=dummy" alt="")
          p.mod-para ああああああああああああああああああああああああああああああああああああああ
          ._inlineCenter: span.mod-button._x2of3: span.sub-inner ボタン
```
*/
}

._areaLink:hover .mod-button {
  background: #146a79;
  cursor: pointer;
}

._areaLink:hover .mod-button > .sub-inner {
  color: white;
}

._areaLink:hover .mod-button > .sub-inner::before {
  content: "⇒";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  margin-top: -.3em;
  top: 0;
  bottom: 0;
  left: 1.2em;
  margin: auto;
}

a {
  text-decoration: underline;
  color: #054c53;
}

a:hover {
  text-decoration: none;
  cursor: pointer;
}

a[target="_blank"]:after {
  /*
---
name: 別窓付きリンク
category: link
---
```jade
p.mod-para 別窓アイコン付き
  a(href="//www.google.com" target="_blank") テキストリンク
  |　target="_blank"で勝手につく
```
*/
}

a._noicon {
  /*
---
name: 別窓無し別窓リンク
category: link
---
```jade
p.mod-para 別窓アイコン無し
  a._noicon(href="//www.google.com" target="_blank") テキストリンク。
  |_noiconで別窓アイコンを消す。バナーなどに使う
```
*/
}

a._noicon[target="_blank"]:after {
  display: none;
}

a img {
  vertical-align: middle;
}

.mod-button {
  background: #0f525e;
  position: relative;
  display: inline-block;
  text-decoration: none;
  border-radius: 100px;
  line-height: 1.5em;
  color: white;
  font-size: 12px;
  font-size: 1.2rem;
  /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
}

@media screen and (min-width: 768px) {
  .mod-button {
    font-size: 16px;
    font-size: 1.6rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

.mod-button > .sub-inner {
  display: block;
  padding: .5em 2.5em .5em 1.5em;
  text-align: left;
  text-decoration: none;
  color: white;
  position: relative;
}

.mod-button > .sub-inner::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  padding-top: 1.2em;
  height: 0;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 3403% 2930%;
  background-position: 96.06458% 31.44876%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
  font-size: .8em;
  vertical-align: middle;
  line-height: 1em;
  margin-top: -.3em;
  position: absolute;
  top: 0;
  bottom: 0;
  right: .8em;
  margin: auto;
}

.mod-button > .sub-inner::before:after {
  content: '';
  display: block;
  padding-top: 100%;
}

.mod-button:hover {
  background: #146a79;
  cursor: pointer;
  /*
---
name: ボタン
category: link/button
---
```jade
a.mod-button(href=""): .sub-inner ボタン
a.mod-button(href="" target="_blank"): .sub-inner ボタン
```
*/
}

.mod-button:hover > .sub-inner {
  color: white;
}

.mod-button.-red {
  background: #c70001;
  color: white;
  font-size: 10px;
  font-size: 1rem;
  /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
}

@media screen and (min-width: 768px) {
  .mod-button.-red {
    font-size: 12px;
    font-size: 1.2rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

.mod-button.-red:hover {
  background: #e63132;
}

.mod-button:active {
  position: relative;
  top: 1px;
}

.mod-button.-wide {
  display: block;
  /*
---
name: 幅いっぱいのボタン
category: link/button
---
```jade
a.mod-button.-wide(href="#"): span.sub-inner ボタン
a.mod-button.-wide(href="#" target="_blank"): span.sub-inner ボタン
```
*/
}

.mod-button.-large {
  /*
---
name: 大きいボタン
category: link/button
---
```jade
a.mod-button.-large(href="#"): span.sub-inner ボタン
a.mod-button.-large(href="#" target="_blank"): span.sub-inner ボタン
```
*/
}

.mod-button.-large > .sub-inner {
  padding: 20px 80px;
  font-size: larger;
}

._areaLink[target="_blank"]:after {
  display: none;
}

.mod-button[target="_blank"]:after {
  display: none;
}

a:hover .mod-button {
  background: #eee;
}

a:active .mod-button {
  position: relative;
  top: 1px;
}

/*
---
name: 定義リスト
category:
  - dl
---

```jade
dl.mod-dl
  dt.sub-dt あああああ
  dd.sub-dd いいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいい
```
*/
.mod-dl {
  margin: 1em 0;
}

.mod-dl:first-child {
  margin-top: 0;
}

.mod-dl:last-child {
  margin-bottom: 0;
}

.mod-dl.-horizontal {
  /*
---
name: PC/SP横並び
category:
  - dl
---

```jade
dl.mod-dl.-horizontal
  dt.sub-dt あああああ
  dd.sub-dd いいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいい
```
*/
  *zoom: 1;
  /*
---
name: clearfix
category: -mixin
---
```scss
  @include clearfix;
```
 */
}

.mod-dl.-horizontal:after {
  content: '';
  display: table;
  clear: both;
}

.mod-dl.-horizontal .sub-dt {
  float: left;
  margin-right: 10px;
}

.mod-dl.-horizontal .sub-dd {
  overflow: hidden;
}

.mod-dl.-horizontal.-separator {
  /*
---
name: PC/SP横並び　区切りあり
category:
  - dl
---

```jade
dl.mod-dl.-horizontal.-separator
  dt.sub-dt あああああ
  dd.sub-dd いいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいい
```
*/
}

.mod-dl.-horizontal.-separator .sub-dt {
  float: left;
  margin-right: 0px;
  padding-right: 10px;
  position: relative;
}

.mod-dl.-horizontal.-separator .sub-dt:after {
  content: ":";
  position: absolute;
  right: 0.2em;
  top: 0;
}

@media screen and (min-width: 768px) {
  .mod-dl.-horizontalPc {
    /*
---
name: PC横並び SP縦積み
category:
  - dl
---

```jade
dl.mod-dl.-horizontalPc
  dt.sub-dt あああああ
  dd.sub-dd いいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいい
```
*/
    *zoom: 1;
    /*
---
name: clearfix
category: -mixin
---
```scss
  @include clearfix;
```
 */
  }
  .mod-dl.-horizontalPc:after {
    content: '';
    display: table;
    clear: both;
  }
  .mod-dl.-horizontalPc .sub-dt {
    float: left;
    margin-right: 10px;
  }
  .mod-dl.-horizontalPc .sub-dd {
    overflow: hidden;
  }
}

@media screen and (max-width: 767px) {
  .mod-dl.-horizontalSp {
    /*
---
name: PC縦積み SP横並び
category:
  - dl
---

```jade
dl.mod-dl.-horizontalSp
  dt.sub-dt あああああ
  dd.sub-dd いいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいい
```
*/
    *zoom: 1;
    /*
---
name: clearfix
category: -mixin
---
```scss
  @include clearfix;
```
 */
  }
  .mod-dl.-horizontalSp:after {
    content: '';
    display: table;
    clear: both;
  }
  .mod-dl.-horizontalSp .sub-dt {
    float: left;
    margin-right: 10px;
  }
  .mod-dl.-horizontalSp .sub-dd {
    overflow: hidden;
  }
}

.mod-dl.-cv > .sub-dt {
  background: #6a3906;
  color: white;
  margin: 0;
  padding: 0 1em;
}

.mod-dl.-cv > .sub-dd {
  background: #fff6cc;
  margin: 0;
  padding: 1em 1em 1em 2em;
}

.mod-dl.-cv > .sub-dd .mod-list > .sub-li {
  margin: 0;
}

table.mod-table {
  width: 100%;
  /*
---
name: テーブル
category: table
---
普通のテーブル
```jade
table.mod-table 
  colgroup
    col(width="50%")
    col(width="50%")
  thead
    tr
      th aaaaaa
      th aaaaaa
  tbody
    tr
      td aaaaaa
      td aaaaaa
    tr
      td aaaaaa
      td aaaaaa
```
*/
}

table.mod-table th, table.mod-table td {
  border: 1px solid #000;
  padding: 10px;
}

@media screen and (min-width: 768px) {
  .mod-likeTable {
    display: table;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 1.3em;
    margin-bottom: 40px;
    border: 3px solid #23c6e8;
  }
  .mod-likeTable:last-child {
    margin-bottom: 0;
  }
  .mod-likeTable .sub-head {
    display: table-row;
  }
  .mod-likeTable .sub-head > div {
    padding: 1em;
    background: #9ee7f6;
    display: table-cell;
    text-align: center;
    border: 2px solid #bec8ca;
    border-width: 0 2px 2px 0;
    vertical-align: middle;
    font-weight: 500;
    font-size: 14px;
  }
  .mod-likeTable .sub-head > div:last-child {
    border-right: 0px;
  }
  .mod-likeTable .sub-head > div:nth-child(1) {
    width: 30%;
  }
  .mod-likeTable .sub-head > div:nth-child(2) {
    width: 30%;
  }
  .mod-likeTable .sub-head > div:nth-child(3) {
    width: 30%;
  }
  .mod-likeTable .sub-head > div:nth-child(4) {
    width: 10%;
  }
  .mod-likeTable .sub-row {
    display: table-row;
    background: #fff;
  }
  .mod-likeTable .sub-row:nth-child(2n+1) {
    background: #f1fafc;
  }
  .mod-likeTable .sub-row:last-child > dl {
    border-bottom: 0;
  }
  .mod-likeTable .sub-row > dl {
    padding: 1em;
    display: table-cell;
    border: 2px solid #bec8ca;
    border-width: 0 2px 2px 0;
    vertical-align: middle;
    font-size: 16px;
  }
  .mod-likeTable .sub-row > dl:last-child {
    border-right: 0px;
    text-align: center;
  }
  .mod-likeTable .sub-row > dl > dt {
    display: none;
  }
  .mod-likeTable .sub-row > dl > dd {
    display: block;
  }
  .mod-likeTable.-add1Col .sub-head > div:nth-child(1) {
    width: 28%;
  }
  .mod-likeTable.-add1Col .sub-head > div:nth-child(2) {
    width: 29%;
  }
  .mod-likeTable.-add1Col .sub-head > div:nth-child(3) {
    width: 15%;
  }
  .mod-likeTable.-add1Col .sub-head > div:nth-child(4) {
    width: 19%;
  }
  .mod-likeTable.-add1Col .sub-head > div:nth-child(5) {
    width: 9%;
  }
  .mod-likeTable.-add1Col .sub-row > dl:nth-child(3) {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .mod-likeTable .sub-head {
    display: none;
  }
  .mod-likeTable .sub-row {
    display: table;
    background: #fff;
    border: 2px solid #23c6e8;
    width: 100%;
    margin-bottom: 1em;
  }
  .mod-likeTable .sub-row > dl {
    display: table-row;
    padding: 1em;
    vertical-align: middle;
    font-size: 16px;
  }
  .mod-likeTable .sub-row > dl > dt {
    display: table-cell;
    vertical-align: middle;
    border: 2px solid #bec8ca;
    border-width: 0 2px 2px 0;
    width: 30%;
    background: #9ee7f6;
    padding: 0.5em;
    font-weight: 500;
  }
  .mod-likeTable .sub-row > dl > dd {
    display: table-cell;
    vertical-align: middle;
    border: 2px solid #bec8ca;
    border-width: 0 0 2px 0;
    background: #fff;
    padding: 0.5em;
  }
  .mod-likeTable .sub-row > dl:last-child > dt,
  .mod-likeTable .sub-row > dl:last-child > dd {
    border-bottom: 0;
  }
  /*
---
name: レスポンシブなテーブルっぽいの
category: table
---
```jade
.mod-likeTable
  .sub-head
    div 掲載場所
    div 掲載期間
    div
      | 手に入る道具・
      br._showPc
      |  ダンジョン名
    div 個数
  .sub-row
    dl
      dt 掲載場所
      dd コロコロコミック10月号
    dl
      dt 掲載期間
      dd 2015年9月15日（火）発売
    dl
      dt
        | 手に入る道具・
        br
        | ダンジョン名
      dd グロウパンチ
    dl
      dt 個数
      dd 5個
  .sub-row
    dl
      dt 掲載場所
      dd ヤマダ電機グループ（一部店舗を除く）
    dl
      dt 掲載期間
      dd 2015年9月17日（木）～12月31日（木）
    dl
      dt
        | 手に入る道具・
        br
        | ダンジョン名
      dd じならし
    dl
      dt 個数
      dd 20個
```
*/
}

/*
---
name: テーブルのような定義リスト
category: table
---
おもに、商品概要などに使うテーブルっぽいもの
```jade
.mod-likeTable2
  dl.sub-dl
    dt.sub-dt 発売元
    dd.sub-dd 株式会社ポケモン
  dl.sub-dl
    dt.sub-dt 制作
    dd.sub-dd
      | 株式会社ポケモン
      br
      | 株式会社バンダイナムコ
      br
      | エンターテインメント
  dl.sub-dl
    dt.sub-dt 対応機種
    dd.sub-dd Wii U

```
*/
.mod-likeTable2 {
  display: table;
  font-size: 12px;
  font-size: 1.2rem;
  /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
}

@media screen and (min-width: 768px) {
  .mod-likeTable2 {
    font-size: 14px;
    font-size: 1.4rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
}

.mod-likeTable2 > .sub-dl {
  display: table-row;
}

.mod-likeTable2 > .sub-dl > .sub-dt {
  display: table-cell;
  padding-right: 2em;
  position: relative;
  white-space: nowrap;
  font-weight: bold;
  min-width: 5em;
}

.mod-likeTable2 > .sub-dl > .sub-dt:after {
  content: "…";
  display: inline-block;
  width: 1em;
  position: absolute;
  top: 0;
  right: 1em;
  text-align: center;
}

.mod-likeTable2 > .sub-dl > .sub-dd {
  display: table-cell;
}

/*
---
name: カラムレイアウト
category:
  - column layout
---

各セルの上/左にマージンあり。mod-columnのmargin-topにネガティブマージンでセルのmargin-topを打ち消している。margin-bottomはセルのマージンとは関係なく一定値のマージンを設定しlast-child:0としている


```jade
.mod-column
  .sub-cell._x1of10
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of10
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of10
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of10
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of10
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of10
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of10
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of10
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of10
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of10
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of10
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of10
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')

```
*/
/*
---
name: カラムレイアウト(マージンなし)
category:
  - column layout/margin
---

```jade
.mod-column.-marginZero
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
```

*/
/*
---
name: カラムレイアウト(マージンS)
category:
  - column layout/margin
---

```jade
.mod-column.-marginS
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
```

*/
/*
---
name: カラムレイアウト(マージンM)
category:
  - column layout/margin
---

```jade
.mod-column
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
```

*/
/*
---
name: カラムレイアウト(マージンL)
category:
  - column layout/margin
---

```jade
.mod-column.-marginL
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
```
*/
/*
---
name: キャプション付き
category:
  - column layout/caption
---

```jade
.mod-column
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
      p.mod-caption
        | 通常はキャプションを.sub-innerの中に置いても問題ありませんが、矢印付きカラムの時、矢印の位置がズレるため.sub-cellの中、.sub-innerの外におきます。
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
      p.mod-caption キャプション
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
      p.mod-caption キャプション
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
      p.mod-caption キャプション
```
*/
/*
---
name: カラム貫通したキャプションを置きたい時
category:
  - column layout/caption
---

.mod-columnを入れ子にします。

```jade
.mod-column
  .sub-cell._x1of2
    .sub-inner
      .mod-column
        .sub-cell._x1of2
          .sub-inner
            p.mod-image
              img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
        .sub-cell._x1of2
          .sub-inner
            p.mod-image
              img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
    p.mod-caption カラム貫通したキャプション。あああああああああああああああああああああああああああああ
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
```
*/
/*
---
name: 100%未満左寄せ
category:
  - column layout/position
---

```jade
.mod-column._inlineLeft
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
```
*/
/*
---
name: 高さの違うセルを上下中央揃え
category:
  - column layout/position
---

```jade
.mod-column.-vMiddle
  .sub-cell._x1of3
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of3
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x450.png?text=dummy', alt='')
  .sub-cell._x1of3
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x250.png?text=dummy', alt='')
  .sub-cell._x1of3
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x250.png?text=dummy', alt='')
  .sub-cell._x1of3
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of3
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x650.png?text=dummy', alt='')
```
*/
/*
---
name: スマホ時1カラム
category:
  - column layout/sp
---


```jade
.mod-column.-sp1col
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
```
*/
/*
---
name: スマホ時2カラム
category:
  - column layout/sp
---


```jade
.mod-column.-sp2col
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
```
*/
/*
---
name: スマホ時3カラム
category:
  - column layout/sp
---


```jade
.mod-column.-sp3col
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
```
*/
/*
---
name: スマホ時4カラム
category:
  - column layout/sp
---

```jade
.mod-column.-sp4col
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
```
*/
/*
---
name: スマホ時のみカラム指定
category:
  - column layout/sp
---

[-sp3col] などでスマホ時の全体カラム数を決め、各セルに [x1of2_sp] などで、個別指定する

```jade
.mod-column.-sp3col
  .sub-cell._x1of4._x1of2_sp
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4._x1of2_sp
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
```
*/
/*
---
name: セルを矢印でつなぐ
category:
  - column layout/arrow
---
.mod-column>.sub-cell>**.sub-inner**  
この**.sub-inner**の疑似要素に::beforeで矢印を付けている。  
矢印が必要ない場合、**.sub-inner**は、無くてもかまわない。


```jade
.mod-column.-sp2col.-step
  .sub-cell._x1of4.noArrow
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
    p.mod-caption
      | セルの左に矢印が付くので一番左の要素には
      span._accent .noArrow
      | を付け、矢印を消す
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
    p.mod-caption
      | スマホ時2カラム以上だと
      span._accent .noArrow
      | がうまく機能しない。
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
    p.mod-caption よって、スマホの矢印付きの時は1カラムを推奨する。
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
```
*/
/*
---
name: セルを矢印でつなぐ　左端に矢印が来る場合
category:
  - column layout/arrow
---
.mod-narrowContentで囲う（左右にマージンが付く）

```jade
.mod-narrowContent
  .mod-column.-sp2col.-step
    .sub-cell._x1of4.noArrow
      .sub-inner
        p.mod-image
          img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
    .sub-cell._x1of4
      .sub-inner
        p.mod-image
          img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
    .sub-cell._x1of4
      .sub-inner
        p.mod-image
          img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
    .sub-cell._x1of4
      .sub-inner
        p.mod-image
          img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
    .sub-cell._x1of4
      .sub-inner
        p.mod-image
          img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
    .sub-cell._x1of4
      .sub-inner
        p.mod-image
          img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
    .sub-cell._x1of4
      .sub-inner
        p.mod-image
          img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
    .sub-cell._x1of4
      .sub-inner
        p.mod-image
          img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
```
*/
/*
---
name: セルを矢印でつなぐ　段をまたぐ矢印
category:
  - column layout/arrow
---

.sub-cellに.tiltArrowを付けます。
この場合スマホは1カラムしか対応しません

```jade
.mod-column.-sp1col.-step
  .sub-cell._x1of4.noArrow
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell.tiltArrow
    .sub-inner
      p.mod-image
        img(src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAyAAAABkCAIAAADxM8PYAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTUwNTk3REUwMkQyMTFFNkE0NzQ4NkQ2RTNCODlCRDciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTUwNTk3REYwMkQyMTFFNkE0NzQ4NkQ2RTNCODlCRDciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5NTA1OTdEQzAyRDIxMUU2QTQ3NDg2RDZFM0I4OUJENyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5NTA1OTdERDAyRDIxMUU2QTQ3NDg2RDZFM0I4OUJENyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnDArhoAAAMcSURBVHja7NvNSioBGIBhnRxqYuwClFpEblrPxnBRIu3dBUIgKQSBdAXVQiNott1FdCWz9Uq8gROcs/Bw+tEaoeM8z27EEWb8Fi/jZznLshIAwAokSTJ/WJzqCHz3AAACCwBAYAEACCwAAAQWAIDAAgAQWAAACCwAAIEFACCwAAAQWAAAAgsAQGABAAgsAAAEFgCAwAIAEFgAAAgsAACBBQAgsAAAEFgAAAILAEBgAQAgsAAABBYAgMACABBYAAAILAAAgQUAILAAABBYAAACCwBAYAEAILAAAAQWAIDAAgBAYAEACCwAAIEFACCwAAAQWAAAAgsAQGABACCwAAAEFgCAwAIAQGABAAgsAACBBQCAwAIAEFgAAAILAKBQKgW85iRJfPEAwOp4ggUAILAAAAQWAIDAAgBAYAEA/BgVtyDLMjcBAMiRJ1gAAAILAEBgAQAILAAABBYAgMACABBYAAAILAAAgQUAILAAABBYAAACCwBAYAEACCwAAAQWAIDAAgAQWAAACCwAAIEFALCGKmtzJU9PT9PpdP6VKIrCMPz0xPv7+/nDOI7L5fK/b9vY2Li4uNjc3DQ0AEBRAqvb7T4/P89ms2VPfHl5WeRt19fX6goAWMT6/ERYq9Vub2/ffPj0faenp71ez7gAAMUKrFfHx8dnZ2e5f2yj0bi5uVlRugEAAuunG41Gh4eHOX7gzs5OmqZbW1tmBQAoaGCFYfjw8FCtVvO5O0EwmUzq9bpBAQCKG1ilXJexrq6ums2mKQEAih5YpZyWsTqdzvn5uREBAATWH99cxjo4OFjdfxIBAIH1X/rOMtbrWY+Pj1EUmQ8AQGD95WvLWL8X23d3dw0HACCw3vCFZazLy8ujoyOTAQAIrHcttYzVbrf7/b6xAAAE1kcWX8ba39+/u7uz2A4ACKzPLbKMFcdxmqbb29tmAgAQWAv5eBkrCILxeLy3t2cgAACBtYQPlrGGw2Gr1TINAIDAWs57y1gnJyeDwcAoAAB5KWdZVrRrTpJk/rCAdwAAWKmggNc8X1TqCgAQWHk2lroCAFbhlwADAEJMZAKcy7sYAAAAAElFTkSuQmCC', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-cell._x1of4
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
```
*/
.mod-column {
  text-align: center;
  letter-spacing: -0.34em;
  margin-bottom: 40px;
  margin-top: -20px;
  margin-left: -20px;
}

.mod-column.-pad {
  padding-left: 30px;
  padding-right: 30px;
}

@media screen and (min-width: 768px) {
  .mod-column.-pad {
    margin-bottom: 0;
    padding-left: 100px;
    padding-right: 100px;
  }
}

.mod-column > .sub-cell {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  letter-spacing: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mod-column > .sub-cell > .sub-inner {
  text-align: left;
}

.mod-column.-vMiddle > .sub-cell {
  vertical-align: middle;
}

.mod-column:last-child {
  margin-bottom: 0;
}

.mod-column > .sub-cell {
  padding-top: 20px;
  padding-left: 20px;
}

.mod-column.-marginS {
  margin-top: -10px;
  margin-left: -10px;
}

.mod-column.-marginS > .sub-cell {
  padding-top: 10px;
  padding-left: 10px;
}

.mod-column.-marginSS {
  margin-top: -6px;
  margin-left: -6px;
}

.mod-column.-marginSS > .sub-cell {
  padding-top: 6px;
  padding-left: 6px;
}

.mod-column.-marginL {
  margin-top: -30px;
  margin-left: -30px;
}

.mod-column.-marginL > .sub-cell {
  padding-top: 30px;
  padding-left: 30px;
}

.mod-column.-marginZero {
  margin-top: 0px;
  margin-left: 0px;
}

.mod-column.-marginZero > .sub-cell {
  padding-top: 0px;
  padding-left: 0px;
}

.mod-column.-movie {
  margin-top: -4px;
  margin-left: -4px;
}

.mod-column.-movie > .sub-cell {
  padding-top: 4px;
  padding-left: 4px;
}

.mod-column.-step {
  margin-top: -40px;
  margin-left: -40px;
}

.mod-column.-step > .sub-cell {
  padding-top: 40px;
  padding-left: 40px;
}

.mod-column.-step > .sub-cell > .sub-inner {
  position: relative;
}

.mod-column.-step > .sub-cell > .sub-inner:before {
  content: "→";
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1em;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.8em;
  margin: auto;
}

.mod-column.-step > .sub-cell.noArrow > .sub-inner {
  position: static;
}

.mod-column.-step > .sub-cell.noArrow > .sub-inner:before {
  display: none !important;
}

.mod-column.-step > .sub-cell.tiltArrow {
  margin: -20px 0;
}

.mod-column.-step > .sub-cell.tiltArrow > .sub-inner:before {
  display: none !important;
}

.mod-column.-step > .sub-cell.tiltArrow + .sub-cell > .sub-inner:before {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .mod-column {
    margin-bottom: 20px;
    margin-top: -10px;
    margin-left: -10px;
  }
  .mod-column:last-child {
    margin-bottom: 0;
  }
  .mod-column > .sub-cell {
    padding-top: 10px;
    padding-left: 10px;
  }
  .mod-column.-marginS {
    margin-top: -5px;
    margin-left: -5px;
  }
  .mod-column.-marginS > .sub-cell {
    padding-top: 5px;
    padding-left: 5px;
  }
  .mod-column.-marginL {
    margin-top: -15px;
    margin-left: -15px;
  }
  .mod-column.-marginL > .sub-cell {
    padding-top: 15px;
    padding-left: 15px;
  }
  .mod-column.-marginZero {
    margin-top: 0px;
    margin-left: 0px;
  }
  .mod-column.-marginZero > .sub-cell {
    padding-top: 0px;
    padding-left: 0px;
  }
  .mod-column.-movie {
    margin-top: -5px;
    margin-left: -5px;
  }
  .mod-column.-movie > .sub-cell {
    padding-top: 5px;
    padding-left: 5px;
  }
  .mod-column.-step {
    margin-top: -20px;
    margin-left: -20px;
  }
  .mod-column.-step > .sub-cell {
    padding-top: 20px;
    padding-left: 20px;
  }
  .mod-column.-step > .sub-cell > .sub-inner {
    position: relative;
  }
  .mod-column.-step > .sub-cell > .sub-inner:before {
    content: "→";
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1em;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1.2em;
    margin: auto;
  }
  .mod-column.-step > .sub-cell.tiltArrow {
    display: none;
  }
  .mod-column.-step > .sub-cell.tiltArrow + .sub-cell > .sub-inner:before {
    display: block !important;
  }
  .mod-column.-step.-sp1col.-step {
    margin-top: -20px;
    margin-left: -20px;
  }
  .mod-column.-step.-sp1col.-step > .sub-cell {
    padding-top: 20px;
    padding-left: 20px;
  }
  .mod-column.-step.-sp1col.-step > .sub-cell > .sub-inner {
    position: relative;
  }
  .mod-column.-step.-sp1col.-step > .sub-cell > .sub-inner:before {
    content: "↓";
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1em;
    position: absolute;
    top: -1.2em;
    bottom: auto;
    left: 0;
    right: 0;
    margin: auto;
  }
  .mod-column.-sp1col > .sub-cell {
    width: 100%;
  }
  .mod-column.-sp2col > .sub-cell {
    width: 50%;
  }
  .mod-column.-sp3col > .sub-cell {
    width: 33.3333%;
  }
  .mod-column.-sp4col > .sub-cell {
    width: 25%;
  }
}

.mod-column .sub-movie {
  border-radius: 2px;
  background: white;
  overflow: hidden;
}

.mod-column .sub-movie > .mod-playicon::before {
  width: 20%;
  padding-top: 20%;
}

.mod-column .sub-movie > .sub-title {
  padding: .5em;
  line-height: 1.46em;
}

/*
---
name: 2カラムコンテンツ
category: 2 column contents
---
テキストと画像のコンテンツ  
カラムレイアウトではPC時左から順番に並びましたが、こちらはひとつ目の要素を、左右に振れます。
また、2個めの要素がテキストの場合、回り込みも可能になります。

SP時、デフォルトでは左右50%になります。
*/
/*
---
name: 1個目の要素左
category: 2 column contents/left-right
---
```jade
.mod-twoColContent.-left
  .sub-content._x1of3
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-content._x2of3
    .sub-inner
      p.mod-para
        | ああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
```
*/
/*
---
name: 1個目の要素右
category: 2 column contents/left-right
---
```jade
.mod-twoColContent.-right
  .sub-content._x1of3
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-content._x2of3
    .sub-inner
      p.mod-para
        | ああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
```
*/
/*
---
name: 高さ中央
category: 2 column contents/vertical align middle
---
```jade
.mod-twoColContent.-left.-vMiddle.js-heightFix(data-column-pc="2" data-column-sp="2")
  .sub-content._x1of3
    .sub-inner.js-fix
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-content._x2of3
    .sub-inner.js-fix
      p.mod-para
        | ああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
```
*/
/*
---
name: 高さ中央
category: 2 column contents/vertical align middle
---
```jade
.mod-twoColContent.-right.-vMiddle.js-heightFix(data-column-pc="2" data-column-sp="2")
  .sub-content._x1of3
    .sub-inner.js-fix
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-content._x2of3
    .sub-inner.js-fix
      p.mod-para
        | ああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
```
*/
/*
---
name: 1個目の要素左 テキスト回り込み
category: 2 column contents/wraparound
---
```jade
.mod-twoColContent.-left.-wraps
  .sub-content._x1of8
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-content._x7of8
    .sub-inner
      p.mod-para
        | ああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
```
*/
/*
---
name: 1個目の要素右 テキスト回り込み
category: 2 column contents/wraparound
---
```jade
.mod-twoColContent.-right.-wraps
  .sub-content._x1of8
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-content._x7of8
    .sub-inner
      p.mod-para
        | ああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
```
*/
/*
---
name: PC画像左　スマホ縦積み画像上
category: 2 column contents/SP image top
---
```jade
.mod-twoColContent.-left.-sp1col
  .sub-content._x1of3
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-content._x2of3
    .sub-inner
      p.mod-para
        | ああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
```
*/
/*
---
name: PC画像右　スマホ縦積み画像上
category: 2 column contents/SP image top
---
```jade
.mod-twoColContent.-right.-sp1col
  .sub-content._x1of3
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-content._x2of3
    .sub-inner
      p.mod-para
        | ああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
```
*/
/*
---
name: PC画像左　スマホ縦積み画像下
category: 2 column contents/SP image bottom
---
```jade
.mod-twoColContent.-right.-sp1col
  .sub-content._x2of3
    .sub-inner
      p.mod-para
        | ああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
  .sub-content._x1of3
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
```
*/
/*
---
name: PC画像右　スマホ縦積み画像下
category: 2 column contents/SP image bottom
---
```jade
.mod-twoColContent.-left.-sp1col
  .sub-content._x2of3
    .sub-inner
      p.mod-para
        | ああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
  .sub-content._x1of3
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
```
*/
/*
---
name: モジュール間を矢印でつなぐ
category: 2 column contents/arrow
---
```jade
.mod-twoColContent.-left.-step
  .sub-content._x1of3
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-content._x2of3
    .sub-inner
      p.mod-para
        | .mod-twoColContent
        span.st-accent .-step
        | で矢印が付きます。
        br
        | ああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
.mod-twoColContent.-left
  .sub-content._x1of3
    .sub-inner
      p.mod-image
        img(src='https://placehold.jp/fff/500x350.png?text=dummy', alt='')
  .sub-content._x2of3
    .sub-inner
      p.mod-para
        | ああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
```
*/
.mod-twoColContent {
  *zoom: 1;
  /*
---
name: clearfix
category: -mixin
---
```scss
  @include clearfix;
```
 */
}

.mod-twoColContent:after {
  content: '';
  display: table;
  clear: both;
}

.mod-twoColContent .sub-content:first-child > .sub-inner {
  margin: 0 10px;
}

.mod-twoColContent .sub-content:last-child {
  float: left;
}

.mod-twoColContent .sub-content:last-child > .sub-inner {
  margin: 0 10px;
}

.mod-twoColContent.-left .sub-content:first-child {
  float: left;
}

.mod-twoColContent.-left .sub-content:first-child > .sub-inner {
  margin-left: 0;
}

.mod-twoColContent.-left .sub-content:last-child > .sub-inner {
  margin-right: 0;
}

.mod-twoColContent.-right .sub-content:first-child {
  float: right;
}

.mod-twoColContent.-right .sub-content:first-child > .sub-inner {
  margin-right: 0;
}

.mod-twoColContent.-right .sub-content:last-child > .sub-inner {
  margin-left: 0;
}

.mod-twoColContent.-wraps .sub-content:last-child {
  float: none;
  width: auto;
}

.mod-twoColContent.-wraps .sub-content:last-child > .sub-inner {
  margin: 0;
}

.mod-twoColContent.-wraps.-left .sub-content:first-child > .sub-inner {
  margin-right: 20px;
}

.mod-twoColContent.-wraps.-right .sub-content:first-child {
  margin-left: 10px;
}

.mod-twoColContent.-wraps.-right .sub-content:first-child > .sub-inner {
  margin-left: 10px;
}

.mod-twoColContent.-step {
  padding-bottom: 40px;
  position: relative;
}

.mod-twoColContent.-step:before {
  content: "↓";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: auto;
  width: 1em;
}

.mod-twoColContent.-vMiddle .sub-content > .sub-inner {
  padding: 0 10px;
  vertical-align: middle;
  display: table-cell;
}

.mod-twoColContent.-vMiddle.-left .sub-content:first-child {
  float: left;
}

.mod-twoColContent.-vMiddle.-left .sub-content:first-child > .sub-inner {
  padding-left: 0;
}

.mod-twoColContent.-vMiddle.-left .sub-content:last-child > .sub-inner {
  padding-right: 0;
}

.mod-twoColContent.-vMiddle.-right .sub-content:first-child {
  float: right;
}

.mod-twoColContent.-vMiddle.-right .sub-content:first-child > .sub-inner {
  padding-right: 0;
}

.mod-twoColContent.-vMiddle.-right .sub-content:last-child > .sub-inner {
  padding-left: 0;
}

@media screen and (min-width: 768px) {
  .mod-twoColContent {
    margin-bottom: 20px;
  }
  .mod-twoColContent:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .mod-twoColContent {
    *zoom: 1;
    /*
---
name: clearfix
category: -mixin
---
```scss
  @include clearfix;
```
 */
    margin-bottom: 20px;
  }
  .mod-twoColContent:after {
    content: '';
    display: table;
    clear: both;
  }
  .mod-twoColContent:last-child {
    margin-bottom: 0;
  }
  .mod-twoColContent .sub-content {
    width: 50%;
  }
  .mod-twoColContent .sub-content {
    width: 50%;
  }
  .mod-twoColContent.-sp1col > .sub-content > .sub-inner {
    display: block;
  }
  .mod-twoColContent.-sp1col > .sub-content:first-child {
    width: 100%;
    margin-bottom: 10px;
  }
  .mod-twoColContent.-sp1col > .sub-content:first-child > .sub-inner {
    margin: 0 !important;
  }
  .mod-twoColContent.-sp1col > .sub-content:last-child {
    width: 100%;
    margin-bottom: 20px;
  }
  .mod-twoColContent.-sp1col > .sub-content:last-child > .sub-inner {
    margin: 0;
  }
}

/*#overview
ラッパーを貫通
ラッパーを貫通してwidthフルなコンテンツエリアを作る（背景を変えたい時用）。
@mod-penetrationContent
*/
/*#styleguide
```
 <div class="mod-penetrationContent">
 <p class="mod-para">ああああああああああああああああああああああああああああああああああああ</p>
 </div>
```
*/
.mod-penetrationContent {
  margin: 1em -500%;
  padding: 1em 500%;
  background: #bbb;
  /*
---
name: ブラウザ幅いっぱいの背景
category: penetration content
---
ラッパーを貫通してwidthフルなコンテンツエリアを作る（背景を変えたい時用）。  
ただし、背景画像をcoverしたい場合は使えない＞＜
```jade
.mod-penetrationContent
  p.mod-para ああああああああああああああああああああああああああああああああああああ
```
*/
}

.mod-penetrationContent:first-child {
  margin-top: 0;
}

.mod-penetrationContent:last-child {
  margin-top: 0;
}

/*
---
name: faq
category:
  - faq
---
QをクリックでAを開閉。
```jade
dl.mod-faq
  dt.sub-q
    div.sub-inner
      p.mod-para しつもんしつもんしつもんしつもんしつもんしつもんしつもんしつもんしつもんしつもんしつもんしつもんしつもんしつもんしつもんしつもんしつもん
  dd.sub-a
    div.sub-inner
      p.mod-para かいとうかいとうかいとうかいとうかいとうかいとうかいとうかいとうかいとうかいとうかいとうかいとうかいとうかいとうかいとうかいとうかいとうかいとうかいとうかいとうかいとう
```
*/
.mod-faq {
  padding-bottom: 15px;
  margin-top: 15px;
  border-bottom: 1px dotted #999;
}

.mod-faq .sub-q {
  *zoom: 1;
  /*
---
name: clearfix
category: -mixin
---
```scss
  @include clearfix;
```
 */
}

.mod-faq .sub-q:after {
  content: '';
  display: table;
  clear: both;
}

.mod-faq .sub-q:before {
  content: "Q:";
  display: inline-block;
  width: 2em;
  height: 1em;
  float: left;
  margin-right: 10px;
}

.mod-faq .sub-q .sub-inner {
  overflow: hidden;
}

.mod-faq .sub-q:hover {
  cursor: pointer;
}

.mod-faq .sub-a {
  *zoom: 1;
  /*
---
name: clearfix
category: -mixin
---
```scss
  @include clearfix;
```
 */
  display: none;
  margin-top: 15px;
}

.mod-faq .sub-a:after {
  content: '';
  display: table;
  clear: both;
}

.mod-faq .sub-a:before {
  content: "A:";
  display: inline-block;
  width: 2em;
  height: 1em;
  float: left;
  margin-right: 10px;
}

.mod-faq .sub-a .sub-inner {
  overflow: hidden;
}

.mod-faq .mod-para:last-child {
  margin-bottom: 0;
}

.mod-faq:first-child {
  border-top: 1px dotted #999;
  padding: 15px 0;
}

.sns {
  padding: 15px 30px;
  background: #3c2105;
}

.sns > ul {
  text-align: center;
  letter-spacing: -.34em;
}

.sns > ul li {
  display: inline-block;
  text-align: left;
  width: 25%;
}

.sns > ul li.line img {
  display: block;
}

@media screen and (min-width: 768px) {
  .sns {
    position: fixed;
    z-index: 100;
    top: 80px;
    right: 13px;
    padding: 0;
    background: transparent;
  }
  .sns > ul {
    margin: auto;
  }
  .sns > ul li {
    display: inline-block;
    width: 31px;
    background: white;
    border-radius: 3px;
    overflow: hidden;
    margin-left: 5px;
  }
  .sns > ul li.line {
    display: none;
  }
  .sns > ul li img {
    display: block;
  }
  .sns > ul li:hover img {
    opacity: .5;
  }
}

.mod-narrowContent {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  /*
---
name: コンテンツの幅を狭くしたい時に使う
category: narrow content
---
コンテンツの幅を狭くしサイドにマージンが付きます。
```jade
.mod-narrowContent
  p.mod-para PC/SPとも
```
*/
}

@media screen and (min-width: 768px) {
  .mod-narrowContentPc {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    /*
---
name: コンテンツの幅を狭くしたい時に使う(PC)
category: narrow content
---
コンテンツの幅を狭くしサイドにマージンが付きます。
```jade
.mod-narrowContentPc
  p.mod-para PCのみ
```
*/
  }
}

@media screen and (max-width: 767px) {
  .mod-narrowContentSp {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    /*
---
name: コンテンツの幅を狭くしたい時に使う(SP)
category: narrow content
---
コンテンツの幅を狭くしサイドにマージンが付きます。
```jade
.mod-narrowContentSp
  p.mod-para SPのみ
```
*/
  }
}

/*
---
name: group
category:
  - grouping
---
枠や背景色でグルーピングしたい時や、見出しを伴わないが、コンテンツ間にマージンがほしい時に使用
*/
/*
---
name: カラムレイアウトの中で使った例
category:
  - grouping
---
```jade
.mod-column
  .sub-cell._x1of4
    .sub-inner
      .mod-group.-typeDummy
        .mod-image: img(src="https://placehold.jp/fff/500x350.png?text=dummy",alt="")
  .sub-cell._x1of4
    .sub-inner
      .mod-group.-typeDummy
        .mod-image: img(src="https://placehold.jp/fff/500x350.png?text=dummy",alt="")
  .sub-cell._x1of4
    .sub-inner
      .mod-group.-typeDummy
        .mod-image: img(src="https://placehold.jp/fff/500x350.png?text=dummy",alt="")
  .sub-cell._x1of4
    .sub-inner
      .mod-group.-typeDummy
        .mod-image: img(src="https://placehold.jp/fff/500x350.png?text=dummy",alt="")
```
*/
.mod-group {
  margin: 30px 0;
  /*
---
name: マージンがほしいだけ
category:
  - grouping
---
```jade
.mod-group
  .mod-para first-childなので下マージのみ

.mod-group
  .mod-para あああああああああああああああああああああああああああああああああああああああああああああああああああああああ

.mod-group
  .mod-para last-childなので上マージのみ
```
*/
}

.mod-group.-typeDummy {
  padding: 10px;
  border: 2px solid #bbb;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*
---
name: 枠
category:
  - grouping
---
```jade
.mod-group.-typeDummy
  .mod-para あああああああああああああああああああああああああああああああああああああああああああああああああああああああ
.mod-group.-typeDummy
  .mod-para あああああああああああああああああああああああああああああああああああああああああああああああああああああああ
```
*/
}

.mod-group.-typeDummy2 {
  background: #eee;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*
---
name: 背景色
category:
  - grouping
---
```jade
.mod-group.-typeDummy2
  .mod-para あああああああああああああああああああああああああああああああああああああああああああああああああああああああ
.mod-group.-typeDummy2
  .mod-para あああああああああああああああああああああああああああああああああああああああああああああああああああああああ
```
*/
}

.mod-group.-roundWhite {
  background: white;
  border-radius: 3px;
  padding: 30px 15px;
}

@media screen and (min-width: 768px) {
  .mod-group.-roundWhite {
    border-radius: 6px;
    padding: 60px 30px;
  }
}

.mod-group.-roundBlue {
  background: #e4f0fa;
  border-radius: 3px;
  padding: 30px 15px;
}

@media screen and (min-width: 768px) {
  .mod-group.-roundBlue {
    border-radius: 6px;
  }
}

.mod-group.-inner {
  margin: 15px 0;
}

@media screen and (min-width: 768px) {
  .mod-group.-inner {
    margin: 35px 0;
  }
}

.mod-group.-dot {
  margin: 15px 0;
  margin-left: -15px;
  margin-right: -15px;
  padding: 15px;
  border: 2px dotted #d5d5d5;
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .mod-group.-dot {
    padding: 30px 45px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mod-group.-dot {
    margin-left: 1px;
    margin-right: 1px;
  }
}

.mod-group.-pattern {
  margin: 40px 0;
}

@media screen and (min-width: 768px) {
  .mod-group.-pattern {
    margin: 80px 0;
  }
}

.mod-group.-white {
  background: white;
  /*
---
name: 背景色
category:
  - grouping
---
```jade
.mod-group.-white
  .mod-para 白背景のグルーピング

```
*/
}

.mod-group.-newsGray {
  padding: 25px 50px;
  background: #eeeeee;
  /*
---
name: 背景色
category:
  - grouping
---
```jade
.mod-group.-white
  .mod-para 白背景のグルーピング

```
*/
}

@media screen and (min-width: 768px) {
  .mod-group.-newsGray {
    padding: 50px 100px;
  }
}

.mod-group.-margin {
  margin: 30px 0 60px;
  /*
---
name: マージン
category:
  - grouping
---
```jade
.mod-group.-margin
  .mod-para SP時　margin:30px 0 60px;
  .mod-para PC時　margin:60px 0 120px;

```
*/
}

@media screen and (min-width: 768px) {
  .mod-group.-margin {
    margin: 60px 0 120px;
  }
}

.mod-group.-margin2 {
  margin: 25px 0;
  /*
---
name: マージン2
category:
  - grouping
---
```jade
.mod-group.-margin
  .mod-para SP時　margin:25px 0;
  .mod-para PC時　margin:45px 0;

```
*/
}

@media screen and (min-width: 768px) {
  .mod-group.-margin2 {
    margin: 45px 0;
  }
}

.mod-group.-gray {
  background: #eeeeee;
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .mod-group.-gray {
    padding: 40px;
  }
}

.mod-group:first-child {
  margin-top: 0;
}

.mod-group:last-child {
  margin-bottom: 0;
}

.modalmovie {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.modalmovie .movwrap {
  width: 100%;
  height: 0;
  max-width: 960px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

.modalmovie .movwrap .inner {
  position: absolute;
  height: 100%;
  width: 100%;
}

.modalmovie .movwrap .inner iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.modalmovie .movwrap .inner .close {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  margin: auto;
  border: 1px solid blue;
  color: black;
  display: inline-block;
  padding: 5px 10px;
  background: white;
  width: 5em;
  text-align: center;
  border-radius: 2px;
  font-size: 10px;
  font-size: 1rem;
  /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
}

.modalmovie .movwrap .inner .close:hover {
  cursor: pointer;
  opacity: .8;
}

/*
---
name: モーダル動画再生
category: modal movie
---
何故か動画が再生できない。いったん保留
```jade
p.mod-image
  a.js-movPlay.mod-playicon(href="https://www.youtube.com/embed/JCmoYYQcWTk" data-w="960" data-h="540")
    img(src="https://placehold.jp/fff/800x400.png?text=dummy" alt="")
```
 */
.mod-playicon {
  position: relative;
  display: inline-block;
}

.mod-playicon::before {
  content: "";
  display: block;
  width: 15.217%;
  height: 0;
  padding-top: 15.217%;
  border-radius: 1000px;
  background: #0f525e url("/ex/meitantei_pikachu/common/images/icon/playArrow.png") 55% 50% no-repeat;
  background-size: 30% auto;
  color: white;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .mod-playicon::before {
    width: 12.5%;
    height: 0;
    padding-top: 12.5%;
  }
}

.mod-playicon::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  opacity: 0;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 300ms;
       -o-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}

.mod-playicon:hover::after {
  opacity: .4;
}

.mod-playicon img {
  width: 100%;
}

.mod-footerlogo {
  text-align: left;
  padding: 0 15px 50px;
}

@media screen and (min-width: 768px) {
  .mod-footerlogo {
    text-align: center;
  }
}

.mod-footerlogo > li {
  display: inline-block;
  vertical-align: middle;
  margin-right: .5em;
}

.mod-footerlogo > li a {
  display: block;
}

.mod-footerlogo > li.sub-3ds a {
  width: 65px;
  padding-top: 10px;
  height: 0;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 785% 4395%;
  background-position: 83.95062% 90.80326%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
}

.mod-footerlogo > li.sub-3ds a:after {
  content: '';
  display: block;
  padding-top: 15.38462%;
}

@media screen and (min-width: 768px) {
  .mod-footerlogo > li.sub-3ds a {
    width: 109px;
    padding-top: 15px;
  }
}

.mod-footerlogo > li.sub-pokemon a {
  width: 113px;
  padding-top: 12px;
  height: 0;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 452% 3663%;
  background-position: 0% 100%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
}

.mod-footerlogo > li.sub-pokemon a:after {
  content: '';
  display: block;
  padding-top: 10.61947%;
}

@media screen and (min-width: 768px) {
  .mod-footerlogo > li.sub-pokemon a {
    width: 180px;
    padding-top: 19px;
  }
}

.mod-footerlogo > li.sub-nintendo a {
  width: 47px;
  padding-top: 12px;
  height: 0;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 1086% 3663%;
  background-position: 97.73463% 23.39181%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
}

.mod-footerlogo > li.sub-nintendo a:after {
  content: '';
  display: block;
  padding-top: 25.53191%;
}

@media screen and (min-width: 768px) {
  .mod-footerlogo > li.sub-nintendo a {
    width: 79px;
    padding-top: 20px;
  }
}

.mod-newsindex {
  background: #fdd000;
  padding: 20px 500% 35px;
  margin: 0 -500%;
  position: relative;
}

@media screen and (min-width: 768px) {
  .mod-newsindex {
    padding: 36px 500% 60px;
  }
}

.mod-newsindex::after {
  content: "";
  display: block;
  width: auto;
  height: 5px;
  background: url("/ex/meitantei_pikachu/common/images//gizagiza.png") bottom left repeat-x;
  background-size: auto 5px;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .mod-newsindex::after {
    height: 12px;
    background-size: auto 12px;
    bottom: -12px;
  }
}

.mod-newsindex > .sub-header {
  margin-bottom: 13px;
  *zoom: 1;
  /*
---
name: clearfix
category: -mixin
---
```scss
  @include clearfix;
```
 */
}

.mod-newsindex > .sub-header:after {
  content: '';
  display: table;
  clear: both;
}

.mod-newsindex > .sub-header > h2.sub-heading {
  float: left;
}

.mod-newsindex > .sub-header > h2.sub-heading > img {
  max-width: 129px;
}

@media screen and (min-width: 768px) {
  .mod-newsindex > .sub-header > h2.sub-heading > img {
    max-width: 189px;
    margin-left: -13px;
  }
}

.mod-newsindex > .sub-header > a.mod-button {
  float: right;
}

.mod-news > .sub-wrapper > .sub-item {
  background: white;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 3px;
  display: block;
}

.mod-news > .sub-wrapper > .sub-item > .sub-date {
  font-size: 12px;
  font-size: 1.2rem;
  /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  font-weight: bold;
  color: #6a3906;
}

.mod-news > .sub-wrapper > .sub-item > .sub-text {
  font-size: 13px;
  font-size: 1.3rem;
  /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  color: #341c02;
}

.mod-news > .sub-wrapper > a.sub-item {
  position: relative;
  padding-right: 35px;
}

.mod-news > .sub-wrapper > a.sub-item:hover > .sub-text {
  text-decoration: underline;
}

.mod-news > .sub-wrapper > a.sub-item::before {
  content: "";
  width: 21px;
  height: 21px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 2836% 2442%;
  background-position: 91.9797% 31.6726%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
  position: absolute;
  top: 15px;
  bottom: 15px;
  right: 15px;
  margin: auto;
}

.mod-news > .sub-wrapper > a.sub-item::before:after {
  content: '';
  display: block;
  padding-top: 100%;
}

.mod-news > .sub-wrapper > a.sub-item[target="_blank"] > .sub-text:after {
  font-family: 'icon';
  content: "\F006";
  font-size: smaller;
  font-weight: normal;
  margin-left: 5px;
  vertical-align: middle;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .mod-news {
    margin-right: -4px;
    margin-bottom: -4px;
    letter-spacing: -.34em;
  }
  .mod-news > .sub-wrapper {
    width: 33.33333%;
    display: inline-block;
    letter-spacing: 0;
    vertical-align: top;
  }
  .mod-news > .sub-wrapper > .sub-item {
    padding: 25px 15px;
    margin-right: 4px;
    margin-bottom: 4px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mod-news > .sub-wrapper > .sub-item > .sub-date {
    font-size: 14px;
    font-size: 1.4rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  }
  .mod-news > .sub-wrapper > .sub-item > .sub-text {
    font-size: 16px;
    font-size: 1.6rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
    line-height: 1.75;
  }
  .mod-news > .sub-wrapper > a.sub-item::before {
    width: 20px;
    height: 20px;
    top: auto;
    bottom: 10px;
    right: 10px;
  }
}

.mod-newsindex .mod-news > .sub-wrapper > .sub-item {
  background: #fff6cc;
}

@media screen and (min-width: 768px) {
  .mod-newscontents {
    max-width: 820px;
  }
}

.mod-topmoviearea {
  padding: 35px 15px;
  background: url("/ex/meitantei_pikachu/common/images/top/bg_moviearea@2x.jpg");
  background-size: cover;
  position: relative;
  font-size: 0;
  text-align: center;
}

.mod-topmoviearea::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: url("/ex/meitantei_pikachu/common/images/overlaydot.png");
  opacity: .8;
}

.mod-topmoviearea > .sub-head {
  position: relative;
  z-index: 1;
  *zoom: 1;
  /*
---
name: clearfix
category: -mixin
---
```scss
  @include clearfix;
```
 */
  max-width: 980px;
  margin: 0 auto 15px;
}

.mod-topmoviearea > .sub-head:after {
  content: '';
  display: table;
  clear: both;
}

@media screen and (min-width: 768px) {
  .mod-topmoviearea > .sub-head {
    margin: 0 auto 25px;
  }
}

.mod-topmoviearea > .sub-head > .sub-heading {
  float: left;
  width: 140px;
}

@media screen and (min-width: 768px) {
  .mod-topmoviearea > .sub-head > .sub-heading {
    width: 215px;
  }
}

.mod-topmoviearea > .sub-head > .sub-link {
  float: right;
}

.mod-topmoviearea > .sub-head > .sub-link > .mod-button {
  width: 126px;
}

@media screen and (min-width: 768px) {
  .mod-topmoviearea > .sub-head > .sub-link > .mod-button {
    width: 160px;
  }
}

.mod-topmoviearea > .sub-thumb {
  display: inline-block;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.mod-topmoviearea > .sub-thumb > .sub-title {
  text-align: left;
  background: white;
  font-size: 13px;
  font-size: 1.3rem;
  /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  font-weight: bold;
  padding: .5em 1.5em;
}

@media screen and (min-width: 768px) {
  .mod-topmoviearea {
    background: url("/ex/meitantei_pikachu/common/images/top/bg_moviearea.jpg");
    background-size: cover;
    padding: 64px 15px 64px;
  }
  .mod-topmoviearea > .sub-thumb {
    max-width: 640px;
  }
  .mod-topmoviearea > .sub-thumb > .sub-title {
    font-size: 16px;
    font-size: 1.6rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
    padding: 1.0em 2.5em;
  }
}

.mod-topsummary {
  padding: 0 30px;
  position: relative;
}

.mod-topsummary > .sub-wrapper > .sub-content > .sub-inner > .sub-textarea {
  background: #fdd000;
  padding: 30px;
}

.mod-topsummary.-right {
  background: url("/ex/meitantei_pikachu/common/images/top/bg_summary_right@2x.jpg") top left no-repeat;
  background-size: 95% auto;
}

.mod-topsummary.-right > .sub-wrapper > .sub-content > .sub-inner > .sub-textarea {
  background: #fdd000;
  padding: 30px;
  margin-left: -30px;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .mod-topsummary.-right {
    background: url("/ex/meitantei_pikachu/common/images/top/bg_summary_right.jpg") top left no-repeat;
    background-size: auto;
  }
  .mod-topsummary.-right > .sub-wrapper {
    max-width: 980px;
    margin: auto;
    position: relative;
    *zoom: 1;
    /*
---
name: clearfix
category: -mixin
---
```scss
  @include clearfix;
```
 */
  }
  .mod-topsummary.-right > .sub-wrapper:after {
    content: '';
    display: table;
    clear: both;
  }
  .mod-topsummary.-right > .sub-wrapper > .sub-content {
    width: 50%;
  }
  .mod-topsummary.-right > .sub-wrapper > .sub-content:nth-child(1) {
    float: right;
    position: relative;
    z-index: 1;
  }
  .mod-topsummary.-right > .sub-wrapper > .sub-content:nth-child(1) > .sub-inner {
    padding-left: 20px;
  }
  .mod-topsummary.-right > .sub-wrapper > .sub-content:nth-child(2) {
    float: left;
  }
  .mod-topsummary.-right > .sub-wrapper > .sub-content:nth-child(2) > .sub-inner {
    padding-right: 20px;
  }
  .mod-topsummary.-right > .sub-wrapper > .sub-content:nth-child(2) > .sub-inner > .sub-textarea {
    padding: 40px 0;
    position: relative;
  }
  .mod-topsummary.-right > .sub-wrapper > .sub-content:nth-child(2) > .sub-inner > .sub-textarea::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    margin-right: -108%;
    width: 500%;
    height: 100%;
    background: #fdd000;
    z-index: 0;
  }
  .mod-topsummary.-right > .sub-wrapper > .sub-content > .sub-inner > .sub-textarea {
    background: #fdd000;
    padding: 30px;
    margin-left: 0px;
    margin-top: 40px;
  }
  .mod-topsummary.-right > .sub-wrapper > .sub-content > .sub-inner > .sub-textarea > .mod-para {
    position: relative;
  }
}

.mod-topsummary.-left {
  background: url("/ex/meitantei_pikachu/common/images/top/bg_summary_left@2x.jpg") top right no-repeat;
  background-size: 95% auto;
}

.mod-topsummary.-left > .sub-wrapper > .sub-content > .sub-inner > .sub-textarea {
  background: #fdd000;
  padding: 30px;
  margin-right: -30px;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .mod-topsummary.-left {
    background: url("/ex/meitantei_pikachu/common/images/top/bg_summary_left.jpg") top right no-repeat;
    background-size: auto;
  }
  .mod-topsummary.-left > .sub-wrapper {
    max-width: 980px;
    margin: auto;
    position: relative;
    *zoom: 1;
    /*
---
name: clearfix
category: -mixin
---
```scss
  @include clearfix;
```
 */
  }
  .mod-topsummary.-left > .sub-wrapper:after {
    content: '';
    display: table;
    clear: both;
  }
  .mod-topsummary.-left > .sub-wrapper > .sub-content {
    width: 50%;
  }
  .mod-topsummary.-left > .sub-wrapper > .sub-content:nth-child(1) {
    float: left;
    position: relative;
    z-index: 1;
  }
  .mod-topsummary.-left > .sub-wrapper > .sub-content:nth-child(1) > .sub-inner {
    padding-right: 20px;
  }
  .mod-topsummary.-left > .sub-wrapper > .sub-content:nth-child(2) {
    float: right;
  }
  .mod-topsummary.-left > .sub-wrapper > .sub-content:nth-child(2) > .sub-inner {
    padding-left: 20px;
  }
  .mod-topsummary.-left > .sub-wrapper > .sub-content:nth-child(2) > .sub-inner > .sub-textarea {
    padding: 40px 0;
    position: relative;
  }
  .mod-topsummary.-left > .sub-wrapper > .sub-content:nth-child(2) > .sub-inner > .sub-textarea::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: -108%;
    width: 500%;
    height: 100%;
    background: #fdd000;
    z-index: 0;
  }
  .mod-topsummary.-left > .sub-wrapper > .sub-content > .sub-inner > .sub-textarea {
    background: #fdd000;
    padding: 30px;
    margin-right: 0px;
    margin-top: 40px;
  }
  .mod-topsummary.-left > .sub-wrapper > .sub-content > .sub-inner > .sub-textarea > .mod-para {
    position: relative;
  }
}

.mod-topsummary > .sub-wrapper > .sub-content > .sub-inner > .sub-textarea .mod-button {
  padding: .6em 1em;
  min-width: 60%;
}

@media screen and (min-width: 768px) {
  .mod-topsummary > .sub-wrapper > .sub-content > .sub-inner > .sub-textarea .mod-button {
    min-width: 228px;
  }
}

.mod-topsummary.-adjust1 {
  z-index: 5;
}

@media screen and (max-width: 767px) {
  .mod-topsummary.-adjust1 > .sub-wrapper > .sub-content:nth-child(1) .mod-image img {
    margin: 10% 0 -10% 25%;
  }
}

@media screen and (min-width: 768px) {
  .mod-topsummary.-adjust1 > .sub-wrapper > .sub-content:nth-child(1) .mod-image img {
    margin: 75px -22px 0 40px;
  }
}

@media screen and (min-width: 768px) {
  .mod-topsummary.-adjust1 > .sub-wrapper > .sub-content:nth-child(2) .mod-image {
    margin-right: -60px;
    margin-top: 150px;
  }
}

.mod-topsummary.-adjust2 {
  z-index: 4;
}

@media screen and (min-width: 768px) {
  .mod-topsummary.-adjust2 {
    margin-top: -40px;
    padding-top: 160px;
  }
}

.mod-topsummary.-adjust2 > .sub-wrapper > .sub-content:nth-child(1) .mod-image {
  margin-left: -193px;
}

@media screen and (max-width: 767px) {
  .mod-topsummary.-adjust2 > .sub-wrapper > .sub-content:nth-child(1) .mod-image {
    margin: -30px -30px 25px -30px;
  }
  .mod-topsummary.-adjust2 > .sub-wrapper > .sub-content:nth-child(1) .mod-image img {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px) {
  .mod-topsummary.-adjust2 > .sub-wrapper > .sub-content:nth-child(2) .mod-image {
    margin-top: 34px;
  }
}

.mod-topsummary.-adjust3 {
  z-index: 3;
  margin-top: -25px;
  padding-top: 75px;
}

@media screen and (min-width: 768px) {
  .mod-topsummary.-adjust3 {
    margin-top: -55px;
    padding-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .mod-topsummary.-adjust3 > .sub-wrapper > .sub-content:nth-child(1) .mod-image img {
    margin: 0 -10% -13% 5%;
  }
}

@media screen and (min-width: 768px) {
  .mod-topsummary.-adjust3 > .sub-wrapper > .sub-content:nth-child(1) .mod-image img {
    margin: 0 -22px 0 40px;
  }
}

@media screen and (min-width: 768px) {
  .mod-topsummary.-adjust3 > .sub-wrapper > .sub-content:nth-child(2) .mod-image {
    margin-right: -60px;
    margin-top: 130px;
  }
}

.mod-topsummary.-adjust4 {
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .mod-topsummary.-adjust4 {
    margin-top: -86px;
    padding-top: 120px;
  }
}

@media screen and (max-width: 767px) {
  .mod-topsummary.-adjust4 > .sub-wrapper > .sub-content:nth-child(1) .mod-image {
    margin: -30px 20px 25px 20px;
  }
  .mod-topsummary.-adjust4 > .sub-wrapper > .sub-content:nth-child(1) .mod-image img {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px) {
  .mod-topsummary.-adjust4 > .sub-wrapper > .sub-content:nth-child(1) .mod-image {
    margin-right: 80px;
  }
}

@media screen and (min-width: 1023px) {
  .mod-topsummary.-adjust4 > .sub-wrapper > .sub-content:nth-child(1) .mod-image {
    margin-left: -50px;
  }
}

@media screen and (min-width: 768px) {
  .mod-topsummary.-adjust4 > .sub-wrapper > .sub-content:nth-child(2) .mod-image {
    margin-top: 34px;
  }
}

@media screen and (min-width: 768px) {
  .mod-topsummary.-adjust4 > .sub-wrapper > .sub-content:nth-child(2) .sub-textarea {
    min-height: 240px;
  }
}

._iconNew {
  position: relative;
}

._iconNew::before {
  content: "";
  display: block;
  width: 39px;
  height: 14px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 1595% 3822%;
  background-position: 94.67085% 27.33645%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
  position: absolute;
}

._iconNew::before:after {
  content: '';
  display: block;
  padding-top: 35.9375%;
}

@media screen and (min-width: 768px) {
  ._iconNew::before {
    width: 64px;
    height: 23px;
  }
}

.mod-topsummary ._iconNew {
  position: relative;
  margin-top: 45px;
}

@media screen and (min-width: 768px) {
  .mod-topsummary ._iconNew {
    margin-top: 0;
  }
}

.mod-topsummary ._iconNew::before {
  top: -22px;
  left: 0;
}

@media screen and (min-width: 768px) {
  .mod-topsummary ._iconNew::before {
    top: -60px;
    left: 0;
  }
}

.mod-specarea {
  margin-top: 60px;
  background: url("/ex/meitantei_pikachu/common/images/top/bg_specarea@2x.jpg") top center no-repeat;
  background-size: cover;
  padding: 40px 15px 60px;
  position: relative;
}

.mod-specarea::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: url("/ex/meitantei_pikachu/common/images/overlaydot.png");
  opacity: .8;
}

@media screen and (min-width: 768px) {
  .mod-specarea {
    margin-top: 120px;
    background: url("/ex/meitantei_pikachu/common/images/top/bg_specarea.jpg") top center no-repeat;
    background-size: cover;
    padding: 60px 15px 80px;
  }
  .mod-specarea > .sub-inner {
    max-width: 980px;
    margin: auto;
  }
}

.mod-specarea h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.mod-specarea h2 img {
  width: 31.884058%;
}

@media screen and (min-width: 768px) {
  .mod-specarea h2 {
    text-align: left;
    margin-bottom: 30px;
  }
  .mod-specarea h2 img {
    width: 147px;
  }
}

.mod-specarea .sub-spec {
  position: relative;
  z-index: 2;
  background: white;
  padding: 30px;
}

@media screen and (min-width: 768px) {
  .mod-specarea .sub-spec {
    padding: 55px;
  }
}

.mod-specarea .sub-spec .mod-image.-package img {
  width: 64%;
}

@media screen and (min-width: 768px) {
  .mod-specarea .sub-spec .mod-image.-package {
    padding-right: 18%;
  }
  .mod-specarea .sub-spec .mod-image.-package img {
    width: auto;
  }
}

.mod-specarea .sub-spec .mod-column > .sub-cell:nth-child(1) {
  margin-bottom: 15px;
}

.mod-specarea .sub-spec .mod-column > .sub-cell .mod-likeTable2 dt.sub-dt {
  min-width: 7em;
}

@media screen and (min-width: 768px) {
  .mod-specarea .sub-spec .mod-column > .sub-cell:nth-child(3) .mod-likeTable2 {
    padding-left: 30px;
  }
  .mod-specarea .sub-spec .mod-column > .sub-cell:nth-child(3) .mod-likeTable2 dt.sub-dt {
    min-width: 7em;
  }
}

.mod-character {
  min-height: 410px;
}

@media screen and (min-width: 768px) {
  .mod-character {
    min-height: 515px;
  }
  .mod-character.-last > .sub-inner {
    padding-bottom: 120px;
  }
}

.mod-character:nth-child(2n) {
  background: url("/ex/meitantei_pikachu/common/images/character/bg_r@2x.png") top right no-repeat;
  background-size: 307px auto;
}

@media screen and (min-width: 768px) {
  .mod-character:nth-child(2n) {
    background: url("/ex/meitantei_pikachu/common/images/character/bg_r.png") top right no-repeat;
  }
}

.mod-character:nth-child(2n+1) {
  background: url("/ex/meitantei_pikachu/common/images/character/bg_l@2x.png") top left no-repeat;
  background-size: 307px auto;
}

@media screen and (min-width: 768px) {
  .mod-character:nth-child(2n+1) {
    background: url("/ex/meitantei_pikachu/common/images/character/bg_l.png") top left no-repeat;
  }
}

@media screen and (max-width: 767px) {
  .mod-character > .sub-inner {
    margin: -62px 0 62px;
    padding: 40px 30px 40px;
  }
}

@media screen and (min-width: 768px) {
  .mod-character > .sub-inner {
    padding: 40px 30px 60px;
  }
}

@media screen and (max-width: 767px) {
  .mod-character.-adjust1 {
    margin-top: -72px;
    padding-top: 110px;
  }
}

@media screen and (min-width: 768px) {
  .mod-character .mod-twoColContent > .sub-content:nth-child(1) {
    width: 40%;
  }
  .mod-character .mod-twoColContent > .sub-content:nth-child(2) {
    width: 60%;
  }
  .mod-character.-adjust1 {
    margin-top: -137px;
    padding-top: 130px;
  }
}

._relative {
  position: relative;
}

.mod-button.-red.-ch1 {
  position: absolute;
  top: 27%;
  left: 35%;
}

@media screen and (min-width: 768px) {
  .mod-button.-red.-ch1 {
    top: 33%;
    left: 26%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mod-button.-red.-ch1 {
    top: 33%;
    left: 36%;
  }
}

.mod-button.-red.-ch1-02 {
  position: absolute;
  top: 35%;
  left: 30%;
}

@media screen and (min-width: 768px) {
  .mod-button.-red.-ch1-02 {
    top: 38%;
    left: 23%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mod-button.-red.-ch1-02 {
    top: 38%;
    left: 31%;
  }
}

.mod-button.-red.-ch12 {
  position: absolute;
  top: 24%;
  left: 32%;
}

@media screen and (min-width: 768px) {
  .mod-button.-red.-ch12 {
    top: 30%;
    left: 23%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mod-button.-red.-ch12 {
    top: 29%;
    left: 27%;
  }
}

.mod-cvBase {
  background: rgba(0, 0, 0, 0.5);
  display: none;
  opacity: 0;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mod-cvBase.-view {
  display: block;
  opacity: 1;
}

.mod-cvBase > .sub-inner {
  position: relative;
  background: white;
  display: block;
  max-width: 760px;
  padding: 30px;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .mod-cvBase > .sub-inner {
    padding: 40px;
  }
}

.mod-cvBase > .sub-inner::before {
  content: "";
  display: block;
  text-align: center;
  width: 57px;
  height: 57px;
  border-radius: 100%;
  position: absolute;
  top: -28px;
  right: -10px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 888% 764%;
  background-position: 100% 0%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
}

@media screen and (min-width: 768px) {
  .mod-cvBase > .sub-inner::before {
    top: -28px;
    right: -28px;
  }
}

.mod-cvBase > .sub-inner::before:after {
  content: '';
  display: block;
  padding-top: 100%;
}

.mod-cvBase > .sub-inner .mod-column.-cv {
  display: none;
}

.mod-footerNav {
  background: #fdd000;
  padding: 30px 15px;
  position: relative;
}

.mod-footerNav::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  display: block;
  width: 100%;
  height: 5px;
  background: url("/ex/meitantei_pikachu/common/images/gizagiza2.png") top left repeat-x;
  background-size: auto 5px;
}

@media screen and (min-width: 768px) {
  .mod-footerNav::before {
    height: 11px;
    top: -11px;
    background-size: auto;
  }
}

@media screen and (min-width: 768px) {
  .mod-footerNav .mod-nav {
    max-width: 980px;
    margin: auto;
  }
}

.mod-footerNav .mod-nav > ul.sub-navlist {
  list-style: none;
  letter-spacing: -.34em;
  line-height: 0;
}

.mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem {
  display: inline-block;
  letter-spacing: 0;
  width: 50%;
}

@media screen and (min-width: 768px) {
  .mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem {
    width: 20%;
  }
}

.mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem > a {
  display: block;
  margin: 3px 3px 0 0;
  border-radius: 5px;
  height: 0;
}

@media screen and (min-width: 768px) {
  .mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem > a {
    margin: 0px 4px 0 0;
  }
}

.mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.top a {
  width: auto;
  padding-top: 35.087719%;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 299% 733%;
  background-position: 0% 0%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
}

.mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.top a:after {
  content: '';
  display: block;
  padding-top: 35.08772%;
}

@media screen and (min-width: 768px) {
  .mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.top {
    display: none;
  }
}

.mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.news a {
  width: auto;
  padding-top: 35.087719%;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 299% 733%;
  background-position: 0% 34.2556%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
}

.mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.news a:after {
  content: '';
  display: block;
  padding-top: 35.08772%;
}

@media screen and (min-width: 768px) {
  .mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.news a {
    width: auto;
    padding-top: 83.3333%;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    font-size: 0;
    background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
    background-size: 532% 549%;
    background-position: 48.73341% 69.54103%;
    /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
  }
  .mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.news a:after {
    content: '';
    display: block;
    padding-top: 83.33333%;
  }
}

.mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.pikachu a {
  width: auto;
  padding-top: 35.087719%;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 299% 733%;
  background-position: 51.84094% 34.2556%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
}

.mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.pikachu a:after {
  content: '';
  display: block;
  padding-top: 35.08772%;
}

@media screen and (min-width: 768px) {
  .mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.pikachu a {
    width: auto;
    padding-top: 83.3333%;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    font-size: 0;
    background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
    background-size: 532% 549%;
    background-position: 0% 69.54103%;
    /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
  }
  .mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.pikachu a:after {
    content: '';
    display: block;
    padding-top: 83.33333%;
  }
}

.mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.about a {
  width: auto;
  padding-top: 35.087719%;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 299% 733%;
  background-position: 51.84094% 17.1278%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
}

.mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.about a:after {
  content: '';
  display: block;
  padding-top: 35.08772%;
}

@media screen and (min-width: 768px) {
  .mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.about a {
    width: auto;
    padding-top: 83.3333%;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    font-size: 0;
    background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
    background-size: 532% 549%;
    background-position: 84.92159% 0%;
    /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
  }
  .mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.about a:after {
    content: '';
    display: block;
    padding-top: 83.33333%;
  }
}

.mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.character a {
  width: auto;
  padding-top: 35.087719%;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 299% 733%;
  background-position: 0% 17.1278%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
}

.mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.character a:after {
  content: '';
  display: block;
  padding-top: 35.08772%;
}

@media screen and (min-width: 768px) {
  .mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.character a {
    width: auto;
    padding-top: 83.3333%;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    font-size: 0;
    background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
    background-size: 532% 549%;
    background-position: 24.36671% 69.54103%;
    /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
  }
  .mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.character a:after {
    content: '';
    display: block;
    padding-top: 83.33333%;
  }
}

.mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.game a {
  width: auto;
  padding-top: 35.087719%;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
  background-size: 299% 733%;
  background-position: 51.84094% 0%;
  /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
}

.mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.game a:after {
  content: '';
  display: block;
  padding-top: 35.08772%;
}

@media screen and (min-width: 768px) {
  .mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.game a {
    width: auto;
    padding-top: 83.3333%;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    font-size: 0;
    background-image: url("/ex/meitantei_pikachu/common/images/sprite.png");
    background-size: 532% 549%;
    background-position: 84.92159% 23.64395%;
    /*
---
name: sprite
category: -mixin
---
[gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith#documentation)を使用しています。  
レスポンシブ対応mixinは「[gulp.spritesmithをレスポンシブに対応させる](https://qiita.com/masterkey1009/items/f0b46bca302e193ad1a2)」をまるっと採用させていただいてます。
```jade
.sprite
```
```css
.sprite {
  max-width:$dummy-01-width / 2;
  max-height:$dummy-01-height / 2;
  @include screen_l() {
    max-width:$dummy-01-width;
    max-height:$dummy-01-height;
  }
  @include sprite-responsive($dummy-01);
  &:hover {
    @include sprite-responsive($dummy-02);
  }
}
```
*/
  }
  .mod-footerNav .mod-nav > ul.sub-navlist > li.sub-navitem.game a:after {
    content: '';
    display: block;
    padding-top: 83.33333%;
  }
}

/*
---
name: ブレイクポイントで表示切り替え
category: -helper
---

```jade
._showSp SPで表示
._showPc PCで表示
```
*/
@media screen and (min-width: 768px) {
  ._showSp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  ._showPc {
    display: none !important;
  }
}

/*
---
name: 横幅設定
category: -helper
---
横幅指定
おもにmod-columnでセルの幅指定に使用する

```jade
._x1of1: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of2: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of3: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x2of3: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of4: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x3of4: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of5: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x2of5: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x3of5: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x4of5: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of6: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x5of6: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of7: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x2of7: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x3of7: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x4of7: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x5of7: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x6of7: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of8: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x3of8: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x5of8: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x7of8: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of9: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x2of9: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x4of9: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x5of9: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x7of9: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x8of9: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of10: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x3of10: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x7of10: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x9of10: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
```
*/
._x1of1 {
  width: 100%;
}

._x1of2 {
  width: 50%;
}

._x1of3 {
  width: 33.333%;
}

._x2of3 {
  width: 66.666%;
}

._x1of4 {
  width: 25%;
}

._x3of4 {
  width: 75%;
}

._x1of5 {
  width: 20%;
}

._x2of5 {
  width: 40%;
}

._x3of5 {
  width: 60%;
}

._x4of5 {
  width: 80%;
}

._x1of6 {
  width: 16.666%;
}

._x5of6 {
  width: 83.333%;
}

._x1of7 {
  width: 14.285%;
}

._x2of7 {
  width: 28.571%;
}

._x3of7 {
  width: 42.857%;
}

._x4of7 {
  width: 57.142%;
}

._x5of7 {
  width: 71.428%;
}

._x6of7 {
  width: 85.714%;
}

._x1of8 {
  width: 12.5%;
}

._x3of8 {
  width: 37.5%;
}

._x5of8 {
  width: 62.5%;
}

._x7of8 {
  width: 87.5%;
}

._x1of9 {
  width: 11.111%;
}

._x2of9 {
  width: 22.222%;
}

._x4of9 {
  width: 44.444%;
}

._x5of9 {
  width: 55.555%;
}

._x7of9 {
  width: 77.777%;
}

._x8of9 {
  width: 88.888%;
}

._x1of10 {
  width: 10%;
}

._x3of10 {
  width: 30%;
}

._x7of10 {
  width: 70%;
}

._x9of10 {
  width: 90%;
}

/*
---
name: 横幅指定(スマホ時)
category: -helper
---
横幅指定(スマホ時)
おもにmod-columnでセルの幅指定に使用する

```jade
._x1of1_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of2_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of3_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x2of3_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of4_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x3of4_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of5_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x2of5_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x3of5_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x4of5_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of6_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x5of6_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of7_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x2of7_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x3of7_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x4of7_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x5of7_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x6of7_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of8_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x3of8_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x5of8_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x7of8_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of9_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x2of9_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x4of9_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x5of9_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x7of9_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x8of9_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of10_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x3of10_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x7of10_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x9of10_sp: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
```
*/
@media screen and (max-width: 767px) {
  ._x1of1_sp {
    width: 100% !important;
  }
  ._x1of2_sp {
    width: 50% !important;
  }
  ._x1of3_sp {
    width: 33.333% !important;
  }
  ._x2of3_sp {
    width: 66.666% !important;
  }
  ._x1of4_sp {
    width: 25% !important;
  }
  ._x3of4_sp {
    width: 75% !important;
  }
  ._x1of5_sp {
    width: 20% !important;
  }
  ._x2of5_sp {
    width: 40% !important;
  }
  ._x3of5_sp {
    width: 60% !important;
  }
  ._x4of5_sp {
    width: 80% !important;
  }
  ._x1of6_sp {
    width: 16.666% !important;
  }
  ._x5of6_sp {
    width: 83.333% !important;
  }
  ._x1of7_sp {
    width: 14.285% !important;
  }
  ._x2of7_sp {
    width: 28.571% !important;
  }
  ._x3of7_sp {
    width: 42.857% !important;
  }
  ._x4of7_sp {
    width: 57.142% !important;
  }
  ._x5of7_sp {
    width: 71.428% !important;
  }
  ._x6of7_sp {
    width: 85.714% !important;
  }
  ._x1of8_sp {
    width: 12.5% !important;
  }
  ._x3of8_sp {
    width: 37.5% !important;
  }
  ._x5of8_sp {
    width: 62.5% !important;
  }
  ._x7of8_sp {
    width: 87.5% !important;
  }
  ._x1of9_sp {
    width: 11.111% !important;
  }
  ._x2of9_sp {
    width: 22.222% !important;
  }
  ._x4of9_sp {
    width: 44.444% !important;
  }
  ._x5of9_sp {
    width: 55.555% !important;
  }
  ._x7of9_sp {
    width: 77.777% !important;
  }
  ._x8of9_sp {
    width: 88.888% !important;
  }
  ._x1of10_sp {
    width: 10% !important;
  }
  ._x3of10_sp {
    width: 30% !important;
  }
  ._x7of10_sp {
    width: 70% !important;
  }
  ._x9of10_sp {
    width: 90% !important;
  }
}

/*
---
name: 横幅指定(PC時)
category: -helper
---
横幅指定(PC時)
おもにmod-columnでセルの幅指定に使用する

```jade
._x1of1_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of2_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of3_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x2of3_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of4_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x3of4_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of5_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x2of5_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x3of5_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x4of5_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of6_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x5of6_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of7_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x2of7_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x3of7_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x4of7_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x5of7_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x6of7_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of8_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x3of8_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x5of8_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x7of8_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of9_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x2of9_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x4of9_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x5of9_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x7of9_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x8of9_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x1of10_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x3of10_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x7of10_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
._x9of10_pc: img(src='https://placehold.jp/fff/1000x30.png?text=dummy', alt='')
```
*/
@media screen and (min-width: 768px) {
  ._x1of1_pc {
    width: 100% !important;
  }
  ._x1of2_pc {
    width: 50% !important;
  }
  ._x1of3_pc {
    width: 33.333% !important;
  }
  ._x2of3_pc {
    width: 66.666% !important;
  }
  ._x1of4_pc {
    width: 25% !important;
  }
  ._x3of4_pc {
    width: 75% !important;
  }
  ._x1of5_pc {
    width: 20% !important;
  }
  ._x2of5_pc {
    width: 40% !important;
  }
  ._x3of5_pc {
    width: 60% !important;
  }
  ._x4of5_pc {
    width: 80% !important;
  }
  ._x1of6_pc {
    width: 16.666% !important;
  }
  ._x5of6_pc {
    width: 83.333% !important;
  }
  ._x1of7_pc {
    width: 14.285% !important;
  }
  ._x2of7_pc {
    width: 28.571% !important;
  }
  ._x3of7_pc {
    width: 42.857% !important;
  }
  ._x4of7_pc {
    width: 57.142% !important;
  }
  ._x5of7_pc {
    width: 71.428% !important;
  }
  ._x6of7_pc {
    width: 85.714% !important;
  }
  ._x1of8_pc {
    width: 12.5% !important;
  }
  ._x3of8_pc {
    width: 37.5% !important;
  }
  ._x5of8_pc {
    width: 62.5% !important;
  }
  ._x7of8_pc {
    width: 87.5% !important;
  }
  ._x1of9_pc {
    width: 11.111% !important;
  }
  ._x2of9_pc {
    width: 22.222% !important;
  }
  ._x4of9_pc {
    width: 44.444% !important;
  }
  ._x5of9_pc {
    width: 55.555% !important;
  }
  ._x7of9_pc {
    width: 77.777% !important;
  }
  ._x8of9_pc {
    width: 88.888% !important;
  }
  ._x1of10_pc {
    width: 10% !important;
  }
  ._x3of10_pc {
    width: 30% !important;
  }
  ._x7of10_pc {
    width: 70% !important;
  }
  ._x9of10_pc {
    width: 90% !important;
  }
}

/*
---
name: ブロックポジション
category: -helper
---
ブロックポジション

```jade
._x1of3._blockCenter(style="background:#ccc;") block center
._x1of3._blockLeft(style="background:#ccc;") block left
._x1of3._blockRight(style="background:#ccc;") block right
```
*/
._blockCenter {
  margin-left: auto !important;
  margin-right: auto !important;
}

._blockLeft {
  margin-left: 0 !important;
  margin-right: auto !important;
}

._blockRight {
  margin-left: auto !important;
  margin-right: 0 !important;
}

/*
---
name: フロート
category: -helper
---
フロート

```jade
._clearfix 
    ._x1of3._floatLeft(style="background:#ccc;") floatLeft
    ._x1of3._floatRight(style="background:#ccc;") floatRight
```
*/
._floatLeft {
  float: left  !important;
}

._floatRight {
  float: right !important;
}

._clearfix {
  *zoom: 1;
  /*
---
name: clearfix
category: -mixin
---
```scss
  @include clearfix;
```
 */
}

._clearfix:after {
  content: '';
  display: table;
  clear: both;
}

/*
---
name: インラインのポジション
category: -helper
---
インラインのポジション

```jade
._clearfix 
p.mod-para._inlineCenter(style="background:#ccc;") inlineCenter
p.mod-para._inlineLeft(style="background:#ccc;") inlineLeft
p.mod-para._inlineRight(style="background:#ccc;") inlineRight
```
*/
._inlineCenter {
  text-align: center !important;
}

._inlineLeft {
  text-align: left   !important;
}

._inlineRight {
  text-align: right  !important;
}

/*
---
name: インラインのポジション（PCのみ）
category: -helper
---
インラインのポジション（PCのみ）

```jade
._clearfix 
p.mod-para._inlineCenterPc(style="background:#ccc;") inlineCenterPC
p.mod-para._inlineLeftPc(style="background:#ccc;") inlineLeftPC
p.mod-para._inlineRightPc(style="background:#ccc;") inlineRightPC
```
*/
@media screen and (min-width: 768px) {
  ._inlineCenterPc {
    text-align: center !important;
  }
  ._inlineLeftPc {
    text-align: left   !important;
  }
  ._inlineRightPc {
    text-align: right  !important;
  }
}

/*
---
name: インラインのポジション（SPのみ）
category: -helper
---
インラインのポジション（SPのみ）

```jade
._clearfix 
p.mod-para._inlineCenterSp(style="background:#ccc;") inlineCenterSP
p.mod-para._inlineLeftSp(style="background:#ccc;") inlineLeftSP
p.mod-para._inlineRightSp(style="background:#ccc;") inlineRightSP
```
*/
@media screen and (max-width: 767px) {
  ._inlineCenterSp {
    text-align: center !important;
  }
  ._inlineLeftSp {
    text-align: left   !important;
  }
  ._inlineRightSp {
    text-align: right  !important;
  }
}

/*
---
name: 縦のポジション
category: -helper
---
縦のポジション

```jade
p
    span(style="display:inline-block; height:5em; vertical-align:middle;")
    span._vAlignTop 上
    span._vAlignMiddle 中央
    span._vAlignBottom 下
```
*/
._vAlignTop {
  vertical-align: top;
}

._vAlignBottom {
  vertical-align: bottom;
}

._vAlignMiddle {
  vertical-align: middle;
}

/*
---
name: 縦のポジション（PCのみ）
category: -helper
---
縦のポジション（PCのみ）

```jade
p
    span(style="display:inline-block; height:5em; vertical-align:middle;")
    span._vAlignTopPc 上
    span._vAlignMiddlePc 中央
    span._vAlignBottomPc 下
```
*/
@media screen and (min-width: 768px) {
  ._vAlignTopPc {
    vertical-align: top;
  }
  ._vAlignBottomPc {
    vertical-align: bottom;
  }
  ._vAlignMiddlePc {
    vertical-align: middle;
  }
}

/*
---
name: 縦のポジション（SPのみ）
category: -helper
---
縦のポジション（SPのみ）

```jade
p
    span(style="display:inline-block; height:5em; vertical-align:middle;")
    span._vAlignTopSp 上
    span._vAlignMiddleSp 中央
    span._vAlignBottomSp 下
```
*/
@media screen and (max-width: 767px) {
  ._vAlignTopSp {
    vertical-align: top;
  }
  ._vAlignBottomSp {
    vertical-align: bottom;
  }
  ._vAlignMiddleSp {
    vertical-align: middle;
  }
}

/*
---
name: マージン
category: -helper
---
|マージンの削除|
|-|
|._rm|
|._rmTop|
|._rmBottom|
|._rmLeft|
|._rmRight|

|上マージン|下マージン|左マージン|右マージン|
|--|--|--|--|
|._addTopXS|._addBottomXS|._addLeftXS|._addRightXS|
|._addTopSS|._addBottomSS|._addLeftSS|._addRightSS|
|._addTopS|._addBottomS|._addLeftS|._addRightS|
|._addTopM|._addBottomM|._addLeftM|._addRightM|
|._addTopL|._addBottomL|._addLeftL|._addRightL|
|._addTopLL|._addBottomLL|._addLeftLL|._addRightLL|
|._addTopXL|._addBottomXL|._addLeftXL|._addRightXL|
*/
/*
---
name: パディング
category: -helper
---
|パディングの削除|
|-|
|._rmPad|
|._rmPadTop|
|._rmPadBottom|
|._rmPadLeft|
|._rmPadRight|

|上パディング|下パディング|左パディング|右パディング|
|--|--|--|--|
|._addPadTopXS|._addPadBottomXS|._addPadLeftXS|._addPadRightXS|
|._addPadTopSS|._addPadBottomSS|._addPadLeftSS|._addPadRightSS|
|._addPadTopS|._addPadBottomS|._addPadLeftS|._addPadRightS|
|._addPadTopM|._addPadBottomM|._addPadLeftM|._addPadRightM|
|._addPadTopL|._addPadBottomL|._addPadLeftL|._addPadRightL|
|._addPadTopLL|._addPadBottomLL|._addPadLeftLL|._addPadRightLL|
|._addPadTopXL|._addPadBottomXL|._addPadLeftXL|._addPadRightXL|


*/
._rm {
  margin: 0 !important;
}

._rmTop {
  margin-top: 0 !important;
}

._rmBottom {
  margin-bottom: 0 !important;
}

._rmLeft {
  margin-left: 0 !important;
}

._rmRight {
  margin-right: 0 !important;
}

._rmPad {
  padding: 0 !important;
}

._rmPadTop {
  padding-top: 0 !important;
}

._rmPadBottom {
  padding-bottom: 0 !important;
}

._rmPadLeft {
  padding-left: 0 !important;
}

._rmPadRight {
  padding-right: 0 !important;
}

@media screen and (min-width: 768px) {
  ._addTopXS {
    margin-top: 0.2em !important;
  }
  ._addTopSS {
    margin-top: 0.5em !important;
  }
  ._addTopS {
    margin-top: 0.8em !important;
  }
  ._addTopM {
    margin-top: 1em !important;
  }
  ._addTopL {
    margin-top: 1.5em !important;
  }
  ._addTopLL {
    margin-top: 2em !important;
  }
  ._addTopXL {
    margin-top: 3em !important;
  }
  ._addBottomXS {
    margin-bottom: 0.2em !important;
  }
  ._addBottomSS {
    margin-bottom: 0.5em !important;
  }
  ._addBottomS {
    margin-bottom: 0.8em !important;
  }
  ._addBottomM {
    margin-bottom: 1em !important;
  }
  ._addBottomL {
    margin-bottom: 1.5em !important;
  }
  ._addBottomLL {
    margin-bottom: 2em !important;
  }
  ._addBottomXL {
    margin-bottom: 3em !important;
  }
  ._addLeftXS {
    margin-left: 0.2em !important;
  }
  ._addLeftSS {
    margin-left: 0.5em !important;
  }
  ._addLeftS {
    margin-left: 0.8em !important;
  }
  ._addLeftM {
    margin-left: 1em !important;
  }
  ._addLeftL {
    margin-left: 1.5em !important;
  }
  ._addLeftLL {
    margin-left: 2em !important;
  }
  ._addLeftXL {
    margin-left: 3em !important;
  }
  ._addRightXS {
    margin-right: 0.2em !important;
  }
  ._addRightSS {
    margin-right: 0.5em !important;
  }
  ._addRightS {
    margin-right: 0.8em !important;
  }
  ._addRightM {
    margin-right: 1em !important;
  }
  ._addRightL {
    margin-right: 1.5em !important;
  }
  ._addRightLL {
    margin-right: 2em !important;
  }
  ._addRightXL {
    margin-right: 3em !important;
  }
  ._addPadXS {
    padding: 0.2em !important;
  }
  ._addPadSS {
    padding: 0.5em !important;
  }
  ._addPadS {
    padding: 0.8em !important;
  }
  ._addPadM {
    padding: 1em !important;
  }
  ._addPadL {
    padding: 1.5em !important;
  }
  ._addPadLL {
    padding: 2em !important;
  }
  ._addPadXL {
    padding: 3em !important;
  }
  ._addPadTopXS {
    padding-top: 0.2em !important;
  }
  ._addPadTopSS {
    padding-top: 0.5em !important;
  }
  ._addPadTopS {
    padding-top: 0.8em !important;
  }
  ._addPadTopM {
    padding-top: 1em !important;
  }
  ._addPadTopL {
    padding-top: 1.5em !important;
  }
  ._addPadTopLL {
    padding-top: 2em !important;
  }
  ._addPadTopXL {
    padding-top: 3em !important;
  }
  ._addPadBottomXS {
    padding-bottom: 0.2em !important;
  }
  ._addPadBottomSS {
    padding-bottom: 0.5em !important;
  }
  ._addPadBottomS {
    padding-bottom: 0.8em !important;
  }
  ._addPadBottomM {
    padding-bottom: 1em !important;
  }
  ._addPadBottomL {
    padding-bottom: 1.5em !important;
  }
  ._addPadBottomLL {
    padding-bottom: 2em !important;
  }
  ._addPadBottomXL {
    padding-bottom: 3em !important;
  }
  ._addPadLeftXS {
    padding-left: 0.2em !important;
  }
  ._addPadLeftSS {
    padding-left: 0.5em !important;
  }
  ._addPadLeftS {
    padding-left: 0.8em !important;
  }
  ._addPadLeftM {
    padding-left: 1em !important;
  }
  ._addPadLeftL {
    padding-left: 1.5em !important;
  }
  ._addPadLeftLL {
    padding-left: 2em !important;
  }
  ._addPadLeftXL {
    padding-left: 3em !important;
  }
  ._addPadRightXS {
    padding-right: 0.2em !important;
  }
  ._addPadRightSS {
    padding-right: 0.5em !important;
  }
  ._addPadRightS {
    padding-right: 0.8em !important;
  }
  ._addPadRightM {
    padding-right: 1em !important;
  }
  ._addPadRightL {
    padding-right: 1.5em !important;
  }
  ._addPadRightLL {
    padding-right: 2em !important;
  }
  ._addPadRightXL {
    padding-right: 3em !important;
  }
}

@media screen and (max-width: 767px) {
  ._addTopXS {
    margin-top: 0.2em !important;
  }
  ._addTopSS {
    margin-top: 0.5em !important;
  }
  ._addTopS {
    margin-top: 0.8em !important;
  }
  ._addTopM {
    margin-top: 1em !important;
  }
  ._addTopL {
    margin-top: 1.5em !important;
  }
  ._addTopLL {
    margin-top: 1.8em !important;
  }
  ._addTopXL {
    margin-top: 2em !important;
  }
  ._addBottomXS {
    margin-bottom: 0.2em !important;
  }
  ._addBottomSS {
    margin-bottom: 0.5em !important;
  }
  ._addBottomS {
    margin-bottom: 0.8em !important;
  }
  ._addBottomM {
    margin-bottom: 1em !important;
  }
  ._addBottomL {
    margin-bottom: 1.5em !important;
  }
  ._addBottomLL {
    margin-bottom: 1.8em !important;
  }
  ._addBottomXL {
    margin-bottom: 2em !important;
  }
  ._addLeftXS {
    margin-left: 0.2em !important;
  }
  ._addLeftSS {
    margin-left: 0.5em !important;
  }
  ._addLeftS {
    margin-left: 0.8em !important;
  }
  ._addLeftM {
    margin-left: 1em !important;
  }
  ._addLeftL {
    margin-left: 1.5em !important;
  }
  ._addLeftLL {
    margin-left: 1.8em !important;
  }
  ._addLeftXL {
    margin-left: 2em !important;
  }
  ._addRightXS {
    margin-right: 0.2em !important;
  }
  ._addRightSS {
    margin-right: 0.5em !important;
  }
  ._addRightS {
    margin-right: 0.8em !important;
  }
  ._addRightM {
    margin-right: 1em !important;
  }
  ._addRightL {
    margin-right: 1.5em !important;
  }
  ._addRightLL {
    margin-right: 1.8em !important;
  }
  ._addRightXL {
    margin-right: 2em !important;
  }
  ._addPadXS {
    padding: 0.2em !important;
  }
  ._addPadSS {
    padding: 0.5em !important;
  }
  ._addPadS {
    padding: 0.8em !important;
  }
  ._addPadM {
    padding: 1em !important;
  }
  ._addPadL {
    padding: 1.5em !important;
  }
  ._addPadLL {
    padding: 1.8em !important;
  }
  ._addPadXL {
    padding: 2em !important;
  }
  ._addPadTopXS {
    padding-top: 0.2em !important;
  }
  ._addPadTopSS {
    padding-top: 0.5em !important;
  }
  ._addPadTopS {
    padding-top: 0.8em !important;
  }
  ._addPadTopM {
    padding-top: 1em !important;
  }
  ._addPadTopL {
    padding-top: 1.5em !important;
  }
  ._addPadTopLL {
    padding-top: 1.8em !important;
  }
  ._addPadTopXL {
    padding-top: 2em !important;
  }
  ._addPadBottomXS {
    padding-bottom: 0.2em !important;
  }
  ._addPadBottomSS {
    padding-bottom: 0.5em !important;
  }
  ._addPadBottomS {
    padding-bottom: 0.8em !important;
  }
  ._addPadBottomM {
    padding-bottom: 1em !important;
  }
  ._addPadBottomL {
    padding-bottom: 1.5em !important;
  }
  ._addPadBottomLL {
    padding-bottom: 1.8em !important;
  }
  ._addPadBottomXL {
    padding-bottom: 2em !important;
  }
  ._addPadLeftXS {
    padding-left: 0.2em !important;
  }
  ._addPadLeftSS {
    padding-left: 0.5em !important;
  }
  ._addPadLeftS {
    padding-left: 0.8em !important;
  }
  ._addPadLeftM {
    padding-left: 1em !important;
  }
  ._addPadLeftL {
    padding-left: 1.5em !important;
  }
  ._addPadLeftLL {
    padding-left: 1.8em !important;
  }
  ._addPadLeftXL {
    padding-left: 2em !important;
  }
  ._addPadRightXS {
    padding-right: 0.2em !important;
  }
  ._addPadRightSS {
    padding-right: 0.5em !important;
  }
  ._addPadRightS {
    padding-right: 0.8em !important;
  }
  ._addPadRightM {
    padding-right: 1em !important;
  }
  ._addPadRightL {
    padding-right: 1.5em !important;
  }
  ._addPadRightLL {
    padding-right: 1.8em !important;
  }
  ._addPadRightXL {
    padding-right: 2em !important;
  }
}

html {
  font: 62.5%/2 "メイリオ", "Meiryo","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HiraKakuPro-W3","ＭＳ Ｐゴシック","MS PGothic",Osaka,sans-serif;
  color: #341c02;
  -webkit-text-size-adjust: 100%;
}

.outline {
  overflow: hidden;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
  line-height: 1.714;
}

@media screen and (min-width: 768px) {
  body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 16px;
    font-size: 1.6rem;
    /*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;  
に設定
```scss
  @include fontsize(引数);
```
 */
    line-height: 2;
  }
}

.mod-hide {
  opacity: 0;
  -webkit-transition: all 300ms 0s ease;
  -o-transition: all 300ms 0s ease;
  transition: all 300ms 0s ease;
}

.mod-hide._fadein {
  opacity: 1;
}

._pokename {
  width: 112px;
}

@media screen and (min-width: 768px) {
  ._pokename {
    width: 178px;
  }
}

/*
---
name: アイコンフォント一覧
category: -iconfont
---
```jade
.mod-list.-horizontal
  li.sub-li: span.mod-icon.-arrow1 ："\F001"
  li.sub-li: span.mod-icon.-arrow1Left ："\F002"
  li.sub-li: span.mod-icon.-arrow2 ："\F003"
  li.sub-li: span.mod-icon.-arrow2Left ："\F004"
  li.sub-li: span.mod-icon.-blankWindow ："\F005"
  li.sub-li: span.mod-icon.-blankWindow2 ："\F006"
  li.sub-li: span.mod-icon.-dotarrow ："\F007"
  li.sub-li: span.mod-icon.-dotarrow_l ："\F008"
  li.sub-li: span.mod-icon.-monbo ："\F009"
```
 */
