@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP|Noto+Serif+JP|Roboto:400,700&display=swap");
/* reset css */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, a, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, main, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  text-decoration: none;
  background: transparent;
}

html, body {
  width: 100%;
  height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 320px;
  word-break: break-all;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

*, *::before, *::after {
  box-sizing: border-box;
}

header, footer, section, main, article, aside, menu, nav, details, figcaption, figure {
  display: block;
}

input, select {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  border-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

hr {
  display: none;
}

/* clearfix (modern) */
.cl::after {
  content: "";
  clear: both;
  display: block;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}

blockquote, q {
  quotes: "" "";
}

button {
  outline: 0;
  margin: 0;
  padding: 0;
}

/*クリック禁止*/
.cannot {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  cursor: default;
}

/*transition*/
/*アニメーション*/
/*easing.jsをsass変数化*/
/*背景画像もプリントアウト対象にする*/
body {
  -webkit-print-color-adjust: exact;
}

/*****************************************/
/*PC,SPでの出し分け*/
@media only screen and (min-width: 768px) {
  .pcHide {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .spHide {
    display: none !important;
  }
}
/*****************************************/
html {
  font-size: 10px;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}

/*****************************************/
/*メインビジュアル*/
#mainvisual h1 {
  display: block;
  text-align: center;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

#mainvisual {
  width: 100%;
  background: url(../images/items/01/mv_bicute_01_pc@2x.jpg) center center/cover scroll no-repeat;
}

#mainvisual img {
  width: 100%;
  height: auto;
}

#mainvisual img.sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  #mainvisual {
    width: 100%;
    background: url(../images/items/01/mv_bicute_01_sp@3x.jpg) center center/cover scroll no-repeat;
  }
  #mainvisual img {
    width: 100%;
    height: auto;
  }
  #mainvisual img.pc {
    display: none;
  }
}
@media all and (min-width: 1921px) {
  #mainvisual img {
    width: 100%;
    max-width: 1600px;
    height: auto;
  }
}
/*イントロ*/
#intro {
  background-color: #000;
  border-top: 2px solid #efcd7d;
}
#intro h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  margin: 4px 0;
  text-align: center;
  color: #000;
  font-size: 2.4rem;
  font-weight: bold;
  background-image: linear-gradient(90deg, rgb(190, 132, 10) 0%, rgb(239, 205, 125) 50%, rgb(190, 132, 10) 100%);
}
#intro .intro_txt {
  border-top: 2px solid #efcd7d;
}
#intro .intro_txt p {
  width: 100%;
  margin: 0 auto;
  padding: 42px 0;
  color: #efcd7d;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #intro .intro_txt p {
    font-size: 1.8rem;
    padding: 40px 20px;
  }
}
#intro .intro_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding-bottom: 40px;
  border-bottom: 2px solid #efcd7d;
}
@media only screen and (max-width: 767px) {
  #intro .intro_logo {
    flex-direction: column;
  }
}

/*LINE UP*/
#list {
  background-color: #000;
  padding-bottom: 80px;
}
#list h2 {
  padding: 42px 0;
  text-align: center;
}
#list h2 img {
  width: 320px;
}

/*スライド*/
.slide {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .slide {
    max-width: 100%;
  }
}
.slide .slide_box {
  width: 100%;
}
.slide .slide_box img {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .slide .slide_box img {
    max-width: 252px;
  }
}
.slide .slide_box img.logo {
  max-width: 320px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.slide .slide_box span {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  width: 100%;
  height: 40px;
  margin: 0 auto 16px;
  color: #000;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  background-image: linear-gradient(90deg, rgb(190, 132, 10) 0%, rgb(239, 205, 125) 50%, rgb(190, 132, 10) 100%);
  border-radius: 20px;
}
.slide .slide_box p {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.slide .prevBtn, .slide .nextBtn {
  position: absolute;
  font-size: 0;
  width: 44px;
  height: 44px;
  background: #fff;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .slide .prevBtn, .slide .nextBtn {
    width: 46px;
    height: 92px;
  }
}
.slide .prevBtn {
  left: 408px;
  background: url(../images/btn_left_pc@2x.png) 50% 50% no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .slide .prevBtn {
    left: 0;
    background: url(../images/btn_left_sp@2x.png) 50% 50% no-repeat;
    background-size: cover;
  }
}
.slide .nextBtn {
  right: 408px;
  background: url(../images/btn_right_pc@2x.png) 50% 50% no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .slide .nextBtn {
    right: 0;
    background: url(../images/btn_right_sp@2x.png) 50% 50% no-repeat;
    background-size: cover;
  }
}

#sns {
  background: #3E3A39;
  padding: 20px 0;
  position: relative;
  z-index: 5;
}

#sns .sns__grid {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  justify-content: center;
}

#sns .sns-icon {
  display: block;
}

/*フッター*/
@media only screen and (max-width: 767px) {
  footer .inbox {
    padding: 0 16px;
  }
}
footer .inbox .footermenu {
  text-align: center;
  padding-bottom: 8px;
}
footer .inbox .copyright {
  font-size: 12px;
  text-align: center;
  padding-bottom: 16px;
}
footer .inbox .copyright li {
  width: 100%;
}
footer .inbox .copyright li:first-child {
  padding-bottom: 16px;
}
footer .inbox .copyright li:last-child {
  padding-bottom: 64px;
}
@media only screen and (max-width: 767px) {
  footer .inbox .copyright li:last-child {
    padding-bottom: 48px;
  }
}
footer .inbox .logo1 {
  text-align: center;
  padding: 32px 0;
}
@media only screen and (max-width: 767px) {
  footer .inbox .logo1 {
    padding: 32px 0 16px;
  }
}
footer .inbox .logo1 img {
  width: 96px;
  height: 48px;
}
footer .inbox .logo2 {
  text-align: center;
  padding: 48px 0 24px;
}
@media only screen and (max-width: 767px) {
  footer .inbox .logo2 {
    padding: 32px 0 16px;
  }
}
footer .inbox .logo2 img {
  width: 160px;
  height: 48px;
}
footer .inbox .footermenu {
  color: #14116e;
}
footer .inbox .footermenu li {
  display: inline-block;
  padding: 0 8px;
  border-left: 1px solid #999999;
}
footer .inbox .footermenu li a {
  color: #14116e;
}
footer .inbox .copyright li {
  display: inline-block;
  padding: 0 8px;
  color: #14116e;
}
footer .inbox .copyright li img {
  height: 9px;
  vertical-align: unset;
}
@media only screen and (max-width: 767px) {
  footer .inbox .copyright li {
    padding: 0;
  }
}
footer .inbox .footermenu li:first-child,
footer .inbox .copyright li:first-child {
  border: none !important;
}

/**********************************************/
/**********************************************/
/*製品詳細ページ*/
#p_mainvisual {
  background-color: #000;
}
#p_mainvisual h1 {
  width: 100%;
  height: 120px;
  background: url(../images/bak_mesh@2x.png) 50% 0%;
  background-size: 80px;
  text-align: center;
  border-bottom: 2px solid #efcd7d;
  display: flex;
  align-items: center;
  justify-content: center;
}
#p_mainvisual h1 img {
  max-width: 320px;
  width: 100%;
}
#p_mainvisual .p_slide {
  width: 100%;
}
#p_mainvisual .p_slide .slide_box {
  max-width: 100%;
  margin: 0 auto;
}
#p_mainvisual .p_slide .slick-dots {
  bottom: 0;
}
#p_mainvisual .p_slide .slick-dots li.slick-active button:before {
  color: #fff;
}
#p_mainvisual .p_slide .slick-dots li button:before {
  color: #4d4d4d;
  opacity: 1;
}
#p_mainvisual .slick-dotted.slick-slider {
  margin-bottom: 0;
}

#intro.p_intro {
  border-bottom: 2px solid #efcd7d;
}
#intro.p_intro h2 {
  display: block;
  height: 150px;
  padding: 16px 0;
}
@media only screen and (max-width: 767px) {
  #intro.p_intro h2 {
    height: 180px;
  }
}
#intro.p_intro h2 img {
  max-width: 160px;
  padding-bottom: 16px;
}
#intro.p_intro .intro_txt {
  border-bottom: none;
}
#intro.p_intro .intro_txt p {
  text-align: center;
}
#intro.p_intro .shop_wrap {
  width: 320px;
  margin: 0 auto 40px;
  background-image: linear-gradient(90deg, rgb(190, 132, 10) 0%, rgb(239, 205, 125) 50%, rgb(190, 132, 10) 100%);
  border-radius: 24px;
  border: 2px solid #efcd7d;
}
#intro.p_intro .shop_wrap .shop_inner {
  width: 316px;
  display: block;
  border-radius: 22px;
  border: 2px solid #000;
}
#intro.p_intro .shop_wrap .shop_inner a {
  display: flex;
  height: 48px;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 2rem;
  font-weight: bold;
}
#intro.p_intro .shop_wrap .shop_inner a:hover {
  opacity: 0.8;
}
/*# sourceMappingURL=style.css.map */