@charset "UTF-8";
/*================================================
*  ec up用 css
================================================*/

/* ==== root ========================== */
:root {
  --color-black: #333333;
  --color-white: #ffffff;
  --color-gray: #eaeaea;
  --color-red: #850a0a;
  --color-blue: #0a4985;
  --color-green: #5b9656;

  --noto: "Noto Sans JP", sans-serif;
  --inter: "Inter", sans-serif;

  --oswald: "Oswald", sans-serif;
}

/*================================================
*  一般・共通設定
================================================*/
html {
  /* font-size: 62.5%; */
  /* 1440>>14px */
  font-size: clamp(8px, 0.972vw, 14px);
  scroll-behavior: smooth;
}

body {
  font-family: var(--noto);
  background: var(--color-white);
  color: var(--color-black) !important;
  font-weight: 400;
  /* letter-spacing: .075em; */
  line-height: 1.5;
  font-size: 1.2rem;
}

.wide_wrap {
  width: 90%;
  min-width: 700px;
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
}

.wrap {
  /* width: 85%; */
  /* min-width: 700px;
    max-width: 1280px; */
  margin: 0 auto;
  position: relative;
}

.narrow {
  width: 65%;
  margin: 0 auto;
  position: relative;
}

a {
  color: var(--color-black) !important;
  text-decoration: none;
  transition: all .4s;
  overflow-wrap: break-word;
}

a:hover {
  opacity: 0.6;
}

p {
  letter-spacing: .075em;
}

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

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */
h2.hd {
  text-align: center;
  margin: 0 auto 2rem;
  font-size: 1rem;
}

h2.hd span {
  display: block;
  font-size: 1.6rem;
  font-family: var(--oswald);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

@media screen and (max-width:767px) {
  html {
    font-size: clamp(5px, 2.66666vw, 10px);
  }

  body {
    font-size: 1.4rem;
  }

  /* 375px >>10px */
  .wide_wrap,
  .narrow {
    width: 100%;
    padding: 0 2rem;
    min-width: unset;
  }
}

/*================================================
*  header / ヘッダー
================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  border-top: 1px solid var(--color-gray);
  border-bottom: 1px solid var(--color-gray);
  background: var(--color-white);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__left {
  width: 40%;
  min-width: 400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__left h1 {
  padding: 1rem;
  border-right: 1px solid var(--color-gray);
  width: 15rem;
}

.nav__right {
  padding: 0 0 0 3rem;
  /* background: var(--color-white); */
}

.nav__right ul {
  gap: 2rem;
  display: flex;
  align-items: center;
  padding-right: 2rem;
}

.nav__right .tab {
  display: none;
}

.nav__right ul li a {
  font-size: 1rem;
  font-family: var(--oswald);
  text-transform: uppercase;
}

nav.gnav.global__nav {
  display: flex;
  align-items: center;
  justify-content: end;
}


.nav_search {
  width: calc(100% - 17rem);
}

.nav_search form {
  display: flex;
  position: relative;
}

.nav_search form button {
  position: absolute;
  right: 0;
  height: 100%;
  background: transparent;
  color: #ccc !important;
}

.nav_search input {
  display: block !important;
  width: 100%;
  height: 3rem;
  padding: 0 1rem !important;
  background: #fafafa !important;
  border: 1px solid #fafafa !important;
  border-radius: 0 !important;
  font-size: 1em !important;
  margin: 0 !important;
  line-height: 1.6 !important;
  color: var(--color-black) !important;
  box-shadow: unset !important;
}

.nav_search input::placeholder {
  color: #ccc !important;
}


/*--- baseMenu ---*/
#baseMenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
}

#baseMenu>ul>li {
  list-style: none;
  width: auto;
  padding: 1rem 2rem;
  border-left: 1px solid var(--color-gray);
}

#baseMenu>ul>li.base {
  display: none;
}

#baseMenu ul li a {
  font-size: 1rem;
  display: grid;
  place-content: center;
}

#baseMenu ul li img {
  width: 2rem;
  height: auto;
}



@media screen and (max-width:767px) {
  header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray);
    padding-left: 0;
  }

  .nav__inner {
    display: flex;
    align-items: stretch;
  }

  .nav__left {
    min-width: unset;
  }

  .nav__left h1 {
    min-height: unset;
    padding: 1.5rem 1rem;
  }


  .nav__right {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border: none;
    padding: 0;
  }

  .nav__right {
    padding-right: 6rem;
  }

  .nav__right ul {
    display: block;
    padding-right: 0;
  }

  .nav__right ul li a {
    font-size: 1.4rem;
  }

  .nav_search,
  .nav_search input {
    width: 100%;
  }

  .nav_search {
    margin-top: 2rem;
  }

  .nav_search input {
    height: 5rem;
  }


  /* ハンバーガーメニュー内 */
  nav.global__nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-white);
    transition: all .3s ease-out;
    z-index: 200;
    overflow-y: auto;
    width: 100%;
    padding: 10rem 2rem 0;
    opacity: 0;
    pointer-events: none;
    flex-wrap: wrap;
  }

  nav.gnav.global__nav {
    display: block;
  }

  /* 表示 */
  .open_nav .global__nav {
    opacity: 1;
    pointer-events: fill;
  }

  .nav__right .tab {
    display: block;
  }

  .nav__right .tab.tab_menu {
    margin-top: 6rem !important;
    padding-top: 3rem;
    border-top: 1px solid var(--color-gray);
  }


  .hamburger {
    position: absolute;
    cursor: pointer;
    z-index: 300;
    width: 6vw;
    height: 6vw;
    right: 1vw;
    top: 0;
    display: block;

    width: 4rem;
    height: 4rem;
    right: 1rem;
  }



  /* line open */
  .hamburger__line {
    position: absolute;
    left: 50%;
    width: 80%;
    height: 1px;
    background-color: var(--color-black);
    transition: all .2s ease-out;
    transform: translateX(-50%);
  }

  .hamburger__line--1 {
    top: 35%;
  }

  .hamburger__line--2 {
    top: 50%;
  }

  .hamburger__line--3 {
    top: 65%;
  }

  /* line close */
  .open_nav .hamburger__line--1 {
    transform: translateX(-50%) rotate(35deg);
    top: 50%;
  }

  .open_nav .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .open_nav .hamburger__line--3 {
    transform: translateX(-50%) rotate(-35deg);
    top: 50%;
  }

  nav.gnav.global__nav ul.nav__menu li:not(.cat) {
    margin: 1.6rem 0 0 0;
  }

  #baseMenu,
  .base__menu--Icon.tab,
  #baseMenu>ul {
    height: 100%;
  }

  #baseMenu>ul {
    border-right: 1px solid var(--color-gray);
  }

  #baseMenu>ul>li {
    padding: 0rem 2rem;
    height: 100%;
    display: grid;
    place-content: center;
  }

  #baseMenu ul li img {
    width: 2rem;
    height: auto;
  }

}

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

/*================================================
*  #side_nav
================================================*/
#side_nav {
  /* width: 30%;
  max-width: 30rem; */
  max-width: 340px;
  width: 20%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  border: 1px solid var(--color-gray);
  z-index: 20;
}


#side_nav h1 {
  width: 55%;
  margin: 4rem auto 0;
}



.side_nav-under {
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--color-gray);
  padding: 3rem 2rem;
  font-family: var(--oswald);
  font-size: 1.2rem;

}

.side_nav-under h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

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

  #side_nav {
    display: none;
  }

}


/*================================================
*  under_nav
================================================*/
/* #under_nav {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray);
  border-bottom: 1px solid var(--color-gray);
  z-index: 19;
}

.under_nav-inner {
  padding: 2rem 5rem 3rem;
  text-align: right;
}

#under_nav a {
  font-size: 1.6rem;
  font-family: var(--oswald);
}

@media screen and (max-width:1024px) {
  .under_nav-inner {
    padding: 1.5rem 2rem;
  }
} */

/*================================================
*  mainContent
================================================*/


/* #mainContent,
.noItem-wrap {
  margin-top: 10rem;
} */



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

  /* #mainContent,
  .noItem-wrap {
    margin-top: 4rem;
  } */

}




/*================================================
*  section btn 共通
================================================*/
section {
  padding-bottom: 12rem;
  position: relative;
}

.section {
  padding-top: 12rem;
}

.btnArea a {
  width: 30%;
  padding: 1.2em 0;
  display: grid;
  place-content: center;
  background: var(--color-white);
  border: 1px solid var(--color-black);
  color: var(--color-black) !important;
  text-transform: capitalize;
}

.btnArea.ac a {
  margin: 0 auto;
}

.noitem_messe {
  margin: 3em 0;
}


@media screen and (max-width:767px) {
  section {
    padding-bottom: 8rem;
  }

  .section {
    padding-top: 8rem;
  }

  .btnArea a {
    width: 70%;
    padding: 0.5em 0;
  }
}


/*================================================
*  カテゴリ 共通 自作 common__category
================================================*/
section.section.common__category ul.category__list {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

section.section.common__category ul li a {
  background: var(--color-gray);
  display: block;
  width: 100%;
  padding: 0.5em 0;
}

section.section.common__category ul li ul.category--medium li a {
  background: transparent;
  margin: 1em auto 0;
}

@media(max-width: 767px) {
  section.section.common__category ul.category__list {
    gap: 1em;
    grid-template-columns: 1fr;
  }
}


/*================================================
*  footer トップ下層共通 自作
================================================*/
body.shop #mainFooter {}

body.shop #mainFooter .footerMenu ul {
  padding: 0 1.5rem;
}

body.shop #mainFooter .footerMenu ul li {
  color: var(--color-black) !important;
  font-family: var(--oswald);
  margin: 0 0 1rem;
  font-size: 1rem;
}


body.shop #mainFooter .copy {
  text-align: right;
  border-top: 1px solid var(--color-gray);
  font-size: 0.8rem;
  font-family: var(--oswald);
  color: #999;

  margin-top: 2rem;
  padding: 1rem 1.5rem;
}

/* ↓いる?????? */
body.shop #mainFooter .footerMenu ul .social_btn {
  float: right;
  width: 215px;
}

body.shop #mainFooter .footerMenu ul .social_btn li {
  margin: 0;
}

body.shop #mainFooter .footerMenu li .fb-like {
  margin-top: -5px;
}

body.shop #mainFooter .footerMenu ul .social_btn li.twitter {
  margin: -5px 0 0 0;
}

/* ↑いる?????? */

/* 
@media screen and (max-width:1024px) {
  body.shop #mainFooter {
    padding: 0 0 10rem;
  }
} */


@media(max-width: 767px) {
  body.shop #mainFooter .footerMenu ul li {
    width: 100%;
  }

  body.shop #mainFooter .footerMenu ul.footer__sns {
    justify-content: center;
  }

  body.shop #mainFooter .footerMenu ul.footer__sns li {
    width: auto;
    margin: 0 1em;
  }
}

/*================================================
*  mainVisual
================================================*/
#mainVisual {
  margin-top: 4rem;
  /* height: 60vh; */
  height: 100%;
  /* min-height: 550px; */
}

.mv_inner {
  display: flex;
  align-items: stretch;
  justify-content: start;
}


.mv_slide,
.mv_recommend {
  width: 50%;
}

.mv_recommend {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.mv_slide,
.mv_swiper {
  /* height: 60vh; */
  height: 100%;
  /* min-height: 550px; */
}

.mv_slide .swiper-slide,
.mv_slide .swiper-slide img {
  overflow: hidden;
  object-fit: cover;
  /* height: 60vh; */
  height: 100%;
  /* min-height: 550px; */
}

body#shopTopPage .mv_recommend .hd {
  border-bottom: 1px solid var(--color-gray);
  margin-bottom: 0;
  padding: 2rem 0;
}

body#shopTopPage .mv_recommend .hd span {
  margin: 0;
}

body#shopTopPage .mv_recommend .item__list {
  grid-template-columns: repeat(2, 1fr);
  border: none;
  /* width: 80%; */
  margin: 0 auto;
}

body#shopTopPage .mv_recommend .item__list::before {
  content: none;
}

body#shopTopPage .mv_recommend .item {
  border: none;
}

body#shopTopPage .mv_recommend .item:first-of-type {
  border-right: 1px solid var(--color-gray);
}

/* #subVisual {
  height: 8rem;
  padding: 0;
} */
@media screen and (max-width:1523px) {

  body#shopTopPage .mv_recommend .item__list {
    width: 100%;
  }
}

@media(max-width: 963px) {
  #mainVisual {
    margin-top: 4rem;
    height: auto;
    min-height: unset;
  }


  .mv_inner {
    flex-wrap: wrap;
  }

  .mv_slide,
  .mv_swiper {
    height: 100vw;
    min-height: unset;
  }

  .mv_slide .swiper-slide,
  .mv_slide .swiper-slide img {
    height: 100vw;
    min-height: unset;
  }

  .mv_slide .swiper-slide.slide01 img {
    object-position: 73% 0%;
  }

  .mv_slide,
  .mv_recommend {
    width: 100%;
  }



  body#shopTopPage .mv_recommend .hd {
    padding-top: 2rem;
  }
}

@media(max-width: 767px) {}

/*================================================
*  --products
================================================*/

section.--products h2.hd {
  margin-bottom: 0;
  padding: 2rem 0;
  border-top: 1px solid var(--color-gray);
}

section.--products h2.hd span {
  margin: 0;
}

/*================================================
*  shopTopPage トップ アイテムリスト
================================================*/




body#shopTopPage .item__list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  /* border-bottom: 1px solid var(--color-gray); */
  border-top: 1px solid var(--color-gray);
  position: relative;
}

body#shopTopPage .item__list::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-gray);
  left: 0;
  bottom: 0;
}

body#shopTopPage .item {
  position: relative;
  transition: .4s;
  border-right: 1px solid var(--color-gray);
  border-bottom: 1px solid var(--color-gray);
  padding: 1.5rem;
}

body#shopTopPage .item:nth-of-type(7n) {
  border-right: none;
}


body#shopTopPage .item .itemImg {
  width: 100%;
}

body#shopTopPage .item .itemTitle {
  margin: 2rem 0 0;
}

body#shopTopPage .item a {
  color: var(--color-black);
}

body#shopTopPage .item a .itemTitle h2 {
  display: block;
  font-size: 0.8rem;
  font-weight: bold;
  margin: 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;

}

body#shopTopPage .item .itemDetail .itemPrice {
  font-size: 1rem;
  line-height: 1;
  font-family: var(--oswald);
}

/* itemImg */
body#shopTopPage .item .itemImg {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  margin: auto;
  overflow: hidden;
  padding: 1px;
  vertical-align: middle;
}


body#shopTopPage .item .itemImg span {
  display: block;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  aspect-ratio: 1/1;
}

/* body#shopTopPage .item .itemImg img.itemImg--fit {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
} */

body#shopTopPage .item .itemImg img.image-resize {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width:1920px) {
  body#shopTopPage .item__list {
    grid-template-columns: repeat(6, 1fr);
  }

  body#shopTopPage .item:nth-of-type(7n) {
    border-right: 1px solid var(--color-gray);
  }

  body#shopTopPage .item:nth-of-type(6n) {
    border-right: none;
  }


}

@media screen and (max-width:1523px) {
  body#shopTopPage .item__list {
    grid-template-columns: repeat(4, 1fr);
  }

  body#shopTopPage .item:nth-of-type(6n) {
    border-right: 1px solid var(--color-gray);
  }

  body#shopTopPage .item:nth-of-type(4n) {
    border-right: none;
  }

}

@media screen and (max-width:963px) {
  body#shopTopPage .item__list {
    grid-template-columns: repeat(3, 1fr);
  }

  body#shopTopPage .item:nth-of-type(4n) {
    border-right: 1px solid var(--color-gray);
  }

  body#shopTopPage .item:nth-of-type(3n) {
    border-right: none;
  }
}

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

  body#shopTopPage .item__list {
    grid-template-columns: repeat(2, 1fr);
  }

  body#shopTopPage .item:nth-of-type(3n) {
    border-right: 1px solid var(--color-gray);
  }

  body#shopTopPage .item:nth-of-type(2n) {
    border-right: none;
  }


  body#shopTopPage .item .itemTitle {
    margin: 0 0 5px;
  }

  body#shopTopPage .item a .itemTitle h2 {
    font-size: 1rem;
    margin: 1em 0 0;
  }

  body#shopTopPage .item .itemDetail .itemPrice {
    font-size: 1.2rem;
  }
}

/* soldout */
body#shopTopPage .item .itemImg span .soldout_cover {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.7);
  bottom: 0;
  filter: alpha(opacity=80);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  zoom: 1;
}

body#shopTopPage .item .itemImg span .soldout_cover p {
  color: var(--color-red);
  line-height: 1.5;
  font-size: 1.6rem;
  text-align: center;
  font-family: var(--oswald);
  font-weight: 600;
}

body#shopTopPage .item .itemImg span .soldout_cover p span {
  font-size: 0.8em;
  display: inline;
}



body#shopTopPage .item .itemDetail .discountPrice {
  color: #e75c5c;
  margin: 0;
}

body#shopTopPage .item .itemDetail .discountPrice__ratio {
  border: 1px solid #e75c5c;
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  line-height: 18px;
  margin-right: 5px;
  padding: 0 5px;
}

body#shopTopPage .item .itemDetail .discountPrice__calcPrice {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.8;
  white-space: nowrap;
}

/* coming soon */
body#shopTopPage .item .comingSoon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.7);
  bottom: 0;
  filter: alpha(opacity=80);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  zoom: 1;
}

body#shopTopPage .item .comingSoon span {
  font-size: 1.6em;
  color: var(--color-green);
  margin-top: -0.8em;
}

body#shopTopPage .item .preOrder,
body#shopTopPage .item .lottery,
body#shopTopPage .item .takeout,
body#shopTopPage .item .community {
  border: 1px solid #333;
  border-radius: 2px;
  color: #333;
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  margin-top: 6px;
}

body#shopTopPage .item .community {
  background-color: #f2bb31;
  border: 1px solid #f2bb31;
  color: #fff;
}

@media screen and (max-width:767px) {
  body#shopTopPage .item .itemImg span {
    padding: 0rem;
  }

  body#shopTopPage .item .itemImg span .soldout_cover p {
    font-size: 1.1em;
  }

  body#shopTopPage .item .comingSoon span {
    font-size: 1.1em;
  }

  .label_image {
    height: 12vw !important;
    width: 12vw !important;
  }
}







/*================================================
*  shopDetailPage 商品個別ページのみ
================================================*/
body#shopDetailPage #mainContent {
  background-color: var(--color-white);
}

/* 個別 左画像 --------- */
body#shopDetailPage #mainContent .item {
  position: relative;
  width: 55%;
}

/* ??????bar --------- */
div#mCSB_1_scrollbar_vertical {
  display: none !important;
}

/* スライド --------- */
body#shopDetailPage #mainContent .item .itemImgSlide {
  width: 100%;
}

body#shopDetailPage #mainContent .item .bx-wrapper ul li {
  width: 100% !important;
}

body#shopDetailPage #slideImg .imgBox {
  border-radius: 10px;
  text-align: center;
  width: 100%;
}

body#shopDetailPage #slideImg .imgBox img {
  vertical-align: middle;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/* 商品ページラベル */
body#shopDetailPage #slideImg .imgBox img.label_image {
  display: none;
}

.bx-viewport {
  aspect-ratio: 4 / 3 !important;
  overflow: hidden;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}


/* スライド下  ページャー --------- */
body#shopDetailPage #slideImgPager {
  overflow: hidden;
  padding: 0;
  width: 100%;
}

body#shopDetailPage #slideImgPager li {
  display: inline-block;
  margin-top: 1vw;
}

body#shopDetailPage #slideImgPager .smallImgBox img {
  aspect-ratio: 4 / 3 !important;
  overflow: hidden;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 5rem;
  /* max-width: 140px; */
}

body#shopDetailPage #slideImgPager .mCSB_inside>.mCSB_container {
  margin: 0;
}



/* アイテム個別 詳細 下 */
body#shopDetailPage .itemDescription {
  font-size: 1rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--color-gray);
}

body#shopDetailPage .itemDescription p {
  line-height: 1.8;
}

body.shop #embedded-tag {
  font-size: 1em;
  letter-spacing: 1px;
  line-height: 2;
  padding: 1em 0 0;
}

body#shopDetailPage #embedded-tag p {
  color: var(--color-black);
  margin: 0 0 5px;
}

body#shopDetailPage #embedded-tag textarea {
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  color: #838383;
  padding: 5px;
  width: 100%;
}

body#shopDetailPage #purchase_form .purchaseButton {
  margin: 2em 0 0;
  text-align: center;
}

/* カートに入れる */
body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn {
  background: var(--color-black);
  border: 1px solid var(--color-black);
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 0.9em;
  font-weight: bold;
  outline: none;
  padding: 1.2em 0;
  text-align: center;
  text-decoration: none;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  width: 100%;
}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn.purchaseButton__btn--outOfStock {
  color: #fff;
  background: #888;
}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn:hover {
  opacity: 1;
}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn.purchaseButton__btn--comingSoonStay:disabled {
  cursor: not-allowed;
  opacity: 1;
}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn.purchaseButton__btn--comingSoonStay {
  background: #eeeeee;
  color: #999999;
  cursor: not-allowed;
  opacity: 1;
}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn.purchaseButton__btn--notApplying:disabled {
  cursor: not-allowed;
  opacity: 1;
}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn:disabled {
  background: #eeeeee;
  color: #999999;
  cursor: not-allowed;
  opacity: 1;
}

/* 販売期間が終了しました sold ボタン */
body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn--disabled {
  background: #eeeeee;
  color: #999999;
  cursor: not-allowed;
  opacity: 1;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 36px;
  padding: 0.6em;
  text-align: center;
  width: 280px;
  margin: 2em auto;

}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn:disabled:hover {
  opacity: 1;
}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn--disabled:hover {
  opacity: 1;
}



/* ------ soldout ------------------------ */
body#shopDetailPage .purchase .itemPrice_soldout {
  margin-top: 2.5em;
}

/* 金額 solid 取り消し線 */
body#shopDetailPage .purchase .itemPrice_soldout h2 {
  display: block;
  margin: 0;
  text-decoration: line-through;
  font-size: 1.5em;
}

body#shopDetailPage .purchase .itemPrice_soldout>span {
  color: var(--color-red);
  display: block;
  margin: 5px 0 1.5em 0;
  font-size: 0.8em;
}

body#shopDetailPage .purchase .comingSoon {
  color: var(--color-green);
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 0 1.5em;
}

/* ------ カート下 シェアボタン ------------------------ */
body#shopDetailPage .shareButtons {
  display: block;
  text-align: right;
  margin-bottom: 20px;
}

body#shopDetailPage .shareButtons>div {
  display: inline-block;
  margin-left: 15px;
}

body#shopDetailPage .shareButtons>div a {
  color: #999999;
  border-radius: 0 !important;
}

body#shopDetailPage .shareButtons #widget a {
  border-radius: 0 !important;
}

/* ------ 通報する シェアボタン ------------------------ */
#reportBtn {
  text-align: right;
  font-size: 0.8em;
  padding-bottom: 1em;
}

#reportBtn a {
  color: #999999;
}

/* アイテム個別 詳細 右 */
body#shopDetailPage #mainContent .purchase {
  margin: 0 0 0 0px;
  width: 40%;
  box-sizing: border-box;
}

body#shopDetailPage #mainContent h2.itemTitle {
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
}

body#shopDetailPage #purchase_form {
  color: #333;
  margin-bottom: 3em;
}

body#shopDetailPage #purchase_form select {
  cursor: pointer;
}

body#shopDetailPage #purchase_form #purchaseSelect {
  margin: 0;
}

body#shopDetailPage #purchase_form .purchaseElement {
  margin: 5px 0 1em;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1rem;
}

body#shopDetailPage #purchase_form input,
body#shopDetailPage #purchase_form select {
  width: 100%;
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

body#shopDetailPage #purchase_form #itemSelect input::placeholder {
  color: #CCCCCC;
}

body#shopDetailPage #purchase_form label {
  display: block;
  white-space: nowrap;
}

body#shopDetailPage #purchase_form .itemOptionElement,
#variationSelectWrap {
  max-width: 100%;
}

body#shopDetailPage #purchase_form .itemOption__caption {
  margin: 8px 0 8px 0;
  line-height: 1.5;
  display: block;
}

body#shopDetailPage #purchase_form .itemOption__bottomCaptionBlock {
  overflow: hidden;
}

body#shopDetailPage #purchase_form .itemOption__caption--error {
  float: left;
  display: block;
  color: #F07F7F;
  transform-style: preserve-3d;
}

body#shopDetailPage #purchase_form .itemOption__count {
  float: right;
  display: block;
  color: #777777;
}

body#shopDetailPage #purchase_form .itemOption__count--error {
  color: #F07F7F;
}

body#shopDetailPage #purchase_form #itemSelect .itemOption__input[data-dirty="true"][data-has-error="true"] {
  border: #F07F7F 1px solid;
}

body#shopDetailPage #purchase_form #itemSelect select.itemOption__select,
body#shopDetailPage #purchase_form #itemSelect #valiationSelect,
body#shopDetailPage #purchase_form #itemSelect #amountSelect {
  height: auto;
  white-space: normal;
  max-width: 100%;
  min-height: 2.1em;
  appearance: none;
  padding-right: 1em;
  line-height: initial;
  background-repeat: no-repeat;
  background-position: right 0.35em center;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2210%22%20height%3D%226%22%20viewBox%3D%220%200%2010%206%22%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3Cstyle%3E%0A%20%20%20%20%20%20.cls-1%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20%23fafafa%3B%0A%20%20%20%20%20%20%20%20fill-rule%3A%20evenodd%3B%0A%20%20%20%20%20%20%20%20filter%3A%20url(%23filter)%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%3C%2Fstyle%3E%0A%20%20%20%20%3Cfilter%20id%3D%22filter%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2210%22%20height%3D%226%22%20filterUnits%3D%22userSpaceOnUse%22%3E%0A%20%20%20%20%20%20%3CfeFlood%20result%3D%22flood%22%20flood-color%3D%22%23333%22%20flood-opacity%3D%220.50%22%2F%3E%0A%20%20%20%20%20%20%3CfeComposite%20result%3D%22composite%22%20operator%3D%22in%22%20in2%3D%22SourceGraphic%22%2F%3E%0A%20%20%20%20%20%20%3CfeBlend%20result%3D%22blend%22%20mode%3D%22multiply%22%20in2%3D%22SourceGraphic%22%2F%3E%0A%20%20%20%20%3C%2Ffilter%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cpath%20id%3D%22icon-arrow-down%22%20class%3D%22cls-1%22%20d%3D%22M5%2C6l5-6H0Z%22%2F%3E%0A%3C%2Fsvg%3E");
}

body#shopDetailPage #purchase_form #amountSelect {
  width: auto;
  max-width: 375px;
  /* margin: 0 0 0 0.5rem; */
}

/* body#shopDetailPage #purchase_form .purchaseElement label {
  margin-right: 10px;
} */

body#shopDetailPage .report {
  text-align: left;
}

body#shopDetailPage .report a {
  color: #aaa;
  display: block;
  margin-right: 15px;
  padding-top: 3px;
  text-align: right;
}

body#shopDetailPage .report a:hover {
  text-decoration: underline;
}

/* 金額 */
body#shopDetailPage .itemPrice h3 {
  font-size: 1.6rem;
  margin: 0.5rem 0 0 0;
  text-align: left;
  font-family: var(--oswald);
}

body#shopDetailPage .itemPrice .discountPrice__default {
  display: inline-block;
  margin-right: 10px;
  text-decoration: line-through;
  vertical-align: top;
}

body#shopDetailPage .itemPrice .discountPrice__ratio {
  border: 1px solid #e75c5c;
  color: #e75c5c;
  display: inline-block;
  font-weight: bold;
  padding: 0 5px;
  vertical-align: top;
}

body#shopDetailPage .itemPrice .discountPrice__calcPrice {
  color: #e75c5c;
  display: block;
  font-weight: bold;
  line-height: 1.3;
  padding: 10px 0 0;
}





body#shopDetailPage .preOrder,
body#shopDetailPage .lottery,
body#shopDetailPage .takeout,
body#shopDetailPage .community {
  margin: 16px 0;
}

body#shopDetailPage .preOrder__label,
body#shopDetailPage .lottery__label,
body#shopDetailPage .takeout__label {
  border: 1px solid #333;
  border-radius: 2px;
  color: #333;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 6px 4px;
  margin: 0 0 4px 0;
}

body#shopDetailPage .preOrder__data,
body#shopDetailPage .lottery__data {
  font-size: 12px;
  color: #333;
}

body#shopDetailPage .takeout .takeout__data {
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

body#shopDetailPage .lottery>* {
  margin-bottom: 8px;
}

body#shopDetailPage #itemAttention {
  color: #aeaeae;
  margin: 1rem 0;
  font-size: 0.8rem;
}

body#shopDetailPage #itemAttention p.attention {
  margin-bottom: 10px;
}

body#shopDetailPage #itemAttention .attention a {
  color: #868686;
  text-decoration: underline;
}

body#shopDetailPage #itemAttention .attention.deliveryShortestDay {
  border: 1px solid #11BEAE;
  border-radius: 2px;
  color: #11BEAE;
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 25px;
  padding: 5px;
  width: 100%;
  text-align: center;
}

/* body#shopDetailPage #itemAttention .attention.free {
  font-weight: bold;
}

body#shopDetailPage #itemAttention .attention.free .free__text {
  color: #11BEAE;
  font-weight: bold;
} */

body#shopDetailPage #itemAttention .takeout__text {
  color: #333;
  cursor: pointer;
  font-weight: bold;
  margin: 0 3px;
  text-decoration: underline;
}

body#shopDetailPage #itemAttention .attention.salesPeriod--term {
  background: #fff;
  border: 1px solid var(--color-green);
  color: var(--color-green);
  margin-bottom: 36px;
  padding: 10px;
}

body#shopDetailPage #itemAttention .attention.salesPeriod--willStart {
  background: #ceefeb;
  border: 1px solid #11beae;
  color: #11beae;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 30px;
  padding: 10px;
  text-align: center;
}

/* 0000年0月0日 00:00 に販売終了 ボタン */
body#shopDetailPage #itemAttention .attention.salesPeriod--finish {
  border: 1px solid #999;
  color: #999;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 36px;
  padding: 0.6em;
  text-align: center;
  width: 280px;
  margin: 2em auto;
}

/* ------ スマホ ------------------------ */
@media screen and (max-width:767px) {
  body#shopDetailPage #mainContent {}

  /* アイテム個別 横幅 */
  body#shopDetailPage #mainContent .item__inner {
    max-width: 600px;
    margin: 0 auto;
  }

  /* アイテム個別 詳細 左画像 */
  body#shopDetailPage #mainContent .item {
    width: 100%;
  }

  /* アイテム個別 詳細 右 */
  body#shopDetailPage #mainContent .purchase {
    width: 100%;
    margin-top: 2rem;
  }

  body#shopDetailPage .itemImg {
    display: block;
    height: auto;
  }

  body#shopDetailPage #slideImgPager li {
    display: inline-block;
    margin-top: 2vw;
  }

  body#shopDetailPage #slideImgPager .smallImgBox img {
    width: 6rem;
  }

  body#shopDetailPage #slideImgPager {
    padding: 0 10px 0 0;
  }

  body#shopDetailPage #mainContent h2.itemTitle {}

  body#shopDetailPage #itemAttention {
    margin-bottom: 0px;
  }

  body#shopDetailPage #purchase_form .purchaseButton {
    margin: 0;
    text-align: center;
  }

  body#shopDetailPage .shareButtons {
    text-align: center;
    margin-bottom: 0px;
  }
}




/*==================================================================================
*  カテゴリーページ
==================================================================================*/
ul.breadcrumb {
  margin: 0 1.5rem 4rem;

}

ul.breadcrumb li.breadcrumb__child {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.9em;
  margin: 0 1em 0 0;
  position: relative;
  font-family: var(--oswald);
}

ul.breadcrumb li.breadcrumb__child::after {
  position: absolute;
  content: "-";
  top: 50%;
  right: -10px;
  transform: translateY(-50%);

}

ul.breadcrumb li.breadcrumb__child:last-child:after {
  content: none;
}


/*==================================================================================
*  検索
==================================================================================*/
section.--searchPage .result {
  margin-bottom: 2em;
  text-align: center;
}

@media(max-width: 767px) {}

/*==================================================================================
*  個別ページ共通
==================================================================================*/

/* section.inquirySection {
  padding: 0;
}

section.inquirySection h1 {
  display: none;
} */

/*==================================================================================
*  inquirySection お問い合わせ contact ページ
==================================================================================*/
section.--contact section.inquirySection>p {
  text-align: center;
}

.inquirySection form {
  width: 100%;
}

@media(max-width: 767px) {
  .inquirySection form {
    margin: 40px auto 0;

  }
}

.inquirySection dl {
  text-align: left;
}

.inquirySection dl dt span {
  color: var(--color-red);
  font-size: 0.9em;
  margin-left: 5px;
  vertical-align: baseline;
}

.inquirySection dl dd {
  margin-bottom: 2em;
}

.inquirySection dl dd input {
  box-sizing: border-box;
  border: 1px solid #c4c4c4;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  padding: 5px 10px;
  width: 100%;
}

.inquirySection dl dd textarea {
  box-sizing: border-box;
  border: 1px solid #c4c4c4;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  height: 135px;
  padding: 10px;
  width: 100%;
}


@-moz-document url-prefix() {
  .inquirySection dl dd textarea {
    font-size: 11px;
  }
}

/* 確認ボタン */
.inquirySection .control-panel input#buttonLeave,
#inquiryCompleteSection a {
  display: block;
  width: 30%;
  padding: 1.2em 0;
  display: grid;
  place-content: center;
  background: var(--color-black);
  color: var(--color-white) !important;
  text-transform: capitalize;
  text-align: center;
  transition: .4s;
  margin: 0 auto;
}


#inquiryConfirmSection p {
  color: #333;
  font-size: 13px;
  line-height: 13px;
}

#inquiryConfirmSection dd {
  font-size: 12px;
  padding-left: 15px;
}

#inquiryCompleteSection p {
  line-height: 1.4em;
  margin: 30px 0 0;
}

/* #inquiryCompleteSection a {
  display: block;
  width: 30%;
  padding: 1.2em 0;
  display: grid;
  place-content: center;
  background: var(--color-black);
  color: var(--color-white) !important;
  text-transform: capitalize;
  transition: .4s;
  margin: 0 auto;
} */

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

  .inquirySection .control-panel input#buttonLeave,
  #inquiryCompleteSection a {
    width: 70%;
    padding: 0.5em 0;
  }
}


/*==================================================================================
*  #privacy-->> プライバシーポリシー   #law-->> 特定商取引法に基づく表記
==================================================================================*/
#privacy>h2,
#law>h2 {
  display: none;
}


#privacy h3,
#privacy dt {
  font-weight: bold;
  margin: 2em 0 5px;
}

#privacy .privacy_intro {
  margin: 0 0 3em;
}

#law h3 {
  font-weight: bold;
  margin: 2em 0 5px;
}

#law .law_attention {
  padding: 1em;
  margin-top: 1em;
  line-height: 1.6;
  background: var(--color-gray);
}

#law .atobaraiTerm {
  margin: 2em 0;
}

#law .atobaraiTerm .atobaraiTerm__title {
  margin-bottom: 1em;
}

#law .atobaraiTerm .atobaraiTerm__body {
  padding-left: 3em;
}

#law .atobaraiTerm p {
  font-size: 100%;
  line-height: 1.5;
  margin: 0 0 1em;
}


/*==================================================================================
*  マイページ
==================================================================================*/
.membership .login .link {
  color: var(--color-white) !important;
}