@charset "UTF-8";
body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
  line-height: 1;
  box-sizing: border-box;
  letter-spacing: 2px;
  color: #333333;
  overflow-x: hidden;
  font-family: "font01";
}
body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

@font-face {
  font-family: "font01";
  src: url(../font/font01.otf);
}
@font-face {
  font-family: "font02";
  src: url(../font/font02.ttf);
}
.br_pc {
  display: block;
}

.br_sp {
  display: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

img {
  display: block;
  width: 100%;
}

.bg {
  position: relative;
}

small {
  font-family: "font02";
}

.con {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

input,
textarea {
  -webkit-appearance: none;
}

a {
  <!--color: #fff;-->
  text-decoration: none;
}

a:hover {
  cursor: pointer;
  opacity: 0.8;
}

.pc_nav {
  display: block;
}

header {
  position: fixed;
  width: auto;
  height: auto;
  display: flex;
  top: 30px;
  right: 30px;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 0 5%;
  z-index: 999;
}
header .logo {
  max-width: 300px;
}

article {
  padding: 100px 0;
}

section {
  max-width: 960px;
  display: block;
  margin: 0 auto;
}

h2 {
  margin-bottom: 30px;
  font-size: min(5vw, 32px);
  line-height: 2;
  letter-spacing: 0.2em;
}

.text {
  font-size: min(3.5vw, 14px);
  text-align: left;
  line-height: 2.5;
  letter-spacing: 0.15em;
}

/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
  position: absolute;
  right: 3%;
  top: 25%;
  width: 50px;
  height: 40px;
  cursor: pointer;
  z-index: 999999;
}

.hamburger__line {
  position: absolute;
  width: 50px;
  height: 2px;
  right: 0;
  background-color: #333333;
  transition: all 0.4s;
}

.hamburger__line--1 {
  top: 1px;
}

.hamburger__line--2 {
  top: 18px;
}

.hamburger__line--3 {
  top: 35px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  opacity: 0;
  top: 10px;
}

.open .hamburger__line--2 {
  opacity: 1;
}

.open .hamburger__line--3 {
  opacity: 0;
  top: 10px;
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  box-sizing: border-box;
  position: fixed;
  right: 0;
  /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 100%;
  max-width: 100%;
  /* 出てくるスライドメニューの幅 */
  transition: all 0.4s;
  z-index: 9999;
  overflow-y: auto;
  opacity: 0;
  display: none;
  visibility: hidden;
  transition: all 0.6s ease-in-out;
  animation: op 0.4s linear forwards;
  /* メニューが多くなったらスクロールできるように */
}
.sp-nav ul {
  display: block;
}
.sp-nav ul li {
  margin-bottom: 50px;
}
.sp-nav small {
  position: absolute;
  bottom: 3%;
  font-size: min(2vw, 14px);
}
.sp-nav .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  height: 100vh;
  box-sizing: border-box;
  margin: 0 0 0 auto;
}
.sp-nav .nav ul {
  display: block;
}
.sp-nav .nav ul li a {
  font-size: min(2.4vw, 24px);
  color: #000;
  text-decoration: none;
  letter-spacing: 0.2em;
}
.sp-nav .nav ul li a img {
  width: auto;
  height: 24px;
}
.sp-nav .nav ul li a .sub {
  margin-top: 12px;
  font-size: min(1.4vw, 14px);
  letter-spacing: 0;
}
.sp-nav .nav .ul_2 {
  display: flex;
  justify-content: flex-start;
}
.sp-nav .nav .ul_2 li a {
  font-size: min(1.4vw, 14px);
}
.sp-nav .nav .ul_2 li a img {
  width: auto;
  height: 14px;
}
.sp-nav .nav .ul_2 .nav_line {
  margin: 0 10px;
}
.sp-nav small {
  margin: 0 0 0 auto;
}
.sp-nav .blur_bg {
  position: absolute;
  height: 100vh;
  /*background-color: rgba(255, 255, 255, 0.3);*/
  width: 50%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .sp-nav .nav {
    width: 100%;
  }
  .sp-nav .nav ul {
    display: block;
  }
  .sp-nav .nav ul li a {
    font-family: "font02";
    font-size: min(5.2vw, 24px);
    color: #000;
    text-decoration: none;
    letter-spacing: 0.2em;
  }
  .sp-nav .nav ul li a img {
    height: 18px;
  }
  .sp-nav .nav ul li a .sub {
    font-family: "font01";
    margin-top: 12px;
    font-size: min(3.6vw, 14px);
    letter-spacing: 0;
  }
  .sp-nav .nav .ul_2 li a {
    font-size: min(3.2vw, 14px);
  }
  .sp-nav .nav .ul_2 li a img {
    height: 10px;
  }
  .sp-nav .blur_bg {
    display: none;
  }
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  display: block;
  visibility: visible;
  transition: all 0.4s ease-in-out;
  animation: op 0.4s linear forwards;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

@keyframes op {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
  transition: all 0.4s ease-in-out;
}

.c-product_info__favorite {
    margin-top: 0;
}

div#description {
    display: none;
}

.l-container {
    padding-top: 80px;
}

.c-product_info__share {
    display: none;
}

header.p-page_header {
    position: static;
    display:block;
    padding:0;
}

header.l-header.u-color__bg--base.u-color__border--border.logo--center {
    position: static;
    display:block;
}

/* footer */
footer {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
  color: #fff;
  width: 100%;
  background: #333;
  font-size: min(1.2vw, 12px);
  letter-spacing: 1.2px;
  line-height: 2.5;
  padding-top: 35px;
  margin-top: -16px;
}
footer .inner_ft1 {
  max-width: 1400px;
  margin: 0 auto;
}
footer .ft_logo {
  display: block;
  max-width: 650px;
  margin: 0 auto;
  padding-bottom: 140px;
}
footer .flex_ft {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding-bottom: 10px;
}
footer .flex_ft ul {
  display: flex;
}
footer .flex_ft li {
  margin-right: 12px;
}
footer .flex_ft li:last-child {
  margin-right: 0;
}
footer small {
  text-align: center;
  display: block;
  margin: 0;
}
@media screen and (max-width: 1400px) {
  footer {
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
    color: #fff;
    width: 100%;
    background: #333;
    font-size: min(1.2vw, 12px);
    letter-spacing: 1.2px;
    line-height: 2.5;
    padding-top: 35px;
    margin-top: -16px;
  }
  footer .inner_ft1 {
    max-width: 1400px;
    margin: 0 auto;
  }
  footer .ft_logo {
    display: block;
    max-width: 650px;
    margin: 0 auto;
    padding-bottom: 140px;
  }
  footer .flex_ft {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 26%;
    padding-bottom: 10px;
  }
  footer .flex_ft li {
    margin-right: 12px;
  }
  footer .flex_ft li:last-child {
    margin-right: 0;
  }
  footer small {
    text-align: center;
    display: block;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  footer {
    font-size: 2.4vw;
    margin-top: -16px;
    padding-top: 14%;
  }
  footer .inner_ft1 {
    max-width: 94%;
    display: block;
  }
  footer .inner_ft1 .flex_ft .logo img {
    width: 50%;
  }
  footer .inner_ft1 .flex_ft .ft_p1 {
    margin-top: 8%;
  }
  footer .inner_ft1 .flex_ft .ft_p2 {
    margin-top: 4%;
  }
  footer .inner_ft1 .flex_ft {
    display: block;
  }
  footer .inner_ft1 .flex_ft ul {
    justify-content: center;
  }
  footer .ft_logo {
    width: 70%;
    padding-bottom: 14%;
  }
}
.bnrLinkFixed {
    position: fixed;
    bottom: 0;
    right: 0;
}