@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* ************************************
 *
 * SCSS Media Queries Mixins
 * 
 * Aauthor   : Ryuichi Nonaka
 * Version   : 0.4.0
 * Copyright : 2012 Ryuichi Nonaka
 * Date      : 2012/11/16
 *
 * Released under the MIT license
 *
 *********************************** */
/* ************************************
 *
 * Device Width 
 * Initialize variables
 *
 *********************************** */
/* ************************************
 *
 * Browser Prefix 
 * Initialize variables
 *
 *********************************** */
/* ************************************
 *
 * Return ratio
 * Initialize variables
 * @param $prefix prefix type
 * @param $ratio device ratio
 *
 *********************************** */
/* ************************************
 *
 * Mobile Device mixin
 * @param $orientation Direction of a device
 * @param $version [old|modern|future|any] The version of a device
 * @param $add_orientation boolean [true|false] add orientation attribute
 *
 * old    : iPhone 3G or 3GS.
 * modern : iPhone 4 or 4S.
 * future : iPhone 5.
 * any    : All version.
 *
 *********************************** */
/* ************************************
 *
 * Tablet Device mixin
 * @param $orientation Direction of a device
 * @param $version [old|modern|any] The version of a device
 * @param $add_orientation boolean [true|false] add orientation attribute
 *
 * old    : iPad 1 or 2 or mini.
 * modern : new iPad (3).
 * any    : All version.
 *
 *********************************** */
/* ************************************
 *
 * Desctop Device mixin
 * @param $size Direction of a device
 * @param $version [modern|future|any] The version of a device
 *
 * Version modern ---------------------
 * narrow  : max width 1024.
 * modern  : max width 1280.
 * wide    : max width 1600.
 * hd      : max width 1920.
 * over    : width 1920 over.
 * ratio   : 1.0
 *
 * Version future ---------------------
 * modern : max width 1280.
 * wide   : max width 1440.
 * ratio  : 2.0
 *
 *********************************** */
/* ************************************
 *
 * Custom Device mixin
 * @param $min_width number(px) Minimum device size
 * @param $max_width number(px) Maximum device size
 * @param $pixel_ratio number Device px ratio
 * @param $add_orientation boolean [true|false] add orientation attribute
 *
 *********************************** */
/* ===================================
使用パラメータ一式
=================================== */
/* ===================================
オプションクラス
=================================== */
.clearfix {
  overflow: hidden;
  *zoom: 1;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0;
  height: 0;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font: 11pt 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,sans-serif;
  letter-spacing: 0.025em;
  line-height: 1.7em;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrapper {
  width: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
}

a {
  text-decoration: none;
}

/* Transition */
#trans-box {
  overflow: hidden;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#trans-box #start-transition {
  position: absolute;
  top: 0;
  left: 0;
}
#trans-box #end-transition {
  position: absolute;
  top: 0;
  left: 0;
}

/* Box Button Unit */
.BoxButtonUnit {
  display: block;
  position: relative;
  width: 380px;
  height: 60px;
  /* 回転体 */
}
.BoxButtonUnit .Rectangular {
  position: relative;
  width: 100%;
  height: 60px;
}
.BoxButtonUnit span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: #fff;
  border: 1px solid #606060;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  background-image: url(../images/icon_arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 12px 20px;
  background-position: right 15px center;
  padding-right: 12px;
  /* IEでは、
  transform-style: preserve-3d
  が使えないため、z-indexをホバー時に切り替えて表面と裏面の
  Zインデックスを入れ替える必要がある。
  また、親要素を3次元空間化できないということになり、
  親要素を回転・移動させても、子要素はその差分を反映するのではなく、
  親要素のプロパティに追従するだけになる。
  従って、子要素そのものに3次元空間上の動作を設定する必要がある。
  */
  /* 表面 */
  /* 裏面 */
}
.BoxButtonUnit span br {
  display: none;
}
.BoxButtonUnit span.sideA {
  z-index: 1;
  background-color: #000;
  /*
  @include transform-origin(50% 0 30px);
  @include transform(perspective(500px) translateY(0) translateZ(0) rotateX(0deg));
  @include transition(all 0.4s ceaser($easeOutCirc));
  */
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-transform-origin: 50% 50% 0;
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
  -moz-transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  -ms-transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  -webkit-transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  -moz-transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
.BoxButtonUnit span.sideB {
  z-index: 0;
  background-color: #ad0000;
  /*
  @include transform-origin(50% 0 30px);
  @include transform(perspective(500px) translateY(-$height/2) translateZ(-$height/2) rotateX(90deg));
  @include transition(all 0.4s ceaser($easeOutCirc));
  */
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-transform-origin: 50% 50% 0;
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
  -moz-transform: perspective(500px) rotateX(90deg) translateY(-30px) translateZ(30px);
  -ms-transform: perspective(500px) rotateX(90deg) translateY(-30px) translateZ(30px);
  -webkit-transform: perspective(500px) rotateX(90deg) translateY(-30px) translateZ(30px);
  transform: perspective(500px) rotateX(90deg) translateY(-30px) translateZ(30px);
  -moz-transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
.BoxButtonUnit.bnr-button span.sideA {
  padding-right: 0;
  background: none;
}
.BoxButtonUnit.bnr-button span.sideA img {
  width: 100%;
}
.BoxButtonUnit:hover span.sideA {
  z-index: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-transform: perspective(500px) rotateX(-90deg) translateY(30px) translateZ(30px);
  -ms-transform: perspective(500px) rotateX(-90deg) translateY(30px) translateZ(30px);
  -webkit-transform: perspective(500px) rotateX(-90deg) translateY(30px) translateZ(30px);
  transform: perspective(500px) rotateX(-90deg) translateY(30px) translateZ(30px);
  -moz-transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
.BoxButtonUnit:hover span.sideB {
  z-index: 1;
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  -ms-transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  -webkit-transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  -moz-transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .BoxButtonUnit {
    width: 300px;
    height: auto;
  }
  .BoxButtonUnit .Rectangular {
    height: auto;
  }
  .BoxButtonUnit span {
    position: relative;
    height: auto;
    line-height: 1.4em;
    padding: 18px 26px 18px 20px;
  }
  .BoxButtonUnit span.sideB {
    display: none;
  }
  .BoxButtonUnit span br {
    display: inline;
  }
  .BoxButtonUnit:hover span.sideA {
    z-index: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
  }
  .BoxButtonUnit:hover span.sideB {
    z-index: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
  }
}

/* Menu Button */
.MenuButtonUnit {
  display: block;
  width: 42px;
  height: 42px;
  position: fixed;
  z-index: 100;
  top: 12px;
  right: 12px;
  cursor: pointer;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .MenuButtonUnit {
    top: 5px;
    right: 8px;
  }
}

/* メニューボタンをアテンションさせる枠 */
.MenuButtonFrame {
  position: fixed;
  z-index: 99;
  top: 12px;
  right: 10px;
  width: 46px;
  height: 42px;
  background-color: #000;
  opacity: 0.75;
  filter: alpha(opacity=75);
  display: none;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .MenuButtonFrame {
    top: 5px;
    right: 6px;
  }
}

/* ページTOPへ戻るボタン */
.BackToTopUnit {
  display: block;
  overflow: hidden;
  position: fixed;
  z-index: 98;
  bottom: 15px;
  right: 15px;
  width: 54px;
  height: 0 !important;
  height: 52px;
  padding-top: 52px;
  line-height: 52px;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(../images/icon-arrow-top.svg);
  background-repeat: no-repeat;
  background-size: 22px 13px;
  background-position: center 50%;
  border: 2px solid #fff;
  -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
}
@media only screen and (min-width: 1139px) and (max-width: 10000px) {
  .BackToTopUnit:hover {
    background-color: black;
    background-position: center 40%;
    -moz-transition: all 0.3s cubic-bezier(0.250, 0.250, 0.750, 0.750);
    -o-transition: all 0.3s cubic-bezier(0.250, 0.250, 0.750, 0.750);
    -webkit-transition: all 0.3s cubic-bezier(0.250, 0.250, 0.750, 0.750);
    transition: all 0.3s cubic-bezier(0.250, 0.250, 0.750, 0.750);
  }
}

/* Global Menu */
.GlobalMenuUnit {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0px;
  width: 320px;
  height: 100%;
}
.GlobalMenuUnit .gmenu-side {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 100%;
  background-color: #e0e0e0;
  /*
  transform-style: preserve-3d;
  @include transform(translateX(-$width/2) translateZ(-$width/2) rotateX(-90deg));
  */
}
.GlobalMenuUnit .gmenu-face {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
  transform-style: preserve-3d;
  -moz-transform-origin: 100% 50% 0;
  -webkit-transform-origin: 100% 50% 0;
  transform-origin: 100% 50% 0;
  -moz-transform: perspective(2000px) rotateY(-90deg);
  -ms-transform: perspective(2000px) rotateY(-90deg);
  -webkit-transform: perspective(2000px) rotateY(-90deg);
  transform: perspective(2000px) rotateY(-90deg);
}
.GlobalMenuUnit .gmenu-face.show {
  -moz-transform: perspective(2000px);
  -webkit-transform: perspective(2000px);
  transform: perspective(2000px);
}
.GlobalMenuUnit .gmenu-face .gmenu-scroller {
  position: relative;
  min-height: 100%;
  width: 320px;
}
.GlobalMenuUnit .gmenu-face .gmenu-table {
  display: table;
  width: 320px;
  min-height: 100%;
}
.GlobalMenuUnit .gmenu-face .gmenu {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 40px;
  color: #000;
}

.gmenu .gmenu-title a {
  display: block;
  position: relative;
  width: 100%;
  height: 85px;
  padding: 16px 0px 16px 6px;
  overflow: visible;
}
.gmenu .gmenu-title a .label {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 254px;
  height: 0 !important;
  height: 53px;
  padding-top: 53px;
  line-height: 53px;
  background-image: url(../images/gmenu-title.png);
  background-repeat: no-repeat;
  background-size: 254px 53px;
  margin: 0 auto 0 auto;
}
.gmenu .gmenu-title a .back-side {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #fff;
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-transform-style: flat;
  -webkit-transform-style: flat;
  transform-style: flat;
  -moz-transform-origin: 50% 50% 0;
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -moz-transition: all 0.3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
  -o-transition: all 0.3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
  -webkit-transition: all 0.3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
  transition: all 0.3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
}
.gmenu .gmenu-title a .back-side.hover {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-transform: scaleX(1.06);
  -ms-transform: scaleX(1.06);
  -webkit-transform: scaleX(1.06);
  transform: scaleX(1.06);
  -moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 7px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 7px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 7px;
  -moz-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -o-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -webkit-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.gmenu .gmenu-nav ul.main-links {
  margin-top: 14px;
  transform-style: flat;
}
.gmenu .gmenu-nav ul.main-links li {
  display: block;
  width: 100%;
  margin-bottom: 6px;
  cursor: pointer;
}
.gmenu .gmenu-nav ul.main-links li a {
  position: relative;
  display: block;
  width: 100%;
  height: 84px;
  color: #000;
  padding: 14px 10px 24px 36px;
  overflow: visible;
}
.gmenu .gmenu-nav ul.main-links li a.nav-button-cf {
  height: 96px;
}
.gmenu .gmenu-nav ul.main-links li a.nav-button-gallery {
  height: 84px;
}
.gmenu .gmenu-nav ul.main-links li a .main-label {
  position: relative;
  z-index: 3;
}
.gmenu .gmenu-nav ul.main-links li a .main-label.label-cf {
  overflow: hidden;
  width: 244px;
  height: 0 !important;
  height: 70px;
  padding-top: 70px;
  line-height: 70px;
  background-image: url(../images/gnav-label-cf.png);
  background-repeat: no-repeat;
  background-size: 244px 70px;
}
.gmenu .gmenu-nav ul.main-links li a .main-label.label-gallery {
  overflow: hidden;
  width: 235px;
  height: 0 !important;
  height: 43px;
  padding-top: 43px;
  line-height: 43px;
  background-image: url(../images/gnav-label-gallery.png);
  background-repeat: no-repeat;
  background-size: 235px 43px;
}
.gmenu .gmenu-nav ul.main-links li a .label-jp {
  position: relative;
  z-index: 2;
  font-size: 9pt;
  letter-spacing: 0.1em;
  line-height: 1.0em;
  margin-top: 4px;
  margin-bottom: 4px;
}
.gmenu .gmenu-nav ul.main-links li a span.back-side {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #fff;
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-transform-style: flat;
  -webkit-transform-style: flat;
  transform-style: flat;
  -moz-transform-origin: 50% 50% 0;
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -moz-transition: all 0.3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
  -o-transition: all 0.3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
  -webkit-transition: all 0.3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
  transition: all 0.3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
}
.gmenu .gmenu-nav ul.main-links li a span.back-side.hover {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-transform: scaleX(1.06);
  -ms-transform: scaleX(1.06);
  -webkit-transform: scaleX(1.06);
  transform: scaleX(1.06);
  -moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 7px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 7px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 7px;
  -moz-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -o-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -webkit-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.gmenu .gmenu-nav ul.main-links li a.selected {
  color: #fff;
  background-color: #000;
}
.gmenu .gmenu-nav ul.main-links li a.selected .main-label.label-cf {
  background-image: url(../images/gnav-label-cf-selected.png);
}
.gmenu .gmenu-nav ul.main-links li a.selected .main-label.label-gallery {
  background-image: url(../images/gnav-label-gallery-selected.png);
}
.gmenu .gmenu-nav ul.sub-links {
  margin-top: 14px;
}
.gmenu .gmenu-nav ul.sub-links li {
  display: block;
  width: 100%;
}
.gmenu .gmenu-nav ul.sub-links li a {
  position: relative;
  display: block;
  width: 100%;
  height: 44px;
  color: #000;
  padding: 0px 10px 0px 36px;
  overflow: hidden;
  *zoom: 1;
  overflow: visible;
}
.gmenu .gmenu-nav ul.sub-links li a .sub-label {
  position: relative;
  z-index: 1;
  height: 44px;
}
.gmenu .gmenu-nav ul.sub-links li a .sub-label img {
  height: 100%;
}
.gmenu .gmenu-nav ul.sub-links li a .label-name {
  display: block;
  overflow: hidden;
  width: 34px;
  height: 0 !important;
  height: 44px;
  padding-top: 44px;
  line-height: 44px;
  background-image: url(../images/gnav-label01.png);
  background-repeat: no-repeat;
  background-size: 34px 44px;
  margin-right: 10px;
  float: left;
}
.gmenu .gmenu-nav ul.sub-links li a .label-name.name1 {
  background-image: url(../images/gnav-label01.png);
  width: 34px;
  background-size: 34px 44px;
}
.gmenu .gmenu-nav ul.sub-links li a .label-name.name1.selected {
  background-image: url(../images/gnav-label01-selected.png);
}
.gmenu .gmenu-nav ul.sub-links li a .label-name.name2 {
  background-image: url(../images/gnav-label02.png);
  width: 55px;
  background-size: 55px 44px;
}
.gmenu .gmenu-nav ul.sub-links li a .label-name.name2.selected {
  background-image: url(../images/gnav-label02-selected.png);
}
.gmenu .gmenu-nav ul.sub-links li a .label-name.name3 {
  background-image: url(../images/gnav-label03.png);
  width: 55px;
  background-size: 55px 44px;
}
.gmenu .gmenu-nav ul.sub-links li a .label-name.name3.selected {
  background-image: url(../images/gnav-label03-selected.png);
}
.gmenu .gmenu-nav ul.sub-links li a .label-name.name4 {
  background-image: url(../images/gnav-label04.png);
  width: 103px;
  background-size: 103px 44px;
}
.gmenu .gmenu-nav ul.sub-links li a .label-name.name4.selected {
  background-image: url(../images/gnav-label04-selected.png);
}
.gmenu .gmenu-nav ul.sub-links li a .label-name.name5 {
  background-image: url(../images/gnav-label05.png);
  width: 74px;
  background-size: 74px 44px;
}
.gmenu .gmenu-nav ul.sub-links li a .label-name.name5.selected {
  background-image: url(../images/gnav-label05-selected.png);
}
.gmenu .gmenu-nav ul.sub-links li a .label-name.name6 {
  background-image: url(../images/gnav-label06.png);
  width: 73px;
  background-size: 73px 44px;
}
.gmenu .gmenu-nav ul.sub-links li a .label-name.name6.selected {
  background-image: url(../images/gnav-label06-selected.png);
}
.gmenu .gmenu-nav ul.sub-links li a .label-note {
  display: block;
  height: 44px;
  font-size: 9pt;
  line-height: 44px;
}
.gmenu .gmenu-nav ul.sub-links li a span.back-side {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #fff;
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-transform-style: flat;
  -webkit-transform-style: flat;
  transform-style: flat;
  -moz-transform-origin: 50% 50% 0;
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -moz-transition: all 0.3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
  -o-transition: all 0.3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
  -webkit-transition: all 0.3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
  transition: all 0.3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
}
.gmenu .gmenu-nav ul.sub-links li a span.back-side.hover {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-transform: scaleX(1.06);
  -ms-transform: scaleX(1.06);
  -webkit-transform: scaleX(1.06);
  transform: scaleX(1.06);
  -moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 7px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 7px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 7px;
  -moz-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -o-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -webkit-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.gmenu .gmenu-nav ul.sub-links li a.selected {
  color: #fff;
  background-color: #000;
}
.gmenu .gmenu-nav ul.cp-links {
  margin-top: 15px;
}
.gmenu .gmenu-nav ul.cp-links li {
  display: block;
  width: 248px;
  height: 108px;
  margin: 0px auto 10px auto;
}
.gmenu .gmenu-nav ul.cp-links li img {
  display: block;
  border: 1px solid #c8c8c8;
}
.gmenu .gmenu-nav span.border {
  display: block;
  width: 270px;
  height: 1px;
  background-color: #c8c8c8;
  margin: 10px auto 10px auto;
}

/* Contents Cover */
.ContentsCover {
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  filter: alpha(opacity=50);
  display: none;
}

/* Header回りのオブジェクト */
.index-header-title {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 26px;
  width: 146px;
}
.index-header-title a {
  display: block;
  width: 100%;
}
.index-header-title a img {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .index-header-title {
    top: 13px;
    left: 8px;
    width: 90px;
  }
}

.sub-header-title {
  display: block;
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 25px;
  width: 239px;
}
.sub-header-title a {
  display: block;
  width: 100%;
}
.sub-header-title a img {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .sub-header-title {
    top: 13px;
    left: 8px;
    width: 160px;
  }
}

.header-share {
  position: absolute;
  top: 16px;
  right: 66px;
  width: 130px;
  height: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.75);
}
.header-share a {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-right: 4px;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.header-share a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.header-share a img {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .header-share {
    top: 10px;
    right: 54px;
    width: 90px;
  }
  .header-share a {
    width: 24px;
    height: 24px;
    margin-right: 0;
  }
}

/* Footer */
footer {
  width: 100%;
  height: 104px;
  overflow: hidden;
}
footer .footer-box {
  position: relative;
  top: -104px;
  left: 0;
  width: 100%;
  height: 100%;
}
footer .footer-box.show {
  top: 0px;
  -moz-transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
footer .footer-box .front-side {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
  padding-top: 30px;
  background-color: #000;
}
footer a.ci-logo {
  display: block;
  overflow: hidden;
  width: 107px;
  height: 0 !important;
  height: 24px;
  padding-top: 24px;
  line-height: 24px;
  background-image: url(../images/canon-ci.svg);
  background-repeat: no-repeat;
  background-size: 107px 24px;
  margin: 0 auto 0 auto;
}
footer .foot-copyright {
  margin-top: 5px;
  text-align: center;
  color: #fff;
  font-family: helvetica, arial, sans-serif;
  font-size: 9pt;
}
footer.sub-footer .footer-box .front-side {
  background-color: #fff;
}
footer.sub-footer a.ci-logo {
  background-image: url(../images/canon-ci-red.svg);
}
footer.sub-footer .foot-copyright {
  color: #636367;
}

/* ビデオ再生ボタンユニット */
.VideoButtonUnit a.VideoPlayThumb {
  position: relative;
  display: block;
  overflow: hidden;
  width: 450px;
  height: 253px;
  border: 1px solid #606060;
}
.VideoButtonUnit a.VideoPlayThumb img.Thumbnail {
  width: 100%;
}
.VideoButtonUnit a.VideoPlayThumb .PlayIcon {
  display: block;
  position: absolute;
  top: 75px;
  left: 174px;
  width: 103px;
  height: 103px;
  -webkit-border-radius: 52px;
  -moz-border-radius: 52px;
  -ms-border-radius: 52px;
  border-radius: 52px;
  background-color: rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  -moz-transform: perspective(500px) rotateX(0deg);
  -ms-transform: perspective(500px) rotateX(0deg);
  -webkit-transform: perspective(500px) rotateX(0deg);
  transform: perspective(500px) rotateX(0deg);
  -moz-transition: all 0.6s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 0.6s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 0.6s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 0.6s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
.VideoButtonUnit a.VideoPlayThumb .PlayIcon .Triangle {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/video-play-triangle.svg);
  background-repeat: no-repeat;
  background-size: 40px 35px;
  background-position: 35px center;
}
.VideoButtonUnit a.VideoPlayThumb:hover .PlayIcon {
  background-color: black;
  -moz-transform: perspective(500px) rotateX(360deg);
  -ms-transform: perspective(500px) rotateX(360deg);
  -webkit-transform: perspective(500px) rotateX(360deg);
  transform: perspective(500px) rotateX(360deg);
  -moz-transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .VideoButtonUnit a.VideoPlayThumb {
    width: 100%;
    height: auto;
  }
  .VideoButtonUnit a.VideoPlayThumb img {
    display: block;
  }
  .VideoButtonUnit a.VideoPlayThumb .PlayIcon {
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    margin-left: -32px;
    margin-top: -32px;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    -ms-border-radius: 32px;
    border-radius: 32px;
  }
  .VideoButtonUnit a.VideoPlayThumb .PlayIcon .Triangle {
    background-size: 30px 26px;
    background-position: 19px center;
  }
}
.VideoButtonUnit .video-caption {
  margin-top: 10px;
  width: 450px;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .VideoButtonUnit .video-caption {
    width: 100%;
  }
}

/* ビデオプレイヤーコンテナー */
.YouTubeVideoUnit,
.Html5VideoUnit {
  position: fixed;
  z-index: 201;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.YouTubeVideoUnit .Box,
.Html5VideoUnit .Box {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 450px;
  height: 253px;
  background-color: #fff;
  transform-style: preserve-3d;
  -moz-transform: perspective(400px) rotateX(0deg) rotateY(0deg);
  -ms-transform: perspective(400px) rotateX(0deg) rotateY(0deg);
  -webkit-transform: perspective(400px) rotateX(0deg) rotateY(0deg);
  transform: perspective(400px) rotateX(0deg) rotateY(0deg);
}
.YouTubeVideoUnit .Box img.Thumbnail,
.Html5VideoUnit .Box img.Thumbnail {
  display: block;
  width: 100%;
}
.YouTubeVideoUnit .Box .YouTubeBox,
.Html5VideoUnit .Box .YouTubeBox {
  width: 100%;
  height: 100%;
}
.YouTubeVideoUnit .Box .Html5VideoBox,
.Html5VideoUnit .Box .Html5VideoBox {
  width: 100%;
  height: 100%;
}
.YouTubeVideoUnit .Box .video-js,
.Html5VideoUnit .Box .video-js {
  width: 100%;
  height: 100%;
}
.YouTubeVideoUnit .CloseButton,
.Html5VideoUnit .CloseButton {
  display: block;
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 16px;
  cursor: pointer;
  overflow: hidden;
  width: 32px;
  height: 0 !important;
  height: 32px;
  padding-top: 32px;
  line-height: 32px;
  background-image: url(../images/icon-close.svg);
  background-repeat: no-repeat;
  background-size: 32px 32px;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -moz-transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
.YouTubeVideoUnit .CloseButton:hover,
.Html5VideoUnit .CloseButton:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -moz-transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
.YouTubeVideoUnit .CloseArea,
.Html5VideoUnit .CloseArea {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 写真表示ボタン */
.PhotoButtonUnit a.PhotoThumb {
  position: relative;
  display: block;
  overflow: hidden;
  width: 420px;
  height: 250px;
  border: 4px solid #fff;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .PhotoButtonUnit a.PhotoThumb {
    width: 100%;
    height: auto;
  }
}
.PhotoButtonUnit a.PhotoThumb img.Thumbnail {
  display: block;
  position: relative;
  width: 100%;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transition: all 0.3s cubic-bezier(0.250, 0.250, 0.750, 0.750);
  -o-transition: all 0.3s cubic-bezier(0.250, 0.250, 0.750, 0.750);
  -webkit-transition: all 0.3s cubic-bezier(0.250, 0.250, 0.750, 0.750);
  transition: all 0.3s cubic-bezier(0.250, 0.250, 0.750, 0.750);
}
.PhotoButtonUnit a.PhotoThumb .ZoomIcon {
  display: block;
  position: absolute;
  bottom: 7px;
  right: 7px;
  width: 28px;
  height: 28px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  border-radius: 14px;
  background-color: rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  -moz-transform: perspective(500px) rotateX(0deg);
  -ms-transform: perspective(500px) rotateX(0deg);
  -webkit-transform: perspective(500px) rotateX(0deg);
  transform: perspective(500px) rotateX(0deg);
  -moz-transition: all 0.6s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 0.6s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 0.6s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 0.6s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
.PhotoButtonUnit a.PhotoThumb .ZoomIcon .Plus {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/icon-photo-zoomplus.svg);
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: center center;
}
.PhotoButtonUnit a.PhotoThumb:hover img.Thumbnail {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -moz-transform: scale(1.25);
  -ms-transform: scale(1.25);
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
  -moz-transition: -moz-transform 5s cubic-bezier(0.250, 0.250, 0.750, 0.750);
  -o-transition: -o-transform 5s cubic-bezier(0.250, 0.250, 0.750, 0.750);
  -webkit-transition: -webkit-transform 5s cubic-bezier(0.250, 0.250, 0.750, 0.750);
  transition: "transform" 5s cubic-bezier(0.250, 0.250, 0.750, 0.750);
}
.PhotoButtonUnit a.PhotoThumb:hover .ZoomIcon {
  background-color: black;
  -moz-transform: perspective(500px) rotateX(360deg);
  -ms-transform: perspective(500px) rotateX(360deg);
  -webkit-transform: perspective(500px) rotateX(360deg);
  transform: perspective(500px) rotateX(360deg);
  -moz-transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
.PhotoButtonUnit .photo-caption {
  margin-top: 10px;
  width: 420px;
  font-size: 9pt;
  line-height: 1.3em;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .PhotoButtonUnit .photo-caption {
    width: 100%;
  }
}

/* スライドショー */
.SlideShowUnit,
.PhotoViewerUnit {
  position: fixed;
  z-index: 202;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.SlideShowUnit .Box,
.PhotoViewerUnit .Box {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 450px;
  height: 300px;
  overflow: hidden;
  background-color: #000;
  transform-style: preserve-3d;
  -moz-transform: perspective(2400px) rotateX(0deg) rotateY(0deg);
  -ms-transform: perspective(2400px) rotateX(0deg) rotateY(0deg);
  -webkit-transform: perspective(2400px) rotateX(0deg) rotateY(0deg);
  transform: perspective(2400px) rotateX(0deg) rotateY(0deg);
}
.SlideShowUnit .Box .Image,
.PhotoViewerUnit .Box .Image {
  display: block;
  width: 100%;
  height: 100%;
}
.SlideShowUnit .Box .Loading,
.PhotoViewerUnit .Box .Loading {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  margin-left: -24px;
}
.SlideShowUnit .PrevButton,
.PhotoViewerUnit .PrevButton {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 40px;
  background-image: url(../images/ss-icon-arrow-prev.svg);
  background-size: 46px 25px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -moz-transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
.SlideShowUnit .PrevButton:hover,
.PhotoViewerUnit .PrevButton:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -moz-transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .SlideShowUnit .PrevButton,
  .PhotoViewerUnit .PrevButton {
    top: 10px;
  }
  .SlideShowUnit .PrevButton:hover,
  .PhotoViewerUnit .PrevButton:hover {
    opacity: 0.65;
    filter: alpha(opacity=65);
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .SlideShowUnit .PrevButton,
  .PhotoViewerUnit .PrevButton {
    width: 36px;
    height: 20px;
    background-size: 36px 20px;
    top: 15px;
    left: 12px;
    margin-left: 0;
  }
  .SlideShowUnit .PrevButton:hover,
  .PhotoViewerUnit .PrevButton:hover {
    opacity: 0.65;
    filter: alpha(opacity=65);
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
  }
}
.SlideShowUnit .NextButton,
.PhotoViewerUnit .NextButton {
  position: absolute;
  z-index: 4;
  bottom: 15px;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 40px;
  background-image: url(../images/ss-icon-arrow-next.svg);
  background-size: 46px 25px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -moz-transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
.SlideShowUnit .NextButton:hover,
.PhotoViewerUnit .NextButton:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -moz-transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 1s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .SlideShowUnit .NextButton,
  .PhotoViewerUnit .NextButton {
    bottom: 10px;
  }
  .SlideShowUnit .NextButton:hover,
  .PhotoViewerUnit .NextButton:hover {
    opacity: 0.65;
    filter: alpha(opacity=65);
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .SlideShowUnit .NextButton,
  .PhotoViewerUnit .NextButton {
    width: 36px;
    height: 20px;
    background-size: 36px 20px;
    top: 15px;
    bottom: auto;
    left: 62px;
    margin-left: 0;
  }
  .SlideShowUnit .NextButton:hover,
  .PhotoViewerUnit .NextButton:hover {
    opacity: 0.65;
    filter: alpha(opacity=65);
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
  }
}
.SlideShowUnit .TextContainer,
.PhotoViewerUnit .TextContainer {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 26px;
}
.SlideShowUnit .TextContainer .TextLine,
.PhotoViewerUnit .TextContainer .TextLine {
  overflow: hidden;
  width: 450px;
}
.SlideShowUnit .TextContainer .TextLine p.text,
.PhotoViewerUnit .TextContainer .TextLine p.text {
  width: 450px;
  font-size: 9pt;
  line-height: 1.5em;
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .SlideShowUnit .TextContainer,
  .PhotoViewerUnit .TextContainer {
    bottom: 12px;
    left: 12px;
  }
  .SlideShowUnit .TextContainer .TextLine p.text,
  .PhotoViewerUnit .TextContainer .TextLine p.text {
    width: 360px;
    font-size: 10px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .SlideShowUnit .TextContainer,
  .PhotoViewerUnit .TextContainer {
    bottom: 12px;
    left: 12px;
  }
  .SlideShowUnit .TextContainer .TextLine p.text,
  .PhotoViewerUnit .TextContainer .TextLine p.text {
    width: 300px;
    font-size: 10px;
  }
}
.SlideShowUnit .CloseButton,
.PhotoViewerUnit .CloseButton {
  display: block;
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 16px;
  cursor: pointer;
  overflow: hidden;
  width: 32px;
  height: 0 !important;
  height: 32px;
  padding-top: 32px;
  line-height: 32px;
  background-image: url(../images/icon-close.svg);
  background-repeat: no-repeat;
  background-size: 32px 32px;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -moz-transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
.SlideShowUnit .CloseButton:hover,
.PhotoViewerUnit .CloseButton:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -moz-transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 0.3s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .SlideShowUnit .CloseButton,
  .PhotoViewerUnit .CloseButton {
    top: 10px;
    right: 0px;
    background-size: 24px 24px;
    background-position: right top;
  }
}
.SlideShowUnit .CloseArea,
.PhotoViewerUnit .CloseArea {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Scroll Attention */
.ScrollAttention {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -28px;
  width: 56px;
  height: 50px;
}
.ScrollAttention img.scr-text {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
}
.ScrollAttention img.scr-text img {
  width: 100%;
}
.ScrollAttention .scr-arrow {
  display: block;
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 27px;
}

/* パンくずリスト */
.Breadcrumbs {
  position: absolute;
  top: 20px;
  left: 284px;
}
.Breadcrumbs.sp-breadcrumbs {
  display: none;
  position: fixed;
  z-index: 4;
  width: 100%;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  background-color: #000;
  height: 29px;
  top: auto;
  bottom: 0;
  left: 0;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .Breadcrumbs {
    display: none;
  }
  .Breadcrumbs.sp-breadcrumbs {
    display: block;
  }
  .Breadcrumbs.sp-breadcrumbs ul {
    background: none;
  }
}
.Breadcrumbs ul {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  color: #fff;
  padding: 5px 10px 5px 10px;
}
.Breadcrumbs ul li {
  display: block;
  height: 19px;
  margin-right: 4px;
  line-height: 19px;
  float: left;
  font-size: 9pt;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}
.Breadcrumbs ul li a {
  color: #fff;
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.Breadcrumbs ul li a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.Breadcrumbs ul li.home a {
  display: block;
  overflow: hidden;
  width: 19px;
  height: 0 !important;
  height: 19px;
  padding-top: 19px;
  line-height: 19px;
  background-image: url(../images/breadcrumbs-home.svg);
  background-repeat: no-repeat;
  background-size: 19px 19px;
  background-position: center 2px;
  background-size: 16px 14px;
}
.Breadcrumbs ul li.arrow {
  opacity: 0.6;
  filter: alpha(opacity=60);
  overflow: hidden;
  width: 12px;
  height: 0 !important;
  height: 19px;
  padding-top: 19px;
  line-height: 19px;
  background-image: url(../images/breadcrumbs-arrow.svg);
  background-repeat: no-repeat;
  background-size: 12px 19px;
  background-position: center center;
  background-size: 6px 10px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .Breadcrumbs {
    left: 276px;
  }
}

body {
  background-color: #fff;
  font-size: 11.5pt;
  line-height: 1.6em;
  color: #555;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  body {
    font-size: 10pt;
    line-height: 1.5em;
  }
}

.wrapper {
  width: 100%;
  visibility: hidden;
}

.contest {
  position: relative;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
}
@media only screen and (min-width: 300px) and (max-width: 1139px) {
  .contest {
    overflow-x: hidden;
  }
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
  .contest {
    padding-bottom: 29px;
  }
}
.contest .head-container {
  position: relative;
  z-index: 1;
}
.contest .contents {
  position: relative;
  z-index: 0;
  width: 100%;
}

/* ============ ヘッダー ============= */
/* ヘッダーエリア */
.head-container {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: #efefef;
  /* テキスト等のコンテンツ */
  /* スライドショー */
  /* 背景オブジェクト */
}
.head-container .head-contents {
  position: relative;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 840px;
  max-height: 840px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .head-container .head-contents {
    height: 668px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .head-container .head-contents {
    height: 374px;
  }
}
.head-container .head-slide {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 840px;
  max-height: 840px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .head-container .head-slide {
    height: 668px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .head-container .head-slide {
    height: 374px;
  }
}
.head-container .head-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 840px;
  max-height: 840px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .head-container .head-bg {
    height: 668px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .head-container .head-bg {
    height: 374px;
  }
}
.head-container .head-bg .head-bg-typo {
  position: absolute;
  top: 90px;
  left: 50%;
  margin-left: -526px;
  width: 1052px;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .head-container .head-bg .head-bg-typo {
    width: 88%;
    top: 100px;
    margin-left: -44%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .head-container .head-bg .head-bg-typo {
    width: 678px;
    top: 70px;
    left: 0%;
    margin-left: 0;
  }
}
.head-container .head-bg .head-bg-typo img {
  display: block;
  width: 100%;
}
.head-container .head-bg .head-bg-lines {
  position: relative;
  z-index: 0;
  width: 1050px;
  height: 100%;
  margin: 0 auto 0 auto;
  border-left: 1px solid #fafafa;
  border-right: 1px solid #fafafa;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .head-container .head-bg .head-bg-lines {
    width: 88%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .head-container .head-bg .head-bg-lines {
    width: 662px;
  }
}
.head-container .head-bg .head-bg-lines .head-bg-line {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #fafafa;
}
.head-container .head-bg .head-bg-lines .head-bg-line.line1 {
  left: 51%;
}
.head-container .head-bg .head-bg-lines .head-bg-line.line2 {
  left: 61%;
}
.head-container .head-bg .head-bg-lines .head-bg-line.line3 {
  left: 88%;
}
.head-container .head-bg .head-bg-lines .head-bg-line.line4 {
  left: 91%;
}
.head-container .head-bg .head-bg-footer {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #e3e3e3;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .head-container .head-bg .head-bg-footer {
    height: 32px;
  }
}

/* ヘッダーのシェアボタン */
.header-share {
  border-right: 1px solid #8f8f8f;
  /* G+をはじく 
  right: 66px;
  width: 90px;
  */
  /* G+をはじく 
  @include mq-custom(320px, 767px) {
  	top: 10px;
  	right: 56px;
  	width: 64px;
  }
  */
}
.header-share a {
  opacity: 0.4;
  filter: alpha(opacity=40);
}

/* ヘッダーエリア：テキスト等のコンテンツ */
.head-contents {
  padding-top: 70px;
}
.head-contents .header-outline .collabo-label {
  display: block;
  margin: 0 auto 20px auto;
  width: 334px;
}
.head-contents .header-outline .collabo-label img {
  display: block;
  width: 100%;
}
.head-contents .header-outline .title-text {
  display: block;
  margin: 0 auto 0 auto;
  /*
  img {
  	display: block;
  	width: 100%;
  }
  */
  overflow: hidden;
  width: 518px;
  height: 0 !important;
  height: 89px;
  padding-top: 89px;
  line-height: 89px;
  background-image: url(../images/contest/header-h1-pagetitle.svg);
  background-repeat: no-repeat;
  background-size: 518px 89px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .head-contents {
    padding-top: 72px;
  }
  .head-contents .header-outline .collabo-label {
    width: 303px;
    margin-bottom: 14px;
  }
  .head-contents .header-outline .title-text {
    overflow: hidden;
    width: 470px;
    height: 0 !important;
    height: 81px;
    padding-top: 81px;
    line-height: 81px;
    background-image: url(../images/contest/header-h1-pagetitle.svg);
    background-repeat: no-repeat;
    background-size: 470px 81px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .head-contents {
    padding-top: 60px;
  }
  .head-contents .header-outline .collabo-label {
    width: 210px;
    margin-bottom: 8px;
  }
  .head-contents .header-outline .title-text {
    overflow: hidden;
    width: 304px;
    height: 0 !important;
    height: 52px;
    padding-top: 52px;
    line-height: 52px;
    background-image: url(../images/contest/header-h1-pagetitle.svg);
    background-repeat: no-repeat;
    background-size: 304px 52px;
  }
}

/* ヘッダーエリア：スライドショー */
.head-slide .pamph-image-box {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.head-slide .pamph-image-box .pamph-image {
  position: absolute;
  top: 232px;
  left: 50%;
  width: 960px;
  height: 616px;
  margin-left: -454px;
}
.head-slide .pamph-image-box .pamph-image img {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .head-slide .pamph-image-box .pamph-image {
    top: 210px;
    width: 700px;
    margin-left: -342px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .head-slide .pamph-image-box .pamph-image {
    top: 170px;
    width: 310px;
    height: 199px;
    margin-left: -158px;
  }
}
.head-slide .product-vis {
  position: absolute;
  z-index: 2;
  /*
  bottom: 92px;
  left: 50%;
  width: 270px;
  height: 200px;
  margin-left: 254px;
  */
  bottom: 18px;
  left: 50%;
  width: 270px;
  height: 200px;
  margin-left: 280px;
}
.head-slide .product-vis img {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .head-slide .product-vis {
    width: 197px;
    height: 146px;
    margin-left: 168px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .head-slide .product-vis {
    width: 93px;
    height: 69px;
    margin-left: 50px;
    bottom: 10px;
  }
}
.head-slide .head-slide-outline {
  position: absolute;
  bottom: 30px;
  width: 100%;
  z-index: 3;
  margin: 0 auto 0 auto;
}
.head-slide .head-slide-outline .calalog-subtitle {
  margin: 0 auto 10px auto;
  overflow: hidden;
  width: 424px;
  height: 0 !important;
  height: 24px;
  padding-top: 24px;
  line-height: 24px;
  background-image: url(../images/contest/catalog-slide-title.svg);
  background-repeat: no-repeat;
  background-size: 424px 24px;
}
.head-slide .head-slide-outline .calalog-subtitle img {
  display: block;
  width: 100%;
}
.head-slide .head-slide-outline .catalog-text {
  margin: 0 auto 0 auto;
  text-align: center;
}
.head-slide .catalog-slideshow {
  position: absolute;
  top: 0;
  width: 100%;
  height: 610px;
  overflow-x: hidden;
}
.head-slide .catalog-slideshow .catalog-page {
  position: absolute;
  top: 0;
  left: 300px;
  width: 769px;
  height: 596px;
}
.head-slide .catalog-slideshow .catalog-page img {
  display: block;
  width: 100%;
}
.head-slide .catalog-slideshow .catalog-page.uncurrent {
  -moz-transform: scale(0.88);
  -ms-transform: scale(0.88);
  -webkit-transform: scale(0.88);
  transform: scale(0.88);
}
.head-slide .catalog-slideshow .catalog-page.left {
  left: -579px;
}
.head-slide .catalog-slideshow .catalog-page.right {
  left: 1179px;
}
.head-slide .catalog-slideshow .slide-nav-button {
  position: absolute;
  z-index: 1000;
  top: 220px;
  left: 100px;
  width: 90px;
  height: 90px;
  background-color: rgba(0, 0, 0, 0.25);
  border: 2px solid #fff;
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  border-radius: 45px;
  -moz-transition: all 0.2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
  -webkit-transition: all 0.2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
  transition: all 0.2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.head-slide .catalog-slideshow .slide-nav-button img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 30px;
  margin-left: -9px;
  margin-top: -15px;
}
.head-slide .catalog-slideshow .slide-nav-button.prev-button {
  left: 180px;
}
.head-slide .catalog-slideshow .slide-nav-button.next-button {
  left: 1099px;
}
.head-slide .catalog-slideshow .slide-nav-button.next-button img {
  margin-left: -5px;
}
.head-slide .catalog-slideshow .slide-nav-button:hover {
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  background-color: rgba(0, 0, 0, 0.6);
}

/* ============ コンテンツのブロック構成 ============= */
.contents .intro-sec {
  position: relative;
  width: 100%;
  padding-top: 86px;
  padding-bottom: 40px;
}
.contents .members-sec {
  position: relative;
  width: 100%;
  padding-top: 78px;
  padding-bottom: 92px;
}
.contents .bunsitsu-sec {
  position: relative;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .contents {
    overflow-x: hidden;
  }
  .contents .intro-sec {
    padding-top: 52px;
    padding-bottom: 35px;
  }
  .contents .members-sec {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .contents .bunsitsu-sec {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .contents .intro-sec {
    padding-top: 32px;
    padding-bottom: 15px;
  }
  .contents .members-sec {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .contents .bunsitsu-sec {
    padding-top: 32px;
    padding-bottom: 24px;
  }
}

/* ============ コンテストの紹介セクション ============= */
.intro-sec {
  text-align: center;
  overflow: hidden;
  background-image: url(../images/contest/intro-bg1.jpg), url(../images/contest/intro-bg2.jpg);
  background-repeat: no-repeat, no-repeat;
  background-position: -60px 36px, right -34px top 145px;
  /* 見出し */
  /* 概要情報 */
  /* 投票エリア */
  /* プレゼント情報 */
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .intro-sec {
    background-image: url(../images/contest/intro-bg1.jpg);
    background-repeat: no-repeat;
    background-position: -100px 20px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .intro-sec {
    background-size: 350px 280px, 208px 247px;
    background-position: -40px 80px, right -40px top 264px;
  }
}
.intro-sec .intro-subtitle {
  margin: 0 auto 42px auto;
  width: 490px;
}
.intro-sec .intro-subtitle span {
  display: block;
  margin: 0 auto 0 auto;
}
.intro-sec .intro-subtitle span img {
  display: block;
  width: 100%;
}
.intro-sec .intro-subtitle .subcopy-text {
  margin-bottom: 20px;
  overflow: hidden;
  width: 297px;
  height: 0 !important;
  height: 23px;
  padding-top: 23px;
  line-height: 23px;
  background-image: url(../images/contest/intro-subtitle1.svg);
  background-repeat: no-repeat;
  background-size: 297px 23px;
}
.intro-sec .intro-subtitle .subtitle-text {
  overflow: hidden;
  width: 490px;
  height: 0 !important;
  height: 35px;
  padding-top: 35px;
  line-height: 35px;
  background-image: url(../images/contest/intro-subtitle2.svg);
  background-repeat: no-repeat;
  background-size: 490px 35px;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .intro-sec .intro-subtitle {
    width: 300px;
    margin-bottom: 20px;
  }
  .intro-sec .intro-subtitle .subcopy-text {
    margin-bottom: 10px;
    overflow: hidden;
    width: 182px;
    height: 0 !important;
    height: 14px;
    padding-top: 14px;
    line-height: 14px;
    background-image: url(../images/contest/intro-subtitle1.svg);
    background-repeat: no-repeat;
    background-size: 182px 14px;
  }
  .intro-sec .intro-subtitle .subtitle-text {
    overflow: hidden;
    width: 300px;
    height: 0 !important;
    height: 21px;
    padding-top: 21px;
    line-height: 21px;
    background-image: url(../images/contest/intro-subtitle2.svg);
    background-repeat: no-repeat;
    background-size: 300px 21px;
  }
}
.intro-sec .text-heading {
  width: 80%;
  font-family: "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","游ゴシック体","YuGothic",sans-serif;
  font-weight: bold;
  font-size: 13.5pt;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0 auto 12px auto;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .intro-sec .text-heading {
    width: 90%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .intro-sec .text-heading {
    width: 90%;
    font-size: 11.5pt;
    text-align: left;
    margin-bottom: 6px;
  }
}
.intro-sec .text {
  width: 80%;
  margin: 0 auto 42px auto;
}
.intro-sec .text a {
  font-family: "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","游ゴシック体","YuGothic",sans-serif;
  font-weight: bold;
  color: #000;
  text-decoration: underline;
}
.intro-sec .text a:hover {
  color: #888;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .intro-sec .text {
    width: 70%;
  }
  .intro-sec .text.text1 br {
    display: none;
  }
  .intro-sec .text.text1 span {
    display: inline-block;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .intro-sec .text {
    width: 90%;
    text-align: left;
    margin-bottom: 20px;
  }
  .intro-sec .text br {
    display: none;
  }
}
.intro-sec .overview-info {
  margin-bottom: 60px;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .intro-sec .overview-info {
    margin-bottom: 30px;
  }
}
.intro-sec .vote-info {
  width: 1070px;
  margin: 0 auto 0 auto;
  border-top: 1px solid #bcbcbc;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .intro-sec .vote-info {
    width: 90%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .intro-sec .vote-info {
    width: 90%;
  }
}
.intro-sec .present-info {
  position: relative;
  width: 630px;
  padding: 26px 0 26px 0;
  margin: 60px auto 0 auto;
  border: 1px solid #bcbcbc;
}
.intro-sec .present-info .text {
  width: 100%;
  margin-bottom: 0;
}
.intro-sec .present-info .text:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  border: 1px solid #bcbcbc;
}
.intro-sec .present-info .comment {
  position: absolute;
  bottom: -30px;
  right: -10px;
  width: 630px;
  font-size: 10pt;
  text-align: right;
  line-height: 1.3em;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .intro-sec .present-info {
    width: 90%;
    padding: 16px 10px 18px 10px;
    margin-top: 30px;
  }
  .intro-sec .present-info .text-heading {
    text-align: center;
  }
  .intro-sec .present-info .text-heading br {
    display: none;
  }
  .intro-sec .present-info .text-heading span {
    display: inline-block;
  }
  .intro-sec .present-info .text {
    width: 85%;
  }
  .intro-sec .present-info .comment {
    bottom: -42px;
    right: auto;
    left: 0;
    width: 100%;
    font-size: 9pt;
    text-align: left;
  }
}

/* ============ 投票エリアヘッダー ============= */
.vote-header {
  padding-top: 52px;
}
.vote-header .vote-subtitle {
  width: 465px;
  margin: 0 auto 35px auto;
}
.vote-header .vote-subtitle span {
  display: block;
  margin: 0 auto 0 auto;
}
.vote-header .vote-subtitle span img {
  display: block;
  width: 100%;
}
.vote-header .vote-subtitle .subcopy-text {
  margin-bottom: 20px;
  overflow: hidden;
  width: 258px;
  height: 0 !important;
  height: 23px;
  padding-top: 23px;
  line-height: 23px;
  background-image: url(../images/contest/vote-subtitle1.svg);
  background-repeat: no-repeat;
  background-size: 258px 23px;
}
.vote-header .vote-subtitle .subtitle-text {
  overflow: hidden;
  width: 465px;
  height: 0 !important;
  height: 35px;
  padding-top: 35px;
  line-height: 35px;
  background-image: url(../images/contest/vote-subtitle2.svg);
  background-repeat: no-repeat;
  background-size: 465px 35px;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .vote-header .vote-subtitle {
    width: 288px;
    margin-bottom: 20px;
  }
  .vote-header .vote-subtitle .subcopy-text {
    margin-bottom: 10px;
    overflow: hidden;
    width: 160px;
    height: 0 !important;
    height: 14px;
    padding-top: 14px;
    line-height: 14px;
    background-image: url(../images/contest/vote-subtitle1.svg);
    background-repeat: no-repeat;
    background-size: 160px 14px;
  }
  .vote-header .vote-subtitle .subtitle-text {
    overflow: hidden;
    width: 288px;
    height: 0 !important;
    height: 22px;
    padding-top: 22px;
    line-height: 22px;
    background-image: url(../images/contest/vote-subtitle2.svg);
    background-repeat: no-repeat;
    background-size: 288px 22px;
  }
}
.vote-header .text {
  margin-bottom: 18px;
}
.vote-header .text-comment {
  display: inline-block;
  padding: 5px 18px 5px 18px;
  background-color: #ededed;
  text-align: center;
  font-size: 10pt;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .vote-header .text {
    width: 100%;
  }
  .vote-header .text br {
    display: none;
  }
  .vote-header .text span {
    display: inline-block;
  }
  .vote-header .text-comment {
    width: 80%;
  }
  .vote-header .text-comment br {
    display: none;
  }
  .vote-header .text-comment span {
    display: inline-block;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .vote-header {
    padding-top: 25px;
  }
  .vote-header .text-heading {
    width: 100%;
    text-align: center;
  }
  .vote-header .text {
    width: 100%;
    margin-bottom: 10px;
  }
  .vote-header .text-comment {
    width: 100%;
    text-align: left;
    padding: 5px 8px 5px 8px;
    font-size: 9.5pt;
  }
}

/* ============ 投票エリア ============= */
.vote-area {
  width: 1070px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .vote-area {
    width: 100%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .vote-area {
    width: 100%;
    padding-bottom: 15px;
  }
}
.vote-area.update0525 .vote-items-box {
  padding-left: 76px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .vote-area.update0525 .vote-items-box {
    padding-left: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .vote-area.update0525 .vote-items-box {
    padding-left: 0;
  }
}
.vote-area.top-border {
  padding-top: 10px;
  border-top: 1px solid #bcbcbc;
}
.vote-area .vote-items-box {
  padding-top: 48px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .vote-area .vote-items-box {
    width: 100%;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .vote-area .vote-items-box {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 10px;
  }
}
.vote-area .vote-item .catalog {
  width: 564px;
  margin: 0 auto 0 auto;
}
.vote-area .vote-item .catalog img {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .vote-area .vote-item .catalog {
    width: 100%;
  }
}
.vote-area .vote-item .catalog-info {
  position: relative;
  width: 564px;
  height: 30px;
  margin: -12px auto 0 auto;
}
.vote-area .vote-item .catalog-info .catalog-name {
  position: absolute;
  top: 0;
  left: 0;
}
.vote-area .vote-item .catalog-info .catalog-name .namelabel {
  display: inline-block;
  background-color: #ededed;
  padding: 5px 10px 5px 10px;
  margin-right: 14px;
}
.vote-area .vote-item .catalog-info a.catalog-link {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  color: #29a5bf;
  text-align: right;
  padding-right: 12px;
  background-image: url(../images/contest/icon_arrow-blue.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 7px 12px;
}
.vote-area .vote-item .catalog-info a.catalog-link.blue {
  color: #29a5bf;
  background-image: url(../images/contest/icon_arrow-blue.svg);
}
.vote-area .vote-item .catalog-info a.catalog-link.purple {
  color: #a384e0;
  background-image: url(../images/contest/icon_arrow-purple.svg);
}
.vote-area .vote-item .catalog-info a.catalog-link:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
@media only screen and (min-width: 320px) and (max-width: 1139px) {
  .vote-area .vote-item .catalog-info {
    margin-top: -4px;
    width: 100%;
  }
  .vote-area .vote-item .catalog-info a.catalog-link {
    right: auto;
    left: 0;
    top: 33px;
  }
}
.vote-area .vote-item.vote-item-col2 {
  width: 535px;
  float: left;
}
.vote-area .vote-item.vote-item-col2 .catalog {
  width: 504px;
}
.vote-area .vote-item.vote-item-col2 .catalog-info {
  width: 504px;
}
.vote-area .vote-item.vote-item-col2.coverpage {
  width: 420px;
}
.vote-area .vote-item.vote-item-col2.coverpage .catalog {
  width: 264px;
}
.vote-area .vote-item.vote-item-col2.coverpage .catalog-info {
  width: 264px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .vote-area .vote-item.vote-item-col2 {
    float: none;
    margin: 0 auto 30px auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .vote-area .vote-item.vote-item-col2 {
    width: 100%;
    float: none;
    margin: 0 auto 40px auto;
  }
  .vote-area .vote-item.vote-item-col2 .catalog {
    width: 100%;
  }
  .vote-area .vote-item.vote-item-col2 .catalog-info {
    width: 100%;
  }
  .vote-area .vote-item.vote-item-col2.coverpage {
    width: 250px;
    margin-top: -10px;
    margin-bottom: 20px;
  }
  .vote-area .vote-item.vote-item-col2.coverpage .catalog {
    width: 220px;
  }
  .vote-area .vote-item.vote-item-col2.coverpage .catalog-info {
    width: 220px;
  }
}

.vote-photos-box {
  width: 986px;
  padding: 36px 18px 28px 18px;
  margin: 36px auto 0 auto;
  background-color: #b8d9df;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.vote-photos-box.blue-box {
  background-color: #b8d9df;
}
.vote-photos-box.purple-box {
  background-color: #c1acea;
}
.vote-photos-box.green-box {
  background-color: #acd6a6;
}
.vote-photos-box.yellow-box {
  background-color: #f0d29a;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .vote-photos-box {
    width: 100%;
    max-width: 728px;
    margin-top: 20px;
    padding: 20px 18px 14px 18px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .vote-photos-box {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px 0 10px;
  }
}
.vote-photos-box .photo-item {
  /*
  display: inline-block;
  margin: 0 16px 0 16px;
  */
  width: 430px;
}
.vote-photos-box .photo-item .PhotoButtonUnit {
  width: 430px;
  padding: 9px;
  background-color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px;
}
.vote-photos-box .photo-item .PhotoButtonUnit.portrait {
  width: 304px;
  margin: 0 auto 0 auto;
}
.vote-photos-box .photo-item .PhotoButtonUnit.portrait a.PhotoThumb {
  width: 286px;
  height: 428px;
}
.vote-photos-box .photo-item .PhotoButtonUnit.portrait .vote-term {
  height: 50px;
  line-height: 1.35em;
  padding-top: 7px;
}
.vote-photos-box .photo-item .PhotoButtonUnit.portrait .vote-term .term-label {
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .vote-photos-box .photo-item .PhotoButtonUnit.portrait {
    width: 296px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1139px) {
  .vote-photos-box .photo-item .PhotoButtonUnit.portrait {
    width: 210px;
  }
  .vote-photos-box .photo-item .PhotoButtonUnit.portrait a.PhotoThumb {
    width: 200px;
    height: 299px;
  }
  .vote-photos-box .photo-item .PhotoButtonUnit.portrait .vote-term {
    height: auto;
    padding: 7px;
  }
  .vote-photos-box .photo-item .PhotoButtonUnit.portrait .vote-term span {
    display: block;
  }
}
.vote-photos-box .photo-item a.PhotoThumb {
  width: 412px;
  height: 275px;
  border: none;
}
.vote-photos-box .photo-item a.PhotoThumb .ZoomIcon {
  left: 7px;
  right: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.vote-photos-box .photo-item .vote-term {
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 10pt;
  font-family: "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","游ゴシック体","YuGothic",sans-serif;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #0f9ab7;
}
.vote-photos-box .photo-item .vote-term.blue {
  background-color: #0f9ab7;
}
.vote-photos-box .photo-item .vote-term.purple {
  background-color: #9b79dd;
}
.vote-photos-box .photo-item .vote-term.green {
  background-color: #7ed172;
}
.vote-photos-box .photo-item .vote-term.yellow {
  background-color: #ecb143;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .vote-photos-box .photo-item {
    width: 320px;
  }
  .vote-photos-box .photo-item .PhotoButtonUnit {
    width: 320px;
    padding: 5px;
  }
  .vote-photos-box .photo-item a.PhotoThumb {
    width: 310px;
    height: 207px;
  }
  .vote-photos-box .photo-item .vote-term {
    height: 50px;
    line-height: 1.35em;
    padding-top: 7px;
  }
  .vote-photos-box .photo-item .vote-term .term-label {
    display: block;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .vote-photos-box .photo-item {
    width: 250px;
  }
  .vote-photos-box .photo-item .PhotoButtonUnit {
    width: 250px;
    padding: 4px;
  }
  .vote-photos-box .photo-item a.PhotoThumb {
    width: 242px;
    height: 162px;
  }
  .vote-photos-box .photo-item .vote-term {
    height: 50px;
    line-height: 1.35em;
    padding-top: 7px;
  }
  .vote-photos-box .photo-item .vote-term .term-label {
    display: block;
  }
}

.update0525 .vote-photos-box {
  width: 1046px;
  -webkit-justify-content: center;
  justify-content: center;
}
.update0525 .vote-photos-box .photo-item.photo-item-col2 {
  margin-left: 21px;
  margin-right: 21px;
}
.update0525 .vote-photos-box .photo-item.photo-item-col2.last {
  margin-top: 42px;
}
.update0525 .vote-photos-box .photo-item.photo-item-col3 {
  width: 310px;
  margin-left: 10px;
  margin-right: 10px;
}
.update0525 .vote-photos-box .photo-item.photo-item-col3 .vote-buttons {
  width: 306px;
}
.update0525 .vote-photos-box .photo-item.photo-item-col3 .vote-buttons .BoxButtonUnit {
  width: 100%;
}
@media only screen and (min-width: 728px) and (max-width: 1139px) {
  .update0525 .vote-photos-box {
    width: 100%;
    max-width: 728px;
  }
  .update0525 .vote-photos-box .photo-item.photo-item-col2 {
    margin-left: auto;
    margin-right: auto;
  }
  .update0525 .vote-photos-box .photo-item.photo-item-col2.last {
    margin-top: 18px;
  }
  .update0525 .vote-photos-box .photo-item.photo-item-col3 {
    width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .update0525 .vote-photos-box .photo-item.photo-item-col3 .vote-buttons {
    width: 320px;
  }
  .update0525 .vote-photos-box .photo-item.photo-item-col3.last {
    margin-top: 18px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .update0525 .vote-photos-box {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px 0 10px;
  }
  .update0525 .vote-photos-box .photo-item.photo-item-col2.last {
    margin-top: auto;
  }
  .update0525 .vote-photos-box .photo-item.photo-item-col3 .vote-buttons {
    width: 100%;
  }
}

/* ============ 投票ボタン ============= */
.vote-buttons {
  width: 100%;
  margin: 22px auto 0 auto;
}
.vote-buttons .BoxButtonUnit {
  margin: 0 auto 0 auto;
}
.vote-buttons .BoxButtonUnit span {
  border: 1px solid #c2c2c2;
}
.vote-buttons .BoxButtonUnit span.sideA {
  background-color: #dcf6fb;
  background-image: url(../images/contest/icon_arrow-blue.svg);
}
.vote-buttons .BoxButtonUnit span.sideA img.label {
  display: block;
  width: 170px;
  height: 60px;
  margin: 0 auto 0 auto;
}
.vote-buttons .BoxButtonUnit span.sideB {
  background-color: #1f9ab5;
  background-image: url(../images/icon_arrow-right.svg);
}
.vote-buttons .BoxButtonUnit.blue-button span.sideA {
  background-color: #dcf6fb;
  background-image: url(../images/contest/icon_arrow-blue.svg);
}
.vote-buttons .BoxButtonUnit.blue-button span.sideB {
  background-color: #1f9ab5;
}
.vote-buttons .BoxButtonUnit.purple-button span.sideA {
  background-color: #dfd1f9;
  background-image: url(../images/contest/icon_arrow-purple.svg);
}
.vote-buttons .BoxButtonUnit.purple-button span.sideB {
  background-color: #a384e1;
}
.vote-buttons .BoxButtonUnit.green-button span.sideA {
  background-color: #d3f4ce;
  background-image: url(../images/contest/icon_arrow-green.svg);
}
.vote-buttons .BoxButtonUnit.green-button span.sideB {
  background-color: #7ed172;
}
.vote-buttons .BoxButtonUnit.yellow-button span.sideA {
  background-color: #fbe8c4;
  background-image: url(../images/contest/icon_arrow-yellow.svg);
}
.vote-buttons .BoxButtonUnit.yellow-button span.sideB {
  background-color: #e1b35d;
}
.vote-buttons .button-box {
  display: inline-block;
}
.vote-buttons .end-attention {
  width: 380px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 0 auto;
  font-weight: bold;
  color: #fff;
  background-color: #bfbfbf;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .vote-buttons {
    margin-top: 15px;
  }
  .vote-buttons .BoxButtonUnit {
    width: 100%;
  }
  .vote-buttons .BoxButtonUnit span {
    width: 100%;
  }
  .vote-buttons .end-attention {
    width: 100%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .vote-buttons {
    margin-top: 8px;
    margin-bottom: 22px;
  }
  .vote-buttons .BoxButtonUnit {
    width: 100%;
  }
  .vote-buttons .BoxButtonUnit span {
    width: 100%;
    padding: 0;
  }
  .vote-buttons .BoxButtonUnit span.sideA {
    padding-right: 12px;
  }
  .vote-buttons .end-attention {
    width: 100%;
  }
}
.vote-buttons.col3 {
  text-align: center;
  margin-top: 34px;
}
.vote-buttons.col3 .button-box {
  width: 282px;
  margin: 0 5px 0 5px;
}
.vote-buttons.col3 .button-box .BoxButtonUnit {
  width: 280px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .vote-buttons.col3 {
    margin-bottom: 30px;
  }
  .vote-buttons.col3 .button-box {
    margin-bottom: 10px;
  }
}
.vote-buttons.col2-row2 {
  width: 640px;
  text-align: center;
  margin-top: 34px;
}
.vote-buttons.col2-row2 .button-box {
  width: 282px;
  margin: 0 7px 10px 7px;
}
.vote-buttons.col2-row2 .button-box .BoxButtonUnit {
  width: 280px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .vote-buttons.col2-row2 {
    margin-bottom: 30px;
  }
}

/* ============ 投票終了エリアヘッダー ============= */
.vote-end-header {
  padding-top: 52px;
  border-top: 1px solid #bcbcbc;
}
.vote-end-header .vote-end-subtitle {
  width: 443px;
  margin: 0 auto 0 auto;
}
.vote-end-header .vote-end-subtitle span {
  display: block;
  margin: 0 auto 0 auto;
}
.vote-end-header .vote-end-subtitle span img {
  display: block;
  width: 100%;
}
.vote-end-header .vote-end-subtitle .subcopy-text {
  width: 58.2%;
  margin-bottom: 20px;
}
.vote-end-header .vote-end-subtitle .subtitle-text {
  width: 100%;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .vote-end-header .vote-end-subtitle {
    width: 288px;
    margin-bottom: 20px;
  }
  .vote-end-header .vote-end-subtitle .subcopy-text {
    margin-bottom: 10px;
  }
}

/* ============ 投票終了エリア ============= */
.vote-end-area {
  width: 1046px;
  min-height: 500px;
  margin: -16px auto 54px auto;
  padding: 50px 0 0 0;
  background-color: #f2f2f2;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .vote-end-area {
    width: 100%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .vote-end-area {
    width: 100%;
    margin-top: 0px;
    padding-top: 20px;
    margin-bottom: 24px;
  }
}
.vote-end-area .vote-end-items-box {
  width: 1046px;
  padding: 0 42px 0 42px;
  margin: 0 auto 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .vote-end-area .vote-end-items-box {
    width: 690px;
    padding: 0 10px 0 10px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .vote-end-area .vote-end-items-box {
    width: 100%;
    padding: 0 20px 0 20px;
  }
}
.vote-end-area .end-items-separate {
  width: 932px;
  height: 0;
  margin-bottom: 48px;
  border: none;
  border-top: 1px solid #bcbcbc;
}
.vote-end-area .vote-item {
  width: 439px;
}
.vote-end-area .vote-item .catalog {
  width: 439px;
  margin: 0 auto 0 auto;
}
.vote-end-area .vote-item .catalog img {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .vote-end-area .vote-item .catalog {
    width: 100%;
  }
}
.vote-end-area .vote-item .catalog-info {
  width: 100%;
  height: 30px;
  margin: -4px auto 0 auto;
}
.vote-end-area .vote-item .catalog-info .catalog-name {
  text-align: center;
}
.vote-end-area .vote-item .catalog-info .catalog-name .namelabel {
  display: inline-block;
  background-color: #fff;
  padding: 5px 10px 5px 10px;
  margin-right: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .vote-end-area .vote-item.vote-item-col2 {
    width: 320px;
  }
  .vote-end-area .vote-item.vote-item-col2 .catalog {
    width: 100%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .vote-end-area .vote-item.vote-item-col2 {
    width: 280px;
    margin-bottom: 14px;
  }
  .vote-end-area .vote-item.vote-item-col2 .catalog {
    width: 100%;
  }
}
.vote-end-area .vote-photos-box {
  background: none;
  margin-top: 24px;
  padding-top: 0;
  padding-bottom: 18px;
}
.vote-end-area .vote-photos-box .photo-item {
  margin-bottom: 32px;
}
.vote-end-area .vote-photos-box .photo-item .PhotoButtonUnit .vote-term {
  padding-top: 0;
  height: 30px;
  line-height: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .vote-end-area .vote-photos-box {
    margin-top: 10px;
  }
  .vote-end-area .vote-photos-box .photo-item {
    margin-bottom: 14px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .vote-end-area .vote-photos-box {
    margin-top: 6px;
    padding-bottom: 14px;
  }
  .vote-end-area .vote-photos-box .photo-item {
    margin-bottom: 14px;
  }
}

/* ============ プレゼント紹介 ============= */
.present-anounce {
  width: 1046px;
  border-top: 1px solid #bcbcbc;
  padding-top: 50px;
  margin: 0 auto 46px auto;
}
.present-anounce .subtitle {
  margin: 0 auto 0 auto;
}
.present-anounce .subtitle span {
  display: block;
  margin: 0 auto 0 auto;
}
.present-anounce .subtitle span img {
  display: block;
  width: 100%;
}
.present-anounce .text {
  margin: 16px auto 24px auto;
}
.present-anounce .text-comment {
  display: inline-block;
  padding: 5px 18px 5px 18px;
  background-color: #ededed;
  text-align: center;
  font-size: 10pt;
}
.present-anounce .text-comment a {
  font-family: "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","游ゴシック体","YuGothic",sans-serif;
  font-weight: bold;
  color: #000;
  text-decoration: underline;
}
.present-anounce .text-comment a:hover {
  color: #888;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .present-anounce {
    width: 90%;
  }
  .present-anounce .text {
    width: 100%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .present-anounce {
    width: 94%;
    padding-top: 30px;
    margin-bottom: 30px;
  }
  .present-anounce .text {
    width: 95%;
    text-align: center;
    margin-bottom: 15px;
  }
  .present-anounce .text span {
    display: inline-block;
  }
  .present-anounce .text-comment {
    padding: 7px 7px 7px 7px;
    max-width: 300px;
  }
}
.present-anounce .regist-buttons {
  width: 100%;
}
.present-anounce .regist-buttons .BoxButtonUnit {
  margin: 0 auto 0 auto;
}
.present-anounce .regist-buttons .BoxButtonUnit span {
  border: 1px solid #c2c2c2;
}
.present-anounce .regist-buttons .BoxButtonUnit span.sideA {
  background-color: #fff;
  background-image: url(../images/icon_arrow-right-red.svg);
}
.present-anounce .regist-buttons .BoxButtonUnit span.sideA img.label {
  display: block;
  width: 230px;
  height: 60px;
  margin: 0 auto 0 auto;
}
.present-anounce .regist-buttons .BoxButtonUnit span.sideB {
  background-color: #e30b20;
  background-image: url(../images/icon_arrow-right.svg);
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .present-anounce .regist-buttons {
    width: 282px;
    margin: 0 auto 0 auto;
  }
  .present-anounce .regist-buttons .BoxButtonUnit {
    width: 290px;
  }
  .present-anounce .regist-buttons .BoxButtonUnit span {
    padding: 0;
  }
  .present-anounce .regist-buttons .BoxButtonUnit span.sideA {
    padding-right: 14px;
  }
}
.present-anounce.works-present .subtitle {
  width: 560px;
}
.present-anounce.works-present .subtitle .subcopy-text {
  margin-bottom: 20px;
  overflow: hidden;
  width: 339px;
  height: 0 !important;
  height: 21px;
  padding-top: 21px;
  line-height: 21px;
  background-image: url(../images/contest/present1-subtitle1.svg);
  background-repeat: no-repeat;
  background-size: 339px 21px;
}
.present-anounce.works-present .subtitle .subtitle-text {
  overflow: hidden;
  width: 560px;
  height: 0 !important;
  height: 37px;
  padding-top: 37px;
  line-height: 37px;
  background-image: url(../images/contest/present1-subtitle2.svg);
  background-repeat: no-repeat;
  background-size: 560px 37px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .present-anounce.works-present .subtitle .subcopy-text {
    margin-bottom: 14px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .present-anounce.works-present .subtitle {
    width: 300px;
  }
  .present-anounce.works-present .subtitle .subcopy-text {
    margin-bottom: 10px;
    overflow: hidden;
    width: 240px;
    height: 0 !important;
    height: 15px;
    padding-top: 15px;
    line-height: 15px;
    background-image: url(../images/contest/present1-subtitle1.svg);
    background-repeat: no-repeat;
    background-size: 240px 15px;
  }
  .present-anounce.works-present .subtitle .subtitle-text {
    overflow: hidden;
    width: 300px;
    height: 0 !important;
    height: 20px;
    padding-top: 20px;
    line-height: 20px;
    background-image: url(../images/contest/present1-subtitle2.svg);
    background-repeat: no-repeat;
    background-size: 300px 20px;
  }
}
.present-anounce.catalog-present .subtitle {
  width: 480px;
}
.present-anounce.catalog-present .subtitle .subcopy-text {
  margin-bottom: 20px;
  overflow: hidden;
  width: 264px;
  height: 0 !important;
  height: 23px;
  padding-top: 23px;
  line-height: 23px;
  background-image: url(../images/contest/present2-subtitle1.svg);
  background-repeat: no-repeat;
  background-size: 264px 23px;
}
.present-anounce.catalog-present .subtitle .subtitle-text {
  overflow: hidden;
  width: 480px;
  height: 0 !important;
  height: 37px;
  padding-top: 37px;
  line-height: 37px;
  background-image: url(../images/contest/present2-subtitle2.svg);
  background-repeat: no-repeat;
  background-size: 480px 37px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .present-anounce.catalog-present .subtitle .subcopy-text {
    margin-bottom: 14px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .present-anounce.catalog-present .subtitle {
    width: 264px;
  }
  .present-anounce.catalog-present .subtitle .subcopy-text {
    margin-bottom: 10px;
    overflow: hidden;
    width: 185px;
    height: 0 !important;
    height: 16px;
    padding-top: 16px;
    line-height: 16px;
    background-image: url(../images/contest/present2-subtitle1.svg);
    background-repeat: no-repeat;
    background-size: 185px 16px;
  }
  .present-anounce.catalog-present .subtitle .subtitle-text {
    overflow: hidden;
    width: 264px;
    height: 0 !important;
    height: 20px;
    padding-top: 20px;
    line-height: 20px;
    background-image: url(../images/contest/present2-subtitle2.svg);
    background-repeat: no-repeat;
    background-size: 264px 20px;
  }
}

/* ============ 参加メンバー紹介 ============= */
.members-sec {
  background-color: #efefef;
  /* 見出し */
  /* メンバー一覧 */
}
.members-sec .members-subtitle {
  position: relative;
  z-index: 3;
  width: 400px;
  margin: 0 auto 0 auto;
}
.members-sec .members-subtitle span {
  display: block;
  margin: 0 auto 0 auto;
}
.members-sec .members-subtitle span img {
  display: block;
  width: 100%;
}
.members-sec .members-subtitle .subcopy-text {
  margin-bottom: 20px;
  overflow: hidden;
  width: 284px;
  height: 0 !important;
  height: 23px;
  padding-top: 23px;
  line-height: 23px;
  background-image: url(../images/contest/members-subtitle1.svg);
  background-repeat: no-repeat;
  background-size: 284px 23px;
}
.members-sec .members-subtitle .subtitle-text {
  overflow: hidden;
  width: 400px;
  height: 0 !important;
  height: 35px;
  padding-top: 35px;
  line-height: 35px;
  background-image: url(../images/contest/members-subtitle2.svg);
  background-repeat: no-repeat;
  background-size: 400px 35px;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .members-sec .members-subtitle {
    width: 300px;
  }
  .members-sec .members-subtitle .subcopy-text {
    margin-bottom: 10px;
    overflow: hidden;
    width: 213px;
    height: 0 !important;
    height: 17px;
    padding-top: 17px;
    line-height: 17px;
    background-image: url(../images/contest/members-subtitle1.svg);
    background-repeat: no-repeat;
    background-size: 213px 17px;
  }
  .members-sec .members-subtitle .subtitle-text {
    overflow: hidden;
    width: 300px;
    height: 0 !important;
    height: 26px;
    padding-top: 26px;
    line-height: 26px;
    background-image: url(../images/contest/members-subtitle2.svg);
    background-repeat: no-repeat;
    background-size: 300px 26px;
  }
}
.members-sec .members-list {
  position: relative;
  z-index: 0;
  width: 1045px;
  margin: -90px auto 0 auto;
}
.members-sec .members-list .photographers-typo {
  position: relative;
  z-index: 0;
  top: 0;
  left: 0;
  width: 770px;
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.members-sec .members-list .photographers-typo img {
  display: block;
  width: 100%;
}
.members-sec .members-list .members {
  position: relative;
  width: 100%;
  margin-top: -10px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .members-sec .members-list {
    width: 90%;
  }
  .members-sec .members-list .photographers-typo {
    width: 692px;
    margin: 0 auto 0 auto;
  }
  .members-sec .members-list .members {
    width: 692px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .members-sec .members-list {
    width: 90%;
    margin-top: -54px;
  }
  .members-sec .members-list .photographers-typo {
    width: 100%;
  }
  .members-sec .members-list .members {
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* メンバー一覧 */
.members {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .members {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
}
.members li.member-item {
  width: 320px;
  height: 160px;
  background-color: #fff;
  margin-bottom: 28px;
}
.members li.member-item .box {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 160px;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .members li.member-item {
    width: 280px;
    height: 120px;
    margin-bottom: 14px;
  }
  .members li.member-item .box {
    height: 120px;
  }
}
.members li.member-item .BoxButtonUnit {
  width: 100%;
  height: 160px;
}
.members li.member-item .BoxButtonUnit .Rectangular {
  height: 100%;
}
.members li.member-item .BoxButtonUnit span {
  height: 160px;
  border: none;
  background-image: url(../images/contest/member-button-arrow-bk.svg);
  background-size: 10px 16px;
  background-position: right 12px center;
  background-repeat: no-repeat;
}
.members li.member-item .BoxButtonUnit span.sideA {
  background-color: #fff;
  -moz-transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  -ms-transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  -webkit-transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
}
.members li.member-item .BoxButtonUnit span.sideB {
  line-height: 160px;
  background-color: #000;
  background-image: url(../images/contest/member-button-arrow.svg);
  -moz-transform: perspective(500px) rotateX(90deg) translateY(-80px) translateZ(80px);
  -ms-transform: perspective(500px) rotateX(90deg) translateY(-80px) translateZ(80px);
  -webkit-transform: perspective(500px) rotateX(90deg) translateY(-80px) translateZ(80px);
  transform: perspective(500px) rotateX(90deg) translateY(-80px) translateZ(80px);
}
.members li.member-item .BoxButtonUnit:hover span.sideA {
  z-index: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-transform: perspective(500px) rotateX(-90deg) translateY(80px) translateZ(80px);
  -ms-transform: perspective(500px) rotateX(-90deg) translateY(80px) translateZ(80px);
  -webkit-transform: perspective(500px) rotateX(-90deg) translateY(80px) translateZ(80px);
  transform: perspective(500px) rotateX(-90deg) translateY(80px) translateZ(80px);
  -moz-transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
.members li.member-item .BoxButtonUnit:hover span.sideB {
  z-index: 1;
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  -ms-transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  -webkit-transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  -moz-transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -o-transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  -webkit-transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
  transition: all 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
.members li.member-item .BoxButtonUnit .sideA .member-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 160px;
}
.members li.member-item .BoxButtonUnit .sideA .member-photo img {
  display: block;
  width: 100%;
}
.members li.member-item .BoxButtonUnit .sideA .member-name {
  position: relative;
  display: table;
  margin-left: 50%;
  width: 160px;
  height: 160px;
  color: #111;
}
.members li.member-item .BoxButtonUnit .sideA .member-name .name-box {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  padding: 0 30px 0 18px;
  line-height: 1.6em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.members li.member-item .BoxButtonUnit .sideA .member-name .name-box .ja {
  font-size: 14pt;
}
.members li.member-item .BoxButtonUnit .sideA .member-name .name-box .en {
  font-size: 13pt;
  font-family: helvetica, arial, sans-serif;
  font-weight: bold;
  line-height: 1.35em;
}
.members li.member-item .BoxButtonUnit .sideA .member-name .name-box .sub-en {
  font-size: 9.5pt;
  font-family: helvetica, arial, sans-serif;
  font-weight: bold;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .members li.member-item .BoxButtonUnit {
    height: 120px;
  }
  .members li.member-item .BoxButtonUnit span {
    height: 120px;
  }
  .members li.member-item .BoxButtonUnit span.sideB {
    line-height: 120px;
    -moz-transform: perspective(500px) rotateX(90deg) translateY(-60px) translateZ(60px);
    -ms-transform: perspective(500px) rotateX(90deg) translateY(-60px) translateZ(60px);
    -webkit-transform: perspective(500px) rotateX(90deg) translateY(-60px) translateZ(60px);
    transform: perspective(500px) rotateX(90deg) translateY(-60px) translateZ(60px);
  }
  .members li.member-item .BoxButtonUnit:hover span.sideA {
    z-index: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
  }
  .members li.member-item .BoxButtonUnit:hover span.sideB {
    z-index: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
  }
  .members li.member-item .BoxButtonUnit .sideA {
    padding: 0;
  }
  .members li.member-item .BoxButtonUnit .sideA .member-photo {
    width: 120px;
    height: 120px;
  }
  .members li.member-item .BoxButtonUnit .sideA .member-name {
    width: 280px;
    height: 120px;
    margin-left: 120px;
  }
  .members li.member-item .BoxButtonUnit .sideA .member-name .name-box .ja {
    font-size: 11.5pt;
  }
  .members li.member-item .BoxButtonUnit .sideA .member-name .name-box .en {
    font-size: 12pt;
  }
  .members li.member-item .BoxButtonUnit .sideA .member-name .name-box .sub-en {
    font-size: 8.5pt;
  }
}
@media only screen and (min-width: 300px) and (max-width: 1139px) {
  .members li.member-item .BoxButtonUnit:hover span.spanA {
    z-index: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
    -ms-transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
    -webkit-transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
    transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  }
  .members li.member-item .BoxButtonUnit:hover span.spanB {
    z-index: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    -moz-transform: perspective(500px) rotateX(90deg) translateY(-80px) translateZ(80px);
    -ms-transform: perspective(500px) rotateX(90deg) translateY(-80px) translateZ(80px);
    -webkit-transform: perspective(500px) rotateX(90deg) translateY(-80px) translateZ(80px);
    transform: perspective(500px) rotateX(90deg) translateY(-80px) translateZ(80px);
  }
}
.members li.members-outline {
  width: 670px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .members li.members-outline {
    width: 692px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .members li.members-outline {
    width: 100%;
  }
}
.members li.members-outline .outline-sec {
  text-align: left;
  padding-top: 25px;
}
.members li.members-outline .outline-sec .text-heading {
  font-weight: bold;
  font-size: 13.5pt;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 10px;
}
.members li.members-outline .outline-sec .text {
  width: 90%;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .members li.members-outline .outline-sec {
    text-align: center;
  }
  .members li.members-outline .outline-sec h4 {
    margin-left: auto;
    margin-right: auto;
  }
  .members li.members-outline .outline-sec .text {
    margin: 0 auto 0 auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .members li.members-outline .outline-sec {
    padding-top: 10px;
  }
  .members li.members-outline .outline-sec h4 {
    font-size: 13.5pt;
    line-height: 1.4em;
  }
  .members li.members-outline .outline-sec .text {
    width: 100%;
  }
}

/* ============ 東京カメラ部分室について ============= */
.bunsitsu-sec {
  color: #595757;
  	/*
  	.camerabu-info {
  		width: 80%;
  		max-width: 1020px;
  		margin: 20px auto 0 auto;
  		padding: 50px 0 0 0;
  		border-top: 1px solid $borderColor;
  
  		@include mq-custom(768px, 1139px) {
  			width: 95%;
  			max-width: 800px;
  			padding-top: 36px;
  		}
  
  		@include mq-custom(320px, 767px) {
  			width: 300px;
  			margin-top: 0;
  			padding-top: 32px;
  		}
  	}
  	*/
}
.bunsitsu-sec .bunsitsu-header {
  width: 720px;
  margin: 0 auto 30px auto;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .bunsitsu-sec .bunsitsu-header {
    width: 90%;
    margin-bottom: 15px;
  }
}
.bunsitsu-sec .bunsitsu-pages {
  width: 90%;
  max-width: 1066px;
  margin: 0 auto 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .bunsitsu-sec .bunsitsu-pages {
    width: 98%;
    max-width: 780px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .bunsitsu-sec .bunsitsu-pages {
    width: 300px;
    max-width: 640px;
  }
}

/* ヘッダー部分 */
.bunsitsu-header .bns-subtitle {
  margin: 0 auto 25px auto;
  overflow: hidden;
  width: 454px;
  height: 0 !important;
  height: 36px;
  padding-top: 36px;
  line-height: 36px;
  background-image: url(../images/contest/bunsitsu-subtitle.svg);
  background-repeat: no-repeat;
  background-size: 454px 36px;
}
.bunsitsu-header .bns-subtitle img {
  display: block;
  width: 100%;
}
.bunsitsu-header .bns-text {
  text-align: center;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .bunsitsu-header .bns-subtitle {
    margin-bottom: 15px;
    overflow: hidden;
    width: 288px;
    height: 0 !important;
    height: 23px;
    padding-top: 23px;
    line-height: 23px;
    background-image: url(../images/contest/bunsitsu-subtitle.svg);
    background-repeat: no-repeat;
    background-size: 288px 23px;
  }
  .bunsitsu-header .bns-text br {
    display: none;
  }
  .bunsitsu-header .bns-text span {
    display: inline-block;
  }
}

/* 分室ページ情報 */
.bunsitsu-pages {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.bunsitsu-pages .page-info-box {
  width: 508px;
  border: 1px solid #bcbcbc;
  margin-bottom: 26px;
  padding: 14px;
  background-image: url(../images/contest/pageinfo-dot-bg.gif);
  background-size: 8px 8px;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .bunsitsu-pages .page-info-box {
    width: 360px;
    padding: 10px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .bunsitsu-pages .page-info-box {
    width: 300px;
    padding: 10px;
  }
}
.bunsitsu-pages .page-info {
  width: 480px;
  padding: 17px 17px 17px 17px;
  text-align: center;
  background-color: #fff;
}
.bunsitsu-pages .page-info .page-icon {
  width: 72px;
  height: 72px;
  background-color: #c8c8c8;
  float: left;
}
.bunsitsu-pages .page-info .page-icon img {
  display: block;
  width: 100%;
}
.bunsitsu-pages .page-info .page-texts {
  text-align: left;
  height: 72px;
  margin-left: 85px;
}
.bunsitsu-pages .page-info .page-name {
  font-size: 14pt;
  line-height: 1.2em;
  font-weight: bold;
  color: #89855d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 5px;
}
.bunsitsu-pages .page-info .page-name.en {
  font-family: helvetica, arial, sans-serif;
  letter-spacing: 0;
}
.bunsitsu-pages .page-info .page-descr {
  line-height: 1.4em;
}
.bunsitsu-pages .page-info .line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #d7d7d7;
  margin: 12px auto 12px auto;
}
.bunsitsu-pages .page-info .page-photo {
  width: 446px;
  height: 229px;
  margin: 0 auto 0 auto;
  background-color: #c8c8c8;
}
.bunsitsu-pages .page-info .page-photo img {
  display: block;
  width: 100%;
}
.bunsitsu-pages .page-info .fb-plugin-box {
  width: 420px;
  height: 420px;
  margin: 0 auto 0 auto;
}
.bunsitsu-pages .page-info .BoxButtonUnit {
  margin: 18px auto 0 auto;
}
.bunsitsu-pages .page-info .BoxButtonUnit span {
  border-color: #dddbc7;
}
.bunsitsu-pages .page-info .BoxButtonUnit span.sideA {
  color: #89855d;
  background-color: #fff;
  background-image: url(../images/contest/bun-icon_arrow-right.svg);
}
.bunsitsu-pages .page-info .BoxButtonUnit span.sideB {
  background-color: #242424;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .bunsitsu-pages .page-info {
    width: 340px;
    height: 372px;
    padding: 12px;
  }
  .bunsitsu-pages .page-info .page-icon {
    width: 64px;
    height: 64px;
  }
  .bunsitsu-pages .page-info .page-texts {
    height: auto;
    margin-left: 74px;
  }
  .bunsitsu-pages .page-info .page-name {
    margin-bottom: 2px;
  }
  .bunsitsu-pages .page-info .page-photo {
    width: 100%;
    height: auto;
  }
  .bunsitsu-pages .page-info .fb-plugin-box {
    width: 300px;
    height: 300px;
  }
  .bunsitsu-pages .page-info .BoxButtonUnit {
    width: 316px;
    margin-top: 12px;
  }
  .bunsitsu-pages .page-info .BoxButtonUnit .Rectangular {
    width: 316px;
  }
  .bunsitsu-pages .page-info .BoxButtonUnit span {
    width: 316px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .bunsitsu-pages .page-info {
    width: 280px;
    padding: 10px;
  }
  .bunsitsu-pages .page-info .page-icon {
    width: 52px;
    height: 52px;
  }
  .bunsitsu-pages .page-info .page-texts {
    height: auto;
    margin-left: 62px;
  }
  .bunsitsu-pages .page-info .page-name {
    font-size: 12pt;
    margin-bottom: 3px;
  }
  .bunsitsu-pages .page-info .page-photo {
    width: 100%;
    height: auto;
  }
  .bunsitsu-pages .page-info .fb-plugin-box {
    width: 280px;
    height: 280px;
  }
  .bunsitsu-pages .page-info .BoxButtonUnit {
    width: 260px;
    margin-top: 10px;
  }
  .bunsitsu-pages .page-info .BoxButtonUnit .Rectangular {
    width: 260px;
  }
  .bunsitsu-pages .page-info .BoxButtonUnit span {
    width: 260px;
  }
}

.camerabu-info-box {
  position: relative;
  width: 508px;
  border: 3px solid #bcbcbc;
}
.camerabu-info-box .camerabu-info {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  right: 4px;
  padding-top: 62px;
  border: 1px solid #bcbcbc;
}
.camerabu-info-box .camerabu-info .camerabu-info-title {
  width: 320px;
  margin: 0 auto 12px auto;
}
.camerabu-info-box .camerabu-info .camerabu-info-title img {
  display: block;
  width: 100%;
}
.camerabu-info-box .camerabu-info .camerabu-info-text {
  width: 85%;
  margin: 0 auto 0 auto;
}
.camerabu-info-box .camerabu-info .bnr-item {
  display: block;
  margin: 22px auto 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .camerabu-info-box {
    width: 360px;
  }
  .camerabu-info-box .camerabu-info {
    padding-top: 55px;
  }
  .camerabu-info-box .camerabu-info .camerabu-info-title {
    width: 240px;
  }
  .camerabu-info-box .camerabu-info .camerabu-info-text {
    line-height: 1.35em;
  }
  .camerabu-info-box .camerabu-info .bnr-item {
    width: 260px;
    height: 83px;
    margin-top: 12px;
  }
  .camerabu-info-box .camerabu-info .bnr-item .BoxButtonUnit .Rectangular {
    width: 260px;
    height: 83px;
  }
  .camerabu-info-box .camerabu-info .bnr-item .BoxButtonUnit span {
    width: 260px;
    height: 83px;
    padding: 0;
  }
  .camerabu-info-box .camerabu-info .bnr-item .BoxButtonUnit span img {
    display: block;
    width: 258px;
    height: 81px;
  }
  .camerabu-info-box .camerabu-info .bnr-item .BoxButtonUnit span.sideB {
    line-height: 81px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .camerabu-info-box {
    width: 300px;
    padding: 4px;
  }
  .camerabu-info-box .camerabu-info {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 15px;
  }
  .camerabu-info-box .camerabu-info .camerabu-info-title {
    width: 240px;
  }
  .camerabu-info-box .camerabu-info .camerabu-info-text {
    text-align: left;
  }
  .camerabu-info-box .camerabu-info .bnr-item {
    width: 260px;
    height: 83px;
    margin-top: 15px;
  }
  .camerabu-info-box .camerabu-info .bnr-item .BoxButtonUnit .Rectangular {
    width: 260px;
    height: 83px;
  }
  .camerabu-info-box .camerabu-info .bnr-item .BoxButtonUnit span {
    width: 260px;
    height: 83px;
    padding: 0;
  }
  .camerabu-info-box .camerabu-info .bnr-item .BoxButtonUnit span img {
    display: block;
    width: 258px;
    height: 81px;
  }
  .camerabu-info-box .camerabu-info .bnr-item .BoxButtonUnit span.sideB {
    line-height: 81px;
  }
}

/* ============ バナーエリア ============= */
/* バナーエリア */
.bnr-area {
  padding: 24px 0 24px 0;
  text-align: center;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}
@media only screen and (min-width: 768px) and (max-width: 1139px) {
  .bnr-area {
    padding-bottom: 10px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .bnr-area {
    padding: 20px 0 10px 0;
  }
}

.bnr-item {
  display: inline-block;
  width: 382px;
  height: 122px;
  margin: 0 9px 0 9px;
}
.bnr-item .BoxButtonUnit .Rectangular {
  height: 122px;
}
.bnr-item .BoxButtonUnit span {
  width: 382px;
  height: 122px;
}
.bnr-item .BoxButtonUnit span img {
  display: block;
  width: 380px;
  height: 120px;
}
.bnr-item .BoxButtonUnit span.sideB {
  line-height: 120px;
  font-size: 12pt;
  background-color: #242424;
  -moz-transform: perspective(500px) rotateX(90deg) translateY(-60px) translateZ(60px);
  -ms-transform: perspective(500px) rotateX(90deg) translateY(-60px) translateZ(60px);
  -webkit-transform: perspective(500px) rotateX(90deg) translateY(-60px) translateZ(60px);
  transform: perspective(500px) rotateX(90deg) translateY(-60px) translateZ(60px);
}
.bnr-item .BoxButtonUnit:hover span.sideA {
  -moz-transform: perspective(500px) rotateX(-90deg) translateY(60px) translateZ(60px);
  -ms-transform: perspective(500px) rotateX(-90deg) translateY(60px) translateZ(60px);
  -webkit-transform: perspective(500px) rotateX(-90deg) translateY(60px) translateZ(60px);
  transform: perspective(500px) rotateX(-90deg) translateY(60px) translateZ(60px);
}
.bnr-item .BoxButtonUnit:hover span.sideB {
  -moz-transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  -ms-transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  -webkit-transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
  transform: perspective(500px) rotateX(0deg) translateY(0px) translateZ(0px);
}
@media only screen and (min-width: 320px) and (max-width: 1139px) {
  .bnr-item {
    width: 287px;
    height: 92px;
    margin-bottom: 6px;
  }
  .bnr-item .BoxButtonUnit .Rectangular {
    height: 90px;
  }
  .bnr-item .BoxButtonUnit span {
    width: 287px;
    height: 92px;
    padding: 0;
  }
  .bnr-item .BoxButtonUnit span img {
    display: block;
    width: 285px;
    height: 90px;
  }
  .bnr-item .BoxButtonUnit span.sideB {
    line-height: 90px;
  }
  .bnr-item .BoxButtonUnit:hover span.sideA {
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
  .bnr-item .BoxButtonUnit:hover span.sideB {
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
}

/* ============ パンくずエリア ============= */
.Breadcrumbs ul {
  background-color: rgba(255, 255, 255, 0.7);
  color: #666;
}
.Breadcrumbs ul li a {
  color: #666;
  opacity: 0.3;
  filter: alpha(opacity=30);
}
.Breadcrumbs ul li.home a {
  background-image: url(../images/breadcrumbs-home-bk.svg);
}
.Breadcrumbs ul li.arrow {
  opacity: 0.3;
  filter: alpha(opacity=30);
  background-image: url(../images/breadcrumbs-arrow-bk.svg);
}
.Breadcrumbs.sp-breadcrumbs {
  background-color: #fff;
  border-top: 1px solid #bcbcbc;
}
