@charset "euc-jp";

/* RESET
--------------------------------------------------*/
html, body, h1, h2, h3, h4, h5, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1;
}

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

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

img, video {
  vertical-align: bottom;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}



/* カスタマイズ
--------------------------------------------------*/


/* 共通 ------- */
body {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-weight: 300;
  letter-spacing: 0.03em;
  font-size: 13px;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}

input, button, select, textarea {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
}

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

img {
  vertical-align: top;
  width: 100%;
}

.pc-only {
  display: block !important;
}

.sp-only {
  display: none !important;
}

@media screen and (max-width:768px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block !important;
  }
}

/* header ------- */

header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  background-color: #fff;
}

.headerWrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 20px 18px;
  position: relative;
}

header .logo {
  width: 100px;
}

header .logo a {
  display: inline-block;
}

header .logo .icon{
  width: 90px;
  height: 20px;
  vertical-align: top;
}

header .gnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

header .gnav .gnav__link {
  display: inline-block;
  padding: 4px 10px;
  position: relative;
  color: #000;
  font-size: 13px;
}

header .gnav button.gnav__link, .gnav-search-panel button {
  border: none;
  background-color: #fff;
  line-height: 1;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
}

header .gnav .gnav__item .gnav__link:after {
  content: "";
  display: block;
  width: calc(100% - 20px);
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 10px;
  bottom: -2px;
  opacity: 0;
  transition: 0.2s ease;
}

header .gnav .gnav__item .gnav__link:hover:after,
header .gnav .gnav__item .gnav__link.current:after {
  opacity: 1;
  transform: translate3d(0,-2px,0);
}

.menu_btn {
  display: none;
}

.sp_menu {
  display: none;
}

/* header message */
.headerMessage {
  width: 100%;
  padding: 16px 20px;
  background-color: #000;
}

.headerMessage__content {
  width: 100%;
  position: relative;
  transition: height 0.4s ease;
  overflow: hidden;
}

.headerMessage__item {
  padding: 0 20px;
}

.slide-item {
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.slide-item.is-hidden {
  display: none;
}

.slide-item.is-sliding {
  animation: slideInFromBottom 0.7s ease forwards;
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.headerMessage__item, .headerMessage__item a {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.remove-headerMessage {
  display: block;
  position: fixed;
  z-index: 10000;
  right: 20px;
  top: 10px;
  display: inline-block;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

@media screen and (max-width:768px) {
  .headerMessage {
    padding: 12px 12px;
  }
  .remove-headerMessage {
    position: absolute;
    top: 8px;
    right: 8px;
  }

  .headerMessage__item, .headerMessage__item a {
    font-size: 12px;
  }
}

.remove-headerMessage::before,
.remove-headerMessage::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45%;
  height: 1px;
  background-color: #fff;
  transform-origin: center;
}
.remove-headerMessage::before {
transform: translate(-50%, -50%) rotate(45deg);
}
.remove-headerMessage::after {
transform: translate(-50%, -50%) rotate(-45deg);
}

/* headeraccordion */
.accordion-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s;
  z-index: 10;
  background: #fff;
  padding: 8px 60px 20px 20px;
}

/* 表示時のクラス */
.accordion-panel.is-open {
  max-height: 50vh;
  opacity: 1;
  visibility: visible;
}

/* 閉じるボタン */
.accordion-close {
  position: absolute;
  top: 8px;
  right: 30px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.accordion-close::before,
.accordion-close::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 16px;
  height: 1px;
  background-color: #000;
}

.accordion-close::before {
  transform: rotate(45deg);
}

.accordion-close::after {
  transform: rotate(-45deg);
}

.search {
  display: flex;
  justify-content: flex-end;
}

.search__form {
  position: relative;
  margin: 0;
  width: 20em;
}

.search__input {
  width: 100%;
  height: auto;
  max-height: 2em;
  padding: 8px 30px 8px 8px;
  border: 1px solid #707070;
}

.search__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
  transition: .3s;
  color: #000;
  background-color: transparent;
  border: none;
}

.search__button .icon {
  width: 16px;
  height: 16px;
}

@media (any-hover: hover) {
  .search__input:focus-visible {
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2) !important;
  }

  .search__button:hover {
    scale: 1.1;
  }
}

@media screen and (max-width:768px) {
  .accordion-panel {
    padding: 20px 52px 20px 20px;
  }

  .accordion-close {
    top: 20px;
    right: 18px;
  }

  .search {
    justify-content: flex-start;
  }

  .search__form {
    width: 100%;
  }

}

/* footer ------- */

footer {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 80px 30px 100px 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .gnav li {
  margin: 0 0 1px;
}

footer .gnav li a {
  display: inline-block;
  padding: 7px 10px;
  font-size: 12px;
  position: relative;
}

footer .gnav li a:after {
  content: "";
  display: block;
  width: calc(100% - 20px);
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 10px;
  bottom: 1px;
  opacity: 0;
  transition: 0.2s ease;
}

footer .gnav li a:hover:after {
  opacity: 1;
  transform: translate3d(0,-2px,0);
}

footer .logo {
  width: 200px;
  padding: 10px 0 0;
}

footer .logo .icon {
  width: 200px;
  height: 45px;
}

footer .copyright {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.scrollbtn {
  width: 52px;
  height: 52px;
  position: fixed;
  right: 22px;
  bottom: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s linear;
}

.scrollbtn.active {
  opacity: 1;
  visibility: visible;
}

.scrollbtn:before {
    content: "";
    display: block;
    background-color: #333;
    width: 12px;
    height: 2px;
    position: absolute;
    left: 14px;
    top: 20px;
    -webkit-transform-origin: right top;
    -o-transform-origin: right top;
    -ms-transform-origin: right top;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}

.scrollbtn:after {
    content: "";
    display: block;
    background-color: #333;
    width: 12px;
    height: 2px;
    position: absolute;
    right: 14px;
    top: 20px;
    -webkit-transform-origin: left top;
    -o-transform-origin: left top;
    -ms-transform-origin: left top;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}

.pagenations {
display:flex;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:60px;
}

.pagenations li {
margin:0 10px;
}

.pagenations li a {
    display: inline-block;
    padding: 15px 12px;
    font-size: 14px;
    position: relative;
    letter-spacing: 0.03em;
    text-transform: capitalize;
}

#svg {
  display: none;
}

/* モジュール -------- */

.content {
  position: relative;
  z-index: 1;
  background-color: #fff;
  margin: 40px 0 100px;
}

.content .page_title {
  text-align: center;
  font-size: 17px;
  letter-spacing: 0.04em;
  padding: 0 0 42px;
}

.content .module {
  width: 720px;
  margin: 0 auto;
  padding: 110px 0 0;
}

.content .page_title + .module {
  padding: 0;
}

.content .module .title {
  font-size: 15px;
  letter-spacing: 0.06em;
  text-align: center;
}

.content .module p {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.content .module p a {
  text-decoration: underline;
}

.content .module p a:hover {
  color: #888;
}

/*.content .img {
  width: 720px;
  margin: 0 auto;
  padding: 110px 0 0;
}*/

.content .img {
  width: 720px;
  height: 80vh;
  margin: 110px auto 0;
  position: relative;
  overflow: hidden;
}

.content .img img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%,-50%,0);
}

.content .img + .img {
  margin-top: 40px;
}

.content .img.near {
  margin-top: 70px;
}

.content .imgs {
  width: 720px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 110px 0 0;
}

.content .imgs div {
  width: 31%;
  position: relative;
  overflow: hidden;
}

.content .imgs div:before {
  content: "";
  display: block;
  width: 100%;
}

.content .imgs.rate130 div:before {
  padding-top: 130%;
}

.content .imgs.rate150 div:before {
  padding-top: 150%;
}

.content .imgs img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%,-50%,0);
  width: 100%;
  height: auto;
}

.content .imgs.rate150 img {
  width: auto;
  height: 100%;
}

.content .btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 50px 0 ;
}

.content .btns a {
  display: inline-block;
  padding: 13px 45px;
  color: #000;
  border: 1px solid #000;
  letter-spacing: 0.05em;
  transition: 0.15s ease;
}

.content .btns.btns--top {
  margin-top: 60px;
  padding: 0;
}

.content .btns.type_line a {
  display: inline-block;
  padding: 17px 50px 19px;
  color: #000;
  border: none;
  letter-spacing: 0.04em;
  transition: 0.15s ease;
  font-size: 14px;
  position: relative;
}

.content .btns.type_line a:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: 0;	
  transition: 0.15s ease;
}

.content .btns a:hover {
  background-color: #efefef;
}

.content .btns.type_line a:hover {
  background-color: #fff;
}

.content .btns.type_line a:hover:before {
  transform: translate3d(0,-3px,0);
}

.definition dt {
  font-weight: bold;
  padding: 33px 0 0;
  font-size: 14px;
  color: #000;
  letter-spacing: 0.05em;
}

.definition dd {
  padding: 16px 0 12px;
  line-height: 1.7;
  font-size: 13px;
}

.definition dd img {
  margin: 1em 0 0.5em;
  vertical-align: top;
}

.definition dd img:first-child {
  margin-top: 0;
}


/* home -------- */

/* .keyvisual {
  background-color: #ddd;
  width: 100%;
  height: calc(100vh - 60px);
  background-image: url(https://img07.shop-pro.jp/PA01438/569/etc_base64/Y292ZXJfcGM.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  left: 0;
  top: 60px;
  opacity: 1;
  transition: opacity 0.2s ease;
} */

.keyvisual {
  width: 100%;
  position: relative;
}

.keyvisual img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.keyvisual.active {
  opacity:1;
}

.keyvisual__text-wrwpper {
  position: absolute;
  top: 8%;
  left: 4%;
  z-index: 1;
}

.keyvisual__text {
  color: #fff;
  font-size: 3.2vw;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.content.home {
  padding: 40px 15px 0;
}

/* catalog -------- */

.catalog_list {
  max-width: 800px;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.catalog_list li {
  width: calc(50% - 20px);
  margin: 32px 40px 0 0;
}

.catalog_list li:nth-child(2n) {
  margin-right: 0;
}

.catalog_list li a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 150px 0 150px;
  background-color: #f9f8f6;
  position: relative;
  transition: 0.15s ease;
}

.catalog_list li a:hover {
  background-color: #eee;
}

.catalog_list li a:before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  bottom: 22px;
  transition: 0.3s ease;
}

.catalog_list li a:hover:before {
  bottom: 21px;
}

.catalog_list li a:after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background-color: #000;
  position: absolute;
  right: 17px;
  bottom: 15px;
}

.catalog_list li a .icon {
  width: 70px;
  height: 16px;
}

.catalog_list li a p {
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 17px 0 0;
  color: #000;
  font-weight: 500;
}


/* retailers -------- */

.retailers_list {
  width: 800px;
  margin: 0 auto;
  padding: 20px 0 0;
}

.retailers_list > li {
  display: flex;
  border-bottom: 1px solid #ddd;
  padding: 20px 0 4px;
}

.retailers_list li h2 {
  width: 35%;
  padding: 5px 0;
  line-height: 1.5;
  font-weight: 500;
}

.retailers_list li p {
  width: 50%;
  padding: 5px 0;
  line-height: 1.5;
  color: #777;
}

.retailers_list li .links {
  width: 15%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.retailers_list li .links a {
  display: inline-block;
  padding: 5px;
  line-height: 1.5;
}

.retailers_list li .links .icon {
  width: 14px;
  height: 14px;
  margin: 0.25em 0 0;
}


/* itemlist -------- */

.shop_nav {
  max-width: 824px;
  width: calc(90% + 24px);
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto 0;
  justify-content: center;
}

.shop_nav a {
  display: inline-block;
  padding: 15px 12px;
  font-size: 14px;
  position: relative;
  letter-spacing: 0.03em;
  text-transform:capitalize;
}

.shop_nav a:after {
    content: "";
    display: block;
    width: calc(100% - 24px);
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 12px;
    bottom: 6px;
    opacity: 0;
    transition: 0.2s ease;
}

.shop_nav a:hover:after,
.shop_nav a.current:after {
  opacity: 1;
  transform: translate3d(0,-2px,0);
}

.shop_nav li:first-child {
  position: relative;
  width: 100%;
  padding-bottom: 12px;
  display: none;
}

/*.shop_nav li:nth-child(2) {
  padding: 0 0 0 24px;
}

.shop_nav li:nth-child(2):before {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background-color: #000;
  position: absolute;
  left: 12px;
  top: 15px;
  transform-origin: center;
  transform: rotate(20deg);
}*/

.item_list {
  display: flex;
  flex-wrap: wrap;
  width: 800px;
  margin: 0 auto;
  padding: 20px 0 0;
}

.item_list li {
  width: calc(50% - 20px);
  margin: 40px 40px 0 0;
}

.item_list li:nth-child(2n) {
  margin-right: 0;
}

.item_list li img {
  width: 100%;
  height: auto;
}

.item_list li a:hover img {
  opacity: 0.85;
}

.item_list li .info {
  display: flex;
  justify-content: space-between;
  padding: 8px 6px 0;
}

.item_list li .info h2,
.item_list li .info p {
  line-height: 1.5;
  font-size: 13px;
}


/* item -------- */

.content.item {
  margin-top: 40px;	
}

.item_data {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 60px 0 0;
}

.item_data .photo {
  width: 60%;
}

.item_data .photo img {
  width: 100%;
  height: auto;
}

.item_data .data {
  width: 40%;
  padding: 30px 6% 0;
}

.item_data .data .item_name {
  line-height: 1.55;
  font-weight: 500;
  font-size: 18px;
}

.item_data .data .price {
  margin: 50px 0 0;
  left: 0.05em;
  font-size: 15px;
}

.item_data .data .price span {
  font-size: 10px;
  display: inline-block;
  margin-left: 4px;
}

.item_data .data .detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 18px 0 0;
}

.item_data .data .detail dt {
  width: 20%;
  line-height: 1.5;
  padding: 12px 10px 0 0;
}

.item_data .data .detail dd {
  width: 80%;
  line-height: 1.5;
  padding: 12px 0 0;
}

.item_data .data .order_num {
  position: relative;
  margin: 20px 0 0;
}

.item_data .data .order_num .box {
  border: 1px solid #333;
  padding: 14px 20px;
  position: relative;
}

.item_data .data .order_num .box:before {
  content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    bottom: 18px;
    transition: 0.3s ease;
}

.item_data .data .order_num select {
  display: block;
  width: 100%;
  height: 43px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

.item_data .data .addtocart {
  display: block;
  width: 100%;
  padding: 14px 0;
  text-align: center;
  background-color: #000;
  color: #fff;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 15px 0 0;
  cursor: pointer;
}

.item_data .data .addtocart:hover {
  background-color: #333;
}
  
.item_data .data .soldout {
  width: 100%;
  padding: 14px 0;
  text-align: center;
  background-color: #f9f8f6;
  color: #555;
  margin: 15px 0 0;
}

.item_data .data .links {
  margin: 20px 0 0;
}

.item_data .data .links a {
  display: inline-block;
  padding: 14px 20px 14px 0;
  font-size: 12px;
  position: relative;
}

.item_data .data .links a:after {
    content: "";
    display: block;
    width: calc(100% - 20px);
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0px;
    bottom: 7px;
    opacity: 0;
    transition: 0.2s ease;
}

.item_data .data .links a:hover:after {
  opacity: 1;
  transform: translate3d(0,-2px,0);
}

.item_description {
  padding: 90px 70px 0;
  max-width: 1000px;
  margin: 0 auto;
}

.item_description p {
  line-height: 1.7;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.photo .swiper-pagination-bullet-active {
  background-color: #000;
  opacity: 0.9;
}

.photo .swiper-button-next {
    width: 40%;
    height: 100%;
    top: 0;
    margin: 0;
    right: 0;
    cursor: url(https://img07.shop-pro.jp/PA01438/569/etc/arrow_right.png?cmsp_timestamp=20211130144843),pointer;
  outline: none;
}

.photo .swiper-button-next:after {
  display: none;
}

.photo .swiper-button-prev {
    width: 40%;
    height: 100%;
    top: 0;
    margin: 0;
    left: 0;
    cursor: url(https://img07.shop-pro.jp/PA01438/569/etc/arrow_left.png?cmsp_timestamp=20211130144855),pointer;
  outline: none;
}

.photo .swiper-button-prev:after {
  display: none;
}

/* privacy policy ------- */

.privacy_list {
  width: 720px;
  margin: 0 auto;
}

/* shopping guide ------- */

.terms {
  width: 720px;
  margin: 0 auto;
  padding: 70px 0 55px;
  border-top: 1px solid #ddd;
}

.page_title + .terms {
  border: none;
  padding-top: 34px;
}

.terms .title {
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 0 0 22px;
}


/* スマホ -------- */
@media screen and (max-width:768px){
  
  /* スマホ 共通 -------- */
  .sp_hide {
    display: none;
  }
  
  /* スマホ header -------- */
  .headerWrapper {
    padding: 18px 20px 18px;
    display: block;
  }
  
  header .logo .icon {
    width: 70px;
    height: 16px;
  }
  
  header .gnav {
    position: absolute;
    right: 45px;
    top: 0;
  }
  
  header .gnav .gnav__item {
    display: none;
  }
  
  header .gnav .gnav__item--sp {
    display: block;
  }
  
  header .gnav .gnav__item .gnav__link {
    font-size: 11px;
    padding: 21px 15px 20px;
  }
  
  header .gnav .gnav__item .gnav__link:hover:after{
  display:none;
  }
  
  .sp_menu {
    width: 100%;
    padding: 30px 0 0;
    display: none;
  }
  
  .sp_menu.active {
    display: block;
  }
  
  .sp_menu dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .sp_menu dl dt {
    width: 100%;
    margin-top: 15px;
  }
  
  .sp_menu dl dt a {
    display: inline-block;
    padding: 16px 10px;
  }
  
  .sp_menu dl dd {
    width: 50%;
  }
  
  .sp_menu dl dd a{
    color: #777;
    font-size: 12px;
  }
  
  .sp_menu ul {
    border-top: 1px solid #ddd;
    margin: 20px 0 0;
    padding: 20px 0 10px;
  }
  
  .sp_menu ul li a {
    display: block;
    font-size: 12px;
    padding: 13px 10px;
  }
  
  .sp_menu dd a {
    display: block;
    padding: 16px 10px;
  }
  
  .offlayer {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s linear;
  }
  
  .offlayer.active {
    opacity: 1;
    visibility: visible;
  }
  
  .menu_btn {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 52px;
    height: 52px;
    z-index: 15;
  }
  
  .menu_btn .bar {
    display: block;
    height: 1px;
    width: 20px;
    background-color: #000;
    position: absolute;
    left: 16px;
    transition: all .3s;
  }
  
  .menu_btn .bar:nth-child(1) {
    top: 17px;
  }
  .menu_btn .bar:nth-child(2) {
    top: 25px;
  }
  .menu_btn .bar:nth-child(3) {
    top: 33px;
  }
  
  /* メニューアニメーション */
  .menu_btn .bar:nth-of-type(1) {
    animation: menu_bar1 .3s forwards;
  }
  
  @keyframes menu_bar1 {
      0% { transform: translateY(8px) rotate(45deg); }
     50% { transform: translateY(8px) rotate(0); }
    100% { transform: translateY(0) rotate(0); }
  }

  .menu_btn .bar:nth-of-type(2) {
    transition: all .15s .15s;
    opacity: 1;
  }

  .menu_btn .bar:nth-of-type(3) {
    animation: menu_bar2 .3s forwards;
  }

  @keyframes menu_bar2 {
      0% { transform: translateY(-8px) rotate(-45deg); }
     50% { transform: translateY(-8px) rotate(0); }
    100% { transform: translateY(0) rotate(0); }
  }

  .menu_btn.active .bar:nth-of-type(1) {
    animation: active_menu_bar1 .3s forwards;
  }
  @keyframes active_menu_bar1 {
      0% { transform: translateY(0) rotate(0); }
     50% { transform: translateY(8px) rotate(0); }
    100% { transform: translateY(8px) rotate(45deg); }
  }

  .menu_btn.active .bar:nth-of-type(2) {
    opacity: 0;
  }

  .menu_btn.active .bar:nth-of-type(3) {
    animation: active_menu_bar3 .3s forwards;
  }
  @keyframes active_menu_bar3 {
      0% { transform: translateY(0) rotate(0); }
     50% { transform: translateY(-8px) rotate(0); }
    100% { transform: translateY(-8px) rotate(-45deg); }
  }
  
  /* スマホ footer -------- */
  
  footer {
    padding-top: 100px;
    padding-bottom: 70px;
    padding-left: calc(5% - 10px);
  }
  
  footer .logo {
    width: 130px;
  }
  
  footer .logo .icon {
    width: 130px;
    height: 29px;
  }
  
  /* スマホ モジュール -------- */
  
  .content.home {
    padding-left: 0;
    padding-right: 0;
  }
  .content .page_title {
    font-size: 16px;
    padding: 0 0 30px;
  }
  
  .content {
    margin: 20px 0 0;
  }
  
  .content .module {
    width: 80%;
    margin: 0 auto;
  }
  
  .content .module p {
    font-size: 13px;
  }
  
  .content .img {
    width: 90%;
    height: auto;
    margin: 0 auto;
    padding-top: 110px;
  }

  .content .img img {
    position: relative;
    left: auto;
    top: auto;
    transform: translate3d(0,0,0);
  }
  
  .content .img.near {
    margin-top: 0px;
      padding-top:60px;
  }
  
  .content .img + .img {
    padding-top: 24px;
  }
    
  .content .imgs {
    width: 90%;
  }
  
  .content .imgs div {
    width: 100%;
    margin-top: 24px;
  }
  
  .content .imgs div:first-child {
    margin-top: 0;
  }
  
  .content .btns.type_line {
    padding-top: 40px;
  }

  .content .btns.btns--top {
    margin-top: 0;
    padding: 40px 0 0 ;
  }
  
  .content .btns a {
    padding: 16px 50px;
    font-size: 13px;
  }
  
  .content .btns.type_line a {
    padding: 16px 50px 18px;
    font-size: 13px;
  }
  
  .definition dt {
    font-size: 13px;
  }
  
  
  /* スマホ home -------- */
  
  /* .keyvisual {
    height: calc(100vh - 52px);
    background-image: url(https://img07.shop-pro.jp/PA01438/569/etc_base64/Y292ZXJfc3A.jpg);
    top: 52px;
  } */
  

  .keyvisual__text-wrwpper {
    top: 6%;
    left: 7%;
  }

  .keyvisual__text {
    font-size: 6vw;
  }

  /* スマホ catalog -------- */

  .catalog_list {
    width: 90%;
  }
  
  .catalog_list li {
    width: 100%;
    margin: 24px 0 0;
  }
  
  /* retailers -------- */

  .retailers_list {
    width: 90%;
    margin: 0 auto;
    padding: 3px 0 0;
  }
  
  .retailers_list > li {
    flex-wrap: wrap;
  }

  .retailers_list li h2 {
    width: 100%;
  }
  
  .retailers_list li p {
    width: 75%;
    font-size: 12px;
  }
  
  .retailers_list li .links {
    width: 25%;
  }
  
  .retailers_list li .links li {
    margin-left: 5px;
  }
  
  .retailers_list li .links a {
    font-size: 12px;
  }
  
  .retailers_list li .links .icon {
    width: 13px;
    height: 13px;
  }
  
  /* スマホ itemlist -------- */

  .shop_nav {
    max-width: auto;
    width: calc(90% + 22px);
    margin: 12px auto 0;
    justify-content: flex-start;
  }
  
  .shop_nav a {
    font-size: 14px;
    padding: 10px 12px;
  }
  
  .shop_nav a:after {
      bottom: 4px;
  }
  
  .shop_nav li:first-child {
    display: block;
  }
  
  .item_list {
    width: 90%;
  }
  
  .item_list li {
    width: 100%;
    margin: 40px 0 0;
  }
  
  .item_list li:first-child {
    margin-top: 10px;
  }
  
  /* スマホ item -------- */

  .content.item {
    margin-top: 10px;	
  }
  
  .item_data {
    margin: 30px 0 0;
  }
  
  .item_data .photo {
    width: 100%;
  }
  
  .item_data .data {
    width: 90%;
    padding: 30px 0 0;
    margin: 0 auto;
  }
  
  .item_data .data .detail {
    margin-top: 5px;
  }
  
  .item_data .data .price {
    margin-top: 25px;
  }
  
  .item_description {
    width: 90%;
    margin: 30px auto 0 ;
    padding: 40px 0 0;
    border-top:1px solid #efefef;
  }
  
  .photo .swiper-button-next,
  .photo .swiper-button-prev {
    display: none;
  }
  
  .item_data .data .order_num .box {
    padding: 18px 20px;
  }
  
  .item_data .data .order_num .box:before {
    bottom: 21px;	
  }
  
  .item_data .data .order_num select {
    height: 51px;
  }
  
  .item_data .data .addtocart,
  .item_data .data .soldout {
    padding: 18px 0;
  }
  
  /* スマホ privacy policy ------- */

  .privacy_list {
    width: 90%;
  }
  
  /* スマホ shopping guide ------- */

  .terms {
    width: 90%;
  }
  
  .terms .title {
    font-size: 14px;
  }

}


/* section */
.section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.section + .section {
  margin-top: 160px;
}

.section>:not([class^=heading])+* {
  margin-top: 40px;
}

@media screen and (max-width:768px){
  .section {
    width: auto;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .section + .section {
    margin-top: 120px;
  }
}

/* heading */
.heading {
  font-size: 1.25rem;
  margin-bottom: 1.875rem;
}

.heading-2 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

@media screen and (max-width:768px) {
  .heading {
    font-size: 1.125rem;
  }

  .heading-2 {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }
}

/*  カテゴリーブロック*/
.category-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
  margin-bottom: -1.2rem;
}

.category-list__item {
  flex: 0 0 33.3333%;
  padding: 0 0.6rem 1.2rem 0.6rem;
}

.category-list__link {
  display: block;
  position: relative;
}

@media (any-hover: hover) {
  .category-list__link:hover {
    opacity: 0.7;
    transition: .3s;
  }
}

.arrow {
  position: relative;
}

.category-list__link.arrow::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 6%;
  width: 24px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: skew(45deg);
}

.category-list__text {
  position: absolute;
  top: 6%;
  left: 6%;
}

.category-title {
  font-size: 1.125rem;
  color: #fff;
}

.category-subtitle {
  font-size: 0.75rem;
  color: #fff;
  margin-top: 0.5em;
}

@media screen and (max-width:768px) {
  .category-list__item {
    flex: 0 0 50%;
  }
}

/* 製品カード */
.item-cardList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px -40px;
}

.item-card {
  flex: 0 0 25%;
  padding: 0 10px 40px;
  transition: 0.3s ease;
}

.item-card__img {
  position: relative;
  padding-top: 85%;
  overflow: hidden;
  margin-bottom: 10px;
}

.item-card__img img {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.item-card__body >*:last-child {
  margin-bottom: 0;
}

.item-name {
  font-size: 0.875rem;
  line-height: 1.4;
}

.item-detail {
  margin-top: 10px;
  font-size: 0.75rem;
  display: flex;
  justify-content: flex-end;
  column-gap: 1em;
}

@media (any-hover: hover) {
  .item-card a:hover {
    opacity: 0.7;
    transition: .3s;
  }
}

@media screen and (max-width:768px) {
  .item-cardList {
    margin: 0 -10px -30px;
  }

  .item-card {
    flex: 0 0 50%;
    padding: 0 10px 30px;
  }
}

/* image-box */
.image-box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px -20px;
  align-items: center;
}

.image-box--al-s {
  align-items: flex-start;
}

.image-box__item {
  padding: 0 10px 20px;
}

.image-box__item--middle {
  flex: 0 0 50%;
}

.image-box__item--small {
  flex: 0 0 25%;
}

@media screen and (max-width:768px) {
  .image-box__item--middle {
    flex: 0 0 100%;
  }
  
  .image-box__item--small {
    flex: 0 0 50%;
  }

  .sp-order-1 {
    order: 1;
  }

  .sp-order-2 {
    order: 2;
  }

  .sp-order-3 {
    order: 3;
  }

  .sp-order-4 {
    order: 4;
  }

  .sp-order-5 {
    order: 5;
  }

  .sp-order-6 {
    order: 6;
  }
}

/* image-box */
.description-box> * + * {
  margin-top: 20px;
}

.description__title {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.description__text {
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/* utility ------- */
.u-text {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
}

.u-text + .u-text {
  margin-top: 1.6em;
}

.u-text-center {
  text-align: center;
}