@charset "UTF-8";
/*----------------------------------------------------------------------
------------------------------------------------------------------------

File Name:		index.scss
Note:			インデックス用SCSSファイル


New Creation:	2013/03/04 18:08:40.
Last Change:	2014/10/30 20:20:33.


Created By		Yoshiaki Murakami

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
------------------------------------------------------------------------
目次

1.	ブラウザデフォルトスタイルリセット
2.	HTMLタグ
3.	container
4.	スクリプト関連
5.	共通部分
6.	header
7.	content
8.	main
9.	footer
10.	original

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
1.	ブラウザデフォルトスタイルリセット
----------------------------------------------------------------------*/
body,
h1, h2, h3, h4, h5, h6,
div,
p,
ul, ol, dl,
form, fieldset,
table,
address,
blockquote,
noscript,
pre,
tr,
td,
input,
textarea {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-style: normal;
}

html {
  font-size: 62.5%;
  font-family: Helvetica, Arial, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
}

small {
  font-size: 1em;
}

mark {
  background: none;
}

fieldset {
  border: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
  font-size: inherit;
  font: 100%;
}

li {
  list-style-type: none;
}

dd {
  margin: 0;
}

a,
abbr,
acronym,
em,
strong,
span,
img,
sub,
sup,
input,
button,
textarea,
select,
label,
caption {
  font-weight: normal;
  font-style: normal;
}

a {
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
}

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

th, td {
  padding: 0px;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

textarea {
  vertical-align: top;
}

iframe {
  border: none;
}

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

/*----------------------------------------------------------------------
2.	HTMLタグ
----------------------------------------------------------------------*/
html,
body {
  height: 100%;
  background-color: #000;
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: #acabab;
}

a {
  text-decoration: underline;
  color: #acabab;
}

img {
  width: 100%;
  height: auto;
}

mark {
  color: #c14f46;
}

@media (max-width: 640px) {
  html {
    font-size: 62.5%;
  }
}
@media (max-width: 560px) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 43.75%;
  }
}
@media (max-width: 415px) {
  html {
    font-size: 37.5%;
  }
}
@media (max-width: 320px) {
  html {
    font-size: 31.25%;
  }
}
@media (max-width: 240px) {
  html {
    font-size: 25%;
  }
}
@media (max-width: 160px) {
  html {
    font-size: 18.75%;
  }
}
/*----------------------------------------------------------------------
3.	container
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
4.	スクリプト関連
----------------------------------------------------------------------*/
.pagetop {
  display: none;
  position: fixed;
  right: 2.34375%;
  bottom: 4.6875%;
  width: 15.625%;
}
.pagetop a {
  display: block;
}

body.hidden {
  overflow: hidden;
  width: 100%;
  overflow-x: hidden;
}

.container {
  padding-top: 25.3125%;
  min-height: 100%;
}
.container.noscroll {
  position: fixed !important;
  width: 100%;
}
body > .container {
  height: auto;
}

@-moz-keyframes slideDown {
  0% {
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes slideUp {
  0% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes slideUp {
  0% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
.noscroll .headroom {
  position: fixed;
  top: 0;
  z-index: 1000;
}

.headroom {
  position: absolute;
  top: 0;
  left: 0;
}

.headroom.headroom--not-top {
  position: fixed;
  z-index: 1000;
}
.headroom.headroom--not-top.animated {
  -moz-animation-duration: 0.2s;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -moz-animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.headroom.headroom--not-top.animated.pin {
  -moz-animation-name: none;
  -webkit-animation-name: none;
  animation-name: none;
  position: absolute;
}
.headroom.headroom--not-top.animated.pin.slideDown {
  -moz-animation-name: none;
  -webkit-animation-name: none;
  animation-name: none;
  position: absolute;
}
.headroom.headroom--not-top.animated.pin.slideDown.outreturn {
  -moz-animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
  position: fixed;
}
.headroom.headroom--not-top.animated.up {
  position: fixed;
}
.headroom.headroom--not-top.animated.slideDown {
  -moz-animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}
.headroom.headroom--not-top.animated.slideUp {
  -moz-animation-name: none;
  -webkit-animation-name: none;
  animation-name: none;
  position: absolute;
}
.headroom.headroom--not-top.animated.slideUp.up {
  -moz-animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
  position: fixed;
}
.headroom.headroom--not-top.animated.after {
  position: fixed;
}
.headroom.headroom--not-top.animated.slideDown.stop, .headroom.headroom--not-top.animated.slideUp.stop {
  -moz-animation-name: none;
  -webkit-animation-name: none;
  animation-name: none;
}

/*----------------------------------------------------------------------
5.	共通部分
----------------------------------------------------------------------*/
.nav-list {
  padding: 0 3.125%;
}
.nav-item {
  position: relative;
  margin-bottom: 6.25%;
  padding-bottom: 2px;
}
.nav-item.is-active {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
.nav-item a {
  display: block;
}
.nav-item::after {
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FF200501', endColorstr='#FF200501');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzIwMDUwMSIvPjxzdG9wIG9mZnNldD0iMjUlIiBzdG9wLWNvbG9yPSIjODM2YTNiIi8+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNiZGE1NWMiLz48c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iIzgzNmEzYiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzIwMDUwMSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -moz-linear-gradient(left, #200501 0%, #836a3b 25%, #bda55c 50%, #836a3b 75%, #200501 100%);
  background-image: -webkit-linear-gradient(left, #200501 0%, #836a3b 25%, #bda55c 50%, #836a3b 75%, #200501 100%);
  background-image: linear-gradient(to right, #200501 0%, #836a3b 25%, #bda55c 50%, #836a3b 75%, #200501 100%);
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #200501;
}
.nav-item:nth-child(1), .nav-item:nth-child(2), .nav-item:nth-child(4), .nav-item:nth-child(5) {
  margin-bottom: 3.90625%;
}
.nav-item:nth-child(3), .nav-item:nth-child(6) {
  margin-bottom: 9.375%;
}
.nav-item:last-child {
  margin-bottom: 0;
}
.nav-item:nth-child(even)::after {
  width: 70%;
  left: 15%;
}

.link-list {
  margin-top: 10.9375%;
  margin-bottom: 8.59375%;
  text-align: center;
}
.link-item {
  margin: 0 3.5%;
  display: none;
}
.link-item a {
  display: block;
}
.link-item.shopping {
  display: inline-block;
}
.link-item.twitter {
  width: 4.53125%;
}
.link-item.facebook {
  width: 2.5%;
}
.link-item.googleplus {
  width: 4.453125%;
}
.link-item.youtube {
  width: 2.96875%;
}
.link-item.shopping {
  width: 25.625%;
}

/*----------------------------------------------------------------------
6.	#header
----------------------------------------------------------------------*/
.header {
  width: 100%;
}
.header-inner {
  position: relative;
  padding: 7.03125% 0 3.125%;
  background-color: rgba(0, 0, 0, 0.9);
}
.header-inner::before {
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FFAEA894', endColorstr='#FFAEA894');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2FlYTg5NCIvPjxzdG9wIG9mZnNldD0iNDclIiBzdG9wLWNvbG9yPSIjZDFjN2JiIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYWVhODk0Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -moz-linear-gradient(left, #aea894 0%, #d1c7bb 47%, #aea894 100%);
  background-image: -webkit-linear-gradient(left, #aea894 0%, #d1c7bb 47%, #aea894 100%);
  background-image: linear-gradient(to right, #aea894 0%, #d1c7bb 47%, #aea894 100%);
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 3.125%;
  width: 100%;
  height: 2px;
  background-color: #aea894;
}
.header .logo {
  margin: 0 auto;
  width: 22.96875%;
}
.header .menu {
  -moz-transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  display: none;
  position: absolute;
  top: 28.5%;
  right: 3.125%;
  width: 10.9375%;
}
.header .menu.is-active {
  display: block;
}
.header-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  margin: 25.3125% 0 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: scroll;
}

/*----------------------------------------------------------------------
7.	#content
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
8.	#main
----------------------------------------------------------------------*/
#main > .title {
  margin-top: -1.5625%;
}

.m-sub {
  margin-top: 21.875%;
}

/*----------------------------------------------------------------------
9.	#footer
----------------------------------------------------------------------*/
.footer {
  text-align: center;
  color: #fff;
}

.f-logo {
  margin: 8.59375% auto 5.46875%;
  width: 31.25%;
}

.copyright {
  padding: 3.125% 0;
  text-align: center;
  color: #696969;
}

/*----------------------------------------------------------------------
10.	original
----------------------------------------------------------------------*/
.index .lead-pic {
  margin-top: -3.125%;
}

.m-highest {
  padding: 0 6.25%;
}
.m-highest-title {
  margin-bottom: 3.125%;
}
.m-highest-specification {
  position: relative;
  margin-top: 3.75%;
}
.m-highest-specification-title::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
  background-image: url(../img/machine_specification_arrow.png);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.m-highest-specification-title.is-open::after {
  background-image: url(../img/machine_specification_arrow_a.png);
}
.m-highest-specification-contents {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 3% 3% 6%;
  width: 100%;
  background-color: #4f4f4f;
}
.m-highest-specification-contents .slide {
  margin-bottom: 3%;
}
.m-highest-specification-contents .slide .bx-wrapper {
  margin: 0 auto;
}
.m-highest-specification-contents .slide .bx-viewport {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  left: 0;
  border: 0;
}
.m-highest-specification-contents .slide .thum-list {
  *zoom: 1;
}
.m-highest-specification-contents .slide .thum-list:after {
  content: "";
  display: table;
  clear: both;
}
.m-highest-specification-contents .slide .thum-item {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin-top: 1.25%;
  margin-left: 1.25%;
  width: 19%;
}
.m-highest-specification-contents .slide .thum-item:first-child {
  margin-left: 0;
}
.m-highest-specification-contents .slide .thum-item:last-child {
  float: right;
}
.m-highest-specification-contents .slide .thum-item a {
  display: block;
  position: relative;
  width: 100%;
}
.m-highest-specification-contents .slide .thum-item a.active::before {
  content: '';
  display: block;
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 30%;
  background: url(../img/machine_specification_slide_arrow.png) center top no-repeat;
  background-size: auto 100%;
}
.m-highest-specification-contents .slide .thum-item a.active::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #ab8554;
  background-color: rgba(0, 0, 0, 0.4);
}
.m-highest-specification-contents .info-item {
  display: table;
  width: 100%;
  border-bottom: 1px solid #b4b4b4;
  table-layout: fixed;
}
.m-highest-specification-contents .info-item > * {
  display: table-cell;
  padding: 3%;
}
.m-highest-specification-contents .info-item:first-child {
  border-top: 1px solid #b4b4b4;
}
.m-highest-specification-contents .info-item-title {
  width: 27%;
  border-right: 1px solid #b4b4b4;
  vertical-align: middle;
  text-align: center;
  font-size: 2.2rem;
  color: #acabab;
}
.m-highest-specification-contents .info-item-text {
  width: 73%;
  line-height: 1.4166666667;
  font-size: 2.4rem;
  color: #fff;
}
.m-highest .note {
  display: block;
  margin-top: 1.7857142857%;
  line-height: 1.3;
  font-size: 2rem;
  color: #acabab;
}

.m-comparison-contents {
  padding-right: 1.5625%;
  padding-left: 1.5625%;
}
.m-comparison-contents table {
  width: 100%;
}
.m-comparison-contents thead th,
.m-comparison-contents thead td,
.m-comparison-contents tbody td {
  padding-right: 2%;
}
.m-comparison-contents thead td {
  width: 22%;
}
.m-comparison-contents tbody th,
.m-comparison-contents tbody td {
  padding-top: 1px;
  padding-bottom: 1px;
  border-top: 1px solid #696969;
}
.m-comparison-contents tbody th {
  text-align: center;
  line-height: 1.1666666667;
  font-size: 1.8rem;
  color: #fff;
}
.m-comparison-contents tbody tr:last-child td img {
  vertical-align: top;
}
.m-comparison .note {
  display: block;
  padding-left: 50%;
}

.m-function {
  position: relative;
}
.m-function .function-list {
  margin: -15% auto 40%;
  width: 80%;
}
.m-function .function-list::before {
  content: '';
  display: block;
  padding-bottom: 86%;
}
.m-function .function-item {
  width: 35%;
}
.m-function .function-item.roundabout-in-focus::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
  margin-top: 9em;
  width: 300%;
  line-height: 1.4166666667;
  font-size: 2.4rem;
  color: #acabab;
}
.m-function .function-item.roundabout-in-focus.function1::after {
  content: '肌への高分子誘導、血行促進などに働きかける特殊な電気パルスを交互に出力。指圧のような心地の良いタッピング感を実現しました（特許取得）。';
}
.m-function .function-item.roundabout-in-focus.function2::after {
  content: '電気パルスの力で、塗布するエッセンスの高分子成分をお肌に誘導、日常では取り入れることの難しい、コラーゲンやヒアルロン酸といった美容成分を補給します。';
}
.m-function .function-item.roundabout-in-focus.function3::after {
  content: '１秒間に９万回の交流電流を流し、筋肉収縮運動を行います。普段使わない筋肉を活性させることでフェイスラインを引き締め、美容成分を吸収しやすい環境にします。';
}
.m-function .function-item.roundabout-in-focus.function4::after {
  content: '中・高周波電流を用いて体内の有極性分子に回転運動を起こし、お肌を活発に動かすための熱（ジュール熱）を発生。乱れがちなターンオーバーの改善に期待できます。';
}
.m-function .function-item.roundabout-in-focus.function5::after {
  content: '作用の異なる３色の光を搭載。青は肌荒れ緩和、緑はお肌に透明感を、赤は弾力のあるお肌へ。効果と安全性は医療機関で認められており、安心してご使用いただけます。';
}
.m-function .function-item.roundabout-in-focus.function6::after {
  content: '心地良い振動で特殊パルスの体感をソフトにさせ、表情筋をほぐします。異なる２種類のバイブレーションをお好みで使い分け、お肌をリラックスさせることが可能です。';
}
.m-function .function-item.roundabout-in-focus.function7::after {
  content: '身体と心のリラクゼーションにアプローチする、ヒーリングサウンド10曲を搭載。さらに、microSDカードにお好みの音楽を追加するシステムも完備しました。';
}
.m-function .function-control {
  *zoom: 1;
  position: absolute;
  bottom: 9%;
  left: 0;
  width: 100%;
}
.m-function .function-control:after {
  content: "";
  display: table;
  clear: both;
}
.m-function .function-control .control-item {
  width: 4.5%;
}
.m-function .function-control .control-left {
  float: left;
  margin-left: 2%;
}
.m-function .function-control .control-right {
  float: right;
  margin-right: 2%;
}

.use .m-homeuse {
  padding-right: 6.25%;
  padding-left: 6.25%;
}
.use .m-homeuse-title {
  margin-bottom: 3.5714285714%;
}
.use .m-homeuse-text {
  line-height: 1.4166666667;
  font-size: 2.4rem;
}
.use .m-homeuse-pic {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: right;
  padding: 0 0 3% 3%;
  width: 50%;
}
.use .m-homeuse-box {
  margin-bottom: 3.5714285714%;
}
.use .m-homeuse-box-text {
  line-height: 1.3333333333;
  font-size: 2.4rem;
  padding-top: .5em;
}

/*# sourceMappingURL=machine.css.map */
