@charset "UTF-8";
/*--------------------------------------------
  2pc. サイドナビ z-index:3333
---------------------------------------------*/
.side-nav {
  position: fixed;
  z-index: 3333;
  top: 0;
  left: 0;

  width: 370px;

  transition: all 400ms ease;
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px); 

  background: #fff;

  *zoom: 1;
}

.side-nav:after {
  display: table;
  clear: both; 

  content: "";
}

.side-nav:before {
  display: table; 

  content: "";
}

.side-nav-open {
  position: relative; 

  float: right;

  width: 70px;
}

.side-nav-cts {
  display: table-cell;

  box-sizing: border-box;
  width: 300px;
  padding: 70px 0 70px 70px; 

  vertical-align: middle;
}

.side-nav-cts nav {
  display: inline-block;
}

#snav-triger {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 70px;
  height: 70px;
  margin: auto;

  cursor: pointer; 
  text-align: center;
}

#snav-triger span {
  position: absolute;
  top: 31px;
  right: 7px;
  left: 26px;

  display: block;

  width: 19px;
  height: 2px;

  transition: background 0 .3s; 

  background-color: #262626;
}

#snav-triger span:before,
#snav-triger span:after {
  position: absolute;
  left: 0;

  display: block;

  width: 19px;
  height: 2px;

  content: ""; 

  background-color: #262626;
}

#snav-triger span:before {
  top: -7px;
}

#snav-triger span:after {
  bottom: -7px;
}

#snav-triger span:before,
#snav-triger span:after {
  transition-delay: .3s, 0; 
  transition-duration: .3s, .3s;
}

#snav-triger span:before {
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
}

#snav-triger span:after {
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}

#snav-triger.active span {
  background: none;
}

#snav-triger.active span:before {
  top: 0;

  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#snav-triger.active span:after {
  bottom: 0;

  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#snav-triger.active span:before,
#snav-triger.active span:after {
  transition-delay: 0, .3s;

  background-color: #262626;
}

.nav-main {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  line-height: 1em;

  margin-bottom: 40px;
}

.nav-main li {
  line-height: 1.4em; 

  margin-bottom: 20px;
}

.nav-main li a {
  position: relative;

  display: inline-block;

  transition: .3s;
  text-decoration: none;

  color: #262626;
}

.nav-main li a:after {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 0;
  height: 1px;

  content: "";
  transition: .3s; 

  background-color: #262626;
}

.nav-main li a:hover:after {
  width: 100%;
}

.nav-sub {
  font-size: 13px;
  line-height: 1em;
}

.nav-sub li {
  margin-bottom: 20px;
}

.nav-sub li a {
  transition: all 400ms ease; 
  text-decoration: none;

  color: #a1a1a1;
}

.nav-sub li a:hover {
  color: #262626;
}

.nav-sub-link {
  margin-top: 40px;
  padding-bottom: 40px;
}

.nav-sns {
  font-size: 0;
}

.nav-sns li {
  font-size: 24px;

  display: inline-block;

  margin-right: 20px; 

  vertical-align: middle;

  *display: inline;
  *zoom: 1;
}

.nav-sns li a {
  color: #262626;
}

/*--------------------------------------------
  3pc. カテゴリーナビ z-index:2222
---------------------------------------------*/
.cate-nav {
  position: fixed;
  z-index: 2222;
  top: 0;
  right: 0;

  width: 670px;

  transition: all 400ms ease;
  -webkit-transform: translateX(600px);
          transform: translateX(600px); 

  background: #fff;

  *zoom: 1;
}

.cate-nav:after {
  display: table;
  clear: both; 

  content: "";
}

.cate-nav:before {
  display: table; 

  content: "";
}

.cate-nav-open {
  position: relative; 

  float: left;

  width: 70px;
}

.cate-nav-cts {
  display: table-cell;

  box-sizing: border-box;
  width: 600px;
  padding: 70px 70px 70px 0; 

  vertical-align: middle;
}

.cate-nav-cts nav {
  display: inline-block;
}

.cate-nav-cts nav h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;

  margin-bottom: 20px;
}

.cate-nav-cts nav p {
  margin-bottom: 10px;
}

#cate-triger {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 70px;
  height: 70px;
  margin: auto;

  cursor: pointer;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); 
  text-align: center;
}

#cate-triger div {
  font-family: "Montserrat", sans-serif;
  line-height: 70px;

  position: absolute;
  top: 0;
  left: 0;

  transition: all 400ms ease;
  text-align: center;
}

#cate-triger span {
  position: absolute;
  top: 34px;
  right: 7px;
  left: 22px;

  display: block;

  width: 19px;
  height: 2px;

  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: background 0 .3s; 
  -webkit-transform: rotate(-90deg);
          transform: scale(0);
          transform: rotate(-90deg);

  opacity: 0;
  background: none;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

#cate-triger span:before,
#cate-triger span:after {
  position: absolute;
  left: 0;

  display: block;

  width: 19px;
  height: 2px;

  content: "";
  transition: all 400ms ease; 

  background-color: #262626;
}

#cate-triger span:before {
  top: 0;

  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#cate-triger span:after {
  bottom: 0;

  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#cate-triger span:before,
#cate-triger span:after {
  transition-delay: .3s, 0; 
  transition-duration: .3s, .3s;
}

#cate-triger span:before {
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
}

#cate-triger span:after {
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}

#cate-triger.active div {
  font-size: 0;

  opacity: 0;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

#cate-triger.active span {
  position: absolute;
  top: 34px;
  right: 7px;
  left: 22px;

  display: block;

  width: 19px;
  height: 1px;

  -webkit-transform: rotate(0deg);
          transform: scale(1);
          transform: rotate(0deg); 

  opacity: 1;
  background: none;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#cate-triger.active span:before {
  opacity: 1;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#cate-triger.active span:after {
  opacity: 1;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#cate-triger.active span:before,
#cate-triger.active span:after {
  transition-delay: 0, .3s;

  background-color: #262626;
}

.nav-item {
  font-size: 0;
  line-height: 1em;

  margin-bottom: 40px;
}

.nav-item li {
  font-size: 15px;
  line-height: 1.4em;

  display: inline-block;
  display: inline-block;

  box-sizing: border-box; 
  width: 33.33%;
  width:         calc(100% / 3);
  width: -webkit-calc(100% / 3);
  margin-bottom: 20px;
  padding: 0 10px 0 0;

  vertical-align: top;

  *display: inline;
  *zoom: 1;
}

.nav-item li a {
  transition: all 400ms ease; 
  text-decoration: none;

  color: #a1a1a1;
}

.nav-item li a:hover {
  color: #262626;
}

.nav-item li a img {
  margin-right: 10px; 

  vertical-align: middle;
}

.nav-idol {
  font-size: 0;
  line-height: 1em;

  margin-bottom: 40px;
}

.nav-idol li {
  font-size: 15px;
  line-height: 1.4em;

  display: inline-block;
  display: inline-block;

  box-sizing: border-box; 
  width: 33.33%;
  width:         calc(100% / 3);
  width: -webkit-calc(100% / 3);
  margin-bottom: 20px;
  padding: 0 10px 0 0;

  vertical-align: top;

  *display: inline;
  *zoom: 1;
}

.nav-idol li a {
  transition: all 400ms ease; 
  text-decoration: none;

  color: #a1a1a1;
}

.nav-idol li a:hover {
  color: #262626;
}

.nav-idol li a img {
  margin-right: 10px; 

  vertical-align: middle;
}

/* ================================
 *
 * システム吐き出し用CSS
 *
 * システムから出力されるテキスト全体を囲む<div>等に
 * class="system_article"を付与すること。
 *
 * ================================ */
/* 文字色・文字サイズなどのデフォルト設定 */
.system_article p,
.system_article ul,
.system_article ol {
  font-size: 14px !important;
  font-weight: normal !important;
  line-height: 1.4 !important;

  margin-bottom: .6em !important; 

  color: #111 !important;
}

/* リンクテキスト */
.system_article a {
  text-decoration: underline !important; 

  color: #37d !important;
}

.system_article a:hover {
  text-decoration: none !important;
}

.system_article a:active {
  text-decoration: underline !important;
}

/* 左揃え・中央揃え・右揃え */
.system_article p {
  min-height: 1.4em;

  *zoom: 1;
}

.system_article p::after {
  font-size: 0;

  display: block;
  visibility: hidden;
  clear: both;

  height: 0;

  content: " ";
}

.alignleft {
  float: left;
  clear: both; 

  margin-right: 20px;
  margin-bottom: 20px;
}

.alignright {
  float: right;
  clear: both; 

  margin-bottom: 20px;
  margin-left: 20px;
}

.system_article .aligncenter,
.system_article img.aligncenter {
  display: block !important;
  clear: both !important;

  margin: 0 auto !important;
}

/* 写真のキャプションの揃え */
.wp-caption-text {
  text-align: center;
}

/* 箇条書きリスト */
.system_article ul,
.system_article ol {
  padding-left: 1.5em !important;
}

.system_article ul {
  list-style: disc !important;
}

.system_article ol {
  list-style: decimal !important;
}

.system_article li {
  list-style: none !important;
}

/* 太字 */
.system_article strong {
  font-weight: boldl !important;
}

/* 斜体 */
.system_article em {
  font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
  font-weight: normal; 
  font-style: italic !important;
}

/* 見出しの基本設定 */
.system_article h1,
.system_article h2,
.system_article h3 {
  font-weight: bold;
  line-height: 1.4; 

  clear: both;
}

.system_article h1:first-child,
.system_article h2:first-child,
.system_article h3:first-child {
  margin-top: 0;
}

.system_article h1 {
  font-size: 1.25em; 

  margin: 2.4em 0 1.2em;
}

.system_article h2 {
  font-size: 1.25em; 

  margin: 2em 0 1em;
}

.system_article h3 {
  font-size: 1.2em; 

  margin: 1.6em 0 .8em;
}

/* 表組み */
.system_article table {
  max-width: 100%;
  margin: 1em 0 1.4em;

  border-collapse: collapse;

  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.system_article th,
.system_article td {
  font-size: .9em;

  padding: .8em;

  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.system_article th {
  text-align: center;

  background-color: #eee;
}

.system_article img,
.system_article video {
  max-width: 100%;
  height: auto;
}

figure {
  display: block;

  width: auto !important;

  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
}
