@charset 'UTF-8';

/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', 'ＭＳ Ｐゴシック', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  width: 100%;
  margin: auto;
  color: #333;
  background: #000;
}

@media screen and (max-width: 640px) {
  body {
    min-width: 0;
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  outline: none;
}

a img {
  pointer-events: none;
}

a:link {
  text-decoration: none;
  outline: none;
}

a:visited {
  text-decoration: none;
  outline: none;
}

a:hover {
  outline: none;
}

a:active {
  text-decoration: none;
  outline: none;
}

.inherit {
  color: inherit;
}

.mb0 {
  margin-bottom: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.align-center {
  text-align: center;
}

.img-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-flex .left {
  margin-right:3.5vw;
}

@media screen and (max-width: 640px) {
  .img-flex {
    display: block;
    text-align: center;
  }
  .img-flex .left {
    margin-right:0;
  }
}

.new-content img:first-child {
  width: 100%;
  max-width: 564px;
}

.new-content img:last-child {
  width: 100%;
  max-width: 420px;
}

.sp-show {
  display: none !important;
}

@media screen and (max-width: 640px) {
  .sp-show {
    display: block !important;
  }
}

.pc-show {
  display: block !important;
}

@media screen and (max-width: 640px) {
  .pc-show {
    display: none !important;
  }
}

.tac {
  text-align: center !important;
}

.has-whiteIcon {
  position: relative;
  display: block;
  color: inherit;
}

.has-whiteIcon:before {
  position: absolute;
  top: 7px;
  right: 7px;
  display: block;
  width: 14px;
  height: 12px;
  content: '';
  background-image: url(../img/sprite.png);
  background-position: -274px -56px;
}

.has-blackIcon {
  position: relative;
  display: block;
  color: inherit;
}

.has-blackIcon:before {
  position: absolute;
  top: 7px;
  right: 7px;
  display: block;
  width: 14px;
  height: 12px;
  content: '';
  background-image: url(../img/sprite.png);
  background-position: -292px -56px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

p {
  margin: 0;
}

dl {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0;
}

img {
  vertical-align: top;
}

em {
  font-style: normal;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.util-inline {
  display: inline !important;
}

.util-inlineBlock {
  display: inline-block !important;
}

.util-block {
  display: block !important;
}

.fluid {
  max-width: 100%;
  height: auto;
}

.ie8 .fluid {
  width: auto;
}

@media screen and (max-width: 640px) {
  .sp-hide {
    display: none !important;
  }
}

.textLink {
  -webkit-transition: color .2s ease-out;
  -moz-transition: color .2s ease-out;
  transition: color .2s ease-out;
  color: #00bba9 !important;
}

.textLink:hover {
  color: #00e6cd !important;
}

.aboutDescription {
  margin: 0 0 80px;
}

@media screen and (max-width: 640px) {
  .aboutDescription {
    margin-bottom: 30px;
  }
}

.aboutDescription-header {
  font-weight: bold;
  position: relative;
  margin: 0 0 15px;
  padding: 15px;
  background: #fdd138;
}

.aboutDescription-header:before {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  content: '';
  border-width: 6px 7px 0 7px;
  border-style: solid;
  border-color: #fdd238 transparent transparent transparent;
}

.aboutDescription-header>p {
  font-size: 16px;
  font-size: 1.6rem;
  display: inline-block;
  vertical-align: middle;
  color: #333;
}

@media screen and (max-width: 640px) {
  .aboutDescription-header {
    /*padding: 0 5px 5px;*/
    padding: 10px;
  }

  .aboutDescription-header>p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.aboutDescription-label {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 2;
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 0 9px;
  color: #fdd138;
  background: #000;
}

@media screen and (max-width: 640px) {
  .aboutDescription-label {
    font-size: 9px;
    font-size: .9rem;
    margin-right: 2px;
    padding-right: 4px;
    padding-left: 4px;
  }
}

.aboutDescription-contents {
  min-height: 470px;
  padding: 25px;
  background: #fff;
  *zoom: 1;
}

.aboutDescription-contents:before, .aboutDescription-contents:after {
  display: table;
  content: '';
}

.aboutDescription-contents:after {
  clear: both;
}

@media screen and (max-width: 640px) {
  .aboutDescription-contents {
    min-height: auto;
    padding: 10px;
  }
}

.aboutDescription-content--1, .aboutDescription-content--2, .aboutDescription-content--3 {
  margin: 0 0 15px;
}

.aboutDescription-content--1>dt, .aboutDescription-content--2>dt, .aboutDescription-content--3>dt {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 10px;
}

.aboutDescription-content--1>dd, .aboutDescription-content--2>dd, .aboutDescription-content--3>dd {
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 640px) {
  .aboutDescription-content--1, .aboutDescription-content--2, .aboutDescription-content--3 {
    padding-right: 0;
  }
}

.aboutDescription-contents-left {
  float: left;
  clear: both;
  width: 40%;
}

@media screen and (max-width: 640px) {
  .aboutDescription-contents-left {
    float: none;
    width: auto;
  }
}

.aboutDescription-contents-right {
  float: right;
  width: 60%;
  padding: 0 0 0 10px;
}

@media screen and (max-width: 640px) {
  .aboutDescription-contents-right {
    float: none;
    width: auto;
    padding-bottom: 15px;
    padding-left: 0;
    text-align: center;
  }
}

.aboutDescription-upscaling-lead {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0 0 10px;
}

.aboutDescription-upscaling-notice {
  font-size: 11px;
  font-size: 1.1rem;
}

.aboutDescription-upscaling-text {
  font-size: 13px;
  font-size: 1.3rem;
  margin: 0 0 25px;
}

.album {
  margin: 0 0 45px;
}

.album:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 640px) {
  .album {
    margin-bottom: 15px;
  }
}

.album-title {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0 0 4px;
  padding: 10px 8px;
  background: #fff;
}

@media screen and (max-width: 640px) {
  .album-title {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.album-title-label {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 35px;
  display: inline-block;
  min-width: 70px;
  margin: 0 8px 0 0;
  text-align: center;
  vertical-align: middle;
  background: #fdd138;
}

@media screen and (max-width: 640px) {
  .album-title-label {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 24px;
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
    text-align: center;
  }
}

.album-title-number {
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 640px) {
  .album-title-number {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.album-title-title {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  .album-title-title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.album-contents {
  display: table;
  width: 100%;
  padding: 40px 30px;
  table-layout: fixed;
  background: #fff;
}

@media screen and (max-width: 640px) {
  .album-contents {
    padding: 10px;
  }
}

.album-contents-text {
  display: table-cell;
  width: 100%;
  padding: 0 40px 0 0;
  vertical-align: top;
}

.album-contents-text p {
  margin: 0 0 25px;
}

.album-contents-text p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 640px) {
  .album-contents-text {
    display: block;
    padding-right: 0;
  }

  .album-contents-text p {
    font-size: 13px;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
}

.album-contents-information {
  display: table-cell;
  width: 200px;
  vertical-align: top;
}

.album-contents-information img {
  display: block;
  margin: 0 0 15px;
}

.album-contents-information dl {
  line-height: 1.8;
}

@media screen and (max-width: 640px) {
  .album-contents-information {
    display: block;
    width: auto;
    padding-top: 10px;
    text-align: center;
  }

  .album-contents-information img {
    display: inline;
  }

  .album-contents-information dl {
    text-align: left;
  }
}

.album-contents-title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}

.album-contents-artist {
  font-size: 13px;
  font-size: 1.3rem;
}

.album-contents-rate {
  font-size: 13px;
  font-size: 1.3rem;
  margin: 0 0 10px;
  color: #666;
}

.banner {
  text-align: center;
  width: 100%;
  display: inline-block;
}

.banner>ul {
  margin: 0 auto;
  width: 85%;
}

@media (max-width: 640px) {
  .banner>ul {
    width: 100%;
  }
}

.banner>li {
  margin: 0 0 15px;
}

.banner>li:last-child {
  margin-bottom: 0;
}

.banner a {
  display: block;
}

.breadcrumb {
  background: rgba(255, 255, 255, .22);
}

.ie8 .breadcrumb {
  background: #666;
}

.breadcrumb ul {
  font-size: 0;
  padding: 10px 0;
}

.breadcrumb li {
  font-size: 13px;
  font-size: 1.3rem;
  position: relative;
  display: inline-block;
  color: #fff;
}

.breadcrumb li:after {
  display: inline-block;
  padding: 0 5px;
  content: '>';
  color: #919090;
}

.breadcrumb li:last-child:after {
  display: none;
}

.breadcrumb a {
  color: #ffca12;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.button-site, .button-site--orange, .button-detail {
  display: block;
}

.button-site {
  font-size: 13px;
  font-size: 1.3rem;
  padding: 10px;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
  text-align: center;
  color: #fff;
  background: #000;
}

.button-site:hover {
  opacity: .7;
}

.button-site--orange {
  font-size: 13px;
  font-size: 1.3rem;
  width: 270px;
  padding: 10px;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
  text-align: center;
  color: #000;
  background: #ffde69;
}

.button-site--orange:hover {
  opacity: .7;
}

@media screen and (max-width: 1000px) {
  .button-site--orange {
    width: auto;
  }
}

.button-list {
  font-size: 13px;
  font-size: 1.3rem;
  display: block;
  padding: 10px 16px;
  text-align: center;
}

.button-list .icon-arrow--small {
  position: relative;
  display: block;
}

.button-list .icon-arrow--small:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  content: '';
}

.topSection--type1 .button-list {
  color: #000;
  background: #f5db7c;
}

.topSection--type1 .button-list .icon-arrow--small:before {
  width: 5px;
  height: 10px;
  background-image: url(../img/sprite.png);
  background-position: -118px -28px;
  background-size: 153.5px 59px;
}

.topSection--type2 .button-list {
  color: #facf37;
  background: #231815;
}

.topSection--type2 .button-list .icon-arrow--small:before {
  width: 5px;
  height: 10px;
  background-image: url(../img/sprite.png);
  background-position: -111px -28px;
  background-size: 153.5px 59px;
}

.button-detail {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 40px;
  width: 243px;
  margin: auto;
  padding: 0 10px;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
  text-align: center;
  color: #fff;
  background: #696969;
}

.button-detail:hover {
  opacity: .7;
}

.carousel {
  width: 768px;
  min-height: 338px;
  margin: auto;
  padding: 8px 0 16px;
}

.carousel .slick-list {
  overflow: visible;
}

.carousel a {
  display: block;
}

@media screen and (max-width: 768px) {
  .carousel {
    width: auto;
  }
}

@media screen and (max-width: 640px) {
  .carousel {
    min-height: 156px;
  }
}

.carousel-item {
  display: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  padding: 0 4px;
  -webkit-transition: opacity .5s ease-out;
  -moz-transition: opacity .5s ease-out;
  transition: opacity .5s ease-out;
  opacity: .7;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
}

.carousel-item.slick-active {
  opacity: 1;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}

@media screen and (max-width: 640px) {
  .carousel-item {
    padding: 0;
  }
}

.carousel-view {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #000;
}

.carousel-arrow--prev, .carousel-arrow--next {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
  margin: auto;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
  background: rgba(0, 0, 0, .7);
}

.carousel-arrow--prev:hover, .carousel-arrow--next:hover {
  opacity: .7;
}

.ie8 .carousel-arrow--prev, .ie8 .carousel-arrow--next {
  background: #000;
}

@media screen and (max-width: 640px) {
  .carousel-arrow--prev, .carousel-arrow--next {
    width: 44px;
    height: 44px;
  }
}

.carousel-arrow--prev {
  left: 50%;
  margin-left: -480px;
}

.carousel-arrow--prev:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 22px;
  height: 40px;
  margin: auto;
  content: '';
  background-image: url(../img/sprite.png);
  background-position: 0 -56px;
}

@media screen and (max-width: 1200px) {
  .carousel-arrow--prev {
    left: 30px;
    margin-left: 0;
  }
}

@media screen and (max-width: 640px) {
  .carousel-arrow--prev {
    left: 0;
    margin-left: auto;
  }

  .carousel-arrow--prev:before {
    width: 11px;
    height: 20px;
    background-image: url(../img/sprite.png);
    background-position: 0 -28px;
    background-size: 153.5px 59px;
  }
}

.carousel-arrow--next {
  right: 50%;
  left: auto;
  margin-right: -480px;
}

.carousel-arrow--next:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 22px;
  height: 40px;
  margin: auto;
  content: '';
  background-image: url(../img/sprite.png);
  background-position: -50px -56px;
}

@media screen and (max-width: 1200px) {
  .carousel-arrow--next {
    right: 30px;
    margin-right: 0;
  }
}

.carousel-arrow--next.is-fixed-right {
  right: auto !important;
}

@media screen and (max-width: 640px) {
  .carousel-arrow--next {
    right: 0 !important;
    left: auto !important;
    margin-right: auto;
  }

  .carousel-arrow--next:before {
    width: 11px;
    height: 20px;
    background-image: url(../img/sprite.png);
    background-position: -25px -28px;
    background-size: 153.5px 59px;
  }
}

.combination {
  font-size: 0;
  position: relative;
  height: 210px;
  background: #fff;
}

.combination.has-plus:before {
  position: absolute;
  z-index: 9;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 22px;
  height: 22px;
  margin: auto;
  content: '';
  background-image: url(../img/sprite.png);
  background-position: -148px -56px;
}

@media screen and (max-width: 1000px) {
  .combination {
    height: auto;
    padding: 15px;
  }

  .combination.has-plus:before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .combination.has-plus:before {
    width: 11px;
    height: 11px;
    background-image: url(../img/sprite.png);
    background-position: -74px -28px;
    background-size: 153.5px 59px;
  }
}

.combination-item--1, .combination-item--2, .combination-item--3, .combination-item--4, .combination-item--5, .combination-item--6, .combination-item--7, .combination-item--8, .combination-item--9, .combination-item--10, .combination-item--13, .combination-item--14 {
  position: absolute;
  display: inline-block;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .combination-item--1, .combination-item--2, .combination-item--3, .combination-item--4, .combination-item--5, .combination-item--6, .combination-item--7, .combination-item--8, .combination-item--9, .combination-item--10, .combination-item--13, .combination-item--14 {
    position: static;
    display: table;
    width: 100%;
    table-layout: fixed;
  }
}

.combination-item--1 {
  top: 56px;
  left: 40px;
}

.combination-item--1 .combination-image {
  margin-bottom: 26px;
}

.combination-item--2 {
  top: 49px;
  right: 43px;
}

.combination-item--2 .combination-image {
  margin-bottom: 5px;
}

.combination-item--3 {
  top: 46px;
  /*left: 18px;*/
  left: 40px;
}

.combination-item--3 .combination-image {
  margin-bottom: 23px;
}

.combination-item--3 .combination-nameGroup {
  padding-left: 15px;
}

.combination-item--4 {
  top: 39px;
  right: 42px;
}

.combination-item--4 .combination-image {
  margin-bottom: 5px;
}

.combination-item--5 {
  top: 56px;
  left: 40px;
}

.combination-item--5 .combination-image {
  margin-bottom: 26px;
}

.combination-item--6 {
  top: 21px;
  right: 20px;
}

.combination-item--6 .combination-image {
  margin-bottom: 12px;
}

.combination-item--7 {
  top: 53px;
  /*left: 25px;*/
  left: 50px;
}

.combination-item--7 .combination-image {
  margin-bottom: 12px;
}

.combination-item--8 {
  top: 50px;
  right: 14px;
}

.combination-item--8 .combination-image {
  margin-bottom: 12px;
}

.combination-item--9 {
  top: 44px;
  left: 42px;
}

.combination-item--9 .combination-image {
  margin-bottom: 18px;
}

.combination-item--10 {
  top: 20px;
  right: 30px;
}

.combination-item--10 .combination-image {
  margin-bottom: 5px;
}

.combination-item--11 {
  position: static;
  padding-top: 31px;
  text-align: center;
}

.combination-item--11 .combination-image {
  margin-bottom: 6px;
}

@media screen and (max-width: 640px) {
  .combination-item--11 {
    padding-top: 0;
  }
}

.combination-item--12 {
  position: static;
  padding-top: 20px;
  text-align: center;
}

.combination-item--12 .combination-image {
  margin-bottom: 20px;
}

@media screen and (max-width: 640px) {
  .combination-item--12 {
    padding-top: 0;
  }
}

.combination-item--13 {
  top: 34px;
  left: 32px;
}

.combination-item--13 .combination-image {
  margin-bottom: 18px;
}

.combination-item--14 {
  top: 20px;
  right: 30px;
}

.combination-item--14 .combination-image {
  margin-bottom: 5px;
}

@media screen and (max-width: 1000px) {
  .combination-item--14 {
    margin-top: -20px;
  }
}

.combination-item--15 {
  position: static;
  padding-top: 51px;
  text-align: center;
}

.combination-item--15 .combination-image {
  margin-bottom: 6px;
}

@media screen and (max-width: 640px) {
  .combination-item--15 {
    padding-top: 0;
  }
}

@media screen and (max-width: 1000px) {
  .combination-image {
    display: table-cell;
    width: 80px;
    vertical-align: middle;
  }

  .combination-image img {
    max-width: 80px;
    -webkit-transform-origin: 0 50%;
  }
}

.combination-nameGroup {
  display: block;
  margin: 0 0 2px;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .combination-nameGroup {
    display: table-cell;
    width: 100%;
    padding-left: 20px;
    text-align: left;
    vertical-align: middle;
  }
}

.combination-name, .combination-name--block, .combination-name--col, .combination-name--col-first, .combination-name--col-last {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
  display: inline-block;
  margin: 0 0 5px;
  text-align: left;
}

@media screen and (max-width: 640px) {
  .combination-name, .combination-name--block, .combination-name--col, .combination-name--col-first, .combination-name--col-last {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.combination-name--block {
  display: block;
}

.combination-name--col, .combination-name--col-first, .combination-name--col-last {
  position: relative;
  padding: 0 45px 0 18px;
  vertical-align: top;
}

.combination-name--col:before, .combination-name--col-first:before, .combination-name--col-last:before {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 22px;
  height: 22px;
  margin: auto;
  content: '';
  background-image: url(../img/sprite.png);
  background-position: -148px -56px;
}

@media screen and (max-width: 1000px) {
  .combination-name--col, .combination-name--col-first, .combination-name--col-last {
    padding: 0;
  }

  .combination-name--col:before, .combination-name--col-first:before, .combination-name--col-last:before {
    display: none;
  }
}

.combination-name--col-first {
  padding-left: 0;
}

.combination-name--col-last {
  padding-right: 0;
}

.combination-name--col-last:before {
  display: none;
}

.combination-plusIcon {
  position: relative;
  display: none;
  height: 24px;
}

.combination-plusIcon:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 11px;
  height: 11px;
  margin: auto;
  content: '';
  background-image: url(../img/sprite.png);
  background-position: -74px -28px;
  background-size: 153.5px 59px;
}

@media screen and (max-width: 1000px) {
  .combination-plusIcon {
    display: block;
  }
}

.delivery {
  position: relative;
  display: table;
  width: 100%;
  padding: 40px;
  table-layout: fixed;
}

@media screen and (max-width: 640px) {
  .delivery {
    padding: 15px 15px 40px;
  }
}

.js-tab-contents {
  display: none;
}

.delivery-text {
  display: table-cell;
  width: 33.33333%;
  vertical-align: top;
}

@media screen and (max-width: 640px) {
  .delivery-text {
    display: block;
    width: auto;
    margin-bottom: 10px;
  }
}

.delivery-contents {
  display: table-cell;
  width: 100%;
  padding: 0 0 0 40px;
  vertical-align: top;
}

@media screen and (max-width: 640px) {
  .delivery-contents {
    display: block;
    padding-left: 0;
  }
}

.delivery-lead {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.53846;
  margin: 0 0 10px;
}

.delivery-button {
  margin: 0 0 10px;
}

.delivery-small {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.53846;
}

.delivery-small>p {
  margin-bottom: 5px;
}

.delivery-small a {
  text-decoration: underline;
  color: inherit;
}

.delivery-small a:hover {
  text-decoration: none;
}

.delivery-list {
  margin: 0 0 20px -25px;
  *zoom: 1;
}

.delivery-list:before, .delivery-list:after {
  display: table;
  content: '';
}

.delivery-list:after {
  clear: both;
}

.delivery-list:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 640px) {
  .delivery-list {
    margin-left: -10px;
  }
}

.delivery-list-item {
  float: left;
  width: 20%;
  margin: 0 0 40px;
  padding: 0 0 0 25px;
}

@media screen and (max-width: 640px) {
  .delivery-list-item {
    width: 50%;
    margin-bottom: 10px;
    padding-left: 10px;
  }
}

.ie8 .delivery-list-item {
  display: block !important;
}

.deliveryItem {
  position: relative;
  text-align: center;
}

.deliveryItem a {
  display: block;
}

@media screen and (max-width: 640px) {
  .deliveryItem {
    height: auto;
  }
}

.deliveryItem-image {
  overflow: hidden;
  margin: 0 0 5px;
}

@media screen and (max-width: 640px) {
  .deliveryItem-image {
    height: auto;
  }
}

.deliveryItem-title {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: normal;
  display: block;
  margin: 0 0 5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media screen and (max-width: 640px) {
  .deliveryItem-title {
    font-size: 11px;
    font-size: 1.1rem;
    margin-bottom: 2px;
  }
}

.deliveryItem-name {
  font-size: 11px;
  font-size: 1.1rem;
  display: block;
  margin: 0 0 5px;
  color: #666;
}

@media screen and (max-width: 640px) {
  .deliveryItem-name {
    font-size: 10px;
    font-size: 1rem;
    margin-bottom: 2px;
  }
}

.deliveryItem-label {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.84615;
  display: block;
  width: 95%;
  margin: 0 auto 8px;
  padding: 2px 0;
  text-align: center;
  background: #ffde69;
}

@media screen and (max-width: 1000px) {
  .deliveryItem-label {
    font-size: 10px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 640px) {
  .deliveryItem-label {
    font-size: 9px;
    font-size: .9rem;
    padding: 2px 0;
  }
}

.divider {
  float: left;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
}

.eventBox {
  padding: 0 0 40px;
}

.eventBox a {
  display: block;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
}

.eventBox a:hover {
  opacity: .7;
}

@media screen and (max-width: 640px) {
  .eventBox {
    padding-bottom: 20px;
  }
}

.eventBox-text {
  height: 225px;
  padding: 15px 15px 0;
  background: #383737;
}

@media screen and (max-width: 640px) {
  .eventBox-text {
    height: auto;
    padding: 10px;
  }
}

.eventBox-title {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0 0 15px;
  color: #ffca12;
}

.eventBox-lead {
  font-size: 13px;
  font-size: 1.3rem;
  margin: 0 0 10px;
  color: #fff;
}

.eventBox-list {
  font-size: 11px;
  font-size: 1.1rem;
  color: #ccc;
}

.howtoBox {
  padding: 0 0 40px;
}

.howtoBox a {
  color: inherit;
}

.howtoBox a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 640px) {
  .howtoBox {
    padding-bottom: 20px;
  }
}

.howtoBox-text, .howtoBox-text--tall, .howtoBox-text--yellow {
  position: relative;
  display: table;
  width: 100%;
  margin: 0 0 15px;
  table-layout: fixed;
  background: #e6eaec;
}

.howtoBox-text:before, .howtoBox-text--tall:before, .howtoBox-text--yellow:before {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  content: '';
  border-width: 8px 7px 0 7px;
  border-style: solid;
  border-color: #e6eaec transparent transparent transparent;
}

.howtoBox-text--tall {
  line-height: 1.2;
  padding: 10px;
}

.howtoBox-text--yellow {
  background: #fdd138;
}

.howtoBox-text--yellow:before {
  border-color: #fdd138 transparent transparent transparent;
}

.howtoBox-title {
  font-size: 16px;
  font-size: 1.6rem;
  display: table-cell;
  width: 100%;
  height: 48px;
  padding: 0 15px;
  text-align: center;
  vertical-align: middle;
}

@media screen and (max-width: 640px) {
  .howtoBox-title {
    font-size: 13px;
    font-size: 1.3rem;
    height: 48px;
    padding: 0 5px;
    text-align: left;
  }
}

.howtoBox-recommend {
  font-size: 13px;
  font-size: 1.3rem;
  display: inline-block;
  margin: 0 5px 0 0;
  padding: 2px 5px;
  vertical-align: middle;
  color: #fdd138;
  background: #000;
}

@media screen and (max-width: 640px) {
  .howtoBox-recommend {
    width: 25%;
    margin-right: 10px;
    text-align: center;
    vertical-align: middle;
  }
}

.howtoBox-title-text {
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  .howtoBox-title-text {
    display: inline-block;
    width: 65%;
    vertical-align: middle;
  }
}

.howtoBox-row {
  display: table;
  width: 100%;
  table-layout: fixed;
}

@media screen and (max-width: 1200px) {
  .howtoBox-image-img--lg {
    display: none;
  }
}

.howtoBox-image-img--md {
  display: none;
}

@media screen and (max-width: 1200px) {
  .howtoBox-image-img--md {
    display: block;
  }
}

.howtoBox-image--horizontal, .howtoBox-image--302, .howtoBox-image--533 {
  display: table-cell;
  width: 206px;
  vertical-align: top;
}

@media screen and (max-width: 1200px) {
  .howtoBox-image--horizontal, .howtoBox-image--302, .howtoBox-image--533 {
    display: block;
    width: auto;
  }
}

.howtoBox-image--302 {
  width: 302px;
}

@media screen and (max-width: 1200px) {
  .howtoBox-image--302 {
    width: auto;
  }
}

.howtoBox-image--533 {
  width: 533px;
}

@media screen and (max-width: 640px) {
  .howtoBox-image--533 {
    width: auto;
  }
}

.howtoBox-combination, .howtoBox-combination--horizontal {
  background: #fff;
}

.howtoBox-combination-inner, .howtoBox-combination-inner--small {
  position: relative;
  min-height: 302px;
}

@media screen and (max-width: 640px) {
  .howtoBox-combination-inner, .howtoBox-combination-inner--small {
    min-height: 0;
  }
}

.howtoBox-combination-inner--small {
  min-height: 270px;
}

.howtoBox-combination--horizontal {
  display: table-cell;
  width: 100%;
  vertical-align: top;
}

@media screen and (max-width: 1200px) {
  .howtoBox-combination--horizontal {
    display: block;
    width: auto;
  }
}

.howtoBox-combination-text {
  font-size: 14px;
  font-size: 1.4rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
}

@media screen and (max-width: 1000px) {
  .howtoBox-combination-text {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 640px) {
  .howtoBox-combination-text {
    position: static;
    padding: 10px;
  }
}

.icon-window--white, .icon-window--black, .icon-window--black2, .icon-crown, .icon-external--inline, .icon-external--before, .icon-toggle--delivery, .icon-arrow--right {
  position: relative;
}

.icon-window--white:before, .icon-window--black:before, .icon-window--black2:before, .icon-crown:before, .icon-external--inline:before, .icon-external--before:before, .icon-toggle--delivery:before, .icon-arrow--right:before {
  position: absolute;
  display: block;
  content: '';
}

.icon-window--white {
  display: block;
}

.icon-window--white:before {
  top: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 8px;
  margin: auto;
  background-image: url(../img/sprite.png);
  background-position: -118px -100px;
}

.icon-window--black {
  line-height: 1.1;
  display: inline;
}

.icon-window--black:after {
  display: inline-block;
  width: 10px;
  height: 8px;
  margin: 1px 0 0 4px;
  content: '';
  vertical-align: top;
  background-image: url(../img/sprite.png);
  background-position: -132px -100px;
}

.icon-window--black2 {
  display: block;
}

.icon-window--black2:before {
  top: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 8px;
  margin: auto;
  background-image: url(../img/sprite.png);
  background-position: -132px -100px;
}

.icon-crown {
  display: inline-block;
  padding: 4px 0 0 25px;
}

.icon-crown:before {
  top: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 18px;
  margin: auto;
  background-image: url(../img/sprite.png);
  background-position: -250px -56px;
}

.icon-external--inline {
  display: inline-block;
  padding: 0 15px 0 0;
}

.icon-external--inline:before {
  top: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 10px;
  margin: auto;
  background-image: url(../img/sprite.png);
  background-position: -102px -100px;
}

.icon-external--before {
  display: inline-block;
  padding: 0 0 0 15px;
}

.icon-external--before:before {
  top: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 8px;
  margin: auto;
  background-image: url(../img/sprite.png);
  background-position: -118px -100px;
}

.icon-toggle--delivery {
  display: inline-block;
  padding: 0 25px 0 0;
}

.icon-toggle--delivery:before {
  top: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  background-image: url(../img/sprite.png);
  background-position: -174px -56px;
}

.icon-toggle--delivery.is-toggle-open:before {
  width: 20px;
  height: 20px;
  background-image: url(../img/sprite.png);
  background-position: -198px -56px;
}

.icon-arrow--right {
  display: block;
}

.icon-arrow--right:before {
  top: 0;
  right: 0;
  bottom: 0;
  width: 6px;
  height: 12px;
  margin: auto;
  background-image: url(../img/sprite.png);
  background-position: -92px -100px;
}

.linkBox {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 40px;
  color: inherit;
}

.linkBox img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 640px) {
  .linkBox {
    margin-bottom: 20px;
  }
}

.js-hover-text {
  display: none;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.linkBox-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 10px 0;
  color: #fff;
  background-color: rgba(0, 0, 0, .58);
}

.ie8 .linkBox-text {
  background: #333;
}

@media screen and (max-width: 640px) {
  .linkBox-text {
    display: none;
  }
}

.linkBox-title--en {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 2px;
}

@media screen and (max-width: 1000px) {
  .linkBox-title--en {
    display: none;
  }
}

.linkBox-title--ja {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3;
  padding: 0 0 10px;
}

@media screen and (max-width: 1200px) {
  .linkBox-title--ja {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1000px) {
  .linkBox-title--ja {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .linkBox-title--ja {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.linkBox-description {
  font-size: 13px;
  font-size: 1.3rem;
  padding: 0 0 10px;
}

@media screen and (max-width: 1000px) {
  .linkBox-description {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .linkBox-description {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.linkBox-eventTitle {
  font-size: 16px;
  font-size: 1.6rem;
  padding: 5px 0 10px;
}

.linkBox-eventLead {
  font-size: 13px;
  font-size: 1.3rem;
  padding: 5px 0 10px;
}

.linkBox-eventList {
  font-size: 11px;
  font-size: 1.1rem;
  padding: 0 0 10px;
}

.linkBox-sp {
  margin-top: 5px;
  color: #fff;
}

.linkBox-sp--black {
  margin-top: 5px;
  color: #000;
}

.linkBox-sp--top {
  margin-bottom: 5px;
  color: #fff;
}

.linkBox-sp-title {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
}

.linkBox-sp-description {
  font-size: 11px;
  font-size: 1.1rem;
}

.productBox {
  padding: 0 0 40px;
}

.productBox a {
  display: block;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
}

.productBox a:hover {
  opacity: .7;
}

@media screen and (max-width: 640px) {
  .productBox {
    padding-bottom: 20px;
  }
}

.productBox-text {
  display: table;
  width: 100%;
  table-layout: fixed;
  background: rgba(38, 38, 38, .8);
}

.productBox-name {
  font-size: 16px;
  font-size: 1.6rem;
  display: table-cell;
  width: 100%;
  height: 60px;
  padding: 0 10px;
  vertical-align: middle;
  color: #ffca12;
}

@media screen and (max-width: 1000px) {
  .productBox-name {
    font-size: 14px;
    font-size: 1.4rem;
    height: 65px;
  }
}

@media screen and (max-width: 640px) {
  .productBox-name {
    font-size: 13px;
    font-size: 1.3rem;
    height: 48px;
  }
}

.rankingItem--rank1>dt, .rankingItem--rank2>dt, .rankingItem--rank3>dt, .rankingItem--rank4>dt, .rankingItem--rank5>dt {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 28px;
  position: relative;
  text-align: center;
  color: #fff;
  background: #7f7c79;
}

.rankingItem--rank1>dt:after, .rankingItem--rank2>dt:after, .rankingItem--rank3>dt:after, .rankingItem--rank4>dt:after, .rankingItem--rank5>dt:after {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  width: 10px;
  height: 8px;
  content: '';
  background-image: url(../img/sprite.png);
  background-position: -118px -100px;
}

.rankingItem--rank1>dd, .rankingItem--rank2>dd, .rankingItem--rank3>dd, .rankingItem--rank4>dd, .rankingItem--rank5>dd {
  display: table;
  width: 100%;
  padding: 8px;
  table-layout: fixed;
  background: #fff;
}

.rankingItem--rank1>dt {
  background: #b57e1f;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #ebb73a), color-stop(100%, #b57e1f));
  background-image: -webkit-linear-gradient(left, #ebb73a, #b57e1f);
  background-image: -moz-linear-gradient(left, #ebb73a, #b57e1f);
  /*background-image: linear-gradient(left, #ebb73a, #b57e1f);*/
  background-image: -webkit-gradient(linear, to right, to left, color-stop(0%, #ebb73a), color-stop(100%, #b57e1f));
 /* background-image: -webkit-linear-gradient(to right, #ebb73a, #b57e1f);*/
  /*background-image: -moz-linear-gradient(to right, #ebb73a, #b57e1f);*/
  background-image: linear-gradient(to right, #ebb73a, #b57e1f);
}

.lte-ie8 .rankingItem--rank1>dt {
  background: #b57e1f;
}

.rankingItem--rank2>dt {
  background: #89949b;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #c6cbce), color-stop(100%, #89949b));
  background-image: -webkit-linear-gradient(left, #c6cbce, #89949b);
  background-image: -moz-linear-gradient(left, #c6cbce, #89949b);
  /*background-image: linear-gradient(left, #c6cbce, #89949b);*/
  background-image: -webkit-gradient(linear, to right, to left, color-stop(0%, #c6cbce), color-stop(100%, #89949b));
  /*background-image: -webkit-linear-gradient(to right, #c6cbce, #89949b);*/
  /*background-image: -moz-linear-gradient(to right, #c6cbce, #89949b);*/
  background-image: linear-gradient(to right, #c6cbce, #89949b);
}

.lte-ie8 .rankingItem--rank2>dt {
  background: #89949b;
}

.rankingItem--rank3>dt {
  background: #aa6543;
  background-image: -webkit-gradient(linear, to right, to left, color-stop(0%, #d39b6b), color-stop(100%, #aa6543));
  /*background-image: -webkit-linear-gradient(to right, #d39b6b, #aa6543);*/
  /*background-image: -moz-linear-gradient(to right, #d39b6b, #aa6543);*/
  background-image: linear-gradient(to right, #d39b6b, #aa6543);
}

.lte-ie8 .rankingItem--rank3>dt {
  background: #aa6543;
}

.rankingItem-image {
  display: table-cell;
  width: 90px;
  vertical-align: top;
}

@media screen and (max-width: 1000px) {
  .rankingItem-image {
    display: block;
    width: auto;
    margin-bottom: 5px;
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  .rankingItem-image {
    display: table-cell;
    width: 90px;
    vertical-align: top;
  }
}

.rankingItem-text {
  display: table-cell;
  width: 100%;
  padding: 0 0 0 8px;
  vertical-align: top;
  word-break: break-all;
}

@media screen and (max-width: 1000px) {
  .rankingItem-text {
    display: block;
    width: auto;
    padding-left: 0;
  }
}

@media screen and (max-width: 640px) {
  .rankingItem-text {
    display: table-cell;
    width: 100%;
    padding: 0 0 0 8px;
    vertical-align: top;
  }
}

.rankingItem-title {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: normal;
  display: block;
  margin: 0 0 5px;
  color: #000;
}

.rankingItem-name {
  font-size: 11px;
  font-size: 1.1rem;
  display: block;
  color: #666;
}

.release-heading {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 50px;
  position: relative;
  padding: 0 10px;
  text-align: center;
  background: #e1e5e9;
}

.release-heading:before {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  content: '';
  border-width: 10px 9px 0 9px;
  border-style: solid;
  border-color: #e1e5e9 transparent transparent transparent;
}

@media screen and (max-width: 640px) {
  .release-heading {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 32px;
  }
}

.release-container {
  display: table;
  width: 100%;
  padding: 50px;
  table-layout: fixed;
  background: #f3f6f8;
}

@media screen and (max-width: 640px) {
  .release-container {
    padding: 15px 10px 10px;
  }
}

.release-image {
  display: table-cell;
  width: 200px;
  vertical-align: top;
}

@media screen and (max-width: 640px) {
  .release-image {
    display: block;
    width: auto;
    margin-bottom: 10px;
    text-align: center;
  }

  .release-image img {
    width: 100px;
  }
}

.release-text {
  display: table-cell;
  width: 100%;
  padding: 0 0 0 40px;
  vertical-align: top;
}

.release-text dt {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 20px;
}

.release-text dd {
  font-size: 13px;
  font-size: 1.3rem;
}

.release-text p {
  margin: 0 0 20px;
}

.release-text .button-site {
  width: 270px;
}

@media screen and (max-width: 640px) {
  .release-text {
    display: block;
    width: auto;
    padding-left: 0;
  }

  .release-text dt {
    font-size: 14px;
    font-size: 1.4rem;
  }

  .release-text dd {
    font-size: 12px;
    font-size: 1.2rem;
  }

  .release-text .button-site {
    width: auto;
  }
}

.release-rate {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: normal;
  color: #666;
}

.sample-data {
  display: table;
  width: 100%;
  margin: 0 0 30px;
  table-layout: fixed;
  background: #000;
}

@media screen and (max-width: 768px) {
  .sample-data {
    margin-bottom: 15px;
  }
}

.sample-image {
  display: table-cell;
  width: 224px;
  vertical-align: top;
}

@media screen and (max-width: 1200px) {
  .sample-image {
    width: 160px;
  }
}

@media screen and (max-width: 1000px) {
  .sample-image {
    display: block;
    width: auto;
    padding-top: 20px;
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  .sample-image {
    display: table-cell;
    width: 112px;
    padding-top: 0;
  }
}

.sample-text {
  display: table-cell;
  width: 100%;
  padding: 20px;
  vertical-align: top;
}

@media screen and (max-width: 1000px) {
  .sample-text {
    display: block;
    width: auto;
  }
}

@media screen and (max-width: 640px) {
  .sample-text {
    display: table-cell;
    width: 100%;
    padding: 10px;
  }
}

.sample-heading {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 5px;
  color: #fff;
}

@media screen and (max-width: 640px) {
  .sample-heading {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.sample-title {
  font-size: 13px;
  font-size: 1.3rem;
  margin: 0 0 35px;
  color: #fff;
}

@media screen and (max-width: 1000px) {
  .sample-title {
    margin-bottom: 10px;
  }
}

.sample-button--aac, .sample-button--hires {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
  display: block;
  padding: 10px 15px;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
  color: inherit;
}

.sample-button--aac:hover, .sample-button--hires:hover {
  opacity: .7;
}

@media screen and (max-width: 640px) {
  .sample-button--aac, .sample-button--hires {
    line-height: 1.2;
    padding: 5px;
  }
}

.sample-button--aac {
  margin-bottom: 4px;
  background: #dfdfdf;
}

.sample-button--hires {
  background: #ffde69;
}

.sample-rate {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: normal;
}

.sample-point-heading {
  font-size: 13px;
  font-size: 1.3rem;
  margin: 0 0 10px;
  padding: 7px;
  color: #ffca12;
  background: #000;
}

.sample-point-text {
  font-size: 13px;
  font-size: 1.3rem;
  margin: 0 0 25px;
}

@media screen and (max-width: 640px) {
  .sample-point-text {
    margin-bottom: 10px;
  }
}

.sample-point-image {
  margin: 0 0 40px;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .sample-point-image {
    margin-bottom: 15px;
  }
}

.sample-point-description {
  margin: 0 0 25px;
}

.sample-point-description:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 640px) {
  .sample-point-description {
    margin-bottom: 10px;
  }
}

.sample-point-description>dt {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 25px;
  position: relative;
  display: inline-block;
  width: 10%;
  min-width: 65px;
  text-align: center;
  color: #000;
  background: #ffde69;
}

.sample-point-description>dt:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  content: '';
  border-width: 5px 0 5px 4px;
  border-style: solid;
  border-color: transparent transparent transparent #ffdf69;
}

@media screen and (max-width: 768px) {
  .sample-point-description>dt {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    margin-bottom: 10px;
  }

  .sample-point-description>dt:after {
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    border-width: 4px 5px 0 5px;
    border-color: #ffdf69 transparent transparent transparent;
  }
}

.sample-point-description>dd {
  font-size: 13px;
  font-size: 1.3rem;
  display: inline-block;
  width: 80%;
  padding: 0 0 0 15px;
  vertical-align: top;
}

@media screen and (max-width: 1000px) {
  .sample-point-description>dd {
    width: 70%;
  }
}

@media screen and (max-width: 768px) {
  .sample-point-description>dd {
    font-size: 12px;
    font-size: 1.2rem;
    display: block;
    width: auto;
    padding-left: 0;
  }
}

.section {
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.section-heading {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: normal;
  padding: 20px 0;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 640px) {
  .section-heading {
    font-size: 20px;
    font-size: 2rem;
    padding: 15px 0;
  }
}

.specialBox {
  padding: 0 0 40px;
}

.specialBox h3 {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: normal;
  padding: 0 0 10px;
  text-align: center;
  color: #fff;
}

.specialBox:hover {
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
}

.specialBox:hover:hover {
  opacity: .7;
}

@media screen and (max-width: 640px) {
  .specialBox {
    padding-bottom: 20px;
  }
}

.specialBox-text {
  line-height: 1.69231;
  min-height: 180px;
  padding: 10px;
  background: #1e1e1e;
}

@media screen and (max-width: 640px) {
  .specialBox-text {
    min-height: 0;
  }
}

.specialBox-lead {
  font-size: 11px;
  font-size: 1.1rem;
  margin: 0 0 5px;
  color: #ffca12;
}

.specialBox-title {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0 0 10px;
  color: #ffca12;
}

.specialBox-title--small {
  font-size: 13px;
  font-size: 1.3rem;
}

.specialBox-description {
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
}

@media screen and (max-width: 1000px) {
  .specialBox-description {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.statement {
  position: relative;
  z-index: 2;
  background: #000;
}

.statement-inner {
  padding: 70px 0 80px;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .statement-inner {
    padding: 60px 0 30px;
  }
}

.statement-text {
  margin: 0 0 30px;
}

@media screen and (max-width: 640px) {
  .statement-copy {
    padding: 0 25%;
  }
}

.statement-trigger {
  position: absolute;
  right: 0;
  bottom: -35px;
  left: 0;
  width: 363px;
  margin: auto;
}

.statement-trigger h1 {
  display: none;
}

@media screen and (max-width: 640px) {
  .statement-trigger {
    bottom: -24.5px;
    width: 280px;
  }
}

.statement-trigger-button--default {
  display: block;
}

a:hover .statement-trigger-button--default {
  display: none;
}

.is-statement-open .statement-trigger-button--default {
  display: none;
}

.statement-trigger-button--hover {
  display: none;
}

a:hover .statement-trigger-button--hover {
  display: block;
}

.is-statement-open .statement-trigger-button--hover {
  display: none !important;
}

.statement-trigger-button--close {
  display: none;
}

a:hover .statement-trigger-button--close {
  display: none;
}

.is-statement-open .statement-trigger-button--close {
  display: block !important;
}

.is-statement-open .statement-trigger-button--close:hover {
  display: block !important;
}

.tab, .tab--3 {
  margin: 0 0 0 -4px;
  *zoom: 1;
}

.tab:before, .tab--3:before, .tab:after, .tab--3:after {
  display: table;
  content: '';
}

.tab:after, .tab--3:after {
  clear: both;
}

.tab>li, .tab--3>li {
  float: left;
  width: 25%;
  padding: 0 0 0 4px;
}

.tab a, .tab--3 a {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 56px;
  position: relative;
  display: block;
  text-align: center;
  color: #000;
  border-bottom: 4px solid #000;
  background: #fff;
}

.tab a.is-tab-active, .tab--3 a.is-tab-active {
  border-color: #fff;
}

.tab a.is-tab-active:before, .tab--3 a.is-tab-active:before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  content: '';
  background: #fdd138;
}

@media screen and (max-width: 1000px) {
  .tab a, .tab--3 a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .tab a, .tab--3 a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 640px) {
  .tab, .tab--3 {
    margin-left: -2px;
  }

  .tab>li, .tab--3>li {
    width: 50%;
    padding-left: 2px;
  }

  .tab a, .tab--3 a {
    font-size: 14px;
    font-size: 1.4rem;
    border-bottom: 2px solid #000;
  }

  .tab a.is-tab-active, .tab--3 a.is-tab-active {
    border-color: #000;
  }
}

.tab--3>li {
  width: 33.33333%;
}

@media screen and (max-width: 640px) {
  .tab--3>li {
    float: none;
    width: auto;
  }
}

.tab-contents {
  background: #fff;
}

.topSection--type1, .topSection--type2 {
  padding: 45px 0 100px;
}

@media screen and (max-width: 640px) {
  .topSection--type1, .topSection--type2 {
    min-width: 0;
    padding: 20px 0 40px;
  }
}

.topSection-header {
  margin: 0 0 47px;
  *zoom: 1;
}

.topSection-header:before, .topSection-header:after {
  display: table;
  content: '';
}

.topSection-header:after {
  clear: both;
}

@media screen and (max-width: 640px) {
  .topSection-header {
    margin-bottom: 20px;
  }
}

.topSection-headingContainer {
  font-size: 0;
  display: inline-block;
  float: left;
}

.topSection-heading {
  font-size: 30px;
  font-size: 3rem;
  font-weight: normal;
  display: inline-block;
  padding: 0 15px 0 0;
}

.topSection--type1 .topSection-heading {
  color: #fdd138;
}

.topSection--type2 .topSection-heading {
  color: #000;
}

@media screen and (max-width: 640px) {
  .topSection-heading {
    font-size: 22px;
    font-size: 2.2rem;
    display: block;
  }
}

.topSection-heading--en {
  font-size: 13px;
  font-size: 1.3rem;
  display: inline-block;
}

.topSection--type1 .topSection-heading--en {
  color: #b69317;
}

.topSection--type2 .topSection-heading--en {
  color: #8b6f0d;
}

@media screen and (max-width: 640px) {
  .topSection-heading--en {
    font-size: 11px;
    font-size: 1.1rem;
    display: block;
  }
}

.topSection-button {
  display: block;
  float: right;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
}

.topSection-button:hover {
  opacity: .7;
}

.about-features {
  /*width: 930px;
    margin: auto;*/
  background-color: #fff;
  padding: 60px 0;
}

@media screen and (max-width: 1000px) {
  .about-features {
    width: auto;
    padding: 20px 40px;
  }
}

@media screen and (max-width: 640px) {
  .about-features {
    padding: 20px;
  }
}

.about-feature--1, .about-feature--2, .about-feature--3 {
  line-height: 1.625;
  *zoom: 1;
}

.about-feature--1:before, .about-feature--2:before, .about-feature--3:before, .about-feature--1:after, .about-feature--2:after, .about-feature--3:after {
  display: table;
  content: '';
}

.about-feature--1:after, .about-feature--2:after, .about-feature--3:after {
  clear: both;
}

.about-feature--1 {
  min-height: 150px;
  /*margin: 0 0 30px;*/
  margin: 0 auto 30px auto;
  width: 920px;
}

@media screen and (max-width: 1000px) {
  .about-feature--1 {
    width: auto;
  }
}

@media screen and (max-width: 640px) {
  .about-feature--1 {
    width: auto;
    padding: 0;
    background: transparent;
  }
}

.about-feature--2 {
  min-height: 250px;
  /*margin: 0 0 20px;*/
  margin: 0 auto 30px auto;
  width: 920px;
}

@media screen and (max-width: 1000px) {
  .about-feature--2 {
    width: auto;
  }
}

@media screen and (max-width: 640px) {
  .about-feature--2 {
    width: auto;
    padding: 0;
    background: transparent;
  }
}

.about-feature--3 {
  /* margin: 0 0 30px;*/
  margin: 0 auto 30px auto;
  width: 920px;
}

@media screen and (max-width: 1000px) {
  .about-feature--3 {
    width: auto;
  }
}

@media screen and (max-width: 640px) {
  .about-feature--3 {
    padding: 0;
    background: transparent;
  }
}

.about-feature-image--1 {
  float: left;
  width: 558px;
}

@media screen and (max-width: 1000px) {
  .about-feature-image--1 {
    width: 65%;
  }
}

@media screen and (max-width: 768px) {
  .about-feature-image--1 {
    float: none;
    width: auto;
    text-align: center;
  }
}

.about-feature-textBlock--1 {
  float: right;
  width: 320px;
}

@media screen and (max-width: 1000px) {
  .about-feature-textBlock--1 {
    width: 33%;
  }
}

@media screen and (max-width: 768px) {
  .about-feature-textBlock--1 {
    float: none;
    width: auto;
    padding-top: 20px;
  }
}

.about-feature-image--2 {
  text-align: center;
  /*float: right;
    width: 605px;*/
}

@media screen and (max-width: 1000px) {
  .about-feature-image--2 {
    /*width: 65%;*/
  }
}

@media screen and (max-width: 768px) {
  .about-feature-image--2 {
    float: none;
    width: auto;
    text-align: center;
  }
}

.about-feature-textBlock--2 {
  /*float: left;
    width: 300px;*/
  padding: 50px 0 0;
}

.about-feature-textBlock--2 .about-feature-lead {
  text-align: center;
}

.about-feature-textBlock--2 .about-feature-lead strong {
  white-space: normal;
}

@media screen and (max-width: 1000px) {
  .about-feature-textBlock--2 {
    /*width: 33%;*/
  }
}

@media screen and (max-width: 768px) {
  .about-feature-textBlock--2 {
    float: none;
    width: auto;
    padding-top: 20px;
    text-align: left;
  }

  .about-feature-textBlock--2 .about-feature-lead {
    text-align: left;
  }
}

.about-feature-image--3 {
  float: left;
  width: 340px;
}

@media screen and (max-width: 1000px) {
  .about-feature-image--3 {
    width: 33%;
  }
}

@media screen and (max-width: 768px) {
  .about-feature-image--3 {
    float: none;
    width: auto;
    text-align: center;
  }
}

.about-feature-textBlock--3 {
  float: right;
  width: 530px;
  padding: 50px 0 0;
}

@media screen and (max-width: 1000px) {
  .about-feature-textBlock--3 {
    width: 65%;
  }
}

@media screen and (max-width: 768px) {
  .about-feature-textBlock--3 {
    float: none;
    width: auto;
    padding-top: 20px;
  }
}

.about-feature-lead {
  font-size: 29px;
  font-size: 2.9rem;
  line-height: 1.2;
  margin: 0 0 10px;
  color: #f4c331;
}

.about-feature-lead strong {
  display: block;
  white-space: nowrap;
}

@media screen and (max-width: 640px) {
  .about-feature-lead {
    font-size: 24px;
    font-size: 2.4rem;
    margin-top: 10px;
  }
}

.about-feature-text {
  font-size: 16px;
  font-size: 1.6rem;
  /*color: #fff;*/
  color: #000;
}

@media screen and (max-width: 640px) {
  .about-feature-text {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.about-feature-notice {
  font-size: 13px;
  font-size: 1.3rem;
  display: block;
  /*color: #ccc;*/
  color: #000;
}

.about-tab {
  margin: 0 0 55px;
}

@media screen and (max-width: 640px) {
  .about-tab {
    margin-bottom: 30px;
  }
}

.about-tab-contents--1, .about-tab-contents--2, .about-tab-contents--3 {
  min-height: 380px;
  padding: 40px;
  background: #fff;
  *zoom: 1;
}

.about-tab-contents--1:before, .about-tab-contents--2:before, .about-tab-contents--3:before, .about-tab-contents--1:after, .about-tab-contents--2:after, .about-tab-contents--3:after {
  display: table;
  content: '';
}

.about-tab-contents--1:after, .about-tab-contents--2:after, .about-tab-contents--3:after {
  clear: both;
}

@media screen and (max-width: 640px) {
  .about-tab-contents--1, .about-tab-contents--2, .about-tab-contents--3 {
    min-height: auto;
    padding: 20px;
  }
}

.about-tab-lead {
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 10px;
  color: #000;
}

@media screen and (max-width: 640px) {
  .about-tab-lead {
    font-size: 20px;
    font-size: 2rem;
  }
}

.about-tab-text {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 640px) {
  .about-tab-text {
    font-size: 13px;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
}

.about-tab-textContainer--1 {
  float: left;
  width: 40%;
  padding: 0 20px 0 0;
}

@media screen and (max-width: 768px) {
  .about-tab-textContainer--1 {
    float: none;
    width: auto;
    padding-right: 0;
    padding-bottom: 20px;
  }
}

.about-tab-image--1 {
  float: right;
  width: 60%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .about-tab-image--1 {
    float: none;
    width: auto;
  }
}

.about-tab-textContainer--2 {
  float: left;
  width: 40%;
  padding: 0 20px 0 0;
}

@media screen and (max-width: 768px) {
  .about-tab-textContainer--2 {
    float: none;
    width: auto;
    padding-right: 0;
    padding-bottom: 20px;
  }
}

.about-tab-image--2 {
  float: right;
  width: 60%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .about-tab-image--2 {
    float: none;
    width: auto;
  }
}

.about-tab-textContainer--3 {
  float: left;
  width: 40%;
  padding: 0 20px 0 0;
}

@media screen and (max-width: 768px) {
  .about-tab-textContainer--3 {
    float: none;
    width: auto;
    padding-right: 0;
    padding-bottom: 20px;
  }
}

.about-tab-image--3 {
  float: right;
  width: 60%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .about-tab-image--3 {
    float: none;
    width: auto;
  }
}

.about-logo {
  /* padding: 55px 0 60px; */
  padding: 30px 0 40px;
  text-align: center;
  background: #333;
}

@media screen and (max-width: 640px) {
  .about-logo {
    /* padding: 10px 10px 80px; */
    padding: 10px 10px 30px;
  }
}

.about-logo-text {
  font-size: 13px;
  font-size: 1.3rem;
  position: relative;
  display: inline-block;
  margin: 0 0 30px;
  /* padding: 10px 0 10px 60px; */
  padding: 10px 0 18px 125px;
  text-align: left;
  color: #fff;
  /* background: url('../img/sprite/logo_hires.png?1427453564') 0 50% no-repeat; */
  background: url('../img/sprite/logo_hires_wireless.png') 0 50% no-repeat;
}

@media screen and (max-width: 640px) {
  .about-logo-text {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.l-contents, .l-contents--event, .l-contents--products, .l-contents--howto, .l-contents--special, .l-contents--about {
  background-color: #0c0200;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 100% auto;
}

.l-contents--event {
  padding-bottom: 130px;
  background-image: url('../img/event/bg_event.png?1426492621');
}

@media screen and (max-width: 640px) {
  .l-contents--event {
    padding-bottom: 40px;
  }
}

.l-contents--products {
  background-image: url('../img/products/bg_products.jpg?1426492621');
}

.l-contents--howto {
  background-image: url('../img/howto/bg_howto.jpg?1426492621');
}

.l-contents--special {
  background-image: url('../img/special/bg_special.jpg?1426492621');
}

.l-contents--about {
  background-image: url('../img/about/bg_about.jpg?1427453564');
}

.contents-header {
  padding: 60px 0 50px;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .contents-header {
    padding: 30px 0 25px;
  }
}

.contents-heading {
  font-size: 30px;
  font-size: 3rem;
  font-weight: normal;
  line-height: 1.3;
  width: 100%;
  color: #fdd138;
}

@media screen and (max-width: 640px) {
  .contents-heading {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.contents-heading--en {
  font-size: 13px;
  font-size: 1.3rem;
  color: #b69317;
}

@media screen and (max-width: 640px) {
  .contents-heading--en {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.contents-lead {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0 0 35px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 640px) {
  .contents-lead {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.logoAnchor {
  font-size: 13px;
  font-size: 1.3rem;
  margin: -20px 0 20px;
  text-align: right;
}

.logoAnchor a {
  line-height: 20px;
  display: inline-block;
  padding: 0 0 0 24px;
  color: #fff;
  background: url('../img/products/logo_hires_small.png?1427453564') 0 50% no-repeat;
}

.logoAnchor a:hover {
  text-decoration: underline;
}

.l-event {
  background: #262626;
}

.l-eventPage {
  min-height: 900px;
  margin: 0 0 -40px;
  padding: 0 0 80px;
}

@media screen and (max-width: 640px) {
  .l-eventPage {
    min-height: 0;
    padding-bottom: 60px;
  }
}

.l-footer {
  position: relative;
  /* padding: 10px 0 35px; */
  background: #ecc038;
  padding: 10px 0 10px;
}

.footer-sns {
  font-size: 0;
  /* margin: 20px 0 45px; */
  text-align: right;
  margin: 10px 0 10px;
}

.footer-sns ul {
  display: inline-block;
  overflow: hidden;
  height: 20px;
}

.footer-sns li {
  display: inline-block;
  margin: 0 0 0 15px;
}

.footer-sns-twitter {
  width: 100px !important;
}

.footer-copyright {
  font-size: 11px;
  font-size: 1.1rem;
  text-align: center;
  color: #826a15;
}

.footer-copyright>small {
  font-size: inherit;
}

.footer-enpuete {
  font-size: 13px;
  font-size: 1.3rem;
  display: block;
  margin: 10px 0;
  padding: 12px;
  color: #fff;
  background: #c88f00;
}

.pagetop {
  position: absolute;
  top: -60px;
  right: 40px;
  width: 52px;
  height: 52px;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
  background-image: url(../img/sprite.png);
  background-position: 0 0;
}

.pagetop:hover {
  opacity: .7;
}

@media screen and (max-width: 640px) {
  .pagetop {
    top: -60px;
    right: 10px;
    -webkit-transform: scale(.7);
    -moz-transform: scale(.7);
    -ms-transform: scale(.7);
    transform: scale(.7);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
  }
}

.l-fun {
  padding: 0 0 75px;
}

@media screen and (max-width: 640px) {
  .l-fun {
    padding-bottom: 20px;
  }
}

.fun-header {
  min-height: 364px;
  padding: 50px 0;
  background: white url('../img/about/bg_fun.jpg?1427453564') 0 0 no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 1000px) {
  .fun-header {
    min-height: 0;
    padding: 20px;
    background: #fff;
    -webkit-background-size: auto 100%;
    -moz-background-size: auto 100%;
    background-size: auto 100%;
  }
}

.fun-image {
  display: none;
}

@media screen and (max-width: 1000px) {
  .fun-image {
    display: block;
    margin-bottom: 10px;
  }
}

.fun-heading {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 35px;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .fun-heading {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 640px) {
  .fun-heading {
    margin-bottom: 15px;
  }
}

.fun-header-lead {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.84615;
  margin: 0 0 30px;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .fun-header-lead {
    margin-bottom: 20px;
    text-align: left;
  }
}

.fun-button {
  display: block;
  width: 244px;
  margin: auto;
}

.fun-section-heading--funHires, .fun-section-heading--purchaseHires {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 15px;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .fun-section-heading--funHires, .fun-section-heading--purchaseHires {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 10px;
  }
}

.fun-section-heading--funHires {
  margin: 0 0 25px;
  background: #e8e8e8;
}

.fun-section-heading--purchaseHires {
  margin: 0 0 40px;
  background: #fff;
}

.l-funHires {
  padding: 60px;
  background: #fff;
}

@media screen and (max-width: 640px) {
  .l-funHires {
    padding: 15px;
  }
}

.funHires-lead {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0 0 15px;
  text-align: center;
  color: #ffca12;
}

@media screen and (max-width: 640px) {
  .funHires-lead {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}

.funHires-text {
  font-size: 13px;
  font-size: 1.3rem;
  margin: 0 0 30px;
  text-align: center;
}

.funHires-text a {
  text-decoration: underline;
  color: inherit;
}

.funHires-text a:hover {
  text-decoration: none;
}

.funHires-row {
  *zoom: 1;
}

.funHires-row:before, .funHires-row:after {
  display: table;
  content: '';
}

.funHires-row:after {
  clear: both;
}

.funHires-column--left, .funHires-column--right {
  /*width: 49%;*/
  width: 70%;
}

@media screen and (max-width: 768px) {
  .funHires-column--left, .funHires-column--right {
    width: auto;
  }
}

.funHires-column--left {
  /*float: left;*/
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .funHires-column--left {
    float: none;
    margin-bottom: 20px;
  }
}

.funHires-column--right {
  float: right;
}

@media screen and (max-width: 768px) {
  .funHires-column--right {
    float: none;
  }
}

.l-header {
  padding: 24px 0;
  background: #000;
}

@media screen and (max-width: 640px) {
  .l-header {
    padding: 12px 0;
  }
}

.header-inner {
  *zoom: 1;
}

.header-inner:before, .header-inner:after {
  display: table;
  content: '';
}

.header-inner:after {
  clear: both;
}

.header-logo {
  font-size: 0;
  float: left;
}

.header-logo a {
  display: block;
}

.header-logo img {
  display: block;
}

@media screen and (max-width: 640px) {
  .header-logo img {
    width: 50px;
    height: 10px;
  }
}

.header-lead {
  float: right;
  margin: -4px 0 0;
}

.header-lead img {
  display: block;
}

@media screen and (max-width: 640px) {
  .header-lead {
    margin-top: 0;
  }

  .header-lead img {
    width: 113px;
    height: 13px;
  }
}

.l-howto {
  padding: 0 0 80px;
}

@media screen and (max-width: 640px) {
  .l-howto {
    padding-bottom: 60px;
  }
}

.howto-tab {
  font-size: 0;
  text-align: center;
}

.howto-tab a {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 50px;
  display: inline-block;
  width: 362px;
  margin: 0 5px;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
  color: #fff;
  border-radius: 6px 6px 0 0;
  background: #333;
  background: rgba(0, 0, 0, .5);
}

.howto-tab a:hover {
  opacity: .7;
}

.howto-tab a.is-tab-active {
  color: #fdd138;
  background: #000;
}

@media screen and (max-width: 768px) {
  .howto-tab a {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 40px;
    width: 200px;
  }
}

@media screen and (max-width: 640px) {
  .howto-tab a {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 32px;
    width: 50%;
    margin-right: 0;
    margin-left: 0;
    border-top: 1px solid #444;
    border-right: 1px solid #444;
    border-bottom: 1px solid #444;
    background: #111;
  }

  .howto-tab a:first-child {
    border-left: 1px solid #444;
  }

  .howto-tab a.is-tab-active {
    border-bottom: 1px solid transparent;
  }
}

.howto-container {
  position: relative;
  padding: 15px 0 0;
  background: #000;
}

.howto-container:before {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: block;
  margin: auto;
  content: '';
}

.howto-container--small, .howto-container--small-2 {
  padding: 55px 265px 0;
  background: url('../img/howto/bg_1.jpg?1427453564') 50% 0 no-repeat;
}

@media screen and (max-width: 1200px) {
  .howto-container--small, .howto-container--small-2 {
    width: 640px;
    margin: auto;
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (max-width: 640px) {
  .howto-container--small, .howto-container--small-2 {
    width: auto;
    padding-top: 20px;
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    background-size: 100% auto;
  }
}

.howto-container--small-2 {
  padding-right: 25px;
  padding-left: 25px;
}

@media screen and (max-width: 640px) {
  .howto-container--small-2 {
    padding-right: 0;
    padding-left: 0;
  }
}

.howto-notice {
  font-size: 11px;
  font-size: 1.1rem;
  padding: 0 0 10px;
  color: #999;
}

.howto-notice>li {
  margin-bottom: 5px;
}

.howto-lead {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: bold;
  padding: 40px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 640px) {
  .howto-lead {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px;
  }
}

.howto-more {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0 0 40px;
  text-align: center;
  color: #fdd138;
}

@media screen and (max-width: 640px) {
  .howto-more {
    font-size: 16px;
    font-size: 1.6rem;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.l-interview, .l-interview--pb100, .l-interview--pb60 {
  background: #fff;
}

@media screen and (max-width: 640px) {
  .l-interview, .l-interview--pb100, .l-interview--pb60 {
    padding-bottom: 10px !important;
  }
}

.l-interview--pb100 {
  padding-bottom: 100px;
}

.l-interview--pb60 {
  padding-bottom: 60px;
}

.interview-container {
  padding: 0 40px;
}

@media screen and (max-width: 640px) {
  .interview-container {
    padding: 0 10px;
  }
}

.interview-row {
  display: table;
  width: 100%;
  padding: 60px 0;
  table-layout: fixed;
}

@media screen and (max-width: 640px) {
  .interview-row {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.interview-row-left {
  display: table-cell;
  width: 50%;
  padding: 0 40px 0 0;
  vertical-align: top;
}

@media screen and (max-width: 640px) {
  .interview-row-left {
    display: block;
    width: auto;
    padding-right: 0;
  }
}

.interview-lead {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0 0 40px;
}

@media screen and (max-width: 640px) {
  .interview-lead {
    font-size: 13px;
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
}

.interview-profile {
  display: table;
  table-layout: fixed;
}

@media screen and (max-width: 640px) {
  .interview-profile {
    margin-bottom: 10px;
  }
}

.interview-profile-image {
  display: table-cell;
  width: 122px;
  vertical-align: top;
}

@media screen and (max-width: 640px) {
  .interview-profile-image {
    width: 60px;
  }
}

.interview-profile-description, .interview-profile-description--left {
  font-size: 13px;
  font-size: 1.3rem;
  display: table-cell;
  width: 470px;
  padding: 0 0 0 30px;
  vertical-align: top;
}

.interview-profile-description>dt, .interview-profile-description--left>dt {
  margin: 0 0 10px;
}

@media screen and (max-width: 640px) {
  .interview-profile-description, .interview-profile-description--left {
    width: auto;
    padding-left: 10px;
  }
}

.interview-profile-description--left {
  padding: 0 30px 0 0;
}

@media screen and (max-width: 640px) {
  .interview-profile-description--left {
    padding-right: 10px;
  }
}

.interview-profile-name {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}

.interview-row-right {
  display: table-cell;
  width: 50%;
  vertical-align: top;
}

@media screen and (max-width: 640px) {
  .interview-row-right {
    display: block;
    width: auto;
  }
}

@media screen and (max-width: 640px) {
  .interview-products {
    margin-bottom: 15px;
  }
}

.interview-products-heading {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 48px;
  position: relative;
  margin: 0 0 20px;
  text-align: center;
  background: #fdd138;
}

.interview-products-heading:before {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  content: '';
  border-width: 8px 7px 0 7px;
  border-style: solid;
  border-color: #fdd238 transparent transparent transparent;
}

@media screen and (max-width: 640px) {
  .interview-products-heading {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 32px;
  }
}

.interview-products-list--1, .interview-products-list--2, .interview-products-list--3, .interview-products-list--4, .interview-products-list--5 {
  *zoom: 1;
}

.interview-products-list--1:before, .interview-products-list--2:before, .interview-products-list--3:before, .interview-products-list--4:before, .interview-products-list--5:before, .interview-products-list--1:after, .interview-products-list--2:after, .interview-products-list--3:after, .interview-products-list--4:after, .interview-products-list--5:after {
  display: table;
  content: '';
}

.interview-products-list--1:after, .interview-products-list--2:after, .interview-products-list--3:after, .interview-products-list--4:after, .interview-products-list--5:after {
  clear: both;
}

.interview-products-list--1>li, .interview-products-list--2>li, .interview-products-list--3>li, .interview-products-list--4>li, .interview-products-list--5>li {
  font-size: 13px;
  font-size: 1.3rem;
  float: left;
  text-align: center;
}

.interview-products-list--1>li img, .interview-products-list--2>li img, .interview-products-list--3>li img, .interview-products-list--4>li img, .interview-products-list--5>li img {
  padding: 0 0 5px;
  vertical-align: middle;
}

.interview-products-list--1>li a, .interview-products-list--2>li a, .interview-products-list--3>li a, .interview-products-list--4>li a, .interview-products-list--5>li a {
  display: block;
  color: inherit;
}

.interview-products-list--1>li a:hover, .interview-products-list--2>li a:hover, .interview-products-list--3>li a:hover, .interview-products-list--4>li a:hover, .interview-products-list--5>li a:hover {
  text-decoration: underline;
}

.interview-products-list--1>li span, .interview-products-list--2>li span, .interview-products-list--3>li span, .interview-products-list--4>li span, .interview-products-list--5>li span {
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  .interview-products-list--1>li, .interview-products-list--2>li, .interview-products-list--3>li, .interview-products-list--4>li, .interview-products-list--5>li {
    padding-right: 5px;
    padding-left: 5px;
  }
}

.interview-products-list--1>li {
  width: 100%;
  padding: 0 5px;
}

.interview-products-list--2>li {
  width: 50%;
  padding: 0 5px;
}

.interview-products-list--3>li {
  width: 33.33333%;
  padding: 0 5px;
}

.interview-products-list--4>li {
  width: 25%;
  padding: 0 5px;
}

.interview-products-list--5>li {
  width: 20%;
  padding: 0 5px;
}

.interview-products-name {
  margin: 10px 0 0;
}

@media screen and (max-width: 640px) {
  .interview-products-name {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.interview-products-name--horizontal {
  display: inline-block;
  padding: 0 0 0 10px;
  text-align: left;
  vertical-align: middle;
}

a:hover .interview-products-name--horizontal {
  text-decoration: underline;
}

.interview-section {
  padding: 50px 0;
  border-top: 1px solid #ccc;
}

@media screen and (max-width: 640px) {
  .interview-section {
    padding: 10px 0;
  }
}

.interview-heading {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0 0 50px;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .interview-heading {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: left;
  }
}

.interview-contents, .interview-contents--mt-40, .interview-contents--mt-70 {
  display: table;
  width: 100%;
  margin: 0 0 25px;
  table-layout: fixed;
}

.interview-contents:last-child, .interview-contents--mt-40:last-child, .interview-contents--mt-70:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 640px) {
  .interview-contents, .interview-contents--mt-40, .interview-contents--mt-70 {
    margin-top: 0 !important;
    margin-bottom: 10px;
  }
}

.interview-contents--mt-40 {
  margin-top: -40px;
}

.interview-contents--mt-70 {
  margin-top: -70px;
}

.interview-contents-text, .interview-contents-text--left, .interview-contents-text--right {
  font-size: 16px;
  font-size: 1.6rem;
  display: table-cell;
  width: 100%;
  vertical-align: top;
}

.interview-contents-text p, .interview-contents-text--left p, .interview-contents-text--right p {
  margin: 0 0 25px;
}

.interview-contents-text p:last-child, .interview-contents-text--left p:last-child, .interview-contents-text--right p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 640px) {
  .interview-contents-text, .interview-contents-text--left, .interview-contents-text--right {
    font-size: 13px;
    font-size: 1.3rem;
    display: block;
  }

  .interview-contents-text p, .interview-contents-text--left p, .interview-contents-text--right p {
    margin-bottom: 20px;
  }
}

.interview-contents-text--left {
  padding-right: 40px;
}

@media screen and (max-width: 640px) {
  .interview-contents-text--left {
    margin-bottom: 10px;
    padding-right: 0;
  }
}

.interview-contents-text--right {
  padding-left: 40px;
}

@media screen and (max-width: 640px) {
  .interview-contents-text--right {
    padding-left: 0;
  }
}

.interview-text--large {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  .interview-text--large {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}

.interview-contents-image, .interview-contents-image--350, .interview-contents-image--276 {
  display: table-cell;
  width: 446px;
  vertical-align: top;
}

.interview-contents-image>img, .interview-contents-image--350>img, .interview-contents-image--276>img {
  display: block;
  margin: 0 0 20px;
}

@media screen and (max-width: 1000px) {
  .interview-contents-image, .interview-contents-image--350, .interview-contents-image--276 {
    width: 45% !important;
  }
}

@media screen and (max-width: 640px) {
  .interview-contents-image, .interview-contents-image--350, .interview-contents-image--276 {
    display: block;
    width: auto !important;
  }
}

.interview-contents-image--350 {
  width: 350px;
}

.interview-contents-image--276 {
  width: 276px;
}

.interview-contents-num {
  display: table-cell;
  width: 74px;
  vertical-align: top;
}

@media screen and (max-width: 640px) {
  .interview-contents-num {
    width: 37px;
  }
}

.interview-contents-processText {
  display: table-cell;
  width: 100%;
  padding: 0 0 0 15px;
  vertical-align: top;
}

.interview-contents-processText dl>dt {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 15px;
}

.interview-contents-processText dl>dd {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 640px) {
  .interview-contents-processText dl>dt {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 5px;
  }

  .interview-contents-processText dl>dd {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.interview-contents-processImage {
  display: table-cell;
  width: 345px;
  padding: 0 0 0 25px;
  vertical-align: top;
}

@media screen and (max-width: 1000px) {
  .interview-contents-processImage {
    width: 200px;
  }
}

@media screen and (max-width: 640px) {
  .interview-contents-processImage {
    display: none;
  }
}

.interview-contents-processImage-sp {
  display: none;
}

@media screen and (max-width: 640px) {
  .interview-contents-processImage-sp {
    display: block;
    margin-bottom: 10px;
  }
}

.interview-albums {
  padding: 0 0 40px;
}

.interview-albums-list {
  margin: 0 0 45px -18px;
  *zoom: 1;
}

.interview-albums-list:before, .interview-albums-list:after {
  display: table;
  content: '';
}

.interview-albums-list:after {
  clear: both;
}

.interview-albums-list>li {
  float: left;
  width: 16.66667%;
  padding: 0 0 0 18px;
}

.interview-albums-list a {
  display: block;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
}

.interview-albums-list a:hover {
  opacity: .7;
}

@media screen and (max-width: 640px) {
  .interview-albums-list {
    margin-bottom: 10px;
    margin-left: -6px;
  }

  .interview-albums-list>li {
    width: 33.33333%;
    margin-bottom: 6px;
    padding-left: 6px;
  }
}

.interview-banner {
  padding: 60px 0 0;
  text-align: center;
}

.interview-banner a {
  display: block;
  margin: 0 0 30px;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
}

.interview-banner a:hover {
  opacity: .7;
}

.interview-banner a:last-child {
  margin-bottom: 0;
}

.interview-banner img {
  display: block;
}

@media screen and (max-width: 640px) {
  .interview-banner {
    padding-top: 20px;
  }
}

.interview-tab, .interview-tab--2 {
  margin: 0 0 25px -9px;
  *zoom: 1;
}

.interview-tab:before, .interview-tab--2:before, .interview-tab:after, .interview-tab--2:after {
  display: table;
  content: '';
}

.interview-tab:after, .interview-tab--2:after {
  clear: both;
}

.interview-tab>li, .interview-tab--2>li {
  float: left;
  width: 33.33333%;
  padding: 0 0 0 9px;
}

.interview-tab>li>*, .interview-tab--2>li>* {
  display: block;
}

.interview-tab>li a, .interview-tab--2>li a {
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
  background: #fefefe;
  background: rgba(255, 255, 255, .5);
}

.interview-tab>li a:hover, .interview-tab--2>li a:hover {
  opacity: .7;
}

.interview-tab>li span, .interview-tab--2>li span {
  background: #fff;
}

@media screen and (max-width: 640px) {
  .interview-tab, .interview-tab--2 {
    margin-bottom: 10px;
    margin-left: 0;
  }

  .interview-tab>li, .interview-tab--2>li {
    width: auto;
    padding-left: 0;
  }
}

.interview-tab--2>li {
  width: 50%;
}

@media screen and (max-width: 640px) {
  .interview-tab--2>li {
    width: auto;
    padding-left: 0;
  }
}

.l-introduction {
  position: relative;
  z-index: 1;
  /*padding: 75px 0 0;*/
  padding: 40px 0 0;
  background: #382925 url('../img/top/bg_introduction.png?1426492621') 0 0 repeat-x;
}

.l-introduction:before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  height: 100%;
  margin: auto;
  content: '';
  background: url('../img/top/bg_introduction_body.jpg?1426492621') 0 0 no-repeat;
}

@media screen and (max-width: 640px) {
  .l-introduction {
    padding: 40px 0 0;
  }
}

.textbox {
  background: #000000;
  padding: 1.5rem 0 0.7rem;
  font-weight: normal;
  line-height: 1.3;
  color: #ffffff;
  font-size: 13px;
  font-size: 1.3rem;
}

.textbox dl {
  overflow: hidden;
}

.textbox dt {
  float: left;
}

.textbox dd {
  margin: 0 0 0.8rem 11rem;
}

.textbox dd a:hover {
  color: #cccccc;
}

@media screen and (max-width: 640px) {
  .textbox {
    padding: 1.5rem 0 0.5rem;
    font-size: 14px;
    font-size: 1.4rem;
  }

  .textbox dt {
    float: none;
    margin-bottom: 0.2rem;
  }

  .textbox dd {
    margin: 0 0 1rem 0;
  }
}

.l-logo {
  padding: 60px 0;
  background: #333;
}

@media screen and (max-width: 640px) {
  .l-logo {
    padding: 25px 0 60px;
  }
}

.logo-container {
  width: 960px;
  margin: auto;
}

@media screen and (max-width: 1000px) {
  .logo-container {
    width: auto;
    padding: 0 20px;
  }
}

.logo-description {
  display: table;
  width: 100%;
  margin: 0 0 40px;
  table-layout: fixed;
}

.logo-description-image {
  display: table-cell;
  width: 61px;
  vertical-align: middle;
}

@media screen and (max-width: 640px) {
  .logo-description-image {
    vertical-align: top;
  }
}

.logo-description-text {
  display: table-cell;
  width: 100%;
  padding: 0 0 0 10px;
  vertical-align: middle;
  color: #fff;
}

.logo-description-medium {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 640px) {
  .logo-description-medium {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.logo-description-small {
  font-size: 11px;
  font-size: 1.1rem;
}

@media screen and (max-width: 640px) {
  .logo-description-small {
    font-size: 10px;
    font-size: 1rem;
  }
}

.logo-section-heading {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0 0 15px;
  color: #fff;
}

.logo-section-text {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0 0 5px;
  color: #fff;
}

@media screen and (max-width: 640px) {
  .logo-section-text {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.logo-section-table {
  margin: 0 0 40px;
}

.logo-section-row {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2.30769;
  display: table;
  width: 100%;
  table-layout: fixed;
  color: #000;
  border-bottom: 1px solid #333;
}

.logo-section-th {
  display: table-cell;
  width: 292px;
  padding: 10px;
  vertical-align: top;
  border-right: 1px solid #333;
  background: #cecece;
}

@media screen and (max-width: 640px) {
  .logo-section-th {
    display: block;
    width: auto;
    padding: 5px;
    border-right: none;
    border-bottom: 1px solid #333;
  }
}

.logo-section-td {
  display: table-cell;
  width: 100%;
  padding: 10px;
  vertical-align: top;
  background: #fff;
}

.logo-section-td ul {
  padding: 10px 0 0;
}

@media screen and (max-width: 640px) {
  .logo-section-td {
    display: block;
    width: auto;
    padding: 5px;
  }
}

.logo-mora--large {
  margin: 0 0 25px;
}

@media screen and (max-width: 640px) {
  .logo-mora--large {
    margin-bottom: 10px;
    text-align: center;
  }

  .logo-mora--large img {
    width: 100px;
  }
}

.is-navigation-fixed .l-main {
  padding: 60px 0 0;
}

@media screen and (max-width: 640px) {
  .l-main {
    min-width: 0;
  }

  .is-navigation-fixed .l-main {
    padding-top: 30px;
  }
}

.l-musicSites {
  padding-top: 60px;
  background: black url('../img/top/bg_music_sites.jpg?1426492621') 50% 0 no-repeat;
  background-size: 100% auto;
}

.l-navigation, .l-navigation--footer {
  height: 60px;
  padding: 11px 0;
  background: #edaf0e;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #fedc5c), color-stop(100%, #ecac0a));
  background-image: -webkit-linear-gradient(left, #fedc5c, #ecac0a);
  background-image: -moz-linear-gradient(left, #fedc5c, #ecac0a);
 /* background-image: linear-gradient(left, #fedc5c, #ecac0a);*/
  background-image: -webkit-gradient(linear, to right, to left, color-stop(0%, #fedc5c), color-stop(100%, #ecac0a));
  /*background-image: -webkit-linear-gradient(to right, #fedc5c, #ecac0a);*/
  /*background-image: -moz-linear-gradient(to right, #fedc5c, #ecac0a);*/
  background-image: linear-gradient(to right, #fedc5c, #ecac0a);
}

.lte-ie9 .l-navigation, .lte-ie9 .l-navigation--footer {
  background: #edaf0e;
}

@media screen and (max-width: 1000px) {
  .l-navigation, .l-navigation--footer {
    height: auto;
  }
}

@media screen and (max-width: 640px) {
  .l-navigation, .l-navigation--footer {
    height: auto;
    padding: 0;
    background: #fff;
  }

  .l-navigation .container, .l-navigation--footer .container {
    padding-right: 0;
    padding-left: 0;
  }
}

.l-navigation .is-page-current, .l-navigation--footer .is-page-current {
  font-weight: bold !important;
}

.is-navigation-fixed .js-fixed--sp {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
}

.is-navigation-fixed .js-fixed--pc {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 640px) {
  .is-navigation-fixed .js-fixed--pc {
    top: 45px;
  }
}

.l-navigation--footer {
  background: transparent !important;
}

.navigation-inner {
  *zoom: 1;
}

.navigation-inner:before, .navigation-inner:after {
  display: table;
  content: '';
}

.navigation-inner:after {
  clear: both;
}

.navigation-primaryList, .navigation-primaryList--footer {
  font-size: 0;
  display: block;
  float: left;
}

.navigation-primaryList>li, .navigation-primaryList--footer>li {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 37px;
  display: inline-block;
  margin: 0 32px 0 0;
  vertical-align: middle;
}

.navigation-primaryList a, .navigation-primaryList--footer a {
  color: inherit;
}

.navigation-primaryList a:hover, .navigation-primaryList--footer a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 640px) {
  .navigation-primaryList, .navigation-primaryList--footer {
    display: block !important;
  }
}

@media screen and (max-width: 1200px) {
  .navigation-primaryList>li, .navigation-primaryList--footer>li {
    font-size: 12px;
    font-size: 1.2rem;
    margin-right: 15px;
  }
}

@media screen and (max-width: 1000px) {
  .navigation-primaryList, .navigation-primaryList--footer {
    float: none;
  }
}

@media screen and (max-width: 640px) {
  .navigation-primaryList, .navigation-primaryList--footer {
    display: none;
  }

  .navigation-primaryList>li, .navigation-primaryList--footer>li {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1;
    display: block;
    margin: 0;
  }

  .navigation-primaryList a, .navigation-primaryList--footer a {
    position: relative;
    display: block !important;
    padding: 16px 12px;
    border-bottom: 1px solid #999;
  }

  .navigation-primaryList a:hover, .navigation-primaryList--footer a:hover {
    text-decoration: none;
  }

  .navigation-primaryList a:after, .navigation-primaryList--footer a:after {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    display: block;
    width: 10px;
    height: 20px;
    margin: auto;
    content: '';
    background-image: url(../img/sprite.png);
    background-position: -13px -28px;
    background-size: 153.5px 59px;
  }
}

.navigation-primaryList--footer {
  display: block;
}

@media screen and (max-width: 640px) {
  .js-sp-navigation {
    display: none;
  }
}

.navigation-secondaryList {
  font-size: 0;
  display: inline-block;
  float: right;
}

.navigation-secondaryList>li {
  display: inline-block;
  margin: 0 0 0 6px;
}

.navigation-secondaryList a {
  display: block;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
}

.navigation-secondaryList a:hover {
  opacity: .7;
}

@media screen and (max-width: 1200px) {
  .navigation-secondaryList>li {
    padding-top: 3px;
    vertical-align: middle;
  }

  .navigation-secondaryList>li img {
    width: 150px;
  }
}

@media screen and (max-width: 1000px) {
  .navigation-secondaryList {
    float: none;
    padding-top: 10px;
    vertical-align: top;
  }

  .navigation-secondaryList>li {
    margin-right: 10px;
    margin-left: 0;
  }
}

@media screen and (max-width: 640px) {
  .navigation-secondaryList {
    display: none;
  }
}

.sp-menu {
  display: none;
}

@media screen and (max-width: 640px) {
  .sp-menu {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #999;
    background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #fedc5c), color-stop(100%, #ecac0a));
    background-image: -webkit-linear-gradient(left, #fedc5c, #ecac0a);
    background-image: -moz-linear-gradient(left, #fedc5c, #ecac0a);
    /*background-image: linear-gradient(left, #fedc5c, #ecac0a);*/
    background-image: -webkit-gradient(linear, to right, to left, color-stop(0%, #fedc5c), color-stop(100%, #ecac0a));
    /*background-image: -webkit-linear-gradient(to right, #fedc5c, #ecac0a);*/
    /*background-image: -moz-linear-gradient(to right, #fedc5c, #ecac0a);*/
    background-image: linear-gradient(to right, #fedc5c, #ecac0a);
  }

  .lte-ie9 .sp-menu {
    background: #edaf0e;
  }
}

.sp-menu-trigger {
  font-size: 14px;
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
  padding: 0 0 0 20px;
  color: #000;
}

.sp-menu-trigger:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  margin: auto;
  content: '';
  background-image: url(../img/sprite.png);
  background-position: -56px -28px;
  background-size: 153.5px 59px;
}

.sp-menu-trigger.is-menu-open:before {
  width: 16px;
  height: 16px;
  background-image: url(../img/sprite.png);
  background-position: -38px -28px;
  background-size: 153.5px 59px;
}

.navigation-hover:hover {
  text-decoration: underline;
}

.l-productsPage {
  margin: 0 0 -40px;
  padding: 0 0 70px;
}

.l-purchaseHires {
  padding: 60px;
  background: #e5e7e7 url('../img/about/bg_purchase_hires.jpg?1427453564') 50% 0 no-repeat;
}

@media screen and (max-width: 1000px) {
  .l-purchaseHires {
    padding: 30px;
  }
}

@media screen and (max-width: 640px) {
  .l-purchaseHires {
    padding: 15px;
  }
}

.purchaseHires-container {
  width: 830px;
  margin: auto;
}

@media screen and (max-width: 1000px) {
  .purchaseHires-container {
    width: auto;
  }
}

.purchaseHires-box {
  display: table;
  width: 100%;
  margin: 0 0 60px;
  table-layout: fixed;
}

@media screen and (max-width: 640px) {
  .purchaseHires-box {
    margin-bottom: 20px;
  }
}

.purchaseHires-image {
  display: table-cell;
  width: 400px;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .purchaseHires-image {
    display: block;
    width: auto;
    margin-bottom: 10px;
  }
}

.purchaseHires-text {
  font-size: 13px;
  font-size: 1.3rem;
  display: table-cell;
  width: 100%;
  padding: 0 0 0 40px;
  vertical-align: top;
}

.purchaseHires-text p {
  margin: 0 0 25px;
}

@media screen and (max-width: 768px) {
  .purchaseHires-text {
    display: block;
    margin-bottom: 20px;
    padding-left: 0;
  }

  .purchaseHires-text p {
    margin-bottom: 10px;
  }
}

.purchaseHires-others {
  position: relative;
  padding: 35px 0 0;
  border-top: 1px solid #b7b9b9;
}

.purchaseHires-others-heading {
  line-height: 1;
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  text-align: center;
}

.purchaseHires-others-heading-inner {
  font-size: 13px;
  font-size: 1.3rem;
  display: inline-block;
  padding: 0 5px;
  background: #e5e7e7;
}

.purchaseHires-others-list {
  margin: 0 0 0 -9px;
  *zoom: 1;
}

.purchaseHires-others-list:before, .purchaseHires-others-list:after {
  display: table;
  content: '';
}

.purchaseHires-others-list:after {
  clear: both;
}

.purchaseHires-others-list>li {
  float: left;
  width: 33.33333%;
  padding: 0 0 0 9px;
}

.purchaseHires-others-list a {
  display: block;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
}

.purchaseHires-others-list a:hover {
  opacity: .7;
}

@media screen and (max-width: 640px) {
  .purchaseHires-others-list {
    margin-left: 0;
  }

  .purchaseHires-others-list>li {
    margin-bottom: 5px;
  }
}

.l-ranking {
  padding: 0 0 70px;
}

@media screen and (max-width: 640px) {
  .l-ranking {
    padding-bottom: 30px;
  }
}

.ranking-section {
  margin: 0 0 30px;
}

.ranking-section:last-child {
  margin-bottom: 0;
}

.ranking-heading {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1;
  position: relative;
  margin: 0 0 20px;
  padding: 5px 0 0 100px;
  color: #fff;
}

.ranking-heading:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 88px;
  height: 18px;
  margin: auto;
  content: '';
  background-image: url(../img/sprite.png);
  background-position: 0 -100px;
}

@media screen and (max-width: 640px) {
  .ranking-heading {
    font-size: 14px;
    font-size: 1.4rem;
    padding-left: 50px;
  }

  .ranking-heading:before {
    width: 44px;
    height: 9px;
    background-image: url(../img/sprite.png);
    background-position: 0 -50px;
    background-size: 153.5px 59px;
  }
}

.ranking-list {
  margin: 0 0 0 -25px;
  *zoom: 1;
}

.ranking-list:before, .ranking-list:after {
  display: table;
  content: '';
}

.ranking-list:after {
  clear: both;
}

.ranking-list>li {
  float: left;
  width: 20%;
  padding: 0 0 0 25px;
}

.ranking-list a {
  display: block;
  color: inherit;
}

@media screen and (max-width: 640px) {
  .ranking-list {
    margin-left: 0;
  }

  .ranking-list>li {
    float: none;
    width: auto;
    margin-bottom: 10px;
    padding-left: 0;
  }
}

.sites-tab {
  margin: 0 0 0 -4px;
  *zoom: 1;
}

.sites-tab:before, .sites-tab:after {
  display: table;
  content: '';
}

.sites-tab:after {
  clear: both;
}

.sites-tab>li {
  float: left;
  width: 25%;
  padding: 0 0 0 4px;
}

.sites-tab a {
  position: relative;
  display: block;
  border-bottom: 4px solid #000;
}

.sites-tab a.is-tab-active {
  border-color: #fff;
}

.sites-tab a.is-tab-active:before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  content: '';
  background: #fdd138;
}

@media screen and (max-width: 640px) {
  .sites-tab {
    margin-left: -2px;
  }

  .sites-tab>li {
    width: 50%;
    padding-left: 2px;
  }

  .sites-tab a {
    border-bottom: 2px solid #000;
  }

  .sites-tab a.is-tab-active {
    border-color: #000;
  }
}

.sites-body {
  position: relative;
  background: #fff;
}

.sites-trigger {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.84615;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 148px;
  margin: auto;
  padding: 5px 0;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
  text-align: center;
  color: #000;
  border-radius: 4px 4px 0 0;
  background: #d2d2d2;
}

.sites-trigger:hover {
  opacity: .7;
}

.ie8 .sites-trigger {
  display: none !important;
}

.sites-notice {
  font-size: 11px;
  font-size: 1.1rem;
  padding: 10px 0 0;
  text-align: right;
  color: #fff;
}

.l-special {
  padding: 0 0 80px;
}

@media screen and (max-width: 640px) {
  .l-special {
    padding-bottom: 60px;
  }
}

.special-anchorList {
  font-size: 0;
  margin: 0 0 35px;
}

.special-anchorList ul {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
}

.special-anchorList li {
  display: inline-block;
}

.special-anchorList li:after {
  display: inline-block;
  padding: 0 5px;
  content: '|';
  color: #6e6e6e;
}

.special-anchorList li:last-child:after {
  display: none;
}

.special-anchorList a {
  color: #f1b920;
}

.special-anchorList a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 640px) {
  .special-anchorList ul {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.special-section {
  padding: 0 0 10px;
}

.l-specialContents {
  background: #e49c00 url('../img/top/bg_special_contents.jpg?1426492621') 0 0 no-repeat;
  background-size: 100% 100%;
}

.l-support {
  padding: 60px 0 120px;
  background: black url('../img/top/bg_support.jpg?1426492621') 50% 0 no-repeat;
  background-size: 100% auto;
}

@media screen and (max-width: 640px) {
  .l-support {
    min-width: 0;
    padding: 20px 0 60px;
  }
}

.support-header {
  margin: 0 0 40px;
  text-align: center;
}

.support-heading {
  font-size: 30px;
  font-size: 3rem;
  font-weight: normal;
  display: inline-block;
  color: #fff;
}

.support-heading--en {
  font-size: 15px;
  font-size: 1.5rem;
  display: inline-block;
  color: #f2e0be;
}

.support-list {
  font-size: 0;
  margin: 0 0 90px;
  text-align: center;
  *zoom: 1;
}

.support-list:before, .support-list:after {
  display: table;
  content: '';
}

.support-list:after {
  clear: both;
}

.support-list>li {
  float: left;
  width: 25%;
  padding: 0 15px;
}

.support-list a {
  display: block;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
}

.support-list a:hover {
  opacity: .7;
}

@media screen and (max-width: 640px) {
  .support-list {
    margin-bottom: 30px;
    *zoom: 1;
  }

  .support-list:before, .support-list:after {
    display: table;
    content: '';
  }

  .support-list:after {
    clear: both;
  }

  .support-list>li {
    width: 50%;
    margin-bottom: 15px;
  }
}

.links {
  padding: 10px 0 40px;
}

.links div {
  padding: 0 5px 20px;
}

.links div:hover {
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
}

.links div:hover:hover {
  opacity: .7;
}

.links div a {
  display: block;
}

@media screen and (max-width: 640px) {
  .links div {
    padding-bottom: 20px;
  }
}

.aboutBanner {
  margin-bottom: 60px;
}

.aboutBanner a {
  display: block;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
}

.aboutBanner a:hover {
  opacity: .7;
}

.about-accordion .aboutDescription-contents {
  display: none;
}

.about-accordion .aboutDescription-header {
  position: relative;
  cursor: pointer;
}

.about-accordion-arrow {
  background: #000;
  color: #fff;
  line-height: 30px;
  height: 30px;
  width: 30px;
  text-align: center;
  font-size: 2.5rem;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.about-accordion-arrow span {
  margin: -2px 0px 0 0;
}

.about-accordion .aboutDescription-header.active .about-accordion-arrow {
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

@media screen and (max-width: 640px) {
  .about-accordion-arrow {
    line-height: 20px;
    height: 20px;
    width: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 640px) {
  .col-xs-6_sp {
    width: 50%;
  }
}



/* ------------------------------------------------------------------------------------ */
/* 2019リニューアル */
/* ==================================================================================== */

.topHowto--box{
  text-align: center;
  background: #edaf0e;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #fedc5c), color-stop(100%, #ecac0a));
  background-image: -webkit-linear-gradient(left, #fedc5c, #ecac0a);
  background-image: -moz-linear-gradient(left, #fedc5c, #ecac0a);
  /*background-image: linear-gradient(left, #fedc5c, #ecac0a);*/
  background-image: -webkit-gradient(linear, to right, to left, color-stop(0%, #fedc5c), color-stop(100%, #ecac0a));
  /*background-image: -webkit-linear-gradient(to right, #fedc5c, #ecac0a);
  background-image: -moz-linear-gradient(to right, #fedc5c, #ecac0a);*/
  background-image: linear-gradient(to right, #fedc5c, #ecac0a);
  background-size: 100% 100%;
  padding: 50px 40px;
}

.topHowto--box img{
  max-width: 100%;
}

.topHowto--box a{
  display: inline-block;
}

.topSpecial{
  padding: 50px 20px;
  background: #333;
}

.topSpecial-header{
  padding: 20px 0 10px;
}

.topSpecial img{
  max-width: 100%;
}

.topSpecial-row img{
  max-width: 100%;
}

.topSpecial-row{
  padding: 50px 0;
  display: flex;
  justify-content: center;
  /*justify-content: space-between;*/
}

.topSpecial-row .topSpecial-row--inner{
  width: 48.5%;
  max-width: 580px;
}

.topSpecial-row .topSpecial-row--inner a{
  display: inline-block;
}

.topSpecial .topSpecial-headingContainer{
  color: #fdd138;
  text-align: center;
}


@media screen and (max-width: 640px) {

  .topHowto--box{
    padding: 20px 20px;
  }
  .topSpecial{
    padding: 20px 0px;
  }

  .topSpecial-row{
    padding: 20px 0px;
  }

}
