@charset "UTF-8";
/* *****************************
 *
 * Import file to Scss or Sass.
 *
 **************************** */
/****************************
			共通
*****************************/

* {
  padding: 0;
  margin: 0;
}

html {
  height: 100%;
}

body {
  font-size: 14px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "Helvetica", "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 1px;
  line-height: 1.8;
  min-width: 1000px;
}

a {
  text-decoration: none;
}

a:link {
  /*未訪問のリンク*/
  color: #000;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:visited {
  color: #000;
}

a:focus {
  text-decoration: none;
}

a[href^="tel"] {
  color: #000;
  text-decoration: none;
  pointer-events: none;
}

img {
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

ul {
  list-style: none;
}

p {
  /*禁則処理*/
  word-break: normal;
  word-wrap: break-word;
}

strong {
  font-weight: bold;
}

.left {
  float: left;
}

.right {
  float: right;
}

a img {
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

a img:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  /* ie lt 8 */
  -ms-filter: "alpha(opacity=60)";
  /* ie 8 */
  -moz-opacity: 0.6;
  /* FF lt 1.5, Netscape */
  -khtml-opacity: 0.6;
  /* Safari 1.x */
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  zoom: 1;
}

.flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-wrap-align-h {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.red {
  color: #f00;
}

.display-pc {
  display: block;
}

.display-sp {
  display: none;
}

/* clearfix */
.item-detail:after,
.product-list__heading:after,
.g-nav-01:after,
.g-nav-footer:after,
.recommend__item:after,
.features:after,
.header__inner:after,
body:after {
  display: block;
  content: "";
  clear: both;
}

#conteiner {
  font-size: 14px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: #fff;
}

/****************************
			header
*****************************/
#header {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.header__inner {
  width: 1000px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
}

.header__logo {
  width: 180px;
  height: auto;
  float: left;
  color: #000;
  padding: 20px 0;
}
.header__logo h1 {
  font-size: initial;
  margin: 0;
}
.header__logo a {
  display: block;
  color: #000;
}
.header__logo img {
  vertical-align: top;
}
.header__logo img {
  width: 100%;
  height: auto;
}

.header__side-nav {
  float: right;
  line-height: 1;
  padding-right: 145px;
}

.sns-containr {
  display: inline-block;
  border-left: 1px solid #000;
  margin-left: 10px;
}
.sns-containr li {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}
.sns-containr li a {
  width: 18px;
  height: auto;
  display: block;
}
.sns-containr li a img {
  width: 100%;
  height: auto;
}

.ec-function-containr {
  position: absolute;
  right: 0;
  top: 25px;
  z-index: 10;
  display: inline-block;
  border-left: 1px solid #000;
}
.ec-function-containr li {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}
.ec-function-containr li a {
  width: 18px;
  height: auto;
  display: block;
}
.ec-function-containr li a img {
  width: 100%;
  height: auto;
}

.dropdown-item {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 15px;
  right: -10px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .15s;
  transition: .15s;
}

.dropdown-icon {
  width: 18px;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}
.dropdown-icon img {
  width: 100%;
  height: auto;
}
.dropdown-icon:hover {
  opacity: .6;
}

.account-links {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 200px;
  padding: 10px;
  border: #ccc solid 1px;
  background: #fff;
  text-align: center;
}
.account-links li {
  display: block;
  margin: 0;
}
.account-links li a {
  width: 100%;
  display: block;
  padding: 10px 0;
  border: 1px solid #000;
  -webkit-transition: .3s;
  transition: .3s;
}
.account-links li a:hover {
  color: #fff;
  background: #555;
}
.account-links .login a {
  color: #fff;
  background: #000;
  border-bottom: none;
}
.account-links .login a:hover {
  color: #000;
  background: #fff;
}

.search__form {
  position: relative;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
}
.search__form > input {
  font-size: 16px !important;
  padding: 0 50px 0 0 !important;
  border: none !important;
  display: block;
}
.search__form > input::-webkit-input-placeholder {
  padding-top: 5px;
}
.search__form > button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: none;
  width: 45px;
  height: 45px;
  padding: 12px;
  border: none;
  min-width: auto;
}
.search__form > button img {
  width: 100%;
  height: auto;
}
.search__form > button:focus {
  outline: 0;
}
.search__form > button:hover {
  opacity: .6;
}

.dropdown-item-on .dropdown-content,
.dropdown-item-on input:focus + .dropdown-content {
  visibility: visible;
  opacity: 1;
}

.cart-responsive,
.favorite-responsive {
  display: none;
}

/****************************
			nav
*****************************/
.g-nav-header {
  font-size: 14px;
  display: inline-block;
}
.g-nav-header ul {
  margin-right: 5px;
}
.g-nav-header li {
  margin: 0 0 0 10px;
  padding: 0px;
  display: inline-block;
  padding: 20px 0;
}
.g-nav-header a {
  position: relative;
  display: inline-block;
  -webkit-transition: .3s;
  transition: .3s;
  padding: 5px 0;
}
.g-nav-header a:hover {
  opacity: .7;
}
.g-nav-header a::before, .g-nav-header a::after {
  position: absolute;
  content: '';
  width: 0;
  height: 1px;
  background-color: #000;
  -webkit-transition: .3s;
  transition: .3s;
}
.g-nav-header a::before {
  top: -2px;
  left: 0;
}
.g-nav-header a::after {
  bottom: -2px;
  right: 0;
}
.g-nav-header a:hover::before, .g-nav-header a:hover::after {
  width: 100%;
}

/****************************
			content
*****************************/
#content {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background: #fff;
}

.content__inner {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

/****************************
			footer
*****************************/
#footer {
  width: 100%;
  height: auto;
  padding: 0;
  background: #fff;
  text-align: center;
  border-top: 1px solid #ccc;
}
#footer::after {
  content: "";
}

.footer__inner {
  width: 1000px;
  margin: 0 auto;
  padding: 80px 0 30px;
}

.footer__logo {
  width: 300px;
  margin: 0 auto 30px;
}
.footer__logo img {
  width: 100%;
  height: auto;
}

.footer__sns {
  margin-bottom: 40px;
}
.footer__sns li {
  display: inline-block;
  margin: 7px;
}
.footer__sns a {
  display: inline-block;
  width: 26px;
}
.footer__sns a img {
  width: 100%;
  height: auto;
}

.copyright {
  text-align: center;
  font-size: 12px;
}

.page-style #footer {
  margin-top: 100px;
}

/****************************
		footer_nav
*****************************/
.g-nav-footer {
  padding: 30px 0 40px;
}
.g-nav-footer ul {
  display: table;
  margin: 0 auto 30px;
}
.g-nav-footer ul:last-child {
  margin-bottom: 0;
}
.g-nav-footer li {
  display: table-cell;
  padding: 0 15px;
  border-right: 1px solid #000;
}
.g-nav-footer li:last-child {
  border: none;
}
.g-nav-footer a:hover {
  opacity: .7;
  text-decoration: underline;
}

/*---------- - - - - - - - - - ----------*/
/*----------    mediaQuery     ----------*/
/*---------- - - - - - - - - - ----------*/
@media only screen and (max-width: 1000px) {
  body {
    min-width: auto;
  }

  .footer__inner,
  .header__inner {
    width: 100%;
  }

  .header__logo {
    margin-left: 30px;
  }

  .header__side-nav {
    height: 0;
    padding: 0;
    background: #fff;
    width: 100%;
    height: 0;
    overflow: hidden;
    position: absolute;
    top: 67px;
    left: 0;
    text-align: center;
    overflow: scroll;
  }

  .header__side-nav-inner {
    padding: 30px 6% 100px;
    position: relative;
  }

  .g-nav-header {
    display: block;
  }
  .g-nav-header ul {
    margin-right: 0;
    border-top: 1px solid #ccc;
  }
  .g-nav-header li {
    margin: 0;
    display: block;
    border-bottom: 1px solid #ccc;
    padding: 0;
  }
  .g-nav-header a {
    font-size: 16px;
    text-align: center;
    display: block;
    padding: 20px 30px;
  }

  .sns-containr {
    border: none;
    margin: 30px 10px 0 0;
  }

  .ec-function-containr {
    width: 100%;
    margin: 0;
    position: relative;
    border: none;
    top: 0;
    margin-bottom: 15px;
  }
  .ec-function-containr li {
    margin: 0;
    display: block;
  }
  .ec-function-containr .dropdown-icon,
  .ec-function-containr .favorite-icon,
  .ec-function-containr .cart-icon {
    display: none;
  }

  .dropdown-content {
    position: static;
    visibility: visible;
    opacity: 1;
    top: 0;
  }

  .account-links {
    width: 100%;
    padding: 20px;
  }
  .account-links li a {
    padding: 20px 0;
  }

  .sns-containr li a {
    width: 24px;
  }

  .favorite-responsive {
    display: block;
    display: inline-block;
    margin: 30px 10px 0 0;
    vertical-align: top;
    border-left: 1px solid #000;
    padding-left: 18px;
  }
  .favorite-responsive img {
    width: 100%;
    height: auto;
  }
  .favorite-responsive a {
    width: 24px;
    display: inline-block;
  }

  .cart-responsive {
    display: block;
    position: absolute;
    right: 80px;
    top: 20px;
    z-index: 1000;
    width: 24px;
  }
  .cart-responsive img {
    width: 100%;
    height: auto;
  }

  .search__form > input {
    width: 100%;
  }

  .menu_btn {
    position: absolute;
    right: 30px;
    top: 23px;
    display: inline-block;
    width: 24px;
    height: 20px;
    cursor: pointer;
  }

  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .menu-trigger {
    position: relative;
    width: 24px;
    height: 20px;
  }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
  }

  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }

  .menu-trigger span:nth-of-type(2) {
    top: 9px;
  }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  /* menubtn active */
  .menu_btn_open .menu_btn,
  .hide_menu .menu_btn {
    margin-right: 0;
    -webkit-transition-duration: 300ms;
            transition-duration: 300ms;
  }

  .menu_active .menu-trigger span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-315deg);
    transform: translateY(9px) rotate(-315deg);
    background-color: #000;
  }

  .menu_active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }

  .menu_active .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(315deg);
    transform: translateY(-9px) rotate(315deg);
    background-color: #000;
  }

  .menu_active .header__right-wrap {
    display: block;
    height: 100vh;
    overflow: visibility;
    -webkit-animation: anime 1s ease -0.5s;
            animation: anime 1s ease -0.5s;
  }

  @-webkit-keyframes anime {
    0% {
      height: 0px;
    }
    50% {
      height: 30px;
    }
    100% {
      height: 100vh;
    }
  }

  @keyframes anime {
    0% {
      height: 0px;
    }
    50% {
      height: 30px;
    }
    100% {
      height: 100vh;
    }
  }
}
@media only screen and (max-width: 768px) {
  .display-pc {
    display: none;
  }

  .display-sp {
    display: block;
  }

  .header__logo {
    margin: 0;
    width: 150px;
    padding: 0;
  }

  .header__side-nav {
    top: 48px;
  }

  .header__inner {
    padding: 10px 3%;
  }

  .menu_btn {
    right: 15px;
    top: 14px;
  }

  .cart-responsive {
    right: 60px;
    top: 11px;
  }

  .footer__inner {
    padding: 40px 0;
  }

  .footer__logo {
    width: 200px;
    margin-bottom: 40px;
  }

  .g-nav-footer {
    padding: 0;
    margin-bottom: 20px;
  }
  .g-nav-footer li {
    display: block;
    border: none;
    padding: 0;
    margin-bottom: 10px;
  }
  .g-nav-footer .g-nav-01 {
    display: block;
    margin-bottom: 30px;
    border-top: 1px solid #000;
  }
  .g-nav-footer .g-nav-01 li {
    margin: 0;
  }
  .g-nav-footer .g-nav-01 li a {
    width: 50%;
    padding: 10px 0;
    float: left;
    border-bottom: 1px solid #000;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .g-nav-footer .g-nav-01 li:nth-of-type(odd) a {
    border-right: 1px solid #000;
  }

  .footer__sns {
    margin-bottom: 30px;
  }

  a[href^="tel"] {
    pointer-events: auto;
  }
}

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