/* common */
html {
  color: #000;
  background: #FFF;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 10px;
}

body {
  max-height: 100%;
  background: #fff;  
  margin: 0;
  padding: 0;  
}

div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
  line-height: 1.2;
}

p {
  line-height: 1.6;
}

a {
  text-decoration: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

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

input, textarea, select {
  *font-size: 100%;
}

legend {
  color: #000;
}

article, aside, audio, bb, canvas, datagrid, datalist, details, dialog, eventsource, figure, footer, header, hgroup, mark, menu, meter, nav, output, progress, section, time, figure, video {
  display: block;
  margin: 0;
  padding: 0;
}

#wrapper {
  font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 1px;
  position: relative;
  color: #595858;
}

.sp {
  display: none;
}

.flex {
  display: -webkit-box;
  /*Android4.3*/
  display: -moz-box;
  /*Firefox21*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
}

.between {
  -webkit-box-pack: justify;
  /*Android4.3*/
  -moz-box-pack: justify;
  /*Firefox21*/
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-justify-content: space-between;
  /*PC-Safari,iOS8.4*/
  justify-content: space-between;
}

.vertical {
  -webkit-align-items: center;
  /* 縦方向中央揃え（Safari用） */
  align-items: center;
  /* 縦方向中央揃え */
}

.wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.center {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -ms-flex-box: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.tc,
.tr {
  text-align: center
}

.full {
  width: 100%;
  height: 100vh;
}

@media only screen and (max-width: 1000px) {
  .full {
    width: 100%;
    height: 80vh;
  }
}
  


.inner {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 1000px;
  max-width: 100%;
}

.content {
  padding-top: 60px;
  padding-bottom: 60px;
}

.text-box p + p {
  margin-top: 15px;
}

.btn {
  padding: 10px;
  display: block;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn:hover {
  background: #AF9C60;
}

.btn-about {
  padding: 10px;
  display: block;
  border: 1px solid #AF9C60;
  color: #AF9C60;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn-about:hover {
  background: #fff;
}


.bg-grey {
  background: #eee;
}

.ttl-h2 {
  margin-bottom: 15px;
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #AF9C60;
}

.ttl-caption {
  margin-bottom: 20px;
  text-align: center;
}

.cf:after,
.pageMenu ul:after,
.post:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.cf {
  min-height: 1px;
}

@media only screen and (max-width: 1000px) {
  html {
    font-size: 1vw;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 1.8vw;
  }

  .pc {
    display: none;
  }

  .sp, .flex {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 2vw;
  }

  #wrapper {
    font-size: 18px;
    font-size: 1.8rem;
  }  
}


/* header */
.header-fix {
  position: fixed;
  z-index: 100;
  mix-blend-mode: exclusion;
}

.header-leftTop {
  top: 30px;
  left: 30px;
}

.header-rightTop {
  top: 20px;
  right: 40px;
}

.header-leftBot {
  left: 30px;
  bottom: 30px;
}

.header-rightBot {
  right: 30px;
  bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .header-leftTop,
  .header-rightTop {
    top: 20px;
  }

  .header-leftTop {
    left: 20px;
  }

  .header-rightTop {
    right: 20px;
  }

  .header-rightBot {
    left: 15px;
    right: auto;  
    bottom: 20px;
  }
  
  .header-leftBot {
    left: 20px;  
    bottom: 55px;
  }
}
@media only screen and (max-width: 768px) {
  .header-leftBot img {
    width: 120px;
  }  
}

/* common-nav */
#common-nav {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
#common-nav ul li {
  text-align: right;
}
#common-nav ul li a {
  color: #fff;
  letter-spacing: 1px;
  font-size: 14px;
  font-size: 1.4rem;
  transition: all 0.5s ease;
}
#common-nav ul li a:hover {
  color: #AF9C60;
}
#common-nav ul li + li {
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  #common-nav {
    padding: 20px;
    padding-top: 15%;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    display: none;
    background: rgba(0, 0, 0, 0.7);
    mix-blend-mode: unset;
    -webkit-transform: rotate(0deg) translateX(100%);
    transform: rotate(0deg) translateX(100%);
  }
  #common-nav ul li {
    border-bottom: 1px solid #fff;
  }
  #common-nav ul li a {
    padding: 16px 0;
    font-size: 18px;
    font-size: 1.8rem;
    display: block;
  }
  #common-nav ul li:last-child {
    border-bottom: none;
  }  
}

/* sp-nav */
#nav-torigger {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  mix-blend-mode: exclusion;
  display: none;
  outline: none;
  width: 30px;
  height: 20px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
}
#nav-torigger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: all 0.5s ease;
}
#nav-torigger span:nth-of-type(1) {
  top: 0;
}
#nav-torigger span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
#nav-torigger span:nth-of-type(3) {
  bottom: 0;
}
#nav-torigger.nav-active span:nth-of-type(1) {
  -webkit-transform: translate(0, 9px) rotate(45deg);
  transform: translate(0, 9px) rotate(45deg);
}
#nav-torigger.nav-active span:nth-of-type(2) {
  opacity: 0;
}
#nav-torigger.nav-active span:nth-of-type(3) {
  -webkit-transform: translate(0, -9px) rotate(-45deg);
  transform: translate(0, -9px) rotate(-45deg);
}
@media only screen and (max-width: 768px) {
  #nav-torigger {
    display: block;
  }  
}

/* side */
#common-side .sns-list li {
  margin: 0 5px;
  display: inline-block;
  vertical-align: middle;
}
#common-side .store-link a {
  display: block;
  transition: all 0.5s ease;
}
#common-side .store-link a:hover {
  background: #AF9C60;
}

/* footer */
#common-footer {
  margin-top: 160px;
  padding-bottom: 80px;
  padding-top: 60px;
  background: #000;
}
.footer-nav {
  margin-bottom: 10px;
}
.footer-nav li a {
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
}
.footer_site_category--ttl {
  margin-bottom: 14px;
  padding-top: 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.footer_site_category-aboutproduct{
  margin-right: 40px;
  margin-left: 12px;
  width: 180px;
}
.footer_site_category-aboutus{
  margin-right: 40px;
  width: 72px;
}

.footer_common_info--inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 auto;
  width: 990px;
  text-align: left;
  align-content: flex-start;
}

@media (min-width: 768px) {
  .md-flex {
    display: flex;
  }

  .md-justify-between {
    justify-content: space-between;
  }
}

.copy {
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
}

.copy a{
  color:#fff;
}

/* #debug-controler {
  position: fixed;
  z-index: 1000;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); 
} */

.footer__logo {
  display: inline-block;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 768px) {
  #common-footer {
    padding-bottom: 100px;
  }
  .footer-nav {
    margin-bottom: 10px;
  }
  .footer-nav li {
    text-align: center;
  }
  .footer_site_category--ttl{
    text-align: center;
  }  
}

body #hubspot-messages-iframe-container.widget-align-right {
    bottom: 60px !important;
}
@media only screen and (max-width: 768px) {
    body #hubspot-messages-iframe-container.widget-align-right {
        bottom: 0 !important;
    }
}

/* shpify btn */
.btn-o {
  padding: 8px 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid #fff;
  transition: all .5s ease;
}
.btn-o:hover {
  color: #fff;
  background: #AF9C60;
}
.btn-o img {
  margin-right: 8px;
  vertical-align: sub;
}

/* pages */
.pages {
  padding-top: 160px;
}
.page-mv img {
  width: 100%;
}
.pages #common-footer {
    margin-top: 0;
}
@media only screen and (max-width: 768px) {
  .pages {
    padding-top: 130px;
  }
}
@media only screen and (max-width: 768px) {
    .pages {
    padding-top: 68px;
  }
}
.title-h2 {
  margin-bottom: 20px;
  font-size: 38px;
  font-size: 3.8rem;
  text-align: center;
}

