@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
----------------------------------------------------------------------*/
.m-qa {
  padding: 0 6.25%;
}
.m-qa-item {
  margin-top: 5.3571428571%;
  padding-left: .5em;
}
.m-qa-item-title, .m-qa-item-contents {
  padding-left: 1.5em;
  text-indent: -1.8em;
}
.m-qa-item-title {
  margin-bottom: .5em;
  line-height: 1.5;
  font-size: 2.4rem;
  color: #c14f46;
}
.m-qa-item-title::before {
  content: 'Q：';
  color: #acabab;
}
.m-qa-item-contents {
  line-height: 1.5;
  font-size: 2.4rem;
}
.m-qa-item-contents::before {
  content: 'A：';
}
.m-qa-item-contents-link {
  line-height: 1.5;
  font-size: 2.4rem;
  text-align: right;
}
.m-qa-item-contents-link a {
  text-decoration: none;
}
.m-qa-title {
  margin-bottom: 3.5714285714%;
}
.m-qa-box {
  margin-bottom: 8.9285714286%;
}
.m-qa-box.skin {
  margin-top: 0;
}

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