/*
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;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
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);
}
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
/**
* voice
* ===============
*/
body.voice .planePageHead h2 {
  margin-bottom: 40px;
}

.voiceWrapper {
  padding: 50px 0 100px;
  background: #f5efde;
  margin-bottom: 0;
}
.voiceWrapper h3 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .voiceWrapper {
    padding-top: 20px;
  }
  .voiceWrapper h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.voiceTable {
  margin: 0 auto 100px;
  max-width: 860px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5em;
  overflow: hidden;
}
.voiceTable h3 {
  color: #e66600;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 50px;
}
.voiceTable .tbl {
  display: table;
}
.voiceTable p.read {
  max-width: 635px;
  margin: 40px auto 0;
  line-height: 2em;
}
.voiceTable p.movie {
  max-width: 800px;
  margin: 40px auto auto;
  line-height: 2em;
  text-align: right;
}
.voiceTable p.movie img {
  vertical-align: middle;
}
.voiceTable .icon-youtube:before {
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  font-size: 3rem;
  color: #332723;
  position: relative;
  top: 0;
}
.voiceTable .icon-youtube:hover:before {
  top: -5px;
}
@media only screen and (max-width: 767px) {
  .voiceTable .tbl {
    display: block;
    width: 100%;
  }
  .voiceTable p.read {
    margin-bottom: 2em;
  }
  .voiceTable p.movie {
    text-align: left;
  }
}

.voiceMain .customer {
  /*display: -moz-inline-box;*/
  display: table-cell;
  /*  /display: inline;
    /zoom: 1;*/
  max-width: 430px;
}
.voiceMain .customerIn {
  max-width: 308px;
  padding: 40px;
  background: #F5EFDE;
  margin: 20px 20px 0 20px;
}
.voiceMain .customerIn figure {
  margin-bottom: 20px;
}
.voiceMain .customerIn img {
  display: inline-block;
  margin: 0 20px 0;
  vertical-align: middle;
  border: 5px solid #fff;
}
.voiceMain .customerIn figcaption {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 150%;
  vertical-align: middle;
}
.voiceMain .customerIn figcaption span {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 2em;
  font-weight: bold;
}
.voiceMain .customerIn p {
  margin-top: 1em;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 150%;
  clear: both;
}
.voiceMain .customer p.btn {
  background: #e69f00;
  max-width: 308px;
  margin: 0 20px;
  padding: 20px 40px;
  text-align: center;
}
.voiceMain .customer p.btn a {
  color: #FFFFFF;
  text-decoration: none;
}
.voiceMain .customer p.btn img {
  vertical-align: bottom;
}
.voiceMain .player {
  position: relative;
  max-width: 820px;
  margin: 30px auto 100px;
  line-height: 1.5em;
}
.voiceMain .playerBtn {
  position: absolute;
  top: 0;
  right: 0;
}
.voiceMain .player strong {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 3em;
}
@media only screen and (max-width: 767px) {
  .voiceMain .customer {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .voiceMain .customerIn {
    max-width: 100%;
    margin: 0;
    padding: 20px;
  }
  .voiceMain .customerIn figcaption {
    font-size: 1.2rem;
  }
  .voiceMain .customerIn figcaption span {
    font-size: 1.6rem;
  }
  .voiceMain .customerIn img {
    width: 70px;
    height: auto;
    margin-right: 10px;
  }
  .voiceMain .customerIn p {
    font-size: 1.2rem;
    font-weight: normal;
  }
  .voiceMain .customer p.btn {
    max-width: 100%;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }
  .voiceMain .player {
    font-size: 1.2rem;
  }
  .voiceMain .player strong {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 767px) {
  .voiceTable h3 {
    margin-bottom: 30px;
    font-size: 1.6rem;
  }
  .voiceTable p {
    font-size: 1.2rem;
    font-weight: bold;
  }
}
