@charset "UTF-8";
/*Base*/
:root {
  --color-main: #000;
  --color-primary: #626F7C;
  --color-warning: #FCFCBE;
  --color-danger: #E25858;
  --color-light: #e3e3e3;
  --color-dark: #707070;
  --color-white: #fff;
  --color-black: #000;
  --color-blue: #58B8E2;
  --color-blue-light: #EEF8FC;
  --color-blue-heavy: #26499d;
  --color-transparent-blue: #58B8E233;
  --color-red: #E25858;
  --color-transparent-red: #E2585833;
  --color-yellow: #E5DC09;
  --color-yellow-light: #FCFCBE;
  --color-orange: #D67936;
  --color-orange-light: #f0aa83;
  --color-green: #5DD87A;
  --color-purple: #B565F1;
  --color-pink: #EF6EBF;
  --color-gray: #e3e3e3;
  --color-gray-dark: #707070;
  --color-gray-middle: #7C7C7C;
  --color-gray-light: #FAFAFA;
  --color-gray-light-little: #EAEAEA;
  --color-gray-light-middle: #F8F8F8;
  --color-line: #06C755;
  --color-facebook: #1877F2;
  --color-twitter: #1D9BF0;
  --color-x: #000000;
  --color-yahoo: #FF0033;
  --color-google: #FFFFFF;
  --color-rakuten: #FFFFFF;
  --color-paypal: #EEEEEE;
  --color-atone: #0092CC;
  --color-temp-zones-normal: #2CAA2C;
  --color-temp-zones-chilled: #009CEB;
  --color-temp-zones-frozen: #949494;
  --font-ja: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", MS PGothic, sans-serif;
  --font-en: "Poppins", sans-serif;
  --hover-opacity: 0.7;
  --transition-default: 350ms ease;
  --dialog-width: 100%;
  --dialog-bg: var(--color-white);
  --dialog-color: var(--color-black);
  --dialog-bg-head: var(--color-gray-light);
  --dialog-color-head: var(--color-black);
  --dialog-border-color: transparent;
  --dialog-margin: auto;
}

:root {
  font-family: var(--H-base-font-family);
  font-weight: var(--H-font-weight);
  color: var(--H-text-base);
}

.u-font__jp {
  font-family: var(--H-base-font-family) !important;
}

body {
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  font-size: 116%;
  line-height: 150%;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  body {
    line-height: 1.5;
    font-size: 14px;
  }
}

/* ハンバーガーメニュー：バー1本目（左上→右下、45度） */
@keyframes navBtnBar1Open {
  0% {
    width: 100%;
    transform: translateY(0) rotate(0deg);
  }
  40% {
    width: 20%;
    transform: translateY(0) rotate(0deg);
  }
  70% {
    width: 20%;
    transform: translateY(10px) rotate(0deg);
  }
  100% {
    width: 100%;
    transform: translateY(10px) rotate(45deg);
  }
}
/* ハンバーガーメニュー：バー2本目（中央、縮小して消える） */
@keyframes navBtnBar2Open {
  0% {
    width: 100%;
    opacity: 1;
  }
  40% {
    width: 20%;
    opacity: 1;
  }
  70% {
    width: 20%;
    opacity: 0;
  }
  100% {
    width: 20%;
    opacity: 0;
  }
}
/* ハンバーガーメニュー：バー3本目（左下→右上、135度） */
@keyframes navBtnBar3Open {
  0% {
    width: 100%;
    transform: translateY(0) rotate(0deg);
  }
  40% {
    width: 20%;
    transform: translateY(0) rotate(0deg);
  }
  70% {
    width: 20%;
    transform: translateY(-10px) rotate(0deg);
  }
  100% {
    width: 100%;
    transform: translateY(-10px) rotate(135deg);
  }
}
.l-header {
  border-bottom: solid 2px #DBDBDB;
  margin-bottom: 20px;
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-header {
    margin-bottom: 1.5384615385vw;
    padding-bottom: 1.2307692308vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: unset;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  margin: auto;
  max-width: 1280px;
  width: 100%;
  padding: 23px 20px 0 40px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-header__inner {
    padding: 1.7692307692vw 1.5384615385vw 0 3.0769230769vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 5px 0 10px 10px;
  }
}
.l-header__navBtn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .l-header__navBtn {
    display: flex;
    margin-left: 16px;
  }
}
.l-header__navBtn-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 32px;
}
.l-header__navBtn-bars span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #677079;
  margin: 0 auto;
  transition: transform 0.3s ease, width 0.3s ease, opacity 0.3s ease;
}
.is-open .l-header__navBtn-bars span:nth-child(1) {
  animation: navBtnBar1Open 0.5s ease forwards;
}
.is-open .l-header__navBtn-bars span:nth-child(2) {
  animation: navBtnBar2Open 0.5s ease forwards;
}
.is-open .l-header__navBtn-bars span:nth-child(3) {
  animation: navBtnBar3Open 0.5s ease forwards;
}
.l-header__navBtn-label {
  font-size: 10px;
  line-height: 1;
  color: #677079;
  font-weight: 600;
  position: relative;
}
.is-open .l-header__navBtn-label {
  color: #677079;
}
.is-open .l-header__navBtn-label:after {
  content: "close";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}
.l-header__logoCatch {
  color: #66B2CC;
  letter-spacing: 1.3px;
  font-size: 13px;
  line-height: 2;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-header__logoCatch {
    letter-spacing: 0.0769230769vw;
    font-size: 0.9vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logoCatch {
    font-size: 9px;
    letter-spacing: 0.05rem;
    display: block;
  }
}
.l-header__logoLink {
  width: 163px;
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-header__logoLink {
    width: 12.5384615385vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logoLink {
    width: 100px;
  }
}
.l-header-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 6px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-header-nav {
    padding-bottom: 0.4615384615vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header-nav {
    padding-bottom: 0;
    padding-top: 6px;
  }
}
.l-header-nav-sns {
  display: flex;
  justify-content: space-between;
  gap: 0 35px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-header-nav-sns {
    gap: 0 2.6923076923vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header-nav-sns {
    display: none;
  }
}
.l-header-nav-sns__item {
  width: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-header-nav-sns__item {
    width: 2.3076923077vw;
  }
}
.l-header-nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0 20px;
  margin-left: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-header-nav-menu {
    gap: 0 1.5384615385vw;
    margin-left: 6.1538461538vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header-nav-menu {
    margin-left: 40px;
    gap: 0 16px;
  }
}
.l-header-nav-menu__item {
  display: block;
}
.l-header-nav-menu__item--guide {
  width: 58px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-header-nav-menu__item--guide {
    width: 4.4615384615vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header-nav-menu__item--guide {
    display: none;
  }
}
.l-header-nav-menu__item--cart {
  width: 33px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-header-nav-menu__item--cart {
    width: 2.5384615385vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header-nav-menu__item--cart {
    width: 32px;
  }
}
.l-header-nav-menu__item--favorite {
  width: 48px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-header-nav-menu__item--favorite {
    width: 3.6923076923vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header-nav-menu__item--favorite {
    display: none;
  }
}
.l-header-nav-menu__item--entry {
  width: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-header-nav-menu__item--entry {
    width: 3.0769230769vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header-nav-menu__item--entry {
    display: none;
  }
}
.l-header-nav-menu__item--mypage {
  width: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-header-nav-menu__item--mypage {
    width: 3.8461538462vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header-nav-menu__item--mypage {
    width: 43px;
  }
}

.c-form-title {
  font-size: 20px;
  margin-top: 20px;
}

@media screen and (min-width: 992px) {
  .s-myPageContent-navWrap, .p-myPage-navWrap {
    margin-top: 20px;
  }
}
.s-header-brand__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
}

.s-header-brand__logo img {
  display: block;
}

.s-header-brand__logoCatch {
  font-size: 1.2rem;
  color: #66B2CC;
}

.s-header-brandNav__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.8rem;
  list-style: none;
}

.s-header-brandNav__item img {
  display: block;
}

.s-header-brandNav__item--guide img {
  width: 5.8rem;
  height: 4.5rem;
}

.s-header-brandNav__item--cart img {
  width: 3.3rem;
  height: 4.3rem;
}

.s-header-brandNav__item--favorite img {
  width: 4.8rem;
  height: 4.4rem;
}

.s-header-brandNav__item--entry img {
  width: 4rem;
  height: 5rem;
}

.s-header-brandNav__item--mypage img {
  width: 5rem;
  height: 5rem;
}

.s-header-brandNav__item--facebook img,
.s-header-brandNav__item--instagram img {
  width: 3rem;
  height: 3rem;
}

.l-main {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  #topcolumn + .l-main {
    padding-top: 0;
  }
}
.l-main--grid {
  display: grid;
  grid-template-columns: 20% 78%;
  justify-content: space-between;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-main--grid {
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media screen and (max-width: 767px) {
  .l-main--grid {
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: 100%;
  }
}
.is-accountPage .l-main--grid {
  grid-template-columns: 100%;
}

.main_column {
  padding-top: 10px;
  padding-right: 1.5%;
}
@media screen and (max-width: 767px) {
  .main_column {
    padding-right: 0;
  }
}

/* ==============================================
 フッター
=============================================== */
/* 2021-09-02追加 フッター上部*/
.l-footer__top {
  margin: 0 auto;
  margin-top: 15px;
  padding-top: 20px;
  width: 1280px;
  height: 281px;
  background: #f5f5f5;
  color: #000000;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__top {
    margin-top: 1.1538461538vw;
    padding-top: 1.5384615385vw;
    width: 98.4615384615vw;
    height: 21.6153846154vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__top {
    width: 100%;
    height: unset;
    padding-top: 20px;
    padding-bottom: 0;
  }
}

/* 2021-09-02追加 フッター部SNSロゴ*/
.l-footer__sns {
  width: 350px;
  float: right;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 0 28px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__sns {
    width: 26.9230769231vw;
    gap: 0 2.1538461538vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__sns {
    float: none;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
  }
}
.l-footer__sns a {
  display: inline-block;
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__sns a {
    width: 2.3076923077vw;
    height: 2.3076923077vw;
  }
}
.l-footer__sns img {
  display: inline;
  width: 100%;
  height: auto;
}

/* 2021-09-02追加 フッター部ロゴ*/
.l-footer__logo {
  width: 300px;
  float: right;
  text-align: right;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__logo {
    width: 23.0769230769vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 100%;
    padding: 0 8% 0 8%;
  }
}

/* 2021-09-02追加 フッター部 商品カテゴリ*/
.l-footer__category {
  margin-top: 28px;
  margin-left: 150px;
  width: 389px;
  float: left;
  text-align: left;
  border-radius: 5px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__category {
    margin-top: 2.1538461538vw;
    margin-left: 11.5384615385vw;
    width: 29.9230769231vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__category {
    margin: 10px auto 20px auto;
    width: 85%;
    height: unset;
    float: none;
    background: unset;
  }
}

.l-footer__categoryTitle,
.l-footer__guideTitle {
  color: #000000;
  font-weight: 700;
  letter-spacing: 1.12px;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__categoryTitle,
  .l-footer__guideTitle {
    letter-spacing: 0.0615384615vw;
    font-size: 0.9692307692vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__categoryTitle,
  .l-footer__guideTitle {
    margin-top: 0;
  }
}

.l-footer__categoryList {
  color: #000000;
  background: #ffffff;
}

.l-footer__categoryList {
  margin: 15px 0 0px;
  padding: 18px;
  letter-spacing: 1.12px;
  font-size: 14px;
  line-height: 1.7857142857;
  display: flex;
  flex-direction: column; /* 上から下へ配置 */
  flex-wrap: wrap;
  height: 100%;
  gap: 0 15px;
  height: 158px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__categoryList {
    letter-spacing: 0.0615384615vw;
    font-size: 0.9692307692vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__categoryList {
    margin: 1.1538461538vw 0 0;
    padding: 1.3846153846vw;
    gap: 0 1.1538461538vw;
    height: 12.1538461538vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__categoryList {
    margin: 10px 5px 0px;
    padding: 15px 0px 15px 8%;
    letter-spacing: 1.04px;
    font-size: 13px;
    line-height: 1.9230769231;
    text-align: left;
    background: #ffffff;
    border-radius: 5px 5px 0 0;
    font-weight: 700;
    display: flex;
    flex-wrap: nowrap;
    height: unset;
  }
}
@media screen and (max-width: 767px) and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__categoryList {
    letter-spacing: 0.0615384615vw;
    font-size: 0.9vw;
  }
}

/* 2021-09-02追加 フッター部 ガイド*/
.l-footer__guide {
  margin-top: 28px;
  margin-left: 45px;
  width: 235px;
  float: left;
  text-align: left;
  border-radius: 5px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__guide {
    margin-top: 2.1538461538vw;
    margin-left: 3.4615384615vw;
    width: 18.0769230769vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__guide {
    margin: 0 auto 50px auto;
    width: 85%;
    height: 170px;
    float: none;
    background: unset;
    font-weight: 700;
  }
}

.l-footer__guideList {
  margin: 15px 0 0px;
  padding: 18px;
  float: left;
  letter-spacing: 1.12px;
  font-size: 14px;
  line-height: 1.7857142857;
  height: 158px;
  width: 235px;
  background: #ffffff;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__guideList {
    letter-spacing: 0.0615384615vw;
    font-size: 0.9692307692vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__guideList {
    margin: 1.1538461538vw 0 0;
    padding: 1.3846153846vw;
    height: 12.1538461538vw;
    width: 18.0769230769vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__guideList {
    margin: 10px 5px 0px;
    padding: 15px 0px 20px 8%;
    float: none;
    letter-spacing: 1.04px;
    font-size: 13px;
    line-height: 1.9230769231;
    text-align: left;
    background: #ffffff;
    border-radius: 5px;
    height: unset;
    width: unset;
  }
}
@media screen and (max-width: 767px) and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__guideList {
    letter-spacing: 0.0615384615vw;
    font-size: 0.9vw;
  }
}

/* 2021-09-06追加 フッター部 ロゴ*/
.l-footer__logo {
  margin-top: 15px;
  margin-left: 30px;
  width: 300px;
  height: 158px;
  float: left;
  text-align: left;
  background: #f5f5f5;
  border-radius: 5px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__logo {
    margin-top: 1.1538461538vw;
    margin-left: 2.3076923077vw;
    width: 23.0769230769vw;
    height: 12.1538461538vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    margin-top: 80px;
    height: unset;
    float: none;
    box-sizing: border-box;
    width: 90%;
    padding: 0 6%;
  }
}

.l-footer__logoTitle {
  letter-spacing: 1.12px;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__logoTitle {
    letter-spacing: 0.0615384615vw;
    font-size: 0.9692307692vw;
  }
}

.l-footer__logoText {
  margin-top: 10px;
  color: #66B2CC;
  font-weight: 700;
  letter-spacing: 1.04px;
  font-size: 13px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__logoText {
    letter-spacing: 0.0615384615vw;
    font-size: 0.9vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__logoText {
    margin-top: 0.7692307692vw;
  }
}

.l-footer__logoImg {
  display: inline-block;
  width: 163px;
  height: 32px;
  margin-bottom: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__logoImg {
    width: 12.5384615385vw;
    height: 2.4615384615vw;
    margin-bottom: 1.0769230769vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__logoImg {
    width: 120px;
    height: 23px;
    margin-bottom: 16px;
  }
}

.l-footer__logoAddress {
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 12px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__logoAddress {
    letter-spacing: 0.0384615385vw;
    font-size: 0.8307692308vw;
  }
}

.l-footer__logoNote {
  font-weight: 700;
  letter-spacing: 0.8px;
  font-size: 10px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__logoNote {
    letter-spacing: 0.0615384615vw;
    font-size: 0.6923076923vw;
  }
}

.l-footer__bottom {
  margin: 0 auto;
  width: 1280px;
  height: 100px;
  background: #2f3437;
  color: #f2f2f2;
  letter-spacing: 0.96px;
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__bottom {
    letter-spacing: 0.0615384615vw;
    font-size: 0.8307692308vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__bottom {
    width: 98.4615384615vw;
    height: 7.6923076923vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__bottom {
    width: 100%;
    height: unset;
  }
}

.l-footer__inner {
  margin: auto;
  padding-top: 10px;
  width: 1280px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__inner {
    padding-top: 0.7692307692vw;
    width: 98.4615384615vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    width: 100%;
    padding-bottom: 40px;
  }
}

.l-footer__pagetop {
  width: 210px;
  float: right;
  text-align: right;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__pagetop {
    width: 16.1538461538vw;
  }
}

.l-footer__link {
  width: 650px;
  float: center;
  text-align: right;
  font-size: 100%;
  color: #f2f2f2;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__link {
    width: 50vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__link {
    width: 100%;
    padding: 0px 10% 0px 10%;
    text-align: left;
    letter-spacing: 0px;
    font-size: 12px;
    line-height: 2.5;
    color: #FFFFFF;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__link {
    letter-spacing: 0vw;
    font-size: 0.8307692308vw;
  }
}

.l-footer__link a:link,
.l-footer__link a:visited {
  color: #FFFFFF;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .l-footer__link a:link,
  .l-footer__link a:visited {
    font-weight: lighter;
  }
}

.l-footer__link a:link:hover,
.l-footer__link a[href]:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .l-footer__link a:link:hover,
  .l-footer__link a[href]:hover {
    font-weight: lighter;
  }
}

.l-footer__copyright {
  width: 570px;
  float: right;
  text-align: left;
  font-size: 97%;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__copyright {
    width: 43.8461538462vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    width: 100%;
    text-align: center;
    float: none;
    background: #2f3437;
    letter-spacing: 0px;
    font-size: 12px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) and (min-width: 768px) and (max-width: 1299px) {
  .l-footer__copyright {
    letter-spacing: 0vw;
    font-size: 0.8307692308vw;
  }
}

/* ==============================================
 サイドカラム
=============================================== */
.l-side {
  overflow-x: hidden; /* IE6 表示乱れ防止 */
  padding: 0 1% 0 7%;
}
@media screen and (max-width: 767px) {
  .l-side {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    background-color: #F1EEE9;
    z-index: 1000;
    overflow-y: auto;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease-in-out;
    flex-direction: column;
    display: flex;
    padding: 0 0 20vh;
  }
  .l-side.is-open {
    opacity: 1;
    transform: translateX(0);
  }
}
.is-accountPage .l-side {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-accountPage .l-side {
    display: flex;
  }
}
.l-side__block {
  margin: 10px 4.73% 10px 0;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-side__block {
    margin: 0.7692307692vw 4.73% 0.7692307692vw 0%;
  }
}
@media screen and (max-width: 767px) {
  .l-side__block {
    margin: 0;
  }
}

/* タイトル
----------------------------------------------- */
.l-side-category__title,
.l-side-guide__title,
.l-side-keyword__title {
  padding: 5px 0 8px 10px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-side-category__title,
  .l-side-guide__title,
  .l-side-keyword__title {
    padding: 0.3846153846vw 0 0.6153846154vw 0.7692307692vw;
    font-size: 1.0769230769vw;
  }
}
@media screen and (max-width: 767px) {
  .l-side-category__title,
  .l-side-guide__title,
  .l-side-keyword__title {
    font-size: 20px;
    color: #333333;
    letter-spacing: -0.01rem;
  }
}

/* ===============================================
▼サーチボックス
=============================================== */
@media screen and (max-width: 767px) {
  .l-side-search {
    order: 0;
  }
}
.l-side-search__body {
  margin-top: 21px;
  padding: 0 10px 32px;
  background-color: #fff;
  border-bottom: 2px #E8E8E8 dotted;
}
@media screen and (max-width: 767px) {
  .l-side-search__body {
    background-color: #F1EEE9;
    border-bottom: none;
  }
}

/* ===============================================
▼カテゴリ
=============================================== */
@media screen and (max-width: 767px) {
  .l-side-category {
    order: 2;
    border-bottom: 2px solid #ccc;
  }
}
@media screen and (max-width: 767px) {
  .l-side-category__title {
    padding: 4px 30px 0;
  }
}
.l-side-category__body {
  margin-top: 2em;
  background-color: #fff;
  border-bottom: 2px #E8E8E8 dotted;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .l-side-category__body {
    background-color: #F1EEE9;
  }
}
.l-side-category__item {
  padding-left: 5px;
  color: #000000;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-side-category__item {
    padding-left: 0.3846153846vw;
  }
}
@media screen and (max-width: 767px) {
  .l-side-category__item {
    color: #333333;
    font-weight: 600;
    border-bottom: #A9ACAB dashed 1px;
    padding-left: 34px;
  }
}
.l-side-category__item--lv2 {
  padding-left: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-side-category__item--lv2 {
    padding-left: 1.5384615385vw;
  }
}
@media screen and (max-width: 767px) {
  .l-side-category__item--lv2 {
    padding-left: 49px;
  }
}
.l-side-category__item--lv3 {
  padding-left: 35px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-side-category__item--lv3 {
    padding-left: 2.6923076923vw;
  }
}
@media screen and (max-width: 767px) {
  .l-side-category__item--lv3 {
    padding-left: 64px;
  }
}
.l-side-category__itemBody {
  margin: 10px 3px;
  font-size: 13px;
  display: flex;
  gap: 0 5px;
  align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-side-category__itemBody {
    margin: 0.7692307692vw 0.2307692308vw;
    font-size: 1vw;
    gap: 0 0.3846153846vw;
  }
}
.l-side-category__icon {
  width: 13px;
  height: 13px;
  margin-right: 4px;
  vertical-align: middle;
  display: inline-block;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-side-category__icon {
    width: 1vw;
    height: 1vw;
    margin-right: 0.3076923077vw;
  }
}
@media screen and (max-width: 767px) {
  .l-side-category__icon {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-side-category__list {
    margin: 16px 10px 0;
  }
}
.l-side-category__link {
  display: block;
  padding: 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-side-category__link {
    font-size: 16px;
    font-weight: 700;
    padding: 5px 0;
    letter-spacing: 0;
  }
}
.l-side-category__link--active:link, .l-side-category__link--active:visited, .l-side-category__link--active:hover {
  color: #000000;
}

/* ===============================================
▼ガイドリンク
=============================================== */
@media screen and (max-width: 767px) {
  .l-side-guide {
    order: 3;
  }
}
@media screen and (max-width: 767px) {
  .l-side-guide__title {
    padding-left: 0;
    padding-bottom: 18px;
  }
}
.l-side-guide__body {
  margin-top: 2em;
  border-bottom: 2px #E8E8E8 dotted;
}
@media screen and (max-width: 767px) {
  .l-side-guide__body {
    width: 300px;
    margin: 40px auto 0;
  }
}
.l-side-guide__item {
  margin-bottom: 5px;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-side-guide__item {
    margin-bottom: 0.3846153846vw;
  }
}
@media screen and (max-width: 767px) {
  .l-side-guide__item {
    margin-bottom: 10px;
  }
}

/* ===============================================
▼おすすめキーワード
=============================================== */
@media screen and (max-width: 767px) {
  .l-side-keyword {
    order: 1;
    padding: 10px 20px 6px;
    border-bottom: 2px solid #ccc;
  }
}
.l-side-keyword__body {
  background-color: #fff;
  border-bottom: 2px #E8E8E8 dotted;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .l-side-keyword__body {
    background-color: #F1EEE9;
  }
}
.l-side-keyword__list {
  margin-top: 15px;
  padding: 0 20px 15px 10px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-side-keyword__list {
    margin-top: 1.1538461538vw;
    padding: 0 1.5384615385vw 1.1538461538vw 0.7692307692vw;
  }
}
@media screen and (max-width: 767px) {
  .l-side-keyword__list {
    margin-top: 8px;
    letter-spacing: -0.05em;
  }
}
.l-side-keyword__item {
  margin-left: 5px;
  font-size: 13px;
  color: #000000;
  text-decoration: underline;
  font-weight: 500;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .l-side-keyword__item {
    margin-left: 0.3846153846vw;
    font-size: 1vw;
  }
}
@media screen and (max-width: 767px) {
  .l-side-keyword__item {
    color: #333333;
    font-weight: 700;
  }
}

.c-formInput-item__alert {
  white-space: nowrap;
}

.c-freeWordSearchBox {
  padding: 0;
  border: none;
}
@media screen and (max-width: 767px) {
  .c-freeWordSearchBox {
    padding: 0 20px;
  }
}

input[type=search].c-freeWordSearchBox__form {
  display: inline-block;
  position: relative;
  margin-top: 5px;
  border-radius: 5px;
  width: 180px;
  height: 50px;
  border-radius: 6px;
  border: solid 1.4px #000;
  padding: 0 5px;
  background: #fff;
  font-size: 14px;
  color: #000;
}
input[type=search].c-freeWordSearchBox__form::placeholder {
  color: #333333;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  input[type=search].c-freeWordSearchBox__form {
    margin-top: 0.3846153846vw;
    border-radius: 0.3846153846vw;
    width: 13.8461538462vw;
    height: 3.8461538462vw;
    border-radius: 0.4615384615vw;
    border: solid 1.4px #000;
    padding: 0 0.3846153846vw;
    font-size: 1.0769230769vw;
  }
}
@media screen and (max-width: 767px) {
  input[type=search].c-freeWordSearchBox__form {
    width: 100%;
    font-size: 16px;
    color: #333333;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }
}

.c-typeListProduct {
  line-height: 1.6;
  color: #000000;
}

.c-productUser-head__picture::before {
  padding-top: 100%;
}

.c-product {
  flex-direction: column;
  display: flex;
  height: 100%;
}

.c-product-body {
  margin-top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .p-productListHeading {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: unset;
  }
}

.p-productListHeading-body {
  justify-content: end;
}

.p-productListHeading-body__listSort {
  max-width: unset;
}
@media screen and (max-width: 767px) {
  .p-productListHeading-body__listSort {
    width: 100%;
  }
}

.m-productListSort {
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .m-productListSort {
    display: flex;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .m-productListSort-selectBox__currentItem {
    display: none;
  }
}

.m-productListSort-item {
  font-size: 13px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .m-productListSort-item {
    font-size: 1vw;
  }
}
@media screen and (max-width: 767px) {
  .m-productListSort-item {
    width: 100%;
  }
}

.c-productList-item__name {
  font-size: 14px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .c-productList-item__name {
    font-size: 1.0769230769vw;
  }
}
@media screen and (max-width: 767px) {
  .c-productList-item__name {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .m-productListSort-selectBox {
    width: 100%;
  }
}

.m-productListSort-selectBox-select {
  left: unset;
  right: 0;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .m-productListSort-selectBox-select {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
    justify-content: end;
  }
}

@media screen and (max-width: 767px) {
  .m-productListSort-selectBox-select__item:has(.current) {
    background: #999;
    color: #fff;
    padding: 2px 7px;
    font-weight: 400;
  }
}

.m-productLine {
  padding-top: 5%;
}

.c-product-head__picture::before {
  padding-top: 100%;
}

@media screen and (max-width: 767px) {
  .m-productDetailImg {
    border-bottom: unset;
  }
}

@media screen and (max-width: 767px) {
  .m-productDetailImg-container {
    width: 76%;
  }
}

@media screen and (max-width: 767px) {
  .m-productDetailImg-slideController__prev, .m-productDetailImg-slideController__next {
    width: 4rem;
    height: 4rem;
  }
}

.m-productDetailImg-slider__item {
  aspect-ratio: 504/384;
}

.m-productDetailImg-slider__picture {
  aspect-ratio: 504/384;
}

.m-productDetailImg-slider__image {
  object-fit: cover !important;
}

.m-productDetailImg-slider__image {
  object-fit: contain;
  height: 100%;
}

.c-productList {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .c-productList {
    flex-direction: column;
  }
}

.c-productList-item {
  padding: 0 0 30px 0;
  width: 33.3%;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .c-productList-item {
    width: 80%;
    margin: 0 auto;
    overflow: unset;
  }
}

.c-productList-item__status {
  margin: 5px 0 5px 0;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .c-productList-item__status {
    margin: 0.3846153846vw 0 0.3846153846vw 0;
  }
}

.c-productList-item__price {
  color: #727272;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 0px 10px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .c-productList-item__price {
    font-size: 1.0769230769vw;
  }
}
@media screen and (max-width: 767px) {
  .c-productList-item__price {
    color: #000000;
  }
}

.c-typeListProductSubsc__price-tax, .c-typeListProduct-head__price-tax {
  font-size: 12px;
  font-weight: 400;
  text-indent: -0.8rem;
  display: inline-block;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .c-typeListProductSubsc__price-tax, .c-typeListProduct-head__price-tax {
    font-size: 0.9230769231vw;
  }
}
@media screen and (max-width: 767px) {
  .c-typeListProductSubsc__price-tax, .c-typeListProduct-head__price-tax {
    color: #CC0000;
  }
}

@media screen and (max-width: 767px) {
  .c-typeListProductSubsc__priceWrap {
    color: #CC0000;
  }
}

.c-productList-item__comment {
  margin: 0 0 10px 0;
  text-align: left;
  font-size: 13px;
  position: relative;
  height: 40px;
  width: 280px;
  overflow: hidden;
  line-height: 20px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .c-productList-item__comment {
    width: 21.5384615385vw;
    font-size: 1vw;
    line-height: 1.5384615385vw;
  }
}
@media screen and (max-width: 767px) {
  .c-productList-item__comment {
    width: 100%;
  }
}

.c-productList-item__body {
  color: #000000;
  position: relative;
  padding-right: 3rem;
}

.c-productList-item__image {
  width: 260px;
  aspect-ratio: 280/212;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .c-productList-item__image {
    width: 20vw;
  }
}
@media screen and (max-width: 767px) {
  .c-productList-item__image {
    width: 100%;
    max-width: 260px;
    margin: 10px auto 10px auto;
  }
}
.c-productList-item__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-product-sIcon {
  margin: 5px 0 5px 0;
  min-height: 44px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .c-product-sIcon {
    margin: 0.3846153846vw 0 0.3846153846vw 0;
    min-height: 3.3846153846vw;
  }
}
@media screen and (max-width: 767px) {
  .c-product-sIcon {
    min-height: unset;
    min-height: 3.3846153846vw;
  }
}
.p-productDetailWrap .c-product-sIcon {
  min-height: unset;
}

.c-product-sIcon__item {
  width: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .c-product-sIcon__item {
    width: 6.1538461538vw;
  }
}

.c-typeListProduct-head__favorite {
  display: none;
}

.c-typeListProduct-body__moreBtn {
  display: none;
}

.c-typeListProduct-skuList {
  display: none;
}

.c-typeListProductSubsc__iconWrap {
  display: none;
}

/* ==============================================
▼商品詳細（オリジナルデザイン移行分）
=============================================== */
#detailarea {
  margin-bottom: 20px;
  width: 100%;
}

#detailphotobloc {
  float: left;
  width: 60%;
}

#p-productDetailWrap {
  float: right;
  width: 40%;
}

#main {
  margin: 0 0 20px 0;
  width: 600px;
  float: left;
}

#navi {
  width: 590px;
  float: left;
}

#navi ul {
  height: 110px;
  list-style-type: none;
}

#navi ul li {
  margin-right: 10px;
  width: 96px;
  height: 74px;
  float: left;
}

#p-productDetailWrap ul.status_icon {
  margin-bottom: 10px;
  width: 100%;
}

#p-productDetailWrap ul.status_icon li {
  margin-right: 5px;
  margin-bottom: 3px;
  float: left;
}

#p-productDetailWrap .cart_area {
  padding: 30px;
  border: 1px solid #eeeee8;
  border-radius: 1px;
  background-color: #eeeee8;
}

.p-productDetaiMain-body {
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-productDetaiMain-body {
    padding-left: 0;
    padding-right: 0;
  }
}

#p-productDetailWrap .sale_price dd {
  display: inline;
}

.c-productSkuQuantity input.c-productSkuQuantity__input {
  border-radius: 0;
  border: solid 1px #ccc;
}
@media screen and (max-width: 767px) {
  .c-productSkuQuantity input.c-productSkuQuantity__input {
    width: 50px;
  }
}

.p-productDetailWrap {
  grid-template-columns: 51.3% 40%;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-productDetailWrap {
    padding-top: 10px;
  }
}

.l-container-wrap__body {
  display: block;
}

.m-productDetailImg, .m-productDetailImg__main {
  margin-bottom: unset;
}

.p-productDetaiMain {
  padding: 30px;
  background-color: #eeeee8;
}
@media screen and (max-width: 767px) {
  .p-productDetaiMain {
    width: 90%;
    margin: 0 auto;
    background: #F1EEE9;
    padding: 10px 0 30px;
  }
}

.p-productDetaiMain-head {
  padding-bottom: unset;
  border-bottom: unset;
}
@media screen and (max-width: 767px) {
  .p-productDetaiMain-head {
    padding: 0 25px 12px 25px;
  }
}

.m-productSkuDropdown {
  border-top: unset;
  padding-top: 1rem;
}

.p-productSkuBottomBtn {
  margin-top: 0;
  gap: 0;
}

.p-productSkuBottomBtn__cart {
  width: 26rem;
  margin: 0 auto;
}

.p-productDetaiMain-cautionList {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-productDetaiMain-cautionList {
    margin-top: 0;
  }
}

.p-productDetaiMain-cautionList__caution {
  text-align: left;
  padding-left: 0;
  text-indent: 0;
}
@media screen and (max-width: 767px) {
  .p-productDetaiMain-cautionList__caution {
    text-align: justify;
    padding: 0 25px 0 25px;
    text-indent: 0;
  }
}

.p-productDetaiMain-head__status .c-sIcon {
  white-space: pre;
}

.p-productDetaiMain-head__title-name {
  font-size: 15px;
  color: #000000;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-productDetaiMain-head__title-name {
    font-size: 16px;
  }
}

.p-productDetaiMain-head__price {
  color: #727272;
  font-size: 16px;
  font-weight: bold;
  padding: 6px 0px 10px;
}
@media screen and (max-width: 767px) {
  .p-productDetaiMain-head__price {
    padding: 0;
  }
}

.p-productDetaiMain-head__price-tax {
  color: #727272;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .m-productDetailImg-thumsList {
    justify-content: center;
  }
}

.m-productDetailImg-thumsList__item {
  width: 96px;
  height: 74px;
}
.m-productDetailImg-thumsList__item img {
  object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .m-productDetailImg-thumsList__item {
    font-size: 11px;
    width: 6px !important;
    height: 6px;
    margin: 0 6px 10px 6px;
    display: inline-block;
    background-color: #CCC;
    border-radius: 6px;
  }
  .m-productDetailImg-thumsList__item.swiper-slide-active {
    background-color: #333;
  }
  .m-productDetailImg-thumsList__item picture {
    display: none;
  }
}

.m-productDetailImg-thumsList__picture {
  width: 100%;
  height: 100%;
}

.swiper-free-mode > .swiper-wrapper {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .swiper-free-mode > .swiper-wrapper {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .m-productSkuDropdown {
    border-top: #CCC solid 1px;
  }
}

@media screen and (max-width: 767px) {
  .m-productSkuDropdown-buyStep, .m-productStockStatus, .m-productSkuDropdown .c-formInput-item__alert {
    padding: 0 25px;
  }
}

.m-productSkuDropdown-buyStep__title {
  display: block;
  width: 4.2rem;
}
@media screen and (max-width: 767px) {
  .m-productSkuDropdown-buyStep__title {
    width: auto;
  }
}

.c-productSkuQuantity {
  width: 7rem;
  display: flex;
  align-items: center;
  gap: 0 5px;
}

.main_comment {
  font-size: 15px;
  color: #000;
  margin: 70px 50px 25px 50px;
  padding: 20px 20px 20px 20px;
}
@media screen and (max-width: 767px) {
  .main_comment {
    margin: 0;
    color: #333333;
  }
}

.c-productUser-sIcon__item {
  width: 85px;
}

/* ==============================================
 モーダル
=============================================== */
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center;
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s, visibility 0.4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  vertical-align: middle;
  content: "";
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 800px;
  max-width: 950px;
  height: 800px;
  padding: 30px 0px 15px;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  vertical-align: middle;
}

.modal-wrapper .modal-window .modal-content {
  height: 800px;
  overflow-y: auto;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important;
}

.modal-image {
  margin-top: 25px;
  margin-left: 30px;
  float: left;
  text-align: left;
}

.modal-account {
  margin-top: 25px;
  margin-left: 30px;
  font-size: 16px;
  float: center;
  text-align: left;
}

.modal-text {
  display: inline-block;
  font-size: 14px;
  float: left;
  text-align: left;
  width: 320px;
  height: 710px;
  overflow-x: scroll;
  overflow-y: scroll;
}

.modal-review {
  display: inline-block;
  font-size: 14px;
  float: left;
  text-align: left;
  width: 800px;
  height: 710px;
}
.modal-review img {
  width: 122px;
  display: inline-block;
}

.modal-link {
  font-size: 14px;
  color: #00f;
  float: left;
  text-align: right;
  padding: 0 0 0 710px;
  overflow-x: hidden;
  overflow-y: hidden;
}

.modal-mail {
  text-align: left;
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  color: #95979c !important;
  font-size: 16px;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
}

/* 商品情報 各種設定
----------------------------------------------- */
#detailrightbloc table {
  margin: 15px auto 20px auto;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  width: 88%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

#detailrightbloc table th {
  padding: 17px 8px 17px 25px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  color: #333;
  background-color: #f0f0f0;
  font-weight: normal;
}

#detailrightbloc table td {
  padding: 17px 8px 17px 35px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

#detailrightbloc h2 {
  margin: 0 0 10px 0;
  padding: 0 0 15px 0;
  color: #666;
  background: url("../img/background/line_dot_01.gif") repeat-x bottom;
  font-weight: bold;
  font-size: 160%;
}

.p-productDetailWrap .point,
.p-productDetailWrap .relative_cat {
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
}
@media screen and (max-width: 767px) {
  .p-productDetailWrap .point,
  .p-productDetailWrap .relative_cat {
    padding: 0 25px 0 25px;
    background: unset;
  }
  .p-productDetailWrap .point a,
  .p-productDetailWrap .relative_cat a {
    font-weight: bold;
    font-size: 1.2rem;
  }
}

.p-productDetailWrap .main_comment {
  margin-bottom: 20px;
}

/* 商品コード */
.p-productDetailWrap .product_code dt,
.p-productDetailWrap .product_code dd {
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #fff;
}

/* 商品ステータス */
.p-productDetailWrap ul.status_icon {
  margin-bottom: 10px;
  width: 100%;
}

.p-productDetailWrap ul.status_icon li {
  margin-right: 5px;
  margin-bottom: 3px;
  float: left;
}

/* 通常価格 */
.p-productDetailWrap .normal_price dt,
.p-productDetailWrap .normal_price dd {
  display: inline;
}

/* 販売価格 */
.p-productDetailWrap .sale_price dt,
.p-productDetailWrap .sale_price dd {
  display: inline;
}

/* ポイント */
.p-productDetailWrap .point dt,
.p-productDetailWrap .point dd {
  display: inline;
}

/* 規格 */
.p-productDetailWrap div.classlist {
  margin-bottom: 10px;
  padding-bottom: 10px;
  width: 100%;
  background: url("../img/background/line_dot_02.gif") repeat-x bottom;
}

.p-productDetailWrap .classlist {
  margin-bottom: 5px;
}

.p-productDetailWrap ul {
  margin-bottom: 10px;
  width: 100%;
}

.p-productDetailWrap ul li {
  vertical-align: top;
}

/* メーカー */
.p-productDetailWrap .maker dt,
.p-productDetailWrap .maker dd {
  display: inline;
}

/* メーカーURL */
.p-productDetailWrap .comment1 dt,
.p-productDetailWrap .comment1 dd {
  display: inline;
}

/* 関連カテゴリ */
.p-productDetailWrap .relative_cat dd {
  margin-left: 1em;
}

/* 買い物かご */
.p-productDetailWrap .cart_area {
  /*201-10-05*/
  padding: 30px;
  background-color: #eeeee8;
  border: 1px solid #eeeee8;
  border-radius: 1px;
}

.p-productDetailWrap .quantity dt,
.p-productDetailWrap .quantity dd {
  display: inline;
}

.p-productDetailWrap .cartin {
  text-align: center;
}

.p-productDetailWrap .cartin_btn {
  text-align: center;
}

.p-productDetailWrap .favorite_btn {
  text-align: center;
  margin-top: 10px;
}

/* 2021-10-04 サムネイル追加*/
#main {
  width: 600px;
  margin: 0px 0px 20px 0px;
  float: left;
}

#navi {
  width: 590px;
  float: left;
}

#navi ul {
  height: 110px;
  list-style-type: none;
}

#navi ul li {
  width: 96px;
  height: 74px;
  margin-right: 10px;
  float: left;
}

/* お客様の声
----------------------------------------------- */
div#customervoice_area {
  clear: both;
  padding: 35px 0 0 0;
}

div#customervoice_area h2 {
  margin-bottom: 20px;
  padding: 6px 0 8px 10px;
  border-top: solid 1px #A7CFE0;
  background: url("../img/background/bg_tit_sub_01.jpg") repeat-x left bottom;
}

div#customervoice_area .review_bloc {
  margin-bottom: 20px;
  padding: 10px;
  background-color: #f6f6f6;
}

div#customervoice_area .review_bloc p {
  padding-top: 3px;
  margin-right: 10px;
  float: left;
}

div#customervoice_area review_bloc .review_btn {
  float: right;
  width: 160px;
}

div#customervoice_area ul li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  background: url("../img/background/line_dot_01.gif") repeat-x bottom;
}

div#customervoice_area .voicetitle {
  margin-bottom: 5px;
  color: #A7CFE0;
  font-weight: bold;
}

div#customervoice_area .voicedate {
  margin-bottom: 10px;
}

.c-btn-cart::before {
  background: url(../../assets/img/common/icon/icon-addCart-white.svg) center center no-repeat;
}

.p-productSkuBottomBtn .c-btn-cart {
  background: url(../../assets/img/button/btn_cartin.png) center center no-repeat, var(--color-primary);
  background-size: 100% auto;
  padding: 2.1rem 1rem 2.1rem;
  border: none;
  border-radius: 0.8rem;
}
.p-productSkuBottomBtn .c-btn-cart::before {
  content: unset;
}
@media screen and (max-width: 767px) {
  .p-productSkuBottomBtn .c-btn-cart {
    padding: 1.3rem 1rem 1.7rem;
  }
}

.p-productDetaiMain-subsc__promotion {
  padding: 0 0.6rem 0;
  border-color: var(--color-red);
}

.p-productSkuBottomBtn__favorit {
  text-align: center;
  float: unset;
  margin: 10px auto 0;
  width: unset;
}

.p-productSkuBottomBtn .mini_button {
  width: 120px;
  height: 30px;
  font-size: 12px;
  color: #FFF !important;
  text-align: center;
  display: block;
  padding: 5px 0 10px;
  border: none;
  outline: none;
  background: #626F7C;
  border-radius: 7px;
}

.p-productDetaiMain-guideTabBox-item {
  border: solid 2px #EEEEE8;
  padding: 0 40px 40px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-productDetaiMain-guideTabBox-item {
    width: 90%;
    margin: 80px auto 0;
    padding: 0 10px 40px;
  }
}

.p-productDetaiMain-guideTabBox-reviewTtl {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}

.c-productReview__starList {
  width: 150px;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .c-productReview__starList {
    width: 90px;
    margin-right: 2rem;
  }
}
.c-productReview__starList img {
  max-width: 122px;
}

.p-productDetaiMain-guideTabBox-reviewList__list {
  margin-top: 40px;
  max-height: 45rem;
  padding-right: 2rem;
}
.p-productDetaiMain-guideTabBox-reviewList__list:has(.p-productDetaiMain-guideTabBox-reviewList__item:nth-child(4)) {
  overflow-y: scroll;
}

.c-productReview__review {
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.c-btn--addReview {
  background-color: #EB677D;
  border: none;
  padding: 1.8rem 0;
}

.c-userSect-info__text {
  white-space: unset;
}

.p-newsList {
  width: 90%;
  margin: 0 auto;
}

.c-news-ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.c-news-ttl__main {
  letter-spacing: 0.112px;
  font-size: 28px;
  line-height: 1.25;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .c-news-ttl__main {
    letter-spacing: 0.0030769231vw;
    font-size: 1.9384615385vw;
  }
}
@media screen and (max-width: 767px) {
  .c-news-ttl__main {
    font-size: 2.6rem;
    letter-spacing: 0.04rem;
    line-height: 1.2692307692;
  }
}
.c-news-ttl__sub {
  letter-spacing: 0px;
  font-size: 12px;
  line-height: 1.5833333333;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .c-news-ttl__sub {
    letter-spacing: 0vw;
    font-size: 0.8307692308vw;
  }
}
@media screen and (max-width: 767px) {
  .c-news-ttl__sub {
    font-size: 1.1rem;
    letter-spacing: 0rem;
    line-height: 1.6363636364;
  }
}
.c-news-item {
  border-top: solid 1px #DBDBDB;
  padding: 24px 26px;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .c-news-item {
    padding: 2.8645833333vw 1.5625vw;
  }
}
.c-news-item:first-child {
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .c-news-item:first-child {
    margin-top: 4.5572916667vw;
  }
}
.c-news-item:last-child {
  border-bottom: solid 1px #DBDBDB;
}
.news_contents .c-news-item {
  margin: 0;
  border: none;
  padding: 0;
}
.c-news-item[open] .c-news-item__term::after {
  transform: rotate(0deg);
}
.c-news-item__term {
  display: flex;
  flex-direction: column;
  gap: 6px 0;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-news-item__term {
    gap: 0.9114583333vw 0;
    padding-right: 15%;
  }
}
.p-newsList-content .c-news-item__term::before, .p-newsList-content .c-news-item__term::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: var(--color-main);
  top: 0;
  bottom: 0;
  right: 3%;
  margin: auto;
}
.p-newsList-content .c-news-item__term::after {
  transform: rotate(90deg);
  transition-duration: 0.3s;
}
.c-news-item__time {
  letter-spacing: 0px;
  font-size: 13px;
  line-height: 1.1538461538;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .c-news-item__time {
    letter-spacing: 0vw;
    font-size: 0.9vw;
  }
}
@media screen and (max-width: 767px) {
  .c-news-item__time {
    font-size: 1.2rem;
    letter-spacing: 0rem;
    line-height: 1.1666666667;
  }
}
.c-news-item__title {
  letter-spacing: 0px;
  font-size: 15px;
  line-height: 1.4666666667;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .c-news-item__title {
    letter-spacing: 0vw;
    font-size: 1.0384615385vw;
  }
}
@media screen and (max-width: 767px) {
  .c-news-item__title {
    font-size: 1.5rem;
    letter-spacing: 0rem;
    line-height: 1.4666666667;
  }
}
.c-news-item__desc {
  padding: 10px;
  letter-spacing: 0px;
  font-size: 13px;
  line-height: 1.6923076923;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .c-news-item__desc {
    letter-spacing: 0vw;
    font-size: 0.9vw;
  }
}
@media screen and (max-width: 767px) {
  .c-news-item__desc {
    font-size: 1.4rem;
    letter-spacing: 0rem;
    line-height: 1.5714285714;
  }
}
.c-news-more {
  width: fit-content;
  margin: 46px auto 0;
  display: block;
  padding: 0 9px 6px;
  border-bottom: solid 1px #2E2D2D;
  letter-spacing: 0px;
  font-size: 14px;
  line-height: 1.2857142857;
  font-weight: 500;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .c-news-more {
    letter-spacing: 0vw;
    font-size: 0.9692307692vw;
  }
}
@media screen and (max-width: 767px) {
  .c-news-more {
    margin-top: 7.2916666667vw;
    font-size: 1.3rem;
    letter-spacing: 0rem;
    line-height: 1.2307692308;
    padding: 0 0.78125vw 0.78125vw;
  }
}

/* タイトル
----------------------------------------------- */
h2.title {
  margin-bottom: 10px;
  padding: 12px;
  background-image: linear-gradient(to right, #AAAAAA, #AAAAAA 1px, transparent 1px, transparent 3px);
  background-size: 3px 5px;
  background-repeat: repeat-x;
  color: #000000;
  font-size: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  h2.title {
    font-size: 1.5384615385vw;
  }
}
@media screen and (max-width: 767px) {
  h2.title {
    margin-bottom: 10px;
    margin: 0px 5px 10px 5px;
    padding: 15px 2px 2px 10px;
    background-image: linear-gradient(to right, #AAAAAA, #AAAAAA 1px, transparent 1px, transparent 3px);
    background-size: 3px 5px;
    background-repeat: repeat-x;
    color: #000000;
    font-size: 20px;
    letter-spacing: 0;
  }
}
h2.title em {
  font-weight: normal;
  font-size: 14px;
  font-style: normal;
}
h2.title em::before {
  content: "/";
}
@media screen and (max-width: 767px) {
  h2.title em {
    display: block;
  }
}

#one_maincolumn .sub_area h3,
#two_maincolumn_right .sub_area h3,
#two_maincolumn_left .sub_area h3,
#three_maincolumn .sub_area h3,
#undercolumn_login .login_area h3,
#undercolumn_shopping h3,
#mypagecolumn h3,
#undercolumn_cart h3 {
  /*
      margin: 0 0 10px 0;
      padding: 5px 0 10px;
      color: #99ccff;
      background: url("../img/background/line_01.gif") repeat-x left bottom;
      font-size: 120%;
  */
  margin: 0 0 10px 0;
  padding: 20px 0px 10px 2px;
  width: 900px;
  font-size: 20px;
  font-weight: normal;
  color: #ED7478;
  background: #FFF;
  text-align: left;
  background-image: linear-gradient(to right, #DBDBDB, #DBDBDB 1px, transparent 1px, transparent 2px);
  background-size: 2px 2px;
  background-position: right bottom;
  background-repeat: repeat-x;
}

div#undercolumn_login .login_area h4 {
  padding-left: 15px;
  background: url("../img/icon/ico_arrow_05.gif") no-repeat left;
}

.m-featureSlide {
  width: 200% !important;
  transform: translateX(-24%);
}
@media screen and (max-width: 767px) {
  .m-featureSlide {
    width: 144% !important;
    transform: translateX(7%);
  }
}

.m-featureSlide-slideController {
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  width: 50%;
  right: 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    left: -7%;
    margin: 0;
  }
}

.m-featureSlide-container {
  overflow: visible !important;
}

.m-featureSlide-slider__item {
  margin: 0 !important;
}

/*---------------カルーセルパネルここから------------*/
.slideshow {
  height: 540px;
  position: relative;
  width: 1280px;
  margin: auto;
  overflow: hidden;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .slideshow {
    width: 98.4615384615vw;
    height: 41.5384615385vw;
    margin-bottom: 1.9230769231vw;
  }
}
@media screen and (max-width: 767px) {
  .slideshow {
    width: 100%;
    height: unset;
    margin-top: 60px;
  }
}

.slide-screen {
  position: relative;
  height: 540px;
  left: 50%;
  transform: translateX(-50%);
  width: 714px;
  overflow: visible;
  /*overflow: hidden;*/
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .slide-screen {
    width: 54.9230769231vw;
    height: 41.5384615385vw;
  }
}
@media screen and (max-width: 767px) {
  .slide-screen {
    width: 100%;
    height: unset;
  }
}

.m-featureSlide-container {
  transform: translateX(75%);
}
@media screen and (max-width: 767px) {
  .m-featureSlide-container {
    transform: translateX(3%);
  }
}

.m-featureSlide-slideController {
  display: block;
  width: 50%;
  margin: 0 auto;
  position: absolute;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .m-featureSlide-slideController {
    width: 80vw;
    right: unset;
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .m-featureSlide-slidePagination {
    position: absolute;
    bottom: 0 !important;
    z-index: 1;
    gap: 1rem 0rem !important;
    width: 100vw !important;
  }
}

@media screen and (max-width: 767px) {
  .m-featureSlide-slidePagination__item.swiper-pagination-bullet {
    border: none !important;
    opacity: 0.5;
  }
}

@media screen and (max-width: 767px) {
  .m-featureSlide-slidePagination__item.swiper-pagination-bullet-active {
    background-color: #fff;
  }
}

.slideshow_mini {
  background-color: rgb(0, 0, 0);
  height: 96px;
  position: relative;
  width: 832px;
  margin: auto;
  overflow: hidden;
}

.slide-screen_mini {
  position: relative;
  height: 96px;
  left: 50%;
  transform: translateX(-200%);
  width: 208px;
  overflow: visible;
}

.slideshow-slides_mini {
  position: absolute;
  height: 96px;
  width: 1000%;
}

.slideshow-slides_mini .slide_mini {
  float: left;
  /*cursor: pointer*/
}

.slide_mini img {
  width: 208px;
}

/* ナビゲーション */
.m-featureSlide-slideController__prev, .m-featureSlide-slideController__next {
  background: unset !important;
  width: 27px !important;
  height: 27px !important;
}
@media screen and (max-width: 767px) {
  .m-featureSlide-slideController__prev, .m-featureSlide-slideController__next {
    top: calc(50% - 1rem) !important;
  }
}

.m-featureSlide-slideController__prev > img, .m-featureSlide-slideController__next > img {
  width: 100% !important;
}

.m-featureSlide-slideController__prev {
  left: -13px !important;
}

.m-featureSlide-slideController__next {
  right: -13px !important;
}

/* インジケーター */
.slideshow-indicator {
  position: absolute;
  text-align: center;
  right: 0;
  left: 0;
  bottom: 0;
}

.slideshow-indicator a {
  display: inline-block;
  margin: 0 3px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  opacity: 50%;
  border-radius: 50%;
}

.slideshow-indicator a.active {
  cursor: default;
  opacity: 100%;
}

/*---------------カルーセルパネルここまで---------------*/
/* ===============================================
▼新着情報
=============================================== */
#news_area h2 {
  margin: 20px 50px;
  font-size: 20px;
  float: left;
}
@media screen and (max-width: 767px) {
  #news_area h2 {
    font-size: 16px;
    margin: 10px 10px 10px 10px;
    color: #000;
  }
}

#news_area .block_body {
  padding: 10px;
  background: #F1EEE9;
  border-radius: 5px;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  #news_area .block_body {
    margin: 0px 0px 20px 5px;
    padding: 10px 10px 30px 10px;
    background: #F1EEE9;
    /* border-radius: 5px; */
    border-bottom: none;
    width: 98%;
    overflow: hidden;
  }
}

#news_area .news_contents {
  margin: 26px 0px 10px 200px;
  height: 150px;
  font-size: 14px;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  #news_area .news_contents {
    margin: 0 10px 0 auto;
    width: 68%;
  }
}

#news_area dl.newslist {
  line-height: 25px;
}

#news_area dl.newslist dt {
  margin-bottom: 5px;
}

#news_area dl.newslist dd {
  margin-bottom: 10px;
  padding-bottom: 10px;
}

#news_area dl.end {
  padding: 10px 0;
  background: url("") no-repeat bottom;
}

#recommend_area h2 {
  font-size: 18px;
  color: #000000;
  padding: 5px 0 30px 10px;
}
@media screen and (max-width: 767px) {
  #recommend_area h2 {
    margin: 0px 5px 10px 5px;
    padding: 15px 2px 2px 10px;
    background-image: linear-gradient(to right, #AAAAAA, #AAAAAA 1px, transparent 1px, transparent 3px);
    background-size: 3px 5px;
    background-repeat: repeat-x;
    color: #000000;
    font-size: 20px;
  }
}

/*2021-09-13コメント用追加*/
#recommend_area .comment {
  font-size: 14px;
  position: relative;
  height: 40px;
  overflow: hidden;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#recommend_area .productList {
  padding: 40px 0 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#recommend_area .productList a {
  width: 260px;
}

#recommend_area .instagramList {
  padding: 40px 0px 40px;
  text-align: center;
}

.block_outer {
  margin-bottom: 20px;
}

/* ==============================================
▼店舗案内
=============================================== */
.access_text {
  clear: both;
  margin: 40px 0px 30px 100px;
  width: 780px;
  font-size: 15px;
  color: #000;
  background: #FFF;
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .access_text {
    margin: 3.0769230769vw 0px 2.3076923077vw 7.6923076923vw;
    width: 60vw;
  }
}
@media screen and (max-width: 767px) {
  .access_text {
    margin: 3.0769230769vw 0px 2.3076923077vw;
    width: 100%;
    padding: 0 30px;
  }
}

.access_image {
  margin: 40px 0px 30px 100px;
  width: 780px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .access_image {
    margin: 3.0769230769vw 0px 2.3076923077vw 7.6923076923vw;
    width: 60vw;
  }
}
@media screen and (max-width: 767px) {
  .access_image {
    margin: 20px 0px 15px;
    width: 100%;
    padding: 0 30px;
  }
}

.access_table {
  margin: 40px 120px 120px 100px;
  font-size: 15px;
  color: #000;
  background: #FFF;
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .access_table {
    margin: 3.0769230769vw 9.2307692308vw 9.2307692308vw 7.6923076923vw;
  }
}
@media screen and (max-width: 767px) {
  .access_table {
    margin: 20px 0 30px;
    width: 100%;
  }
}
.access_table table {
  margin: 15px auto 20px auto;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  /*2021-10-08
  width: 100%;
  */
  width: calc(100% - 60px);
  border-collapse: collapse;
  text-align: left;
  /*2021-10-08*/
  font-size: 14px;
}
.access_table table th {
  /*2021-10-08
  	padding: 8px;
  */
  padding: 17px 8px 17px 35px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  color: #333;
  background-color: #f0f0f0;
  font-weight: normal;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .access_table table th {
    padding: 1.3076923077vw 0px 1.3076923077vw 3.0769230769vw;
  }
}
@media screen and (max-width: 767px) {
  .access_table table th {
    padding: 5px 0px 5px 10px;
    width: 25%;
    height: 40px;
  }
}
.access_table table td {
  /*2021-10-08
  	padding: 8px;
  */
  padding: 17px 8px 17px 35px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .access_table table td {
    padding: 1.3076923077vw 0px 1.3076923077vw 3.0769230769vw;
  }
}
@media screen and (max-width: 767px) {
  .access_table table td {
    padding: 5px 0px 5px 10px;
  }
}

.access_title {
  margin: 0px 0px 30px 100px;
  padding: 25px 0px 25px 2px;
  width: 760px;
  font-size: 20px;
  color: #ED7478;
  background: #FFF;
  text-align: left;
  background-image: linear-gradient(to right, #DBDBDB, #DBDBDB 1px, transparent 1px, transparent 2px), linear-gradient(to right, #DBDBDB, #DBDBDB 1px, transparent 1px, transparent 2px);
  background-size: 2px 2px, 2px 2px;
  background-position: left top, right bottom;
  background-repeat: repeat-x, repeat-x;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .access_title {
    margin: 0px 0px 2.3076923077vw 7.6923076923vw;
    padding: 1.9230769231vw 0px 1.9230769231vw 0.1538461538vw;
    width: 58.4615384615vw;
  }
}
@media screen and (max-width: 767px) {
  .access_title {
    margin: 0px auto 30px;
    padding: 25px 0px 25px 2px;
    width: calc(100% - 60px);
    font-size: 16px;
  }
}

.access_image_souraku {
  float: left;
  margin: 0px 0px 50px 100px;
  width: 400px;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .access_image_souraku {
    margin: 0px 0px 3.8461538462vw 7.6923076923vw;
    width: 60vw;
  }
}
@media screen and (max-width: 767px) {
  .access_image_souraku {
    float: left;
    margin: 0px 0px 25px 30px;
    aspect-ratio: 200/224;
    width: 200px;
    display: block;
  }
}

.access_address {
  margin: 0px 0px 0px 0px;
  font-size: 15px;
  color: #000;
  background: #FFF;
  text-align: left;
  float: left;
}
.access_address_1 {
  margin: 0px 0px 20px 20px;
  line-height: 28px;
  font-size: 15px;
  color: #AAAAAA;
  float: left;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .access_address_1 {
    margin: 0px 0px 1.5384615385vw 1.5384615385vw;
  }
}

.access_address_2 {
  margin: 0px 0px 20px 20px;
  line-height: 28px;
  font-size: 15px;
  color: #000;
  float: left;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .access_address_2 {
    margin: 0px 0px 1.5384615385vw 1.5384615385vw;
  }
}

.googlemap {
  clear: both;
  margin: 50px 0px 0px 100px;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .googlemap {
    margin: 3.8461538462vw 0px 0px 7.6923076923vw;
  }
}
@media screen and (max-width: 767px) {
  .googlemap {
    width: 100%;
    padding: 0 30px 56.25%;
    margin: 25px auto 0px;
  }
}

.googlemap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 80%;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .googlemap iframe {
    right: 0;
    margin: 0 auto;
  }
}

.login_button {
  cursor: pointer;
  width: 180px;
  height: 48px;
  font-size: 15px;
  color: #FFFFFF;
  text-align: center;
  display: block;
  padding: 10px 0 10px;
  border: none;
  outline: none;
  background: #626F7C;
  border-radius: 7px;
  box-shadow: 0px 0px #626F7C;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .login_button {
    width: 13.8461538462vw;
    height: 3.6923076923vw;
    padding: 0.7692307692vw 0 0.7692307692vw;
  }
}

.message_title {
  margin: 40px 0px 0px 35px;
  padding: 20px 0px 20px 0px;
  width: 760px;
  font-size: 20px;
  color: #666666;
  background: #FFF;
  text-align: left;
  background-image: linear-gradient(to right, #DBDBDB, #DBDBDB 1px, transparent 1px, transparent 2px);
  background-size: 2px 2px;
  background-position: right bottom;
  background-repeat: repeat-x;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .message_title {
    margin: 3.0769230769vw 0px 0px 2.6923076923vw;
    padding: 1.5384615385vw 0px 1.5384615385vw 0px;
    width: 58.4615384615vw;
  }
}
@media screen and (max-width: 767px) {
  .message_title {
    margin: 3.0769230769vw 0px 0px 0px;
    padding: 1.5384615385vw 0px 1.5384615385vw 0px;
    width: 100%;
  }
}

.message_text {
  margin: 0px 0px 20px 35px;
  padding: 20px 0px 15px 0px;
  font-size: 14px;
  color: #000000;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .message_text {
    margin: 0px 0px 1.5384615385vw 2.6923076923vw;
    padding: 1.5384615385vw 0px 1.1538461538vw 0px;
  }
}

.ok_button {
  cursor: pointer;
  width: 180px;
  height: 48px;
  font-size: 15px;
  color: #FFFFFF;
  text-align: center;
  display: block;
  padding: 10px 0 10px;
  border: none;
  outline: none;
  background: #EB7A77;
  border-radius: 7px;
  box-shadow: 0px 0px #EB7A77;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .ok_button {
    width: 13.8461538462vw;
    height: 3.6923076923vw;
    padding: 0.7692307692vw 0 0.7692307692vw;
  }
}

.ng_button {
  cursor: pointer;
  width: 180px;
  height: 48px;
  font-size: 15px;
  color: #000;
  text-align: center;
  display: block;
  padding: 10px 0 10px;
  border: none;
  outline: none;
  background: #EDEDED;
  border-radius: 7px;
  box-shadow: 0px 0px #EDEDED;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .ng_button {
    width: 13.8461538462vw;
    height: 3.6923076923vw;
    padding: 0.7692307692vw 0 0.7692307692vw;
  }
}

.mini_button {
  cursor: pointer;
  width: 120px;
  height: 30px;
  font-size: 12px;
  color: #FFF;
  text-align: center;
  display: block;
  padding: 5px 0 10px;
  border: none;
  outline: none;
  background: #626F7C;
  border-radius: 7px;
  box-shadow: 0px 0px #626F7C;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .mini_button {
    width: 9.2307692308vw;
    height: 2.3076923077vw;
    padding: 0.3846153846vw 0 0.7692307692vw;
  }
}

.delete_button {
  cursor: pointer;
  width: 45px;
  height: 28px;
  font-size: 12px;
  color: #FFF;
  text-align: center;
  display: block;
  /*padding:5px 0 10px;*/
  border: none;
  outline: none;
  background: #EB7A77;
  /*border-radius: 7px;*/
  box-shadow: 0px 0px #EB7A77;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .delete_button {
    width: 3.4615384615vw;
    height: 2.1538461538vw;
  }
}

.order table {
  margin: 15px auto 20px auto;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  /*2021-10-08
  width: 100%;
  */
  width: 88%;
  border-collapse: collapse;
  text-align: left;
  /*2021-10-08*/
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .order table {
    display: block;
    width: 88%;
  }
}

@media screen and (max-width: 767px) {
  .order table tbody {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .order table tr {
    display: block;
    width: 100%;
  }
}

.order table th {
  /*2021-10-08
      padding: 8px;
  */
  padding: 17px 8px 17px 25px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  color: #333;
  background-color: #f0f0f0;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .order table th {
    width: 100%;
    display: block;
  }
}

.order table td {
  /*2021-10-08
      padding: 8px;
  */
  padding: 17px 8px 17px 35px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .order table td {
    width: 100%;
    display: block;
    padding-left: 25px;
  }
}

/* ==============================================
▼ご利用ガイド
=============================================== */
.guide_title {
  margin: 30px 50px 20px 50px;
  padding: 24px;
  width: 860px;
  height: 74px;
  border: solid 2px #AAAAAA;
  font-size: 22px;
  color: #ED7478;
  background: #F4F4F4;
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .guide_title {
    margin: 2.3076923077vw 3.8461538462vw 1.5384615385vw 3.8461538462vw;
    padding: 1.8461538462vw;
    width: 66.1538461538vw;
    height: 5.6923076923vw;
  }
}
@media screen and (max-width: 767px) {
  .guide_title {
    margin: 0 auto 10px;
    padding: 15px 2px 2px 10px;
    background-size: 3px 5px;
    background-repeat: repeat-x;
    color: #ED7478;
    font-size: 20px;
    width: 90%;
    height: 64px;
  }
}

.guide_text {
  /*上右下左*/
  margin: 5px 0px 70px 80px;
  font-size: 15px;
  color: #000;
  background: #FFF;
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .guide_text {
    margin: 0.3846153846vw 0px 5.3846153846vw 6.1538461538vw;
  }
}
@media screen and (max-width: 767px) {
  .guide_text {
    margin: 5px 30px 30px 35px;
    font-size: 15px;
    color: #000;
    background: #FFF;
    text-align: left;
  }
}

.privacy .message {
  margin-bottom: 20px;
  line-height: 150%;
  font-weight: bold;
  font-size: 120%;
}
@media screen and (max-width: 767px) {
  .privacy .message {
    margin: 0 20px 10px;
    padding: 20px 0px 10px 2px;
    font-size: 18px;
    font-weight: normal;
    color: #ED7478;
    background: #FFF;
    text-align: left;
    background-image: linear-gradient(to right, #DBDBDB, #DBDBDB 1px, transparent 1px, transparent 2px);
    background-size: 2px 2px;
    background-position: right bottom;
    background-repeat: repeat-x;
  }
}

@media screen and (max-width: 767px) {
  .privacy p {
    padding: 0 20px;
  }
}

/* ==============================================
▼商品一覧
=============================================== */
/* ページ送り
----------------------------------------------- */
.pagenumber_area {
  padding-bottom: 10px;
  background: url("../img/background/line_dot_01.gif") repeat-x bottom;
}
@media screen and (max-width: 767px) {
  .pagenumber_area {
    background: unset;
    margin-bottom: 0;
  }
}

.pagecond_area {
  margin-bottom: 20px;
  padding: 10px;
}

.pagenumber_area {
  margin: 20px 0;
}

.pagecond_area {
  border: 1px solid #ccc;
}

.pagenumber_area .navi {
  width: 100%;
  text-align: left;
}

.pagenumber_area .navi li {
  display: inline;
}

.pagenumber_area .change {
  float: right;
  text-align: right;
  white-space: nowrap;
}

.intro {
  padding: 15px 0px 10px;
  font-weight: bold;
  font-size: 14px;
}

.intro p {
  line-height: 1.3;
}

.attention {
  color: #CC0000;
}

.mini {
  display: none;
}
@media screen and (max-width: 767px) {
  .mini {
    color: #727272;
    display: inline;
  }
}

.reviewbtn {
  width: 26rem;
  margin: 0 auto;
}

.sns_share {
  font-size: 13px;
  color: #000;
  text-align: center;
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .sns_share {
    margin-top: 60px;
  }
}
.sns_share a {
  width: 30px;
  display: inline-block;
}

.c-typeListProduct-head__setpInfo, .p-productDetaiMain-head__setpInfo {
  display: none;
}

.c-productReview__starList img {
  max-width: 122px;
}
@media screen and (max-width: 767px) {
  .c-productReview__starList img {
    max-width: 90px;
  }
}

.m-userProductSect-addProduct {
  border-color: var(--color-gray);
  border-top: unset;
}

.m-userProductSect-addProduct__button {
  width: 32%;
  margin: 12px 0 12px auto;
}
@media screen and (max-width: 767px) {
  .m-userProductSect-addProduct__button {
    width: 80%;
    margin: 12px auto 12px auto;
  }
}

.p-productDetailWrap .c-formInput-item__alert {
  white-space: unset;
}

.m-productSkuDropdown-buyStep + .m-productStockStatus {
  display: block;
}

.m-orderProductSectWrapLine.m-orderProductSectWrapLine--box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-orderProductSectWrapLine.m-orderProductSectWrapLine--box .m-orderProductSectWrapLine__info {
  margin: 0;
}

.s-orderContent-head:not(:has(*)) {
  padding: 0;
}

.c-userSectCol-annotation__text {
  text-align: left;
}

.u-pc_dispBlock {
  display: block;
}
.u-sp_dispBlock {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-pc_dispBlock {
    display: none;
  }
  .u-sp_dispBlock {
    display: block;
  }
}
/* ==============================================
 打ち消しCSS（2026-08-12追加）
 各プロパティを revert で元の値に戻す。
 元の記述で !important が使われているものは
 同じ優先度で上書きするため !important を付与。
=============================================== */
:root {
  --color-np-kakebarai: unset !important;
}

h6, h5, h4, h3, h2, h1 {
  font-weight: revert;
}

.u-nowrap {
  white-space: revert;
}

.u-link-default {
  color: unset !important;
  text-decoration: revert;
}

.c-formInput-item__inline-card {
  display: revert;
  grid-template-columns: revert;
  gap: revert;
  margin-bottom: revert;
  align-items: revert;
}

.c-formInput-item__inline-card > .c-formInput-item__inline-item {
  display: revert;
  flex-direction: revert;
  align-items: revert;
  justify-content: revert;
  min-height: revert;
}

.c-formInput-item__inline-card > .c-formInput-item__inline-item > img {
  margin-top: revert;
}

.m-modalInSetChange__options {
  margin: revert;
}

.m-modalInSetChange__option {
  display: revert;
  align-items: revert;
  padding: revert;
  border-bottom: revert;
  cursor: revert;
}

.m-modalInSetChange__option:last-child {
  border-bottom: revert;
}

.m-modalInSetChange__option input[type=radio] {
  margin-top: revert;
  margin-right: revert;
  accent-color: revert;
  width: revert;
  height: revert;
  flex-shrink: revert;
}

.m-modalInSetChange__option-label {
  font-size: revert;
  font-weight: revert;
}

.m-modalInSetChange__option-desc {
  color: revert;
  font-size: revert;
  margin-top: revert;
}

.m-modalInSetChange__notice {
  color: revert;
  font-size: revert;
  line-height: revert;
  margin: revert;
}

.s-header-miniCart-item__setComponents {
  padding-left: revert;
  margin: revert;
  font-size: revert;
  line-height: revert;
  color: revert;
}

.s-header-miniCart-item__setComponent {
  list-style: revert;
}

/* ==============================================
 打ち消しCSS（セット商品構成品／2026-08-12追加）
=============================================== */
.p-productSkuBottomBtn__cart-componentStockError {
  padding-left: revert;
  text-indent: revert;
  font-size: revert;
  color: revert;
}

.p-productDetail-setComponent {
  margin-top: revert;
}

.p-productDetail-setComponent__header {
  padding: revert;
  background: revert;
  color: revert;
  font-size: revert;
  font-weight: revert;
}

.p-productDetail-setComponent__list {
  border: revert;
  border-top: revert;
}

.p-productDetail-setComponent__item {
  padding: revert;
  border-bottom: revert;
}

.p-productDetail-setComponent__item:last-child {
  border-bottom: revert;
}

.p-productDetail-setComponent__itemMain {
  display: revert;
  align-items: revert;
  gap: revert;
}

.p-productDetail-setComponent__badge {
  display: revert;
  align-items: revert;
  justify-content: revert;
  width: revert;
  height: revert;
  min-width: revert;
  border-radius: revert;
  background: revert;
  color: revert;
  font-size: revert;
  font-weight: revert;
}

.p-productDetail-setComponent__image {
  width: revert;
  height: revert;
  min-width: revert;
  border: revert;
  overflow: revert;
}

.p-productDetail-setComponent__img {
  width: revert;
  height: revert;
  object-fit: revert;
}

.p-productDetail-setComponent__noImage {
  width: revert;
  height: revert;
  display: revert;
  align-items: revert;
  justify-content: revert;
  background: revert;
  color: revert;
  font-size: revert;
}

.p-productDetail-setComponent__info {
  flex: revert;
  min-width: revert;
}

.p-productDetail-setComponent__name {
  font-size: revert;
  font-weight: revert;
  word-break: revert;
}

.p-productDetail-setComponent__productId {
  font-size: revert;
  color: revert;
  margin-top: revert;
}

.p-productDetail-setComponent__quantity {
  font-size: revert;
  font-weight: revert;
  white-space: revert;
}

.p-productDetail-setComponent__variation {
  margin-top: revert;
  padding-left: revert;
}

.p-productDetail-setComponent__variationTitle {
  font-size: revert;
  font-weight: revert;
  margin-bottom: revert;
  padding-left: revert;
  border-left: revert;
}

.p-productDetail-setComponent__variationButtons {
  display: revert;
  flex-wrap: revert;
  gap: revert;
}

.p-productDetail-setComponent__variationBtn {
  padding: revert;
  border: revert;
  border-radius: revert;
  background: revert;
  font-size: revert;
  cursor: revert;
  transition: revert;
}

.p-productDetail-setComponent__variationBtn:hover {
  border-color: revert;
}

.p-productDetail-setComponent__variationBtn--selected {
  border-color: revert;
  background: revert;
  color: revert;
}

.p-productDetail-setComponent__variationBtn--disabled {
  position: revert;
  overflow: revert;
  opacity: revert;
  color: revert;
  background: revert;
}

.p-productDetail-setComponent__variationBtn--disabled:hover {
  border-color: revert;
}

.p-productDetail-setComponent__variationDropdown {
  margin-top: revert;
}

.p-productDetail-setComponent__variationSelect {
  width: revert;
  padding: revert;
  border: revert;
  border-radius: revert;
  font-size: revert;
  background: revert;
}

.p-productDetail-setComponent__variationAxis {
  margin-top: revert;
}

.p-productDetail-setComponent__variationAxis:first-child {
  margin-top: revert;
}

.p-productDetail-setComponent__variationAxisTitle {
  font-size: revert;
  font-weight: revert;
  margin-bottom: revert;
  color: revert;
}

.p-productDetail-setComponent__variationMultiDropdown .p-productDetail-setComponent__variationSelect {
  max-width: revert;
}

.p-productDetail-setComponent__variationPanelBox {
  display: revert;
  flex-wrap: revert;
  gap: revert;
}

.p-productDetail-setComponent__variationPanelItem {
  display: revert;
  align-items: revert;
  padding: revert;
  border: revert;
  border-radius: revert;
  cursor: revert;
  font-size: revert;
  transition: revert;
}

.p-productDetail-setComponent__variationPanelItem:hover {
  border-color: revert;
}

.p-productDetail-setComponent__variationPanelItem--selected {
  border-color: revert;
  background: revert;
  color: revert;
}

.p-productDetail-setComponent__variationPanelInput {
  display: revert;
}