@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Cinzel');

/*========================================
  Plugin
========================================*/

/*========================================
  common
========================================*/

/* --------------------
  reset
-------------------- */
* {
  box-sizing: border-box;
}
body {
  font-size: 16px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.5;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
/* --------------------
  layout
-------------------- */
/*
  inner
*/
.l-inner {
  position: relative;
  width: 980px;
  margin: 0 auto;
}

/* --------------------
  component
-------------------- */
/*
  pc/sp切り替え
*/
.for_pc {
  display: block!important;
}
.for_sp {
  display: none!important;
}
img.for_pc,
span.for_pc,
br.for_pc {
  display: inline!important;
}
br.for_sp {
  display: none!important;
}

/*
  hover
*/
a {
  transition: .5s;
}
a:hover {
  opacity: .8;
}

/*
  font
*/
.font-avenir {
  font-family: 'Avenir','Corbel','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
}
.font-cinzel {
  font-family: 'Cinzel', 'Avenir','Corbel','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
}

/*
  content common
*/
/* text */
.content-ttl {
  margin-bottom: 25px;
  font-size: 30px;
  font-family: 'Cinzel', 'Avenir','Corbel','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
  font-weight: 100;
  letter-spacing: 2px;
}
.content-txt {
  letter-spacing: .05em;
  line-height: 1.8;
  font-size: inherit;
  font-weight: 100;
}

/* btn */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 46px;
  margin: 0 auto;
  background: #000;
  color: #fff;
  font-family: 'Avenir','Corbel','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
  text-decoration: none;
}

.btn.ghost {
  background: none;
  border: 1px solid #fff;
}
.btn.ghost:hover {
  background: #fff;
  color: #585551;
  opacity: 1;
}

/*
  anchor
*/
.anchor {
  position: absolute;
  top: -80px;
  width: 1px;
  height: 1px;
  visibility: hidden;
  z-index: -9;
}


/*========================================
  content
========================================*/
/* --------------------
  header
-------------------- */
/*
  bnr area
*/
.top-bnr__wrap {
  padding: 10px 0;
  background: #fff;
}
.top-bnr__inner {
  display: flex;
  justify-content: center;
  -webkit-transform: translate3d(0,0,0);
}
.top-bnr {
  width: 480px;
}
.top-bnr.no-link:hover {
  opacity: 1;
  cursor: default;
}

/*
  header
*/
.header {
  background: #1d1d1b;
  overflow: hidden;
  -webkit-transform: translateZ(0);
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header-inner {
  position: relative;
  margin: 0 auto;
}
.header-logo {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 162px;
}
.nav-trigger__box {
  display: none;
}

/* nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}
.nav-sp {
  display: none;
}
.nav-item {
  position: relative;
  margin: 0 30px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
.nav-item:after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: .2s;
  transform: scaleX(0);
}
.nav-item:hover:after {
  transform: scaleX(1);
}




/* --------------------
  footer
-------------------- */
.footer {
  background: #827d5f;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
.footer-list {
  display: flex;
  align-items: end;
}
.footer-item a {
  display: block;
  margin-right: 25px;
  color: #d0cebe;
  font-size: 13px;
}
.sns .footer-item a {
  margin: 0 0 0 15px;
}
.footer-copy {
  padding: 32px 0;
  background: #fff;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0;
}

@media screen and (max-width: 750px) {

  /*========================================
    common
  ========================================*/

  /* --------------------
    reset
  -------------------- */
  body {
    font-size: 2.6vw;
  }

  /* --------------------
    layout
  -------------------- */
  /*
    inner
  */
  .l-inner {
    width: 100%;
  }

  /* --------------------
    component
  -------------------- */
  /*
    pc/sp切り替え
  */
  .for_pc {
    display: none!important;
  }
  img.for_pc,
  span.for_pc,
  br.for_pc {
    display: none!important;
  }
  .for_sp {
    display: block!important;
  }
  img.for_sp,
  span.for_sp,
  br.for_sp {
    display: inline!important;
  }
  /*
    hover
  */
  /* a {
    transition: .5s;
  }
  a:hover {
    opacity: .8;
  } */

  /*
    content common
  */
  /* text */
  .content-ttl {
    margin-bottom: 3vw;
    font-size: 5.8vw;
    letter-spacing: 2px;
  }
  .content-txt {
    letter-spacing: .05em;
    line-height: 2;
  }

  /* btn */
  .btn {
    width: 34.6vw;
    height: 8vw;
    font-size: 2.9vw;
    letter-spacing: .1em;
  }

  .btn.ghost {
    background: none;
    border: 1px solid #fff;
  }
  .btn.ghost:hover {
    background: #fff;
    color: #585551;
    opacity: 1;
  }

  /*
    anchor
  */
  .anchor {
    top: -1vw;
  }


  /*========================================
    content
  ========================================*/
  /* --------------------
    header
  -------------------- */

  .header-wrap {
    position: relative;
  }
  .header {
    height: 13.3vw;
    position: relative;
    z-index: 10;
  }
  .header.fixed {
    position: relative;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 4vw;
  }
  .header-logo {
    position: static;
    width: 25.8vw;
  }

  /* nav */
  .nav {
    display: none;
  }
  .nav-sp {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 0;
    padding-top: 13vw;
    background: #1d1d1b;
    transition: .4s;
    z-index: 9;
    overflow: hidden;
  }
  .nav-sp__inner {
    transition: .5s;
    transition-delay: .5s;
    opacity: 0;
  }
  .nav-item {
    display: block;
    position: relative;
    width: 100vw;
    margin: 0;
    padding: 7.2vw 0;
    font-size: 3.46vw;
    color: #fff;
    text-align: center;
  }
  .nav-item:after {
    display: none;
  }
  .nav-sp.active {
    height: 100vh;
  }
  .nav-sp.active .nav-sp__inner {
    opacity: 1;
  }

  /* trigger */
  .nav-trigger__box {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    max-height: 13.3vw;
    padding: 3vw 4vw 2vw;
    background: #1d1d1b;
    background: rgba(29,29,27,.8);
    text-align: center;
    box-sizing: border-box;
    z-index: 101;
  }
  .nav-trigger,
  .nav-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .nav-trigger {
    position: relative;
    width: 24px;
    height: 16px;
  }
  .nav-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
  .nav-trigger span:nth-of-type(1) {
    top: 0;
  }
  .nav-trigger span:nth-of-type(2) {
    top: 7px;
  }
  .nav-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .nav-trigger span:nth-of-type(1) {
    animation: menu-bar01 .75s forwards;
  }
  @keyframes menu-bar01 {
    0% {
      transform: translateY(8px) rotate(45deg);
    }
    50% {
      transform: translateY(8px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  .nav-trigger span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
  }
  .nav-trigger span:nth-of-type(3) {
    animation: menu-bar02 .75s forwards;
  }
  @keyframes menu-bar02 {
    0% {
      transform: translateY(-6.5px) rotate(-45deg);
    }
    50% {
      transform: translateY(-6.5px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  .nav-trigger.active span:nth-of-type(1) {
    animation: active-menu-bar01 .75s forwards;
  }
  @keyframes active-menu-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(8px) rotate(0);
    }
    100% {
      transform: translateY(8px) rotate(45deg);
    }
  }
  .nav-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .nav-trigger.active span:nth-of-type(3) {
    -webkit-animation: active-menu-bar03 .75s forwards;
    animation: active-menu-bar03 .75s forwards;
  }
  @keyframes active-menu-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-6.5px) rotate(0);
    }
    100% {
      transform: translateY(-6.5px) rotate(-45deg);
    }
  }
  .nav-trigger__txt {
    color: #fff;
    font-size: 2.13vw;
    text-align: center;
    line-height: 1;
  }

  /* --------------------
    main
  -------------------- */
  main {
    overflow: hidden;
  }

  /* --------------------
    footer
  -------------------- */
  .footer-inner {
    display: flex;
    justify-content: space-between;
    padding: 3.3vw 0;
  }
  .footer-list {
    display: flex;
    align-items: end;
    justify-content: center;
    width: 100vw;
  }
  .footer-item a {
    margin: 0 2.4vw;
    font-size: 2.4vw;
  }
  .footer-list.sns {
    display: none;
  }
  .footer-copy {
    padding: 4vw 0;
    font-size: 2.4vw;
  }

}


/* ==============================
=================================
カラーミー流用
=================================
============================== */


/*
 * layout
 */

html.shoppro {
  font-size: 62.5%;
}

#wrapper {
  max-width: 100%;
  padding: 1px 0;
  background-color:#edebde;
}
#containerBox {
  max-width: 860px;
  padding: 50px 0 0;
}

/*
 * contents
 */

#contents {
  padding:20px 30px 0 0;
}

#contents h2 {
	font-size: 3.0rem;
	padding:0;
	margin:0 0 40px;
	text-align:center;
	line-height:1;
	font-family:"Cinzel", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

#contents h2#chekttl{
	font-size:1.8rem;
}

#contents .topicpath-nav {
  margin-bottom: 20px;
}
#contents .topicpath-nav li {
  padding: 0;
  font-size:1.4rem;
}
#contents .topicpath-nav a {
  margin-left: 5px;
}

#contents .recommend-unit, #contents .productlist-unit{
	font-size:1.4rem;
	letter-spacing:-0.04em;
}
#contents .recommend-unit span, #contents .productlist-unit span {
	display:block;
}
#contents .recommend-unit span.price_num, #contents .productlist-unit span.price_num {
	color:#cd5d30;
}

span.priceNum {
	color:#cd5d30;
}


#contents .sortBox {
    font-size:1.4rem;
}


/*
 * temp
 */

/* font */
.txt_l { text-align: left; }
.txt_c { text-align: center; }
.txt_r { text-align: right; }
.txt_fwn { font-weight: normal; }
.txt_fwb { font-weight: bold; }
.txt_10 { font-size: 10px; }
.txt_12 { font-size: 12px; }
.txt_14 { font-size: 14px; }
.txt_16 { font-size: 16px; }
.txt_18 { font-size: 18px; }
.txt_20 { font-size: 20px; }
.txt_24 { font-size: 24px; }
.txt_28 { font-size: 28px; }
.txt_c_333 {color: #333;}

/* background */
.bgc_gray {
  background-color: #f1f1f1;
}

/* margin */
.mar_auto { margin: 0 auto; }
.mar_0 { margin: 0; }
.mar_t_0 { margin-top: 0; }
.mar_r_0 { margin-right: 0; }
.mar_b_0 { margin-bottom: 0; }
.mar_l_0 { margin-left: 0; }
.mar_5 { margin: 5px; }
.mar_t_5 { margin-top: 5px; }
.mar_r_5 { margin-right: 5px; }
.mar_b_5 { margin-bottom: 5px; }
.mar_l_5 { margin-left: 5px; }
.mar_t_10 { margin-top: 10px; }
.mar_r_10 { margin-right: 10px; }
.mar_b_10 { margin-bottom: 10px; }
.mar_l_10 { margin-left: 10px; }
.mar_t_20 { margin-top: 20px; }
.mar_r_20 { margin-right: 20px; }
.mar_b_20 { margin-bottom: 20px; }
.mar_l_20 { margin-left: 20px; }
.mar_t_30 { margin-top: 30px; }
.mar_r_30 { margin-right: 30px; }
.mar_b_30 { margin-bottom: 30px; }
.mar_l_30 { margin-left: 30px; }
.mar_t_50 { margin-top: 50px; }
.mar_r_50 { margin-right: 50px; }
.mar_b_50 { margin-bottom: 50px; }
.mar_l_50 { margin-left: 50px; }

/* padding */
.pad_v_10 { padding: 10px 0; }
.pad_v_20 { padding: 20px 0; }
.pad_v_30 { padding: 30px 0; }
.pad_0 { padding: 0; }
.pad_t_0 { padding-top: 0; }
.pad_r_0 { padding-right: 0; }
.pad_b_0 { padding-bottom: 0; }
.pad_l_0 { padding-left: 0; }
.pad_5 { padding: 5px; }
.pad_t_5 { padding-top: 5px; }
.pad_r_5 { padding-right: 5px; }
.pad_b_5 { padding-bottom: 5px; }
.pad_l_5 { padding-left: 5px; }
.pad_10 { padding: 10px; }
.pad_t_10 { padding-top: 10px; }
.pad_r_10 { padding-right: 10px; }
.pad_b_10 { padding-bottom: 10px; }
.pad_l_10 { padding-left: 10px; }
.pad_20 { padding: 20px; }
.pad_t_20 { padding-top: 20px; }
.pad_r_20 { padding-right: 20px; }
.pad_b_20 { padding-bottom: 20px; }
.pad_l_20 { padding-left: 20px; }
.pad_30 { padding: 30px}
.pad_t_30 { padding-top: 30px; }
.pad_r_30 { padding-right: 30px; }
.pad_b_30 { padding-bottom: 30px; }
.pad_l_30 { padding-left: 30px; }

/* border */
.bor_t_1 { border-top: 1px solid #eee; }
.bor_r_1 { border-right: 1px solid #eee; }
.bor_b_1 { border-bottom: 1px solid #eee; }
.bor_l_1 { border-left: 1px solid #eee; }

/* vertical align */
.va-10 { vertical-align: -10%; }
.va-20 { vertical-align: -20%; }
.va-30 { vertical-align: -30%; }
.va-35 { vertical-align: -35%; }
.va-40 { vertical-align: -40%; }

@media (max-width: 980px) {
  /* ~980px */
  #base_gmoWrapp,
  #gmo_CMSPbar {
    overflow: hidden;
    min-width: 100% !important;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  /* ~768px */
  #contents {
    padding: 0 4vw;
  }
}
@media (max-width: 480px) {
  /* ~480px */
}

/*
 * icons
 */
.icon-user { background-position: -208px 0px; }
.icon-lg-b.icon-user { background-position: -312px 0px; }
.icon-adduser { background-position: -240px 0px; }
.icon-lg-b.icon-adduser { background-position: -360px 0px; }
.icon-login { background-position: -48px -80px; }
.icon-lg-b.icon-login { background-position: -72px -120px; }
.icon-logout { background-position: -32px -80px; }
.icon-lg-b.icon-logout { background-position: -48px -120px; }
.icon-home { background-position: -176px -16px; }
.icon-lg-b.icon-home { background-position: -264px -24px; }
.icon-mail { background-position: -64px 0px; }
.icon-lg-b.icon-mail { background-position: -96px 0px; }
.icon-pencil { background-position: -96px 0px; }
.icon-lg-b.icon-pencil { background-position: -144px 0px; }
.icon-help { background-position: -272px -80px; }
.icon-lg-b.icon-help { background-position: -408px -120px; }
.icon-cart { background-position: -176px -64px; }
.icon-lg-b.icon-cart { background-position: -264px -96px; }
.icon-search { background-position: -208px -16px; }
.icon-lg-b.icon-search { background-position: -312px -24px; }
.icon-chevron_up { background-position: -0px -144px; }
.icon-lg-b.icon-chevron_up { background-position: -0px -216px; }
.icon-chevron_down { background-position: -352px -128px; }
.icon-lg-b.icon-chevron_down { background-position: -528px -192px; }

.icon-b,
.icon-w {
  width: 16px;
  height: 16px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.icon-lg-b,
.icon-lg-w {
  width: 24px;
  height: 24px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

.icon-b { background-image: url(https://web.archive.org/web/20181121185727im_/https://img.shop-pro.jp/tmpl_img/73/icon16_b.png); }
.icon-w { background-image: url(https://web.archive.org/web/20181121185727im_/https://img.shop-pro.jp/tmpl_img/73/icon16_w.png); }
.icon-lg-b { background-image: url(https://web.archive.org/web/20181121185727im_/https://img.shop-pro.jp/tmpl_img/73/icon24_b.png); }
.icon-lg-w { background-image: url(https://web.archive.org/web/20181121185727im_/https://img.shop-pro.jp/tmpl_img/73/icon24_w.png); }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .icon-b,
  .icon-w {
    -webkit-background-size: 368px 320px;
    background-size: 368px 320px;
  }

  .icon-lg-b,
  .icon-lg-w {
    -webkit-background-size: 552px 480px;
    background-size: 552px 480px;
  }

  .icon-b { background-image: url(https://web.archive.org/web/20181121185727im_/https://img.shop-pro.jp/tmpl_img/73/icon16_2x_b.png); }
  .icon-w { background-image: url(https://web.archive.org/web/20181121185727im_/https://img.shop-pro.jp/tmpl_img/73/icon16_2x_w.png); }
  .icon-lg-b { background-image: url(https://web.archive.org/web/20181121185727im_/https://img.shop-pro.jp/tmpl_img/73/icon24_2x_b.png); }
  .icon-lg-w { background-image: url(https://web.archive.org/web/20181121185727im_/https://img.shop-pro.jp/tmpl_img/73/icon24_2x_w.png); }
}
@media (max-width: 768px) {
  .icon-b { background-image: url(https://web.archive.org/web/20181121185727im_/https://img.shop-pro.jp/tmpl_img/73/icon24_b.png); }
  .icon-w { background-image: url(https://web.archive.org/web/20181121185727im_/https://img.shop-pro.jp/tmpl_img/73/icon24_w.png); }
}
@media only screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 768px) and (min--moz-device-pixel-ratio: 2), only screen and (max-width: 768px) and (-o-min-device-pixel-ratio: 2 / 1), only screen and (max-width: 768px) and (min-device-pixel-ratio: 2), only screen and (max-width: 768px) and (min-resolution: 192dpi), only screen and (max-width: 768px) and (min-resolution: 2dppx) {
  .icon-b { background-image: url(https://web.archive.org/web/20181121185727im_/https://img.shop-pro.jp/tmpl_img/73/icon24_2x_b.png); }
  .icon-w { background-image: url(https://web.archive.org/web/20181121185727im_/https://img.shop-pro.jp/tmpl_img/73/icon24_2x_w.png); }
}




/*  Q&A  */
#qaBox dt {
	font-size:1.6rem;
	line-height:1.2;
	font-weight:bold;
	margin:0 0 20px;
	border-bottom:1px dotted #1d1d1b;
	padding:0 0 5px;
}

#qaBox dd {
	font-size:1.6rem;
	line-height:1.8;
	margin:0 0 50px;
}



/*  company  */

#company table {
	width:100%;
	border-top:1px dotted rgb(29, 29, 27);
}


#company tr {
	width:100%;
	border-bottom:1px dotted rgb(29, 29, 27);
	display: flex;
}


#company th {
	width:28%;
	font-size:1.6rem;
	font-weight:bold;
	padding:15px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color:#fff;
}

#company td {
	width:70%;
	font-size:1.6rem;
	padding:15px 0 15px 2%;
}


input[type="text"],
input[type="email"] {
  width: 100%;
  min-height: 3em;
  background: #fff;
}
textarea {
  width: 100%;
  min-height: 15em;
  background: #fff;
}
input[type="submit"] {
  display: block;
  margin: 0 auto;
  padding: 1em 4em;
  background: #5c8d24;
  color: #fff;
}
form {
  max-width: 580px;
  margin: 0 auto;
}
.form__content {
  margin-top: 2em;
}
.form__ttl {
  font-weight: bold;
}
form p {
  margin: 1em 0;
}