@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
----------------------------------------------------------------------*/
.lead-note {
  margin: 0 0 6.25%;
  padding: 0 6.25%;
  line-height: 1.3;
  font-size: 2rem;
}
.lead-link {
  position: relative;
  margin-bottom: 12.5%;
  padding: 0 6.25%;
}
.lead-link::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 100%;
  height: 12%;
  background: url(../img/essence_arrow_bottom.png) bottom center no-repeat;
  background-size: auto 100%;
}
.lead-link.is-open::before {
  background-image: url(../img/essence_arrow_top.png);
}

.m-essence-text {
  margin: 3.125% 0 12.5%;
  padding: 0 6.25%;
  line-height: 1.5;
  font-size: 2.4rem;
}
.m-essence-text span {
  vertical-align: top;
  font-size: .6em;
}
.m-essence-text small {
  display: block;
  padding-top: .5em;
  text-align: right;
  font-size: 1.8rem;
}

.m-wish-item {
  margin-top: 9.375%;
}
.m-wish-item-title {
  margin-bottom: 7.1428571429%;
  padding: 0 6.25%;
}
.m-wish-item-contents {
  padding: 0 6.25%;
}
.m-wish-item.wish1 .m-wish-item-title {
  margin-bottom: 0;
}
.m-wish-item.wish1 .m-wish-item-contents {
  padding: 0;
}
.m-wish-item.wish2 {
  margin-top: -21.875%;
}
.m-wish .component {
  margin-top: 7.8125%;
  padding: 0 6.25%;
  line-height: 1.8888888889;
  font-size: 1.8rem;
}
.m-wish .component-title {
  margin-bottom: 3.125%;
}

.m-prescription {
  margin-top: 7.8125%;
  padding: 0 6.25%;
}
.m-prescription-title {
  margin-bottom: 3.125%;
}

.m-facial {
  margin-top: 7.8125%;
  padding: 0 6.25%;
}
.m-facial-title {
  margin-bottom: 3.125%;
}
.m-facial-text {
  line-height: 1.8888888889;
  font-size: 1.8rem;
}
.m-facial-pic {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: right;
  padding: 0 0 3% 3%;
  width: 50%;
}
.m-facial .m-contents-inner {
  *zoom: 1;
}
.m-facial .m-contents-inner:after {
  content: "";
  display: table;
  clear: both;
}

.m-other {
  margin-top: 7.8125%;
}
.m-other-title {
  padding: 0 6.25%;
}
.m-other .other-essence-title {
  position: relative;
  padding: 0 6.25%;
}
.m-other .other-essence-title::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 100%;
  height: 12%;
  background: url(../img/essence_arrow_bottom.png) bottom center no-repeat;
  background-size: auto 100%;
}
.m-other .other-essence-title.is-open::before {
  background-image: url(../img/essence_arrow_top.png);
}
.m-other .other-essence-contents {
  display: none;
  padding-top: 7.1428571429%;
}
.m-other .other-essence-pic {
  margin-bottom: 5.3571428571%;
}
.m-other .other-essence-text {
  padding: 0 6.25%;
  line-height: 1.5;
  font-size: 2.4rem;
}
.m-other .queen {
  margin-top: -3.125%;
}
.m-other .body {
  margin-top: 3.125%;
}

.method .m-flow {
  padding: 0 6.25%;
}
.method .m-flow-item {
  margin-top: .4em;
  line-height: 1.5;
  font-size: 2.4rem;
}
.method .m-flow-item:first-child {
  margin-top: 0;
}
.method .m-flow .note-list {
  margin-top: 1em;
}
.method .m-flow .note-item {
  margin-top: .2em;
  line-height: 1.3;
  font-size: 2rem;
}
.method .m-flow .note-item:first-child {
  margin-top: 0;
}

.m-howto {
  padding: 0 6.25%;
}
.m-howto-title {
  margin-bottom: 3.5714285714%;
}
.m-howto-tab-list {
  *zoom: 1;
}
.m-howto-tab-list:after {
  content: "";
  display: table;
  clear: both;
}
.m-howto-tab-item {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
}
.m-howto-tab-item span {
  display: block;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.m-howto-tab-item.is-active img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.m-howto-list {
  margin-top: 0.8928571429%;
}
.m-howto.face {
  margin-top: 7.1428571429%;
}
.m-howto.face .tab-item {
  width: 33.3333333333%;
}
.m-howto.face .tab-item:nth-child(1) {
  padding-right: 1%;
}
.m-howto.face .tab-item:nth-child(2) {
  padding-right: .5%;
  padding-left: .5%;
}
.m-howto.face .tab-item:nth-child(3) {
  padding-left: 1%;
}
.m-howto.face .face span {
  background-image: url("../img/method_tab_face_a.gif");
}
.m-howto.face .eye span {
  background-image: url("../img/method_tab_eye_a.gif");
}
.m-howto.face .neck span {
  background-image: url("../img/method_tab_neck_a.gif");
}
.m-howto .bx-viewport {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  left: 0;
  border: 0;
  background-color: #000;
}
.m-howto .bx-pager {
  bottom: 0;
  padding: 0;
  padding-bottom: 3.5714285714%;
}
.m-howto .bx-pager.bx-default-pager a.active {
  background: #fff;
}
.m-howto .bx-controls-direction a {
  display: block;
  top: 0;
  height: 100%;
  width: 6%;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 100% auto;
}
.m-howto .bx-next {
  right: 2%;
  background-image: url(../img/method_slide_arrow_right.png);
}
.m-howto .bx-next:hover {
  background-position: left center;
}
.m-howto .bx-prev {
  left: 2%;
  background-image: url(../img/method_slide_arrow_left.png);
}
.m-howto .bx-prev:hover {
  background-position: left center;
}
.m-howto.body .tab-item {
  padding: 0 .5%;
  width: 20%;
}
.m-howto.body .upperarm span {
  background-image: url("../img/method_tab_upperarm_a.gif");
}
.m-howto.body .waist span {
  background-image: url("../img/method_tab_waist_a.gif");
}
.m-howto.body .hip span {
  background-image: url("../img/method_tab_hip_a.gif");
}
.m-howto.body .thighs span {
  background-image: url("../img/method_tab_thighs_a.gif");
}
.m-howto.body .calves span {
  background-image: url("../img/method_tab_calves_a.gif");
}

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