@charset "UTF-8";
/* line 17, ../../../../../../../../Ruby27-x64/lib/ruby/gems/2.7.0/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* line 22, ../../../../../../../../Ruby27-x64/lib/ruby/gems/2.7.0/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, ../../../../../../../../Ruby27-x64/lib/ruby/gems/2.7.0/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, ../../../../../../../../Ruby27-x64/lib/ruby/gems/2.7.0/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, ../../../../../../../../Ruby27-x64/lib/ruby/gems/2.7.0/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, ../../../../../../../../Ruby27-x64/lib/ruby/gems/2.7.0/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}
/* line 103, ../../../../../../../../Ruby27-x64/lib/ruby/gems/2.7.0/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, ../../../../../../../../Ruby27-x64/lib/ruby/gems/2.7.0/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, ../../../../../../../../Ruby27-x64/lib/ruby/gems/2.7.0/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/*============================
mixin
============================*/
/*
* keyframes animationの定義
* ※_anim.scssに定義
*/
/*
* keyframesで定義したkeyframes animationの設定
* @include animation(animation_name $time linear infinite);
*/
/*
* css animationの時間とeasing指定
*/
/*
* position:absoluteで縦横中央ぞろえ
*/
/*
* 左右に均等のマージンをとった幅指定
*/
/*============================
easing
============================*/
/*============================
animation
============================*/
/*============================
mixin
============================*/
/*
* keyframes animationの定義
* ※_anim.scssに定義
*/
/*
* keyframesで定義したkeyframes animationの設定
* @include animation(animation_name $time linear infinite);
*/
/*
* css animationの時間とeasing指定
*/
/*
* position:absoluteで縦横中央ぞろえ
*/
/*
* 左右に均等のマージンをとった幅指定
*/
/*============================
easing
============================*/
/*============================
animation
============================*/
/*
@include animation(rotate 10s linear infinite);
*/
@-webkit-keyframes loading {
  /* line 9, ../../../src/cmn/css/_anim.scss */
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  /* line 12, ../../../src/cmn/css/_anim.scss */
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes loading {
  /* line 9, ../../../src/cmn/css/_anim.scss */
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  /* line 12, ../../../src/cmn/css/_anim.scss */
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loading {
  /* line 9, ../../../src/cmn/css/_anim.scss */
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  /* line 12, ../../../src/cmn/css/_anim.scss */
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes scroll_a {
  /* line 18, ../../../src/cmn/css/_anim.scss */
  0% {
    opacity: 0;
    transform: translateY(-80%);
  }

  /* line 22, ../../../src/cmn/css/_anim.scss */
  15% {
    opacity: 1;
  }

  /* line 25, ../../../src/cmn/css/_anim.scss */
  80% {
    opacity: 1;
  }

  /* line 28, ../../../src/cmn/css/_anim.scss */
  100% {
    opacity: 0;
    transform: translateY(0%);
  }
}

@-moz-keyframes scroll_a {
  /* line 18, ../../../src/cmn/css/_anim.scss */
  0% {
    opacity: 0;
    transform: translateY(-80%);
  }

  /* line 22, ../../../src/cmn/css/_anim.scss */
  15% {
    opacity: 1;
  }

  /* line 25, ../../../src/cmn/css/_anim.scss */
  80% {
    opacity: 1;
  }

  /* line 28, ../../../src/cmn/css/_anim.scss */
  100% {
    opacity: 0;
    transform: translateY(0%);
  }
}

@keyframes scroll_a {
  /* line 18, ../../../src/cmn/css/_anim.scss */
  0% {
    opacity: 0;
    transform: translateY(-80%);
  }

  /* line 22, ../../../src/cmn/css/_anim.scss */
  15% {
    opacity: 1;
  }

  /* line 25, ../../../src/cmn/css/_anim.scss */
  80% {
    opacity: 1;
  }

  /* line 28, ../../../src/cmn/css/_anim.scss */
  100% {
    opacity: 0;
    transform: translateY(0%);
  }
}

/*color*/
/*anim*/
/*============================
mixin
============================*/
/*
* keyframes animationの定義
* ※_anim.scssに定義
*/
/*
* keyframesで定義したkeyframes animationの設定
* @include animation(animation_name $time linear infinite);
*/
/*
* css animationの時間とeasing指定
*/
/*
* position:absoluteで縦横中央ぞろえ
*/
/*
* 左右に均等のマージンをとった幅指定
*/
/*============================
easing
============================*/
/*============================
animation
============================*/
/* line 3, ../../../src/cmn/css/_all.scss */
body {
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック", YuGothic, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 400;
  color: #6e5740;
  position: relative;
  width: 100%;
  background: #f3e9e1;
  font-feature-settings: "palt";
  /***********************************
  * debug
  ************************************/
}
/* line 10, ../../../src/cmn/css/_all.scss */
body ::selection {
  background: #9f9183;
}
/* line 11, ../../../src/cmn/css/_all.scss */
body ::-moz-selection {
  background: #9f9183;
}
/* line 12, ../../../src/cmn/css/_all.scss */
body img::selection {
  background: none;
}
/* line 13, ../../../src/cmn/css/_all.scss */
body img::-moz-selection {
  background: none;
}
/* line 16, ../../../src/cmn/css/_all.scss */
body #loader {
  width: 100%;
  height: 100%;
  float: left;
  position: fixed;
  z-index: 5000;
  text-align: center;
}
/* line 25, ../../../src/cmn/css/_all.scss */
body #wrapper {
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #f3e9e1;
}
/* line 31, ../../../src/cmn/css/_all.scss */
body #wrapper #main {
  width: 100%;
  position: relative;
  overflow: hidden;
}
/* line 36, ../../../src/cmn/css/_all.scss */
body #wrapper #main section {
  width: 100%;
  position: relative;
  overflow: hidden;
}
/* line 43, ../../../src/cmn/css/_all.scss */
body #wrapper #footer {
  width: 100%;
  float: left;
  text-align: center;
}
/* line 52, ../../../src/cmn/css/_all.scss */
body a {
  text-decoration: none;
}
/* line 56, ../../../src/cmn/css/_all.scss */
body .hide {
  display: none !important;
}
/* line 60, ../../../src/cmn/css/_all.scss */
body .banish {
  visibility: hidden !important;
}
/* line 64, ../../../src/cmn/css/_all.scss */
body .show {
  -webkit-transform: translate(0, 0%);
  -moz-transform: translate(0, 0%);
  -ms-transform: translate(0, 0%);
  -o-transform: translate(0, 0%);
  transform: translate(0, 0%);
}
/* line 68, ../../../src/cmn/css/_all.scss */
body .area {
  width: 100%;
  float: left;
  position: relative;
}
/* line 74, ../../../src/cmn/css/_all.scss */
body .box {
  text-align: center;
}
/* line 82, ../../../src/cmn/css/_all.scss */
body .iScrollIndicator {
  border: none !important;
}
/* line 83, ../../../src/cmn/css/_all.scss */
body .iScrollVerticalScrollbar {
  width: 6px !important;
}
/* line 84, ../../../src/cmn/css/_all.scss */
body .iScrollHorizontalScrollbar {
  height: 2px !important;
}
/* line 85, ../../../src/cmn/css/_all.scss */
body .iScrollIndicator {
  background: #6e5740 !important;
}
/* line 90, ../../../src/cmn/css/_all.scss */
body #stats {
  z-index: 5000;
}

/*size*/
@media screen and (min-width: 1000px) {
  /* line 2, ../../../src/cmn/css/_content.scss */
  body .pc_view {
    display: none;
  }
  /* line 3, ../../../src/cmn/css/_content.scss */
  body .sp_view {
    display: block;
  }
  /* line 4, ../../../src/cmn/css/_content.scss */
  body .pc_view_i {
    display: none;
  }
  /* line 5, ../../../src/cmn/css/_content.scss */
  body .sp_view_i {
    display: inline;
  }
  /* line 7, ../../../src/cmn/css/_content.scss */
  body img {
    width: 100%;
  }
  /* line 11, ../../../src/cmn/css/_content.scss */
  body .inner {
    position: relative;
  }
  /* line 15, ../../../src/cmn/css/_content.scss */
  body #loader {
    background: #472a0b url(../img/loader_bg.jpg) no-repeat center center;
    background-size: cover;
  }
  /* line 18, ../../../src/cmn/css/_content.scss */
  body #loader img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 161px;
  }
  /* line 27, ../../../src/cmn/css/_content.scss */
  body .header {
    width: 100%;
    float: left;
    position: fixed;
    box-sizing: border-box;
    z-index: 999;
    background: url(../img/bg_header.svg) no-repeat top center;
    background-size: cover;
    height: 62px;
  }
  /* line 36, ../../../src/cmn/css/_content.scss */
  body .header .header_bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110vh;
    background: rgba(74, 43, 10, 0.6);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  }
  /* line 49, ../../../src/cmn/css/_content.scss */
  body .header #header_scroll, body .header .header_scroll {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    overflow: hidden;
    background: url(../img/bg_menu.svg) no-repeat top left;
    background-size: cover;
    width: 265px;
    height: 100vh;
    transform: translateX(100%);
    display: flex;
    align-items: center;
    align-content: center;
  }
  /* line 65, ../../../src/cmn/css/_content.scss */
  body .header #header_scroll:before, body .header .header_scroll:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/cover.png) repeat;
    background-size: 100% auto;
    pointer-events: none;
    z-index: 100;
    position: absolute;
  }
  /* line 79, ../../../src/cmn/css/_content.scss */
  body .header #header_scroll .area, body .header .header_scroll .area {
    box-sizing: border-box;
    padding: 0 25px;
  }
  /* line 82, ../../../src/cmn/css/_content.scss */
  body .header #header_scroll .area .logo, body .header .header_scroll .area .logo {
    margin-bottom: 61px;
  }
  /* line 94, ../../../src/cmn/css/_content.scss */
  body .header.open .header_bg {
    opacity: 1;
  }
  /* line 99, ../../../src/cmn/css/_content.scss */
  body .header.open .ctrl img:nth-of-type(1) {
    display: none;
  }
  /* line 102, ../../../src/cmn/css/_content.scss */
  body .header.open .ctrl img:nth-of-type(2) {
    display: block;
  }
  /* line 106, ../../../src/cmn/css/_content.scss */
  body .header.open .ctrl span {
    background: white;
  }
  /* line 110, ../../../src/cmn/css/_content.scss */
  body .header.open .ctrl span:before {
    top: 2vw;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  /* line 114, ../../../src/cmn/css/_content.scss */
  body .header.open .ctrl span:after {
    top: 2vw;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  /* line 121, ../../../src/cmn/css/_content.scss */
  body .header.open .ctrl div img:nth-child(1) {
    display: none;
  }
  /* line 122, ../../../src/cmn/css/_content.scss */
  body .header.open .ctrl div img:nth-child(2) {
    display: block;
  }
  /* line 126, ../../../src/cmn/css/_content.scss */
  body .header.open #header_scroll {
    transform: translateX(0%);
  }
  /* line 130, ../../../src/cmn/css/_content.scss */
  body .header .inner {
    height: 100%;
    position: relative;
  }
  /* line 133, ../../../src/cmn/css/_content.scss */
  body .header .inner:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/cover.png) repeat;
    background-size: 100% auto;
    pointer-events: none;
    z-index: 100;
    position: absolute;
  }
  /* line 148, ../../../src/cmn/css/_content.scss */
  body .header .logo {
    width: 86px;
    position: absolute;
    top: 15px;
    left: 17px;
  }
  /* line 154, ../../../src/cmn/css/_content.scss */
  body .header .ctrl {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 19px;
    right: 20px;
    z-index: 101;
  }
  /* line 161, ../../../src/cmn/css/_content.scss */
  body .header .ctrl span {
    width: 6vw;
    height: 0.65vw;
    background: #6e5740;
    display: block;
    position: relative;
    margin: 0 1vw;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    transition-timing-function: cubic-bezier(0.43, 0.12, 0.35, 0.98);
  }
  /* line 169, ../../../src/cmn/css/_content.scss */
  body .header .ctrl span:before, body .header .ctrl span:after {
    content: " ";
    width: 6vw;
    height: 0.65vw;
    background: #6e5740;
    display: block;
    position: absolute;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    transition-timing-function: cubic-bezier(0.43, 0.12, 0.35, 0.98);
  }
  /* line 178, ../../../src/cmn/css/_content.scss */
  body .header .ctrl span:before {
    top: 2vw;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  /* line 182, ../../../src/cmn/css/_content.scss */
  body .header .ctrl span:after {
    top: 4vw;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  /* line 187, ../../../src/cmn/css/_content.scss */
  body .header .ctrl div {
    width: 100%;
    float: left;
    margin: 6vw 0 0 0;
  }
  /* line 191, ../../../src/cmn/css/_content.scss */
  body .header .ctrl div img {
    position: absolute;
  }
  /* line 193, ../../../src/cmn/css/_content.scss */
  body .header .ctrl div img:nth-child(1) {
    display: block;
  }
  /* line 194, ../../../src/cmn/css/_content.scss */
  body .header .ctrl div img:nth-child(2) {
    display: none;
  }
  /* line 198, ../../../src/cmn/css/_content.scss */
  body .header .ctrl img:nth-of-type(2) {
    display: none;
  }
  /* line 203, ../../../src/cmn/css/_content.scss */
  body .header p {
    text-align: center;
    margin-bottom: 61px;
  }
  /* line 206, ../../../src/cmn/css/_content.scss */
  body .header p img {
    width: 201px;
  }
  /* line 210, ../../../src/cmn/css/_content.scss */
  body .header nav {
    margin-bottom: 55px;
  }
  /* line 212, ../../../src/cmn/css/_content.scss */
  body .header nav ul {
    margin: 0 auto;
    width: 88%;
  }
  /* line 215, ../../../src/cmn/css/_content.scss */
  body .header nav ul li {
    margin-bottom: 45px;
    width: 100%;
  }
  /* line 218, ../../../src/cmn/css/_content.scss */
  body .header nav ul li a {
    display: inline-block;
    width: 128px;
  }
  /* line 221, ../../../src/cmn/css/_content.scss */
  body .header nav ul li a.ehon {
    width: 134px;
  }
  /* line 228, ../../../src/cmn/css/_content.scss */
  body .header .btn_tw {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    margin: 0 0 0 15px;
  }
  /* line 234, ../../../src/cmn/css/_content.scss */
  body .header .btn_tw:before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: url(../img/icon_tw.svg) no-repeat center center;
    background-size: contain;
    margin: 0 4px 0 0;
  }
  /* line 243, ../../../src/cmn/css/_content.scss */
  body .header .btn_tw span {
    font-size: 14px;
    color: #4E3F09;
    font-weight: 700;
    display: inline-block;
    position: relative;
    margin: 0 0 0 4px;
    line-height: 1;
    padding-bottom: 5px;
  }
  /* line 252, ../../../src/cmn/css/_content.scss */
  body .header .btn_tw span small {
    color: #81795D;
    font-size: 10px;
    line-height: 2;
    display: block;
    margin-bottom: 3px;
  }
  /* line 262, ../../../src/cmn/css/_content.scss */
  body #main {
    padding-top: 62px;
  }
  /* line 265, ../../../src/cmn/css/_content.scss */
  body .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/cover.png) repeat;
    background-size: 100% auto;
    pointer-events: none;
    z-index: 100;
  }
  /* line 276, ../../../src/cmn/css/_content.scss */
  body #footer {
    padding-top: 59px;
    padding-bottom: 59px;
    background: url(../img/bg_footer.svg) no-repeat top center;
    background-size: cover;
  }
  /* line 281, ../../../src/cmn/css/_content.scss */
  body #footer .logo {
    text-align: center;
    margin-bottom: 14px;
  }
  /* line 284, ../../../src/cmn/css/_content.scss */
  body #footer .logo img {
    width: 201px;
  }
  /* line 288, ../../../src/cmn/css/_content.scss */
  body #footer small {
    font-size: 12px;
    line-height: 1.2;
    display: block;
    text-align: center;
    color: #C3BDB7;
  }

  /* line 6, ../../../src/cmn/css/_pc.scss */
  body {
    background: #f3e9e1;
  }
  /* line 9, ../../../src/cmn/css/_pc.scss */
  body .pc_view {
    display: block;
  }
  /* line 10, ../../../src/cmn/css/_pc.scss */
  body .sp_view {
    display: none;
  }
  /* line 11, ../../../src/cmn/css/_pc.scss */
  body .pc_view_i {
    display: inline;
  }
  /* line 12, ../../../src/cmn/css/_pc.scss */
  body .sp_view_i {
    display: none;
  }
  /* line 14, ../../../src/cmn/css/_pc.scss */
  body img {
    width: 100%;
  }
  /* line 18, ../../../src/cmn/css/_pc.scss */
  body .inner {
    width: 1040px;
    margin: auto;
    position: relative;
  }
  /* line 24, ../../../src/cmn/css/_pc.scss */
  body #loader {
    background: #472a0b url(../img/loader_bg_pc.jpg) no-repeat center center;
    background-size: cover;
  }
  /* line 27, ../../../src/cmn/css/_pc.scss */
  body #loader img {
    transform: translate(-50%, -50%);
    width: 190px;
  }
  /* line 32, ../../../src/cmn/css/_pc.scss */
  body .header {
    background: none;
  }
  /* line 34, ../../../src/cmn/css/_pc.scss */
  body .header .logo {
    top: 30px;
    left: 30px;
    width: 108px;
    height: 41px;
  }
  /* line 40, ../../../src/cmn/css/_pc.scss */
  body .header .inner {
    width: 100%;
    margin: 0 auto;
  }
  /* line 43, ../../../src/cmn/css/_pc.scss */
  body .header .inner:before {
    display: none;
  }
  /* line 48, ../../../src/cmn/css/_pc.scss */
  body .header p img {
    width: 100%;
  }
  /* line 52, ../../../src/cmn/css/_pc.scss */
  body .header .area {
    width: 266px;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 96px;
  }
  /* line 60, ../../../src/cmn/css/_pc.scss */
  body .header nav ul {
    margin: 0;
  }
  /* line 63, ../../../src/cmn/css/_pc.scss */
  body .header nav ul li a {
    width: 173px;
    opacity: 0.4;
  }
  /* line 66, ../../../src/cmn/css/_pc.scss */
  body .header nav ul li a.ehon {
    width: 181px;
  }
  /* line 69, ../../../src/cmn/css/_pc.scss */
  body .header nav ul li a.active {
    opacity: 1;
  }
  /* line 72, ../../../src/cmn/css/_pc.scss */
  body .header nav ul li a:hover {
    opacity: 1;
  }
  /* line 81, ../../../src/cmn/css/_pc.scss */
  body #footer {
    background: none;
  }
  /* line 84, ../../../src/cmn/css/_pc.scss */
  body .cover {
    background-size: 375px auto;
  }
  /* line 87, ../../../src/cmn/css/_pc.scss */
  body .bar_bg {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 1366px;
    background: url(../img/bg_pc.jpg) repeat-y top center;
  }
}
@media screen and (min-width: 999px) and (max-width: 1200px) {
  /* line 100, ../../../src/cmn/css/_pc.scss */
  body .header .area {
    left: 9px;
    transform: scale(0.85) translateY(-50%);
  }
}
/*size*/
@media screen and (max-width: 999px) {
  /* line 4, ../../../src/cmn/css/_sp.scss */
  body {
    font-size: 3vw;
  }

  /* line 2, ../../../src/cmn/css/_content.scss */
  body .pc_view {
    display: none;
  }
  /* line 3, ../../../src/cmn/css/_content.scss */
  body .sp_view {
    display: block;
  }
  /* line 4, ../../../src/cmn/css/_content.scss */
  body .pc_view_i {
    display: none;
  }
  /* line 5, ../../../src/cmn/css/_content.scss */
  body .sp_view_i {
    display: inline;
  }
  /* line 7, ../../../src/cmn/css/_content.scss */
  body img {
    width: 100%;
  }
  /* line 11, ../../../src/cmn/css/_content.scss */
  body .inner {
    position: relative;
  }
  /* line 15, ../../../src/cmn/css/_content.scss */
  body #loader {
    background: #472a0b url(../img/loader_bg.jpg) no-repeat center center;
    background-size: cover;
  }
  /* line 18, ../../../src/cmn/css/_content.scss */
  body #loader img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 42.93333vw;
  }
  /* line 27, ../../../src/cmn/css/_content.scss */
  body .header {
    width: 100%;
    float: left;
    position: fixed;
    box-sizing: border-box;
    z-index: 999;
    background: url(../img/bg_header.svg) no-repeat top center;
    background-size: cover;
    height: 16.53333vw;
  }
  /* line 36, ../../../src/cmn/css/_content.scss */
  body .header .header_bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110vh;
    background: rgba(74, 43, 10, 0.6);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  }
  /* line 49, ../../../src/cmn/css/_content.scss */
  body .header #header_scroll, body .header .header_scroll {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    overflow: hidden;
    background: url(../img/bg_menu.svg) no-repeat top left;
    background-size: cover;
    width: 70.66667vw;
    height: 100vh;
    transform: translateX(100%);
    display: flex;
    align-items: center;
    align-content: center;
  }
  /* line 65, ../../../src/cmn/css/_content.scss */
  body .header #header_scroll:before, body .header .header_scroll:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/cover.png) repeat;
    background-size: 100% auto;
    pointer-events: none;
    z-index: 100;
    position: absolute;
  }
  /* line 79, ../../../src/cmn/css/_content.scss */
  body .header #header_scroll .area, body .header .header_scroll .area {
    box-sizing: border-box;
    padding: 0 6.66667vw;
  }
  /* line 82, ../../../src/cmn/css/_content.scss */
  body .header #header_scroll .area .logo, body .header .header_scroll .area .logo {
    margin-bottom: 16.26667vw;
  }
  /* line 94, ../../../src/cmn/css/_content.scss */
  body .header.open .header_bg {
    opacity: 1;
  }
  /* line 99, ../../../src/cmn/css/_content.scss */
  body .header.open .ctrl img:nth-of-type(1) {
    display: none;
  }
  /* line 102, ../../../src/cmn/css/_content.scss */
  body .header.open .ctrl img:nth-of-type(2) {
    display: block;
  }
  /* line 106, ../../../src/cmn/css/_content.scss */
  body .header.open .ctrl span {
    background: white;
  }
  /* line 110, ../../../src/cmn/css/_content.scss */
  body .header.open .ctrl span:before {
    top: 2vw;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  /* line 114, ../../../src/cmn/css/_content.scss */
  body .header.open .ctrl span:after {
    top: 2vw;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  /* line 121, ../../../src/cmn/css/_content.scss */
  body .header.open .ctrl div img:nth-child(1) {
    display: none;
  }
  /* line 122, ../../../src/cmn/css/_content.scss */
  body .header.open .ctrl div img:nth-child(2) {
    display: block;
  }
  /* line 126, ../../../src/cmn/css/_content.scss */
  body .header.open #header_scroll {
    transform: translateX(0%);
  }
  /* line 130, ../../../src/cmn/css/_content.scss */
  body .header .inner {
    height: 100%;
    position: relative;
  }
  /* line 133, ../../../src/cmn/css/_content.scss */
  body .header .inner:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/cover.png) repeat;
    background-size: 100% auto;
    pointer-events: none;
    z-index: 100;
    position: absolute;
  }
  /* line 148, ../../../src/cmn/css/_content.scss */
  body .header .logo {
    width: 22.93333vw;
    position: absolute;
    top: 4vw;
    left: 4.53333vw;
  }
  /* line 154, ../../../src/cmn/css/_content.scss */
  body .header .ctrl {
    position: absolute;
    width: 8vw;
    height: 8vw;
    top: 5.06667vw;
    right: 5.33333vw;
    z-index: 101;
  }
  /* line 161, ../../../src/cmn/css/_content.scss */
  body .header .ctrl span {
    width: 6vw;
    height: 0.65vw;
    background: #6e5740;
    display: block;
    position: relative;
    margin: 0 1vw;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    transition-timing-function: cubic-bezier(0.43, 0.12, 0.35, 0.98);
  }
  /* line 169, ../../../src/cmn/css/_content.scss */
  body .header .ctrl span:before, body .header .ctrl span:after {
    content: " ";
    width: 6vw;
    height: 0.65vw;
    background: #6e5740;
    display: block;
    position: absolute;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    transition-timing-function: cubic-bezier(0.43, 0.12, 0.35, 0.98);
  }
  /* line 178, ../../../src/cmn/css/_content.scss */
  body .header .ctrl span:before {
    top: 2vw;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  /* line 182, ../../../src/cmn/css/_content.scss */
  body .header .ctrl span:after {
    top: 4vw;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  /* line 187, ../../../src/cmn/css/_content.scss */
  body .header .ctrl div {
    width: 100%;
    float: left;
    margin: 6vw 0 0 0;
  }
  /* line 191, ../../../src/cmn/css/_content.scss */
  body .header .ctrl div img {
    position: absolute;
  }
  /* line 193, ../../../src/cmn/css/_content.scss */
  body .header .ctrl div img:nth-child(1) {
    display: block;
  }
  /* line 194, ../../../src/cmn/css/_content.scss */
  body .header .ctrl div img:nth-child(2) {
    display: none;
  }
  /* line 198, ../../../src/cmn/css/_content.scss */
  body .header .ctrl img:nth-of-type(2) {
    display: none;
  }
  /* line 203, ../../../src/cmn/css/_content.scss */
  body .header p {
    text-align: center;
    margin-bottom: 16.26667vw;
  }
  /* line 206, ../../../src/cmn/css/_content.scss */
  body .header p img {
    width: 53.6vw;
  }
  /* line 210, ../../../src/cmn/css/_content.scss */
  body .header nav {
    margin-bottom: 14.66667vw;
  }
  /* line 212, ../../../src/cmn/css/_content.scss */
  body .header nav ul {
    margin: 0 auto;
    width: 88%;
  }
  /* line 215, ../../../src/cmn/css/_content.scss */
  body .header nav ul li {
    margin-bottom: 12vw;
    width: 100%;
  }
  /* line 218, ../../../src/cmn/css/_content.scss */
  body .header nav ul li a {
    display: inline-block;
    width: 34.13333vw;
  }
  /* line 221, ../../../src/cmn/css/_content.scss */
  body .header nav ul li a.ehon {
    width: 35.73333vw;
  }
  /* line 228, ../../../src/cmn/css/_content.scss */
  body .header .btn_tw {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    margin: 0 0 0 4vw;
  }
  /* line 234, ../../../src/cmn/css/_content.scss */
  body .header .btn_tw:before {
    content: "";
    display: block;
    width: 10.66667vw;
    height: 10.66667vw;
    background: url(../img/icon_tw.svg) no-repeat center center;
    background-size: contain;
    margin: 0 1.06667vw 0 0;
  }
  /* line 243, ../../../src/cmn/css/_content.scss */
  body .header .btn_tw span {
    font-size: 3.73333vw;
    color: #4E3F09;
    font-weight: 700;
    display: inline-block;
    position: relative;
    margin: 0 0 0 1.06667vw;
    line-height: 1;
    padding-bottom: 1.33333vw;
  }
  /* line 252, ../../../src/cmn/css/_content.scss */
  body .header .btn_tw span small {
    color: #81795D;
    font-size: 2.66667vw;
    line-height: 2;
    display: block;
    margin-bottom: 0.8vw;
  }
  /* line 262, ../../../src/cmn/css/_content.scss */
  body #main {
    padding-top: 16.53333vw;
  }
  /* line 265, ../../../src/cmn/css/_content.scss */
  body .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/cover.png) repeat;
    background-size: 100% auto;
    pointer-events: none;
    z-index: 100;
  }
  /* line 276, ../../../src/cmn/css/_content.scss */
  body #footer {
    padding-top: 15.73333vw;
    padding-bottom: 15.73333vw;
    background: url(../img/bg_footer.svg) no-repeat top center;
    background-size: cover;
  }
  /* line 281, ../../../src/cmn/css/_content.scss */
  body #footer .logo {
    text-align: center;
    margin-bottom: 3.73333vw;
  }
  /* line 284, ../../../src/cmn/css/_content.scss */
  body #footer .logo img {
    width: 53.6vw;
  }
  /* line 288, ../../../src/cmn/css/_content.scss */
  body #footer small {
    font-size: 3.2vw;
    line-height: 1.2;
    display: block;
    text-align: center;
    color: #C3BDB7;
  }
}
