/* setting
------------------------------------------*/
:root {
  scroll-behavior: auto;

  --bodyFontSize: 14px; /* 全体のフォントサイズ */
  --bodyLineHeight: 1.3; /* 全体の行間 */
  --bodyLineHeight2: 2; /* 全体の行間（Pタグなど広めの行間） */
  --bodyLetterSpacing: 0.05em; /* 全体の文字間 */

  --bodyFontFamily: "Urbanist", "Zen Kaku Gothic New", sans-serif; /* 全体のフォントファミリー */
  --headFontFamily: "Urbanist", "Zen Kaku Gothic New", sans-serif; /* 見出しのフォントファミリー */

  --headFontSizePc: 34px; /* 見出しのフォントサイズ */
  --headFontSizeTb: 28px; /* 見出しのフォントサイズ(タブレット) */
  --headFontSizeSp: 22px; /* 見出しのフォントサイズ(スマホ) */
  --headFontWeight: bold; /* 見出しのフォントウェイト */
  --headLetterSpacing: 0.05em; /* 見出しの文字間 */

  --btnFontSize: 12px; /* ボタンのフォントサイズ */
  --btnFontWeight: bold; /* ボタンのフォントウェイト */
  --btnLetterSpacing: 0.05em; /* ボタンの文字間 */

  --fixedHeaderLogoHeight: 20px; /* 追従ヘッダーのロゴの高さ */
  --fixedHeaderLogoHeightSp: 15px; /* 追従ヘッダーのロゴの高さ(スマホ) */

  --headerLogoHeight: 38px; /* ヘッダーのロゴの高さ */
  --headerLogoHeightSp: 25px; /* ヘッダーのロゴの高さ(スマホ) */

  --itemListImageAspectRatio: 1 / 1; /* 商品一覧の画像の比率 縦長 3 / 4 など */

  --imageBorderRadius: 6px; /* 画像の角丸 */
  --imageBorderRadiusMv2: 12px; /* 画像の角丸 メインイメージタイプ2の時 */
  --imageBorderRadiusMv3: 12px 0 0 12px; /* メインイメージタイプ3の時 */

  --themeBgColor: #ffffff; /* 背景カラー */
  --themeTextColor: #1d2826; /* 文字カラー */
  --themeSubBgColor: #fafafa; /* サブ背景カラー */
  --themeSubBgColor2: #eeeeee; /* サブ背景カラー2 */
  --themeNoticeColor: #e08686; /* 注意書きカラー */
  --themeAccentBgColor: #787878; /* アクセント背景カラー */
  --themeAccentTextColor: #ffffff; /* アクセント文字カラー */

  --darkThemeBgColor: #434948; /* 背景カラー(ダークモード) */
  --darkThemeTextColor: #ffffff; /* 文字カラー(ダークモード) */
  --darkThemeSubBgColor: #333938; /* サブ背景カラー(ダークモード) */
  --darkThemeSubBgColor2: #4d5654; /* サブ背景カラー2(ダークモード) */
  --darkThemeNoticeColor: #e08686; /* 注意書きカラー(ダークモード) */
  --darkThemeAccentBgColor: #787878; /* アクセント背景カラー(ダークモード) */
  --darkThemeAccentTextColor: #ffffff; /* アクセント文字カラー(ダークモード) */
}

/* base
------------------------------------------*/
html {
  scroll-padding-top: 180px;
  --informationBannerHeight: 40px;
  --fixHeaderHeight: 70px;
  --headerHeight: 180px;
  --margin: 140px;
  --padding: 60px;
  --maxWidth: 1380px;
  --titleMargin: 70px;

  --themeContentWidth: 85%;

  --headFontSize: var(--headFontSizePc);

  --itemNum: 4;
  --itemMarginV: 50px;
  --itemMarginH: 36px;

  --pageTitleHeight: 240px;
  --imageTitleHeight: 480px;

  --inputBorderRadius: 3px;

  --headFontSizeL: calc(var(--headFontSize) + 12px);
  --headFontSizeS: calc(var(--headFontSize) - 6px);
  --headFontLsL: min(var(--headFontLs), 0.2em);

  --messagePadding: 80px;
}
@media (max-width: 1200px) {
  html {
    --margin: 100px;
    --padding: 50px;
    --titleMargin: 40px;

    --headFontSize: var(--headFontSizeTb);

    --itemMarginV: 45px;
    --itemMarginH: 28px;

    --imageTitleHeight: 420px;

    --messagePadding: 60px;
  }
}
@media (max-width: 1000px) {
  html {
    --itemNum: 3;
    --messagePadding: 50px;

    --themeContentWidth: 100%;
  }
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 100px;
    --fixHeaderHeight: 60px;
    --headerHeight: 100px;
    --margin: 80px;
    --padding: 30px;
    --titleMargin: 30px;

    --headFontSize: var(--headFontSizeSp);

    --itemMarginV: 40px;
    --itemMarginH: 22px;

    --pageTitleHeight: 180px;
    --imageTitleHeight: 320px;

    --headFontSize: var(--headFontSizeSp);
    --headFontSizeL: calc(var(--headFontSizeSp) + 4px);
    --headFontSizeS: calc(var(--headFontSizeSp) - 2px);
    --headFontLsL: min(var(--headFontLs), 0.2em);
  }
}
@media (max-width: 600px) {
  html {
    --margin: 60px;
    --padding: 22px;

    --itemNum: 2;
    --itemMarginV: 30px;
    --itemMarginH: 16px;

    --imageTitleHeight: 180px;
  }
}

body {
  --bgColor: var(--themeBgColor);
  --textColor: var(--themeTextColor);
  --subBgColor: var(--themeSubBgColor);
  --subBgColor2: var(--themeSubBgColor2);
  --noticeColor: var(--themeNoticeColor);
  --accentBgColor: var(--themeAccentBgColor);
  --accentTextColor: var(--themeAccentTextColor);
  --imageBtnBgColor: var(--themeAccentBgColor);
  --imageBtnTextColor: var(--themeAccentTextColor);
}

@media (prefers-color-scheme: dark) {
  body.darkmode-1 {
    --bgColor: var(--darkThemeBgColor);
    --textColor: var(--darkThemeTextColor);
    --subBgColor: var(--darkThemeSubBgColor);
    --subBgColor2: var(--darkThemeSubBgColor2);
    --noticeColor: var(--darkThemeNoticeColor);
    --accentBgColor: var(--darkThemeAccentBgColor);
    --accentTextColor: var(--darkThemeAccentTextColor);
    --imageBtnBgColor: var(--darkThemeAccentBgColor);
    --imageBtnTextColor: var(--darkThemeAccentTextColor);
  }
}

*,
*:before,
*:after {
  outline: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  background: var(--bgColor);
}
body {
  color: var(--textColor);
  font-size: var(--bodyFontSize);
  font-family: var(--bodyFontFamily);
  line-height: var(--bodyLineHeight);
  letter-spacing: var(--bodyLetterSpacing);
  word-break: break-word;
  overflow-wrap: break-word;
}
h1,
h2,
h3,
h4,
.mv .text .sub,
.mv .text .title,
.sec-title .title,
.sec-title .sub,
.access .text .title,
.footer-info .text .title,
.footer-guide-once .title {
  margin: 0;
  padding: 0;
  font-size: var(--headFontSize);
  font-weight: var(--headFontWeight);
  font-family: var(--headFontFamily);
  line-height: var(--bodyLineHeight);
  letter-spacing: var(--headLetterSpacing);
}
a,
a:hover {
  color: var(--textColor);
  text-decoration: underline;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
    color: var(--textColor);
  }
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  max-width: 100%;
}
::placeholder {
  opacity: 0.4 !important;
}

.ec-layoutRole {
  overflow: clip;
  background: var(--bgColor);
}
.ec-layoutRole .ec-layoutRole__contents {
  opacity: 0;
  margin: 0 auto;
  padding: 0 var(--padding);
  max-width: var(--maxWidth);
  transition: all 0.6s ease;
}
.ec-layoutRole .ec-layoutRole__contents.viewed {
  opacity: 1;
}
.front_page .ec-layoutRole .ec-layoutRole__contents {
  opacity: 1;
  padding: 0;
  max-width: 100%;
}
.ec-role {
  margin: 0;
  padding: 0;
  max-width: 100%;
  color: var(--textColor);
  font-size: var(--bodyFontSize);
  line-height: var(--bodyLineHeight);
}
.bg-load-overlay {
  opacity: 0.4;
  background: var(--bgColor);
}

/* btn, input
------------------------------------------*/
.ec-inlineBtn--cancel,
.ec-inlineBtn--action,
.ec-inlineBtn,
.ec-blockBtn--cancel,
.ec-blockBtn--action,
.ec-blockBtn,
.btn-image a,
.btn-normal a {
  outline: none !important;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  padding: 16px 5px;
  width: 100%;
  height: auto;
  color: var(--textColor) !important;
  font-size: var(--btnFontSize) !important;
  font-weight: var(--btnFontWeight) !important;
  text-align: center;
  line-height: 1;
  letter-spacing: var(--btnLetterSpacing);
  text-decoration: none;
  background: none !important;
  border: var(--textColor) 1px solid !important;
  border-radius: 100px;
  box-shadow: none !important;
  transition: all 0.3s ease;
  appearance: none;
}
.ec-inlineBtn--cancel,
.ec-inlineBtn--action,
.ec-inlineBtn {
  margin: 0;
  max-width: 200px;
}
.ec-inlineBtn--action,
.ec-blockBtn--action,
.ec-mypageRole .ec-blockBtn--cancel,
.ec-orderDelivery__change .ec-inlineBtn,
.ec-orderDelivery__edit .ec-inlineBtn {
  color: var(--imageBtnTextColor) !important;
  background: var(--imageBtnBgColor) !important;
  border: var(--imageBtnBgColor) 1px solid !important;
}
.btn-image,
.btn-normal {
  margin: 50px 0 0 0;
}
.btn-image a,
.btn-normal a {
  width: 200px;
}
.btn-image a {
  color: var(--imageBtnTextColor) !important;
  background: var(--imageBtnBgColor) !important;
  border: none !important;
}
@media (hover: hover) {
  .ec-inlineBtn--cancel:hover,
  .ec-inlineBtn--action:hover,
  .ec-inlineBtn:hover,
  .ec-blockBtn--cancel:hover,
  .ec-blockBtn--action:hover,
  .ec-blockBtn:hover {
    opacity: 0.7;
  }
}
@media (max-width: 768px) {
  .ec-inlineBtn {
    min-width: auto;
  }
}

.ec-layoutRole__main input[type="text"],
.ec-layoutRole__main input[type="number"],
.ec-layoutRole__main input[type="email"],
.ec-layoutRole__main input[type="password"],
.ec-layoutRole__main input[type="tel"],
.ec-layoutRole__main textarea,
.ec-layoutRole__main select {
  display: block;
  margin: 0 0 8px 0 !important;
  padding: 12px;
  width: 100%;
  height: auto;
  color: var(--textColor);
  font-size: var(--bodyFontSize);
  font-family: var(--bodyFontFamily);
  line-height: var(--bodyLineHeight);
  background: none;
  border: var(--textColor) 1px solid;
  border-radius: var(--inputBorderRadius);
  transition: all 0.3s ease;
  appearance: none;
}
.ec-layoutRole__main input[type="text"]:focus,
.ec-layoutRole__main input[type="number"]:focus,
.ec-layoutRole__main input[type="email"]:focus,
.ec-layoutRole__main input[type="password"]:focus,
.ec-layoutRole__main input[type="tel"]:focus,
.ec-layoutRole__main textarea:focus,
.ec-layoutRole__main select:focus {
  border: var(--textColor) 1px solid;
  box-shadow: none;
}
.ec-layoutRole__main input[type="tel"] {
  display: inline-block;
}
.ec-layoutRole__main textarea {
  height: 200px;
}
.ec-layoutRole__main select,
.ec-layoutRole__main select:focus {
  display: inline-block;
  padding: 12px 24px 12px 12px;
  width: auto;
  height: auto !important;
  max-width: 100% !important;
  min-width: auto !important;
  background: linear-gradient(45deg, transparent 50%, var(--textColor) 50%) no-repeat center right 14px/4px 4px, linear-gradient(-45deg, transparent 50%, var(--textColor) 50%) no-repeat center right 10px/4px 4px;
  background-color: var(--bgColor);
}
.ec-layoutRole__main select:focus {
  border: var(--textColor) 1px solid;
}
.ec-select {
  margin: 0;
}
.ec-selects {
  padding: 0 0 12px 0;
  border-bottom: var(--subBorderColor) 1px solid;
}
.ec-halfInput {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}
.ec-halfInput input,
.ec-halfInput p {
  width: calc(50% - 4px) !important;
}
.ec-birth span {
  margin: 0 5px;
}

.ec-layoutRole__main .error input,
.ec-layoutRole__main .error select,
.ec-layoutRole__main .error textarea {
  background: var(--bgColor);
  border: var(--noticeColor) 1px solid;
}
.ec-layoutRole__main .error select {
  background: linear-gradient(45deg, transparent 50%, var(--textColor) 50%) no-repeat center right 14px/4px 4px, linear-gradient(-45deg, transparent 50%, var(--textColor) 50%) no-repeat center right 10px/4px 4px;
}
.error.ec-checkbox div,
.error.ec-checkbox input,
.error.ec-checkbox label,
.error.ec-radio div,
.error.ec-radio input,
.error.ec-radio label {
  background: none;
  border: none;
}
.ec-layoutRole__main .ec-errorMessage {
  margin: 0 0 8px 0;
  color: var(--noticeColor);
}

.ec-modal .ec-modal-wrap {
  padding: 30px;
  max-width: 800px;
  background: var(--bgColor);
  border: none;
  border-radius: 3px;
}
.ec-modal .ec-modal-close {
  top: 5px;
  right: 5px;
  height: 30px;
  width: 30px;
}
.ec-modal .ec-modal-close span {
  display: none;
}
.ec-modal .ec-modal-close:before,
.ec-modal .ec-modal-close:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 5px;
  width: 20px;
  height: 2px;
  background: var(--textColor);
  border-radius: 1px;
}
.ec-modal .ec-modal-close:before {
  transform: rotate(45deg);
}
.ec-modal .ec-modal-close:after {
  transform: rotate(-45deg);
}
.ec-modal-header {
  font-size: var(--bodyFontSize);
}
.ec-modal .ec-role {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
}
.ec-modal .ec-role span,
.ec-modal .ec-role a {
  max-width: 300px;
}

/* drawer
------------------------------------------*/
.drawer-bg {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.4s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10002;
}
.drawer-bg.open {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.drawer {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  width: min(80%, 320px);
  height: 100vh;
  color: var(--textColor);
  background: var(--subBgColor);
  z-index: 10003;
  transform: translateX(-100%);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.drawer.open {
  transform: translateX(0);
  transition: all 0.4s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.drawer-close {
  cursor: pointer;
  position: relative;
  height: 50px;
}
.drawer-close:before,
.drawer-close:after {
  content: "";
  position: absolute;
  top: 25px;
  right: 17px;
  width: 20px;
  height: 1px;
  background: var(--textColor);
  transform: rotate(45deg);
}
.drawer-close:after {
  transform: rotate(-45deg);
}
.drawer-search {
  margin: 25px 25px 30px 25px;
}
.drawer-search form {
  display: flex;
  justify-content: space-between;
  margin: 25px 0 0 0;
  padding: 5px 5px 5px 15px;
  width: 100%;
  border: var(--textColor) 1px solid;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.drawer-search form input {
  width: calc(100% - 34px);
  color: var(--textColor);
  line-height: 1;
  background: none;
  border: none;
}
.drawer-search form input::placeholder {
  color: inherit;
}
.drawer-search form button {
  width: 32px;
  height: 32px;
  text-align: center;
  background: none;
  border: none;
}
.drawer-search form button svg {
  margin: 0 auto;
  width: 18px;
  fill: var(--textColor);
}

.drawer ul {
  padding: 0;
  list-style: none;
}
.drawer a {
  display: block;
  padding: 8px 30px 8px 0;
  color: var(--textColor);
  text-decoration: none;
}
.drawer-menu {
  margin: 25px;
  font-size: 13px;
}

.drawer-category {
  margin: 25px 25px 35px 25px;
  font-size: 13px;
}
.drawer-category span {
  display: none;
}
.drawer-category > ul > li {
  position: relative;
  padding: 10px 0;
  border-bottom: var(--drawerBorderColor) 1px solid;
}
.drawer-category > ul > li:after {
  content: "";
  opacity: 0.1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--textColor);
}
.drawer-category > ul > li > span {
  display: none;
}
.drawer-category > ul > li:has(ul) > span {
  content: "";
  cursor: pointer;
  display: block;
  position: absolute;
  top: 11px;
  right: 0;
  width: 31px;
  height: 31px;
  transition: all 0.3s ease;
  z-index: 1;
}
.drawer-category > ul > li > span:before,
.drawer-category > ul > li > span:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 9px;
  width: 13px;
  height: 1px;
  background: var(--textColor);
  transition: all 0.3s ease;
}
.drawer-category > ul > li > span:after {
  top: 9px;
  left: 15px;
  width: 1px;
  height: 13px;
}
.drawer-category > ul > li > span.open:before {
  opacity: 0;
  transform: rotate(90deg);
}
.drawer-category > ul > li > span.open:after {
  transform: rotate(90deg);
}

.drawer-category > ul > li > ul {
  display: none;
}
.drawer-category > ul > li > ul:before,
.drawer-category > ul > li > ul:after {
  content: "";
  display: block;
  height: 8px;
}
.drawer-category > ul > li > ul > li > a {
  padding: 8px 0 8px 10px;
}
.drawer-category > ul > li > ul > li ul {
  padding: 6px 0 6px 20px;
}
.drawer-category > ul > li > ul > li ul a {
  padding: 6px 0;
}

.drawer-copyright {
  opacity: 0.5;
  padding: 25px;
  font-size: 10px;
  text-align: center;
}

/* header
------------------------------------------*/
.header-search-bg {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.4s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10002;
}
.header-search-bg.open {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.header-search-modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: calc(var(--headerHeight) * -1);
  left: 50%;
  padding: var(--padding);
  width: min(100%, 800px);
  height: var(--headerHeight);
  transform: translateX(-50%);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 10003;
}
.header-search-modal.open {
  opacity: 1;
  visibility: visible;
  top: 0;
  transition: all 0.4s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.header-search-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.header-search {
  display: flex;
  justify-content: space-between;
  padding: 6px 6px 6px 18px;
  width: 100%;
  border: #fff 2px solid;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.header-search input {
  display: block;
  padding: 0;
  margin: 0;
  width: calc(100% - 34px);
  height: auto;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  background: none;
  border: none;
}
.header-search input::placeholder {
  color: inherit;
}
.header-search button {
  appearance: none;
  width: 36px;
  height: 36px;
  text-align: center;
  background: none;
  border: none;
}
.header-search button svg {
  margin: 0 auto;
  width: 22px;
  fill: #fff;
}
.header-search-wrap .close {
  cursor: pointer;
  position: relative;
  margin: 0 0 0 10px;
  width: 41px;
  height: 41px;
}
.header-search-wrap .close:before,
.header-search-wrap .close:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 6px;
  width: 25px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
}
.header-search-wrap .close:after {
  transform: rotate(-45deg);
}

.information {
  opacity: 0;
  display: grid;
  place-items: center;
  position: relative;
  padding: 0 10px;
  height: var(--informationBannerHeight);
  color: var(--accentTextColor);
  font-size: 11px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  background: var(--accentBgColor);
  transition: all 0.6s ease;
}
.loaded .information {
  opacity: 1;
}
.information a {
  color: var(--accentTextColor);
}

.fixed-header {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 min(5vw, 30px);
  width: 100%;
  height: var(--fixHeaderHeight);
  background: var(--bgColor);
  translate: 0 -100%;
  transition: all 0.3s ease;
  z-index: 1002;
}
.scrolled .fixed-header {
  translate: 0;
}

.header {
  opacity: 0;
  display: flex;
  top: 0;
  padding: 0 min(5vw, 30px);
  width: 100%;
  height: var(--headerHeight);
  color: var(--textColor);
  background: var(--bgColor);
  transition: all 0.6s ease;
  z-index: 1001;
}
.loaded .header {
  opacity: 1;
}

.drawer-open-wrap {
  width: 140px;
}
.header .drawer-open-wrap {
  padding: 15px 0 0 0;
}
.drawer-open {
  cursor: pointer;
  display: block;
  position: relative;
  width: 36px;
  height: 36px;
}
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: "";
  position: absolute;
  top: 17px;
  left: 10px;
  width: 20px;
  height: 2px;
  background: var(--textColor);
  transition: all 0.3s ease;
}
.drawer-open span:before {
  top: -6px;
  left: 0;
}
.drawer-open span:after {
  top: 6px;
  left: 0;
}
@media (hover: hover) {
  .drawer-open:hover span,
  .drawer-open:hover span:before,
  .drawer-open:hover span:after {
    left: 6px;
  }
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: calc(100% - 280px);
}
.logo {
}
.logo a {
  display: block;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.logo a img {
  object-fit: contain;
  display: block;
  margin: 0 auto;
  width: auto;
  height: var(--headerLogoHeight);
  transition: all 0.3s ease;
}
.fixed-header .logo a img {
  height: var(--fixedHeaderLogoHeight);
}
@media (prefers-color-scheme: dark) {
  .darkmode-1.darkmodelogowhite-1 .logo a img {
    filter: brightness(0) invert(1);
  }
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  height: 16px;
  list-style: none;
}
.header-menu > li {
  position: relative;
}
.header-menu > li > a {
  display: block;
  height: 38px;
  color: var(--textColor);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 38px;
  text-decoration: none;
}
.header-category ul,
.header-btn-user ul {
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: calc(50% - 90px);
  padding: 20px;
  width: 180px;
  max-height: 80vh;
  color: var(--textColor);
  list-style: none;
  background: var(--bgColor);
  border-radius: 4px;
  box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  transform: translateY(20px);
}
.header-btn-user ul {
  left: calc(50% - 75px);
  width: 150px;
}
.header-category.hover ul,
.header-btn-user.hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-category ul a,
.header-btn-user ul a {
  display: block;
  position: relative;
  padding: 8px 0;
  color: var(--textColor);
  font-size: 12px;
  text-decoration: none;
}
@media (hover: hover) {
  .header-category ul a:hover,
  .header-btn-user ul a:hover {
    opacity: 0.7;
  }
}

.header-btn {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 0 auto;
  width: 140px;
}
.header .header-btn {
  padding: 15px 0 0 0;
}
.header-btn > div {
  position: relative;
}
.header-btn > div > span,
.header-btn > div > a {
  cursor: pointer;
  display: grid;
  place-items: center;
  position: relative;
  width: 38px;
  height: 38px;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .header-btn > div > span:hover,
  .header-btn > div > a:hover {
    opacity: 0.7;
  }
}
.header-btn > div > span svg,
.header-btn > div > a svg {
  width: 19px;
  fill: var(--textColor);
  transition: all 0.3s ease;
}
.header-btn-cart span span {
  position: absolute;
  top: 0;
  right: -6px;
  padding: 1px 0 0 0;
  width: 18px;
  height: 18px;
  color: var(--headerCartTextColor);
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0;
  text-align: center;
  background: var(--headerCartBgColor);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.header-btn-cart span span.empty {
  display: none;
}

@media (max-width: 1000px) {
  .header-menu {
    display: none;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 0 10px;
  }
  .drawer-open-wrap {
    width: 100px;
  }
  .logo-wrap {
    width: calc(100% - 200px);
  }
  .logo a img {
    height: var(--headerLogoHeightSp);
  }
  .fixed-header .logo a img {
    height: var(--fixedHeaderLogoHeightSp);
  }
  .header-btn {
    width: 100px;
  }
  .header-btn-search {
    display: none;
  }
}
@media (max-width: 600px) {
  .drawer-open-wrap {
    width: 50px;
  }
  .logo-wrap {
    width: calc(100% - 100px);
  }
  .header-btn {
    width: 50px;
  }
  .header-btn-user {
    display: none;
  }
}

.header-cart-bg {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.4s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10002;
}
.header-cart-bg.open {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.header-cart {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  width: min(80%, 320px);
  height: 100vh;
  color: var(--textColor);
  background: var(--subBgColor);
  z-index: 10003;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.header-cart.open {
  transform: translateX(0);
  transition: all 0.4s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ec-cartNavi {
  align-items: center;
  padding: 15px 20px;
  height: auto;
  min-width: 100%;
  color: var(--accentTextColor);
  background: var(--accentBgColor);
  border-radius: 0;
}
.ec-cartNavi .ec-cartNavi__icon {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-style: normal;
}
.ec-cartNavi .ec-cartNavi__badge {
  position: relative;
  top: auto;
  left: auto;
  padding: 0;
  height: auto;
  color: var(--accentTextColor);
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  vertical-align: baseline;
  background: none;
}
.ec-cartNavi .ec-cartNavi__badge:after {
  content: "点";
  margin: 0 0 0 3px;
}
.ec-cartNavi .ec-cartNavi__price {
  line-height: 1;
  vertical-align: baseline;
}
.ec-cartNaviIsset {
  overflow: auto;
  display: block;
  margin: 0;
  padding: 20px;
  min-width: 100%;
  max-width: 100%;
  background: none;
}
.ec-cartNaviIsset:before {
  display: none;
}
.ec-cartNaviIsset .ec-cartNaviIsset__cart {
  position: relative;
  margin: 0 0 15px 0;
  padding: 0 0 15px 0;
  border: none;
}
.ec-cartNaviIsset .ec-cartNaviIsset__cart:before {
  content: "";
  opacity: 0.1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--textColor);
}
.ec-cartNaviIsset .ec-cartNaviIsset__cartImage {
  width: 25%;
}
.ec-cartNaviIsset .ec-cartNaviIsset__cartContent {
  width: 75%;
}
.ec-cartNaviIsset .ec-cartNaviIsset__cartContentTax {
  font-size: 11px;
}
.ec-cartNaviIsset .ec-cartNaviIsset__cartContentNumber {
  margin: 8px 0 0 0;
  font-size: 12px;
}
.ec-cartNaviNull {
  display: block;
  position: relative;
  top: auto;
  margin: 0;
  padding: 0;
  min-width: 100%;
  max-width: 100%;
  background: none;
}
.ec-cartNaviNull:before {
  display: none;
}
.ec-cartNaviNull .ec-cartNaviNull__message {
  margin: 30px 0 0 0;
  padding: 0;
  color: var(--textColor);
  font-size: 14px;
  font-weight: normal;
  background: none;
  border: none;
}

/* footer
------------------------------------------*/
.footer-info {
  overflow: hidden;
  position: relative;
}
.footer-info .image {
  opacity: 0;
  overflow: hidden;
  width: 100%;
  height: 60vh;
  transform: scale(1.2);
  transition: all 0.6s ease;
}
.footer-info.viewed .image {
  opacity: 1;
  transform: scale(1);
}
.footer-info .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.footer-info .text {
  opacity: 0;
  position: absolute;
  bottom: var(--padding);
  right: var(--padding);
  padding: var(--padding);
  width: 35vw;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.footer-info.viewed .text {
  opacity: 1;
  transform: translateY(0);
}
.footer-info .text:before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--subBgColor);
  transition: all 0.6s ease;
  z-index: -1;
}
.footer-info.viewed .text:before {
  opacity: 0.8;
}
.footer-info .text .title {
  margin: 0 0 25px 0;
  font-size: 18px;
}
.footer-info .text p {
  font-size: 13px;
  line-height: var(--bodyLineHeight2);
}
.footer-info .text .btn-normal {
  margin: 30px 0 0 0;
}
@media (max-width: 768px) {
  .footer-info .image {
    height: 42vh;
  }
  .footer-info .text {
    position: relative;
    bottom: auto;
    right: auto;
    padding: min(var(--margin), 60px) var(--padding);
    width: 100%;
    z-index: 1;
  }
  .footer-info.viewed .text:before {
    opacity: 1;
  }
}

.footer-guide-wrap {
  margin: var(--margin) 0 0 0;
  background: var(--subBgColor2);
}
.front_page .footer-guide-wrap {
  margin: -1px 0 0 0;
}
.footer-guide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  margin: 0 auto;
  padding: min(var(--margin), 60px) var(--padding);
  max-width: var(--maxWidth);
  width: 100%;
}
.footer-guide-once {
  position: relative;
  padding: 0 30px;
  text-align: center;
}
.footer-guide-once:not(:last-child):after {
  content: "";
  opacity: 0.1;
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 50%;
  background: var(--textColor);
  transform: translateY(-50%);
}
.footer-guide-once .image {
  margin: 0 auto;
  width: 50px;
}
.footer-guide-once .title {
  margin: 15px auto;
  font-size: 14px;
}
.footer-guide-once p {
  opacity: 0.7;
  margin: 0;
  font-size: 12px;
  line-height: var(--bodyLineHeight2);
}
@media (max-width: 768px) {
  .footer-guide {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--padding);
  }
  .footer-guide-once {
    padding: 0 0 0 70px;
    text-align: left;
  }
  .footer-guide-once:not(:last-child):after {
    display: none;
  }
  .footer-guide-once .image {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .footer-guide-once .title {
    margin: 0 0 10px 0;
  }
}
@media (prefers-color-scheme: dark) {
  body.darkmode-1 .footer-guide-once .image img {
    filter: brightness(0) invert(1) !important;
  }
}

.footer {
  color: var(--textColor);
  background: var(--subBgColor);
}
.footer a {
  color: var(--textColor);
  text-decoration: none;
}
.footer-top {
  display: flex;
  gap: var(--padding);
  margin: 0 auto;
  padding: min(var(--margin), 60px) var(--padding);
  max-width: var(--maxWidth);
  line-height: 2;
}
.footer-about {
  width: 56%;
}
.footer-menu {
  width: 22%;
}
.footer-top h3 {
  margin: 0 0 20px 0;
  font-size: 13px;
}
.footer-about p {
  margin: 0 0 12px 0;
  font-size: 11px;
}
.footer-about p:last-child {
  margin: 0;
}
.footer-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-menu ul li {
  margin: 0 0 3px 0;
  font-size: 11px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: min(var(--margin), 60px) var(--padding);
  max-width: var(--maxWidth);
}
.footer-bottom:before {
  content: "";
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: var(--padding);
  width: calc(100% - var(--padding) - var(--padding));
  height: 1px;
  background: var(--textColor);
}
.footer-copyright ul {
  display: flex;
  gap: 10px;
  margin: 0 0 5px 0;
  padding: 0;
  list-style: none;
}
.footer-copyright ul li a {
  font-size: 10px;
}
.footer-copyright p {
  opacity: 0.7;
  margin: 0;
  font-size: 10px;
}
.footer-sns {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-sns a {
  display: block;
  width: 24px;
}
.footer-sns a svg {
  width: 24px;
  fill: var(--textColor);
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }
  .footer-top h3 {
    position: relative;
    padding: 0 0 10px 0;
  }
  .footer-top h3:before,
  .footer-top h3:after {
    content: "";
    opacity: 0.15;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--textColor);
  }
  .footer-top h3:before {
    opacity: 1;
    width: 50px;
  }
  .footer-about,
  .footer-menu {
    width: 100%;
  }
  .footer-bottom {
    padding-top: 0;
    flex-direction: column-reverse;
    text-align: center;
  }
  .footer-bottom:before {
    display: none;
  }
  .footer-copyright ul {
    justify-content: center;
  }
  .footer-sns {
    margin: 0 0 var(--margin) 0;
    justify-content: center;
  }
}

/* common, mypage, order
------------------------------------------*/
.ec-rectHeading .h1,
.ec-rectHeading .h2,
.ec-rectHeading .h3,
.ec-rectHeading .h4,
.ec-rectHeading .h5,
.ec-rectHeading .h6,
.ec-rectHeading h1,
.ec-rectHeading h2,
.ec-rectHeading h3,
.ec-rectHeading h4,
.ec-rectHeading h5,
.ec-rectHeading h6 {
  margin: 40px 0 20px 0;
  padding: 0 0 10px 0;
  font-size: calc(var(--bodyFontSize) + 6px);
  background: none;
  border-bottom: var(--textColor) 2px solid;
}
.ec-birth p,
.ec-halfInput p,
.ec-input p,
.ec-numberInput p,
.ec-select p,
.ec-telInput p,
.ec-zipInput p {
  line-height: var(--bodyLineHeight);
}
.ec-color-red {
  color: var(--noticeColor);
}
.ec-link,
.ec-link:hover {
  color: var(--textColor);
  text-decoration: underline;
}
.ec-para-normal {
  margin: 0;
}
.ec-borderedDefs {
  border-top: var(--subBorderColor) 1px solid;
}
.ec-borderedDefs dl {
  padding: 20px 0 12px 0;
  border-bottom: var(--subBorderColor) 1px solid;
}
.ec-required {
  color: var(--noticeColor);
}
.ec-zipInputHelp .ec-zipInputHelp__icon {
  display: none;
}
.ec-zipInputHelp span {
  margin: 0;
  color: var(--textColor);
  text-decoration: underline;
}
.ec-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 50px 0 0 0;
  padding: 0;
}
.ec-pager .ec-pager__item,
.ec-pager .ec-pager__item--active {
  padding: 0;
  min-width: auto;
  background: none;
}
.ec-pager .ec-pager__item a,
.ec-pager .ec-pager__item--active a {
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1;
  border: var(--textColor) 1px solid;
  border-radius: var(--inputBorderRadius);
}
.ec-pager .ec-pager__item--active a {
  color: var(--bgColor);
  background: var(--textColor);
}

.ec-alert-warning {
  background: var(--noticeColor);
}
.ec-alert-warning .ec-alert-warning__text {
  font-size: var(--bodyFontSize);
}
.ec-alert-warning .ec-alert-warning__icon img {
  display: none;
}
.ec-alert-warning .ec-alert-warning__icon:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  mask: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%20-0.5%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M13.7744%201.41218L23.4802%2020.0771C23.9898%2021.0571%2023.6085%2022.2646%2022.6285%2022.7742C22.3435%2022.9224%2022.027%2022.9998%2021.7058%2022.9998H2.29425C1.18968%2022.9998%200.29425%2022.1044%200.29425%2020.9998C0.29425%2020.6786%200.371621%2020.3621%200.519817%2020.0771L10.2256%201.41218C10.7352%200.432187%2011.9427%200.0508554%2012.9227%200.560452C13.2874%200.75009%2013.5848%201.04749%2013.7744%201.41218ZM10.5%209.49981V13.9998C10.5%2014.8282%2011.1716%2015.4998%2012%2015.4998C12.8284%2015.4998%2013.5%2014.8282%2013.5%2013.9998V9.49981C13.5%208.67138%2012.8284%207.99981%2012%207.99981C11.1716%207.99981%2010.5%208.67138%2010.5%209.49981ZM12%2019.9998C12.8284%2019.9998%2013.5%2019.3282%2013.5%2018.4998C13.5%2017.6714%2012.8284%2016.9998%2012%2016.9998C11.1716%2016.9998%2010.5%2017.6714%2010.5%2018.4998C10.5%2019.3282%2011.1716%2019.9998%2012%2019.9998Z%22%2F%3E%3C%2Fsvg%3E")
    no-repeat center center / 18px;
  -webkit-mask: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%20-0.5%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M13.7744%201.41218L23.4802%2020.0771C23.9898%2021.0571%2023.6085%2022.2646%2022.6285%2022.7742C22.3435%2022.9224%2022.027%2022.9998%2021.7058%2022.9998H2.29425C1.18968%2022.9998%200.29425%2022.1044%200.29425%2020.9998C0.29425%2020.6786%200.371621%2020.3621%200.519817%2020.0771L10.2256%201.41218C10.7352%200.432187%2011.9427%200.0508554%2012.9227%200.560452C13.2874%200.75009%2013.5848%201.04749%2013.7744%201.41218ZM10.5%209.49981V13.9998C10.5%2014.8282%2011.1716%2015.4998%2012%2015.4998C12.8284%2015.4998%2013.5%2014.8282%2013.5%2013.9998V9.49981C13.5%208.67138%2012.8284%207.99981%2012%207.99981C11.1716%207.99981%2010.5%208.67138%2010.5%209.49981ZM12%2019.9998C12.8284%2019.9998%2013.5%2019.3282%2013.5%2018.4998C13.5%2017.6714%2012.8284%2016.9998%2012%2016.9998C11.1716%2016.9998%2010.5%2017.6714%2010.5%2018.4998C10.5%2019.3282%2011.1716%2019.9998%2012%2019.9998Z%22%2F%3E%3C%2Fsvg%3E")
    no-repeat center center / 18px;
  background-color: #fff;
}

/* breadcrumbs */
.breadcrumbs {
  display: none;
}
.breadcrumbs.moving {
  display: block;
}
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 15px 0;
  padding: 0;
  font-size: 11px;
  list-style: none;
}
.breadcrumbs ul li {
  display: flex;
  align-items: center;
}
.breadcrumbs ul li:not(:last-child):after {
  content: "/";
  margin: 0 8px;
}
.breadcrumbs ul li a {
  text-decoration: none;
}
.image-title-white-1 .ec-categoryHeader .breadcrumbs,
.image-title-white-1 .ec-categoryHeader .breadcrumbs a {
  color: #fff;
}

/* pageHeader */
.ec-pageHeader,
.ec-categoryHeader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 calc(50% - var(--vw) * 50) 8vh calc(50% - var(--vw) * 50);
  height: var(--pageTitleHeight);
  width: calc(var(--vw) * 100);
  background: var(--subBgColor);
}
.ec-categoryHeader {
  margin: 0 calc(50% - var(--vw) * 50) 6vh calc(50% - var(--vw) * 50);
  height: var(--imageTitleHeight);
  background: no-repeat center center / cover;
}
.image-title-position-1 .ec-categoryHeader {
  padding: var(--padding);
  justify-content: flex-end;
  align-items: flex-start;
}
.ec-pageHeader h1,
.ec-categoryHeader h1 {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--textColor);
  font-size: var(--headFontSizeL);
  font-weight: var(--headFontWeight);
  font-family: var(--headFontFamily);
  line-height: var(--bodyLineHeight);
  letter-spacing: var(--headLetterSpacing);
  text-indent: var(--headLetterSpacing);
  border: none;
}
.image-title-white-1 .ec-categoryHeader h1 {
  color: #fff;
}

.ec-off1Grid .ec-off1Grid__cell,
.ec-off2Grid .ec-off2Grid__cell,
.ec-cartRole,
.ec-cartCompleteRole,
.ec-contactConfirmRole,
.ec-contactCompleteRole,
.ec-contactRole,
.ec-login,
.ec-registerRole,
.ec-registerCompleteRole,
.ec-forgotRole,
.ec-forgetCompleteRole,
.ec-mypageRole,
.ec-orderRole,
.ec-withdrawRole,
.ec-shelfRole,
#page_shopping_login .ec-grid3 {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 1100px;
  color: var(--textColor);
  font-size: var(--bodyFontSize);
  line-height: var(--bodyLineHeight);
}
.ec-login {
  max-width: 600px;
}
.ec-cartRole .ec-cartRole__cart,
.ec-forgotRole .ec-forgotRole__form {
  margin: 0;
}

.ec-RegisterRole__actions {
  margin: 40px 0 0 0;
}

/* contact */
.ec-contactRole p.ec-para-normal,
.ec-contactConfirmRole p {
  margin: 0 0 40px 0;
  line-height: 1.8;
}
.ec-contactRole .ec-borderedDefs p {
  font-size: 12px;
}
.ec-contactConfirmRole .ec-RegisterRole__actions {
  margin: 40px 0 0 0;
}
.ec-contactConfirmRole .ec-blockBtn--action {
  margin: 0 0 10px 0;
}

/* login */
.ec-login {
  padding: 0;
  background: none;
}
.ec-login__icon {
  display: none;
}
.ec-login .ec-login__link {
  margin: 3px 20px;
}

.ec-guest {
  margin: 0 0 0 40px;
  background: var(--subBgColor);
}
@media (max-width: 768px) {
  .ec-login .ec-login__link {
    margin: 12px 0;
  }
  .ec-guest {
    margin: 50px 0 0 0;
  }
}

/* entry */
.ec-registerRole .ec-blockBtn--action {
  margin: 0 0 10px 0;
}
.ec-registerRole form p {
  margin: 0 0 40px 0;
  line-height: 1.8;
}
.ec-registerRole .ec-registerRole__actions {
  padding: 20px 0 0 0;
}
.ec-registerRole .ec-registerRole__actions .ec-checkbox label {
  margin: 0 0 20px 0;
}

/* foget */
.ec-forgotRole .ec-forgotRole__intro {
  margin: 0 0 40px 0;
  font-size: var(--bodyFontSize);
  line-height: var(--bodyLineHeight2);
}
.ec-forgotRole .ec-off4Grid {
  margin: 40px 0 0 0;
}

/* complete */
.ec-reportHeading,
.ec-reportHeading h2 {
  margin: 0;
  padding: 0;
  font-size: var(--headFontSize);
  font-weight: var(--headFontWeight);
  border: none;
}
.ec-reportHeading {
  margin: 0 0 20px 0;
}
.ec-reportDescription {
  margin: 0 0 30px 0;
  font-size: var(--bodyFontSize);
  line-height: var(--bodyLineHeight2);
}
.ec-cartCompleteRole .ec-off3Grid .ec-off3Grid__cell,
.ec-contactCompleteRole .ec-off3Grid .ec-off3Grid__cell,
.ec-registerCompleteRole .ec-off3Grid .ec-off3Grid__cell,
.ec-forgetCompleteRole .ec-off3Grid .ec-off3Grid__cell {
  margin: 0;
  width: 100%;
}

/* cart */
.ec-progress {
  margin: 0 auto 6vh auto;
}
@media (max-width: 768px) {
  .ec-progress {
    margin: 0 auto 20px auto;
  }
}
.ec-progress .ec-progress__number,
.ec-progress .ec-progress__item:after {
  color: var(--bgColor);
  line-height: 40px;
  background: var(--textColor);
  border: var(--textColor) 2px solid;
}
.ec-progress .ec-progress__item:after {
  top: 20px;
  height: 2px;
  border: none;
}
.ec-progress .is-complete .ec-progress__number {
  color: var(--textColor);
  background: var(--bgColor);
  border: var(--textColor) 2px solid;
}
.ec-progress .is-complete .ec-progress__label {
  color: var(--subBtnBgColor);
}
@media (max-width: 768px) {
  .ec-progress .ec-progress__number {
    line-height: 28px;
  }
  .ec-progress .ec-progress__item:after {
    top: 14px;
  }
  .ec-cartTable {
    border-top: var(--subBorderColor) 1px solid;
  }
}
.ec-cartHeader .ec-cartHeader__label {
  padding: 10px;
  background: var(--subBgColor);
}
.ec-cartRow .ec-cartRow__delColumn {
  width: 60px;
  border-bottom: var(--subBorderColor) 1px solid;
}
.ec-cartRow .ec-cartRow__delColumn .ec-icon {
  display: block;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 60px;
  mask: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2045.75%2045.75%22%3E%3Cg%3E%3Cpath%20d%3D%22m25.88%2C22.87L45.13%2C3.63c.83-.83.83-2.18%2C0-3.01-.83-.83-2.18-.83-3.01%2C0l-19.25%2C19.25L3.63.62C2.8-.21%2C1.45-.21.62.62-.21%2C1.45-.21%2C2.8.62%2C3.63l19.25%2C19.25L.62%2C42.12c-.83.83-.83%2C2.18%2C0%2C3.01s2.18.83%2C3.01%2C0l19.25-19.25%2C19.25%2C19.25c.83.83%2C2.18.83%2C3.01%2C0s.83-2.18%2C0-3.01l-19.25-19.25Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
    no-repeat center center / 12px;
  -webkit-mask: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2045.75%2045.75%22%3E%3Cg%3E%3Cpath%20d%3D%22m25.88%2C22.87L45.13%2C3.63c.83-.83.83-2.18%2C0-3.01-.83-.83-2.18-.83-3.01%2C0l-19.25%2C19.25L3.63.62C2.8-.21%2C1.45-.21.62.62-.21%2C1.45-.21%2C2.8.62%2C3.63l19.25%2C19.25L.62%2C42.12c-.83.83-.83%2C2.18%2C0%2C3.01s2.18.83%2C3.01%2C0l19.25-19.25%2C19.25%2C19.25c.83.83%2C2.18.83%2C3.01%2C0s.83-2.18%2C0-3.01l-19.25-19.25Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
    no-repeat center center / 12px;
  background-color: var(--textColor);
}
.ec-cartRow .ec-cartRow__delColumn .ec-icon img {
  display: none;
}
.ec-cartRow .ec-cartRow__summary {
  font-weight: normal;
}
.ec-cartRow .ec-cartRow__contentColumn,
.ec-cartRow .ec-cartRow__amountColumn,
.ec-cartRow .ec-cartRow__subtotalColumn {
  border-bottom: var(--subBorderColor) 1px solid;
}
.ec-cartRole .ec-cartRole__actions {
  margin: 0;
}
.ec-cartRole .ec-cartRole__totalAmount {
  color: var(--textColor);
}
.ec-cartRow__amountUpDown span {
  display: none;
}
.ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountDownButton,
.ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountDownButtonDisabled,
.ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountUpButton {
  border: none;
  background: var(--textColor);
}
.ec-cartRow__amountDownButton:before,
.ec-cartRow__amountDownButtonDisabled:before,
.ec-cartRow__amountUpButton:before,
.ec-cartRow__amountUpButton:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--bgColor);
  transform: translate(-50%, -50%);
}
.ec-cartRow__amountUpButton:after {
  width: 2px;
  height: 12px;
}
.ec-cartRow__amountDownButtonDisabled {
  opacity: 0.5;
}

/* お届け先の複数指定 */
.ec-AddAddress .ec-AddAddress__add {
  border-top: var(--subBorderColor) 1px solid;
}
.ec-AddAddress .ec-AddAddress__item {
  background: var(--subBgColor);
}
.ec-AddAddress .ec-AddAddress__selectAddress label,
.ec-AddAddress .ec-AddAddress__selectNumber label {
  font-size: var(--bodyFontSize);
  font-weight: normal;
}
.ec-AddAddress .ec-AddAddress__selectNumber {
  margin: 0 20px;
}
.ec-AddAddress .ec-AddAddress__selectNumber input {
  display: inline-block;
  margin: 0 0 0 10px;
  width: 80px;
}

/* mypage */
.ec-navlistRole .ec-navlistRole__navlist {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 0 0 30px 0;
  border: none;
}
.ec-navlistRole .ec-navlistRole__item {
  width: 100%;
  border: none;
}
.ec-navlistRole .ec-navlistRole__item:hover {
  background: none;
}
.ec-navlistRole .ec-navlistRole__item a {
  display: block;
  padding: 18px 2px;
  background: var(--bgColor);
  border: var(--textColor) 1px solid;
  border-radius: var(--inputBorderRadius);
}
.ec-navlistRole .active a {
  color: inherit;
  color: var(--bgColor);
  background: var(--textColor);
  border: var(--textColor) 1px solid;
}
.ec-welcomeMsg {
  margin: 0 0 30px 0;
  padding: 0 0 30px 0;
  color: var(--textColor);
  font-size: var(--bodyFontSize);
  line-height: var(--bodyLineHeight2);
  border-bottom: var(--textColor) 2px solid;
}

@media (max-width: 768px) {
  .ec-navlistRole .ec-navlistRole__navlist {
    grid-template-columns: repeat(3, 1fr);
    font-size: 12px;
  }
}

/* ご注文履歴 */
.ec-historyRole .ec-historyRole__contents {
  margin: 20px 0 0 0;
  padding: 20px 0 0 0;
  color: var(--textColor);
  border-top: var(--subBorderColor) 1px solid;
}
.ec-historyListHeader .ec-historyListHeader__action {
  margin: 15px 0 0 0;
}
.ec-imageGrid {
  margin: 10px 0 0 0;
  padding: 10px 0 0 0;
  border-top: var(--subBorderColor) 1px solid;
}
.ec-historyRole .ec-historyRole__detail .ec-imageGrid:nth-of-type(1) {
  margin: 0;
  padding: 0;
  border: none;
}
.ec-imageGrid .ec-imageGrid__img {
  padding: 0;
}
.ec-imageGrid .ec-imageGrid__content {
  padding: 0 0 0 20px;
}
.ec-historyRole .ec-historyRole__detail .ec-historyRole__detailTitle,
.ec-historyRole .ec-historyRole__detail .ec-historyRole__detailPrice {
  margin: 5px 0;
  font-size: var(--bodyFontSize);
}

/* ご注文履歴詳細, shopping */
.ec-orderRole .ec-orderRole__detail {
  padding: 0;
}
.ec-orderRole .ec-orderRole__summary {
  position: relative;
  margin: 0 !important;
  padding: 0 0 0 30px;
}
@media (max-width: 768px) {
  .ec-orderRole .ec-orderRole__summary {
    padding: 0;
  }
}
.ec-orderRole .ec-orderRole__summary .ec-totalBox {
  position: sticky;
  top: 100px;
  left: 0;
  padding: 20px;
  width: 100%;
  background: var(--subBgColor);
  border-radius: 6px;
}
.ec-totalBox .ec-totalBox__total,
.ec-totalBox .ec-totalBox__paymentTotal {
  font-size: var(--bodyFontSize);
  border-top: var(--subBorderColor) 1px solid;
}
.ec-totalBox .ec-totalBox__taxRate {
  font-size: 11px;
}
.ec-totalBox .ec-totalBox__taxRate dt {
  margin: 0 4px 0 0;
}
.ec-totalBox .ec-totalBox__paymentTotal .ec-totalBox__price,
.ec-totalBox .ec-totalBox__paymentTotal .ec-totalBox__taxLabel {
  color: var(--noticeColor);
}
.ec-totalBox .ec-totalBox__pointBlock {
  padding: 15px 0 5px 0;
  background: none;
  border-top: var(--subBorderColor) 1px solid;
}
.ec-totalBox .ec-totalBox__btn .ec-blockBtn--cancel {
  margin: 10px 0 0 0;
}
.ec-orderAccount .ec-rectHeading h2 {
  margin-top: 0;
}
.ec-orderAccount .ec-orderAccount__account {
  margin: 0;
  line-height: var(--bodyLineHeight2);
}
.ec-orderRole .ec-borderedList {
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
  border-top: none;
  border-bottom: var(--subBorderColor) 1px solid;
}
.ec-orderRole .ec-borderedList li {
  border: none;
}
.ec-orderDelivery .ec-orderDelivery__address {
  margin: 20px 0;
  line-height: var(--bodyLineHeight2);
}
.ec-orderPayment p {
  margin: 0 0 10px 0;
}
.ec-orderConfirm .ec-input {
  line-height: var(--bodyLineHeight2);
}
.ec-orderMail__close {
  margin: 20px 0 0 0;
}
.ec-orderMail {
  border-bottom: var(--subBorderColor) 1px solid;
}
.ec-orderMail .ec-orderMail__link a,
.ec-orderMail .ec-orderMail__link a:hover,
.ec-orderMail .ec-orderMail__close a,
.ec-orderMail .ec-orderMail__close a:hover {
  color: var(--textColor);
  text-decoration: underline;
}

/* お気に入り */
.ec-favoriteRole .ec-favoriteRole__header {
  margin: 0 0 20px 0;
}
.ec-favoriteRole .ec-favoriteRole__itemList {
  display: grid;
  grid-template-columns: repeat(var(--itemNum), 1fr);
  gap: var(--itemMarginV) var(--itemMarginH);
}
.ec-favoriteRole .ec-favoriteRole__item {
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
}
.ec-favoriteRole .ec-favoriteRole__item .ec-closeBtn--circle .ec-icon {
  display: none;
}
.ec-favoriteRole .ec-favoriteRole__item .ec-closeBtn--circle {
  top: 0;
  right: 0;
  background: var(--textColor);
  border-radius: 0;
  z-index: 1;
}
.ec-favoriteRole .ec-favoriteRole__item .ec-closeBtn--circle:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mask: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2045.75%2045.75%22%3E%3Cg%3E%3Cpath%20d%3D%22m25.88%2C22.87L45.13%2C3.63c.83-.83.83-2.18%2C0-3.01-.83-.83-2.18-.83-3.01%2C0l-19.25%2C19.25L3.63.62C2.8-.21%2C1.45-.21.62.62-.21%2C1.45-.21%2C2.8.62%2C3.63l19.25%2C19.25L.62%2C42.12c-.83.83-.83%2C2.18%2C0%2C3.01s2.18.83%2C3.01%2C0l19.25-19.25%2C19.25%2C19.25c.83.83%2C2.18.83%2C3.01%2C0s.83-2.18%2C0-3.01l-19.25-19.25Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
    no-repeat center center / 12px;
  -webkit-mask: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2045.75%2045.75%22%3E%3Cg%3E%3Cpath%20d%3D%22m25.88%2C22.87L45.13%2C3.63c.83-.83.83-2.18%2C0-3.01-.83-.83-2.18-.83-3.01%2C0l-19.25%2C19.25L3.63.62C2.8-.21%2C1.45-.21.62.62-.21%2C1.45-.21%2C2.8.62%2C3.63l19.25%2C19.25L.62%2C42.12c-.83.83-.83%2C2.18%2C0%2C3.01s2.18.83%2C3.01%2C0l19.25-19.25%2C19.25%2C19.25c.83.83%2C2.18.83%2C3.01%2C0s.83-2.18%2C0-3.01l-19.25-19.25Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
    no-repeat center center / 12px;
  background-color: var(--bgColor);
  transition: all 0.3s ease;
}
.ec-favoriteRole .ec-favoriteRole__item-image {
  overflow: hidden;
  margin: 0 0 15px 0;
}
.ec-favoriteRole .ec-favoriteRole__item img {
  aspect-ratio: var(--itemListImageAspectRatio);
  object-fit: cover;
}
.ec-favoriteRole .ec-favoriteRole__itemTitle {
  margin: 0 0 5px 0;
}
.ec-favoriteRole .ec-favoriteRole__itemPrice {
  margin: 0;
  font-weight: normal;
}

/* お届け先一覧 */
.ec-addressRole .ec-addressRole__actions {
  margin: 20px 0 0 0;
  padding: 0 0 30px 0;
  border-bottom: var(--subBorderColor) 1px solid;
}
.ec-addressList .ec-addressList__item {
  display: flex;
  border-bottom: var(--subBorderColor) 1px solid;
}
.ec-addressList .ec-addressList__remove input {
  margin: 22px 0 0 0;
}
.ec-mypageRole .ec-addressList .ec-addressList__remove .ec-icon {
  display: none;
}
.ec-mypageRole .ec-addressList .ec-addressList__remove {
  margin: 0;
  padding: 0;
  width: 50px;
  mask: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2045.75%2045.75%22%3E%3Cg%3E%3Cpath%20d%3D%22m25.88%2C22.87L45.13%2C3.63c.83-.83.83-2.18%2C0-3.01-.83-.83-2.18-.83-3.01%2C0l-19.25%2C19.25L3.63.62C2.8-.21%2C1.45-.21.62.62-.21%2C1.45-.21%2C2.8.62%2C3.63l19.25%2C19.25L.62%2C42.12c-.83.83-.83%2C2.18%2C0%2C3.01s2.18.83%2C3.01%2C0l19.25-19.25%2C19.25%2C19.25c.83.83%2C2.18.83%2C3.01%2C0s.83-2.18%2C0-3.01l-19.25-19.25Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
    no-repeat center center / 12px;
  -webkit-mask: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2045.75%2045.75%22%3E%3Cg%3E%3Cpath%20d%3D%22m25.88%2C22.87L45.13%2C3.63c.83-.83.83-2.18%2C0-3.01-.83-.83-2.18-.83-3.01%2C0l-19.25%2C19.25L3.63.62C2.8-.21%2C1.45-.21.62.62-.21%2C1.45-.21%2C2.8.62%2C3.63l19.25%2C19.25L.62%2C42.12c-.83.83-.83%2C2.18%2C0%2C3.01s2.18.83%2C3.01%2C0l19.25-19.25%2C19.25%2C19.25c.83.83%2C2.18.83%2C3.01%2C0s.83-2.18%2C0-3.01l-19.25-19.25Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
    no-repeat center center / 12px;
  background-color: var(--textColor);
}
.ec-addressList .ec-addressList__address {
  margin: 0;
  width: 100%;
}
.ec-addressList .ec-addressList__action {
  display: flex;
  align-items: center;
  top: 0;
}

/* 退会手続き */
.ec-withdrawRole .ec-off3Grid .ec-off3Grid__cell,
.ec-withdrawConfirmRole .ec-off3Grid .ec-off3Grid__cell {
  margin: 0;
  width: 100%;
}
.ec-withdrawRole .ec-withdrawRole__title,
.ec-withdrawConfirmRole .ec-withdrawConfirmRole__title {
  font-size: calc(var(--bodyFontSize) + 6px);
  text-align: center;
}
.ec-withdrawRole .ec-withdrawRole__description,
.ec-withdrawConfirmRole .ec-withdrawConfirmRole__description {
  margin: 0 auto 30px auto;
  max-width: 500px;
  font-size: var(--bodyFontSize);
  line-height: var(--bodyLineHeight2);
  text-align: center;
}
.ec-withdrawConfirmRole .ec-withdrawConfirmRole__cancel {
  margin: 0 0 10px 0;
}
.ec-withdrawRole .ec-icon img,
.ec-withdrawConfirmRole .ec-icon img {
  display: none;
}
.ec-withdrawRole .ec-icon:before,
.ec-withdrawConfirmRole .ec-icon:before {
  content: "";
  display: block;
  margin: 0 auto 30px auto;
  width: 80px;
  height: 80px;
  mask: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%20-0.5%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M13.7744%201.41218L23.4802%2020.0771C23.9898%2021.0571%2023.6085%2022.2646%2022.6285%2022.7742C22.3435%2022.9224%2022.027%2022.9998%2021.7058%2022.9998H2.29425C1.18968%2022.9998%200.29425%2022.1044%200.29425%2020.9998C0.29425%2020.6786%200.371621%2020.3621%200.519817%2020.0771L10.2256%201.41218C10.7352%200.432187%2011.9427%200.0508554%2012.9227%200.560452C13.2874%200.75009%2013.5848%201.04749%2013.7744%201.41218ZM10.5%209.49981V13.9998C10.5%2014.8282%2011.1716%2015.4998%2012%2015.4998C12.8284%2015.4998%2013.5%2014.8282%2013.5%2013.9998V9.49981C13.5%208.67138%2012.8284%207.99981%2012%207.99981C11.1716%207.99981%2010.5%208.67138%2010.5%209.49981ZM12%2019.9998C12.8284%2019.9998%2013.5%2019.3282%2013.5%2018.4998C13.5%2017.6714%2012.8284%2016.9998%2012%2016.9998C11.1716%2016.9998%2010.5%2017.6714%2010.5%2018.4998C10.5%2019.3282%2011.1716%2019.9998%2012%2019.9998Z%22%2F%3E%3C%2Fsvg%3E")
    no-repeat center center / 80px;
  -webkit-mask: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%20-0.5%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M13.7744%201.41218L23.4802%2020.0771C23.9898%2021.0571%2023.6085%2022.2646%2022.6285%2022.7742C22.3435%2022.9224%2022.027%2022.9998%2021.7058%2022.9998H2.29425C1.18968%2022.9998%200.29425%2022.1044%200.29425%2020.9998C0.29425%2020.6786%200.371621%2020.3621%200.519817%2020.0771L10.2256%201.41218C10.7352%200.432187%2011.9427%200.0508554%2012.9227%200.560452C13.2874%200.75009%2013.5848%201.04749%2013.7744%201.41218ZM10.5%209.49981V13.9998C10.5%2014.8282%2011.1716%2015.4998%2012%2015.4998C12.8284%2015.4998%2013.5%2014.8282%2013.5%2013.9998V9.49981C13.5%208.67138%2012.8284%207.99981%2012%207.99981C11.1716%207.99981%2010.5%208.67138%2010.5%209.49981ZM12%2019.9998C12.8284%2019.9998%2013.5%2019.3282%2013.5%2018.4998C13.5%2017.6714%2012.8284%2016.9998%2012%2016.9998C11.1716%2016.9998%2010.5%2017.6714%2010.5%2018.4998C10.5%2019.3282%2011.1716%2019.9998%2012%2019.9998Z%22%2F%3E%3C%2Fsvg%3E")
    no-repeat center center / 80px;
  background-color: var(--textColor);
}

.ec-orderCoupon p {
  margin: 15px 0 0 0;
}

#page_help_about .ec-borderedDefs dt,
#page_help_tradelaw .ec-borderedDefs dt {
  padding: 0;
  line-height: var(--bodyLineHeight2);
}
#page_help_about .ec-borderedDefs dd,
#page_help_tradelaw .ec-borderedDefs dd {
  line-height: var(--bodyLineHeight2);
}

#page_help_privacy .ec-off1Grid__cell :first-child {
  margin-top: 0;
}
#page_help_privacy h2 {
  margin: 40px 0 20px 0;
  font-size: calc(var(--bodyFontSize) + 6px);
}
#page_help_privacy p {
  margin: 20px 0;
  line-height: var(--bodyLineHeight2);
}
#page_help_privacy ol {
  margin: 20px 0;
  line-height: var(--bodyLineHeight2);
}

.guide-wrap {
  display: flex;
}
.guide-nav {
  width: 180px;
}
.guide-nav ul {
  position: sticky;
  top: 100px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.guide-nav ul li a {
  display: block;
  margin: 0 0 2px 0;
  padding: 12px;
  text-decoration: none;
  background: var(--subBgColor);
}
.guide-content {
  margin: 0 0 0 auto;
  width: calc(100% - 220px);
}
.guide-content > :first-child {
  margin-top: 0;
}
.guide-content h2 {
  margin: 40px 0 20px 0;
  padding: 0 0 10px 0;
  font-size: calc(var(--bodyFontSize) + 6px);
  font-weight: bold;
  border-bottom: var(--textColor) 2px solid;
}
.guide-content h3 {
  margin: 40px 0 20px 0;
  padding: 12px;
  font-size: calc(var(--bodyFontSize) + 3px);
  background: var(--subBgColor);
}
.guide-content h2 + h3 {
  margin: 20px 0;
}
.guide-content p {
  margin: 20px 0;
  line-height: var(--bodyLineHeight2);
}
.guide-content p.sub {
  opacity: 0.7;
  font-size: calc(var(--bodyFontSize) - 2px);
}
.guide-content img.guide-card {
  max-width: 280px;
}
.guide-content dl {
  margin: 20px 0;
  line-height: var(--bodyLineHeight2);
}
.guide-content dl dt,
.guide-content dl dd {
  position: relative;
  margin: 0 0 8px 0;
  padding: 0 0 0 40px;
}
.guide-content dl dd {
  margin: 0 0 20px 0;
  padding: 0 0 20px 40px;
  border-bottom: var(--subBorderColor) 1px solid;
}
.guide-content dl dt:before,
.guide-content dl dd:before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  color: var(--bgColor);
  font-weight: bold;
  text-align: center;
  line-height: 24px;
  background: var(--textColor);
}
.guide-content dl dd:before {
  content: "A";
  color: var(--textColor);
  background: var(--subBgColor);
  border: var(--subBorderColor) 1px solid;
}

@media (max-width: 768px) {
  .guide-wrap {
    display: block;
  }
  .guide-nav {
    margin: 0 0 40px 0;
    width: 100%;
  }
  .guide-content {
    width: 100%;
  }
}

.ec-404Role {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  text-align: center;
}
.ec-404Role__icon img {
  display: none;
}
.ec-404Role__icon:before {
  content: "";
  display: block;
  margin: 0 auto 30px auto;
  width: 80px;
  height: 80px;
  mask: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%20-0.5%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M13.7744%201.41218L23.4802%2020.0771C23.9898%2021.0571%2023.6085%2022.2646%2022.6285%2022.7742C22.3435%2022.9224%2022.027%2022.9998%2021.7058%2022.9998H2.29425C1.18968%2022.9998%200.29425%2022.1044%200.29425%2020.9998C0.29425%2020.6786%200.371621%2020.3621%200.519817%2020.0771L10.2256%201.41218C10.7352%200.432187%2011.9427%200.0508554%2012.9227%200.560452C13.2874%200.75009%2013.5848%201.04749%2013.7744%201.41218ZM10.5%209.49981V13.9998C10.5%2014.8282%2011.1716%2015.4998%2012%2015.4998C12.8284%2015.4998%2013.5%2014.8282%2013.5%2013.9998V9.49981C13.5%208.67138%2012.8284%207.99981%2012%207.99981C11.1716%207.99981%2010.5%208.67138%2010.5%209.49981ZM12%2019.9998C12.8284%2019.9998%2013.5%2019.3282%2013.5%2018.4998C13.5%2017.6714%2012.8284%2016.9998%2012%2016.9998C11.1716%2016.9998%2010.5%2017.6714%2010.5%2018.4998C10.5%2019.3282%2011.1716%2019.9998%2012%2019.9998Z%22%2F%3E%3C%2Fsvg%3E")
    no-repeat center center / 80px;
  -webkit-mask: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%20-0.5%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M13.7744%201.41218L23.4802%2020.0771C23.9898%2021.0571%2023.6085%2022.2646%2022.6285%2022.7742C22.3435%2022.9224%2022.027%2022.9998%2021.7058%2022.9998H2.29425C1.18968%2022.9998%200.29425%2022.1044%200.29425%2020.9998C0.29425%2020.6786%200.371621%2020.3621%200.519817%2020.0771L10.2256%201.41218C10.7352%200.432187%2011.9427%200.0508554%2012.9227%200.560452C13.2874%200.75009%2013.5848%201.04749%2013.7744%201.41218ZM10.5%209.49981V13.9998C10.5%2014.8282%2011.1716%2015.4998%2012%2015.4998C12.8284%2015.4998%2013.5%2014.8282%2013.5%2013.9998V9.49981C13.5%208.67138%2012.8284%207.99981%2012%207.99981C11.1716%207.99981%2010.5%208.67138%2010.5%209.49981ZM12%2019.9998C12.8284%2019.9998%2013.5%2019.3282%2013.5%2018.4998C13.5%2017.6714%2012.8284%2016.9998%2012%2016.9998C11.1716%2016.9998%2010.5%2017.6714%2010.5%2018.4998C10.5%2019.3282%2011.1716%2019.9998%2012%2019.9998Z%22%2F%3E%3C%2Fsvg%3E")
    no-repeat center center / 80px;
  background-color: var(--textColor);
}

/* mv
------------------------------------------*/
.mv-wrap {
  overflow: hidden;
  position: relative;
  margin: 0 auto var(--margin) auto;
}
.mv-wrap.mv-full-1 {
  height: calc(100vh - var(--headerHeight));
  max-width: 100%;
}
.information-1 .mv-wrap.mv-full-1 {
  height: calc(100vh - var(--headerHeight) - var(--informationBannerHeight));
}
.mv-wrap.type-2 {
  margin: 0 auto calc(var(--margin) - var(--padding)) auto;
  padding: 0 var(--padding) var(--padding) var(--padding);
}
.has-fixblog .mv-wrap.type-2 {
  margin: 0 auto calc(var(--margin) - var(--padding)) auto;
  padding: var(--padding);
}
.has-fixblog .mv-wrap.type-3 {
  padding: 20px 0 0 0;
}
.mv-wrap.type-4 {
  margin: 0 auto calc(var(--margin) - 20px) auto;
}
.has-fixblog .mv-wrap.type-4 {
  margin: 0 auto calc(var(--margin) - 20px) auto;
  padding: 20px 0 0 0;
}
.mv-wrap.mv-full-1.type-4 {
  padding-bottom: 20px;
}

.mv {
  overflow: hidden;
  opacity: 0;
  transition: all 1.5s 0.3s ease;
}
.viewed .mv {
  opacity: 1;
  transform: scale(1);
}
.mv-wrap.mv-full-1 .mv {
  height: 100%;
}
.mv-wrap.type-2 .mv .bg,
.mv-wrap.type-4 .mv .bg {
  overflow: hidden;
  border-radius: var(--imageBorderRadiusMv2);
}
.mv-wrap.type-3 .mv .bg {
  overflow: hidden;
  margin: 0 0 0 auto;
  width: 80%;
  border-radius: var(--imageBorderRadiusMv3);
}
.mv .bg img {
  width: 100%;
}
.mv .bg img.sp {
  display: none;
}
.mv-wrap.mv-full-1 .bg {
  height: 100%;
}
.mv-wrap.mv-full-1 .bg img {
  object-fit: cover;
  height: 100%;
}
.mv .swiper-slide-active img {
  animation: fadeZoom 2s ease both;
}
.type-4 .mv .swiper-slide-active img {
  animation: none;
}
@keyframes fadeZoom {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.mv .banner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
}
.mv .banner img {
  margin: 0 auto;
  max-width: 60%;
  max-height: 50%;
  animation: bannerZoomOut 0.6s ease both;
}
.mv .swiper-slide-active .banner img {
  animation: bannerZoomIn 0.6s 1.2s ease both;
}
@keyframes bannerZoomOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@keyframes bannerZoomIn {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.mv .text {
  position: absolute;
  bottom: 15%;
  left: 0;
  padding: 0 var(--padding);
  width: 100%;
  height: fit-content;
  color: #fff;
  text-align: left;
}
.mv-wrap.type-3 .mv .text {
  bottom: 50%;
  color: var(--textColor);
  transform: translateY(50%);
}
.mv-wrap.type-4 .mv .text {
  bottom: calc(50% - 10px);
  transform: translateY(50%);
}

.mv .text .sub {
  margin: 0 0 6px 0;
  font-size: 20px;
  letter-spacing: 0.2em;
  animation: textZoomOut 0.6s ease both;
}
.mv .text .title {
  font-size: var(--headFontSize);
  animation: textZoomOut 0.6s ease both;
}
.mv-wrap.titlesize-2 .mv .text .title {
  font-size: calc(var(--headFontSize) * 1.4);
}
.mv-wrap.titlesize-3 .mv .text .title {
  font-size: calc(var(--headFontSize) * 1.8);
}
.mv .text p {
  margin: 18px 0 0 0;
  font-size: 13px;
  letter-spacing: 0.2em;
  line-height: 2 !important;
  animation: textZoomOut 0.6s ease both;
}
.mv .text .btn-image {
  margin: 40px 0 0 0;
  animation: textZoomOut 0.6s ease both;
}
.mv .text .btn-image a {
  margin: 0 !important;
}
.btn-type-3 .mv-wrap.type-3 .mv .text .btn-image a {
  color: var(--textColor) !important;
  background: none !important;
  border-bottom: var(--textColor) 2px solid !important;
}
@keyframes textZoomOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-80px);
  }
}
.mv .swiper-slide-active .text .sub {
  animation: textZoomIn 0.6s 1.2s ease both;
}
.mv .swiper-slide-active .text .title {
  animation: textZoomIn 0.6s 1.3s ease both;
}
.mv .swiper-slide-active .text p {
  animation: textZoomIn 0.6s 1.4s ease both;
}
.mv .swiper-slide-active .text .btn-image {
  animation: textZoomIn 0.6s 1.5s ease both;
}
@keyframes textZoomIn {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.mv-scroll {
  display: none;
}
.mv-wrap.type-3 .mv-scroll {
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: absolute;
  bottom: 0;
  left: var(--padding);
  transition: all 0.6s 0.3s ease;
}
.loaded .mv-wrap.type-3 .mv-scroll {
  opacity: 1;
}
.mv-wrap.type-3 .mv-scroll p {
  font-size: 10px;
  writing-mode: vertical-rl;
}
.mv-wrap.type-3 .mv-scroll div {
  width: 1px;
  height: 50px;
  background: var(--textColor);
  animation: mvScroll 4s 4s ease infinite;
}
@keyframes mvScroll {
  0% {
    transform: scale(1, 1);
    transform-origin: bottom left;
  }
  30% {
    transform: scale(1, 0);
    transform-origin: bottom left;
  }
  60% {
    transform: scale(1, 0);
    transform-origin: top left;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: top left;
  }
}

@media (max-width: 768px) {
  .mv-wrap.mv-full-1.type-4 {
    padding-bottom: 0;
  }
  .mv-wrap.type-4 .mv .bg {
    border-radius: 0;
  }
  .mv .bg img.pc {
    display: none;
  }
  .mv .bg img.sp {
    display: block;
  }
  .mv .text .title {
    line-height: 1.2;
  }
  .mv .text p {
    margin: 15px 0 0 0;
    font-size: 11px;
  }
  .mv-wrap.type-4 .mv .text p {
    display: none;
  }
  .mv-wrap.type-3 .mv-scroll p {
    font-size: 10px;
  }
  .mv-wrap.type-3 .mv-scroll div {
    height: 40px;
  }
}

.mv .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  bottom: 30px;
}
.mv-wrap.type-3 .mv .swiper-pagination {
  justify-content: flex-end;
  padding: 0 30px;
}
.mv .swiper-pagination-bullet {
  opacity: 0.2;
  width: 8px;
  height: 8px;
  background: #fff;
  transition: all 0.3s ease;
}
.mv .swiper-pagination-bullet-active {
  opacity: 0.8;
  background: #fff;
}
.mv .swiper-pagination-bullet:only-child {
  display: block !important;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .mv .swiper-pagination {
    display: none;
  }
}

.mv .swiper-button-prev,
.mv .swiper-button-next {
  display: none;
}
.mv-wrap.type-4 .mv .swiper-button-prev,
.mv-wrap.type-4 .mv .swiper-button-next {
  display: grid;
  place-items: center;
  color: #fff;
  transition: all 0.3s ease;
}
.mv .swiper-button-prev:after,
.mv .swiper-button-next:after {
  font-size: 24px;
}

.slideitem .swiper-button-prev,
.slideitem .swiper-button-next,
.baseCarousel .swiper-button-prev,
.baseCarousel .swiper-button-next {
  left: -34px;
  right: auto;
  width: 34px;
  height: 34px;
  color: var(--textColor);
  transition: all 0.3s ease;
}
.slideitem .swiper-button-next,
.baseCarousel .swiper-button-next {
  left: auto;
  right: -34px;
}
.slideitem .swiper-button-prev:after,
.slideitem .swiper-button-next:after,
.baseCarousel .swiper-button-prev:after,
.baseCarousel .swiper-button-next:after {
  font-size: 20px;
}
@media (max-width: 768px) {
  .mv-wrap.type-4 .mv .swiper-button-prev,
  .mv-wrap.type-4 .mv .swiper-button-next {
    display: none;
  }
}

/* home
------------------------------------------*/
.sec-title {
  position: relative;
  margin: 0 auto var(--titleMargin) auto;
}
.sec-title .title {
  opacity: 0;
  position: relative;
  padding: 4px 0;
  width: fit-content;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.viewed .sec-title .title {
  opacity: 1;
  transform: translateY(0);
}
.sec-title .title:before {
  content: "";
  opacity: 0;
  position: absolute;
  top: -20px;
  left: -18px;
  width: 5px;
  height: 5px;
  background: var(--accentBgColor);
  border-radius: 50%;
  transition: all 0.6s 0.3s ease;
  z-index: -1;
}
.viewed .sec-title .title:before {
  opacity: 1;
  top: -8px;
  left: -6px;
}

.sec-title .sub {
  opacity: 0;
  position: relative;
  margin: 4px 0 0 0;
  width: fit-content;
  font-size: 12px;
  font-weight: 400 !important;
  letter-spacing: 0.2em;
  transform: translateY(20px);
  transition: all 0.6s 0.1s ease;
}
.viewed .sec-title .sub {
  opacity: 0.5;
  transform: translateY(0);
}

.slideitem {
  margin: 0 auto var(--margin) auto;
  padding: 0 var(--padding);
  max-width: var(--maxWidth);
}
.slideitem .swiper-container {
  opacity: 0;
  visibility: hidden;
  position: relative;
  margin: 0 0 0 auto;
  max-width: var(--themeContentWidth);
  transform: translateY(20px);

  transition: all 0.6s ease;
}
.slideitem.viewed .swiper-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .slideitem .swiper {
    overflow: visible;
  }
  .slideitem .swiper-button-prev,
  .slideitem .swiper-button-next {
    display: none;
  }
}

.slideitem a {
  display: block;
  text-align: center;
  text-decoration: none;
}
.slideitem a:hover {
  opacity: 1;
}
.slideitem a .rank {
  display: grid;
  place-items: center;
  position: absolute;
  inset: 5px 5px auto auto;
  width: 32px;
  height: 32px;
  font-size: 12px;
  color: var(--accentTextColor);
  background: var(--accentBgColor);
  border-radius: 50%;
  z-index: 1;
}
.slideitem a .image {
  overflow: hidden;
  margin: 0 0 15px 0;
  border-radius: var(--imageBorderRadius);
}
.slideitem a .image img {
  aspect-ratio: var(--itemListImageAspectRatio);
  object-fit: cover;
  width: 100%;
  transition: all 0.4s ease;
}
@media (hover: hover) {
  .slideitem a:hover .image img {
    transform: scale(1.1);
  }
}
.slideitem a .name {
  margin: 0 0 5px 0;
}
.slideitem a .comment {
  opacity: 0.7;
  margin: 10px 0 0 0;
  font-size: calc(var(--bodyFontSize) - 2px);
  line-height: var(--bodyLineHeight2);
}

.concept {
  margin: 0 auto var(--margin) auto;
  padding: 0 var(--padding);
  max-width: var(--maxWidth);
}
.concept-content {
  margin: 0 0 0 auto;
  max-width: var(--themeContentWidth);
}
.concept-content .text {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s 0.2s ease;
}
.concept-content .text h3 {
  margin: 0 0 30px 0;
  font-size: var(--headFontSizeS);
  letter-spacing: 0.2em;
}
.concept-content .text p {
  line-height: 2;
}
.concept-content .image {
  opacity: 0;
  position: relative;
  margin: 0 0 50px 0;
  transform: translateY(20px);
  transition: all 0.6s 0.3s ease;
}
.viewed .concept-content .image,
.viewed .concept-content .text {
  opacity: 1;
  transform: translateY(0);
}
.concept-content .image img {
  width: 100%;
  border-radius: var(--imageBorderRadius);
}
@media (max-width: 1000px) {
  .concept-content {
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .concept-content {
    display: block;
  }
  .concept-content .image {
    width: 100%;
  }
  .concept-content .text {
    margin: var(--titleMargin) 0 0 0 !important;
    padding: 0;
    width: 100%;
  }
  .concept-content .text .btn-normal a {
    margin: 0 auto !important;
  }
}

.bgimage {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 0 var(--margin) 0;
  padding: 0 var(--padding);
  height: 70vh;
  border-radius: var(--imageBorderRadius2);
}
.bgimage .image {
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.bgimage.viewed .image {
  opacity: 1;
  transform: translateY(0);
}
.bgimage .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.2);
  transition: all 3s ease;
}
.bgimage.viewed .image img {
  transform: scale(1);
}
.bgimage .text {
  padding: 0 var(--padding);
  width: 100%;
  max-width: var(--maxWidth);
  color: #fff;
  text-align: center;
  z-index: 1;
}
.bgimage .text h2 {
  margin: 0 0 10px 0;
}
.bgimage .text h3 {
  margin: 0 0 30px 0;
  font-size: var(--headFontSizeS);
  letter-spacing: 0.2em;
}
.bgimage .text p {
  line-height: 2;
}
.bgimage .text .btn-image {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s 0.4s ease;
}
.bgimage.viewed .text p,
.bgimage.viewed .text .btn-image {
  opacity: 1;
  transform: translateY(0);
}

.bannerlist {
  display: flex;
  align-items: flex-start;
  gap: var(--padding);
  margin: 0 auto var(--margin) auto;
  padding: 0 var(--padding);
  max-width: var(--maxWidth);
}
.bannerlist .big {
  width: 50%;
}
.bannerlist ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--itemMarginH);
  margin: var(--margin) 0 0 0;
  width: 50%;
  list-style: none;
}
.bannerlist .big {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.bannerlist li {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s 0.2s ease;
}
.bannerlist.viewed .big,
.bannerlist.viewed li {
  opacity: 1;
  transform: translateY(0);
}
.bannerlist a {
  overflow: hidden;
  display: block;
  position: relative;
  background: #000;
  border-radius: var(--imageBorderRadius);
}
.bannerlist a img {
  transition: all 0.6s ease;
}
@media (hover: hover) {
  .bannerlist a:hover {
    opacity: 1;
  }
  .bannerlist a:hover .image img {
    opacity: 0.7;
    transform: scale(1.1);
  }
}
.bannerlist a .text {
  position: absolute;
  top: 50%;
  left: 0;
  padding: 24px;
  width: 100%;
  color: #fff;
  letter-spacing: 0.2em;
  text-align: center;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .bannerlist {
    display: block;
  }
  .bannerlist .big {
    margin: 0 0 var(--itemMarginH) 0;
    width: 100% !important;
  }
  .bannerlist ul {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
}

.news {
  margin: 0 auto var(--margin) auto;
  padding: 0 var(--padding);
  max-width: var(--maxWidth);
}
.news ul {
  opacity: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 0 0 auto;
  max-width: var(--themeContentWidth);
  transform: translateY(20px);
  transition: all 0.6s 0.1s ease;
}
.news.viewed ul {
  opacity: 1;
  transform: translateY(0);
}
.news ul:before {
  content: "";
  opacity: 0.08;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--textColor);
}
.news ul li {
  display: flex;
  gap: 40px;
  position: relative;
  padding: 28px 0;
  line-height: 1.8;
}
.news ul li:after {
  content: "";
  opacity: 0.08;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--textColor);
}
.news.viewed ul li {
  opacity: 1;
  transform: translateY(0);
}
.news ul li .date {
  opacity: 0.5;
  width: 120px;
}
.news ul li .text {
  width: calc(100% - 120px);
}
.news ul li .text a {
  text-decoration: underline;
}
.news ul li .text p {
  margin: 15px 0 0 0;
  font-size: 11px;
  line-height: var(--bodyLineHeight2);
}
.news ul li .text p:empty {
  margin: 0;
}
@media (max-width: 768px) {
  .news ul li {
    display: block;
  }
  .news ul li .date {
    margin: 0 0 8px 0;
    font-size: 11px;
  }
  .news ul li .text {
    width: 100%;
  }
}

.feature {
  margin: 0 auto var(--margin) auto;
  padding: 0 var(--padding);
  max-width: var(--maxWidth);
}
.feature ul {
  display: flex;
  flex-direction: column;
  gap: var(--padding);
  margin: 0 0 0 auto;
  max-width: var(--themeContentWidth);
}
.feature ul li {
  opacity: 0;
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  transform: translateY(20px);
  transition: all 0.6s 0.1s ease;
}
.feature.viewed ul li {
  opacity: 1;
  transform: translateY(0);
}
.feature ul li:nth-child(2) {
  transition: all 0.6s 0.2s ease;
}
.feature ul li:nth-child(3) {
  transition: all 0.6s 0.3s ease;
}
.feature ul li .num {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  color: var(--accentTextColor);
  font-size: 12px;
  text-align: center;
  line-height: 36px;
  background: var(--accentBgColor);
  border-radius: 50%;
}
.feature ul li .image {
  overflow: hidden;
  width: 60%;
  border-radius: var(--imageBorderRadius);
}
.feature ul li .text {
  padding: 0 0 0 var(--padding);
  width: 40%;
}
.feature ul li h3 {
  margin: 25px 0 20px 0;
  font-size: var(--headFontSizeS);
  letter-spacing: 0.2em;
}
.feature ul li p {
  font-size: 13px;
  line-height: 2;
}
.feature ul li:nth-child(2) {
  flex-direction: row-reverse;
}
.feature ul li:nth-child(2) .num {
  right: auto;
  left: -5px;
}
.feature ul li:nth-child(2) .text {
  padding: 0 var(--padding) 0 0;
}
@media (max-width: 768px) {
  .feature ul {
    flex-direction: column !important;
    gap: var(--titleMargin) !important;
  }
  .feature ul li {
    display: block !important;
  }
  .feature ul li:nth-child(2) .num {
    right: -12px !important;
    left: auto !important;
  }
  .feature ul li .image,
  .feature ul li .text {
    padding: 0 !important;
    width: 100% !important;
  }
}

.pickup {
  display: flex;
  gap: var(--padding);
  margin: 0 auto var(--margin) auto;
  padding: 0 var(--padding);
  max-width: var(--maxWidth);
}
.pickup .image {
  opacity: 0;
  overflow: hidden;
  width: 50%;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.pickup.viewed .image {
  opacity: 1;
  transform: translateY(0);
}
.pickup .image img {
  width: 100%;
  border-radius: var(--imageBorderRadius);
}
.pickup .text {
  opacity: 0;
  align-self: center;
  width: 50%;
  transform: translateY(20px);
  transition: all 0.6s 0.4s ease;
}
.pickup.viewed .text {
  opacity: 1;
  transform: translateY(0);
}
.pickup .text .text-top {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: var(--padding);
  margin: 0 0 var(--padding) 0;
}
.pickup .text .text-top .title {
  flex: 1;
  line-height: 1.7 !important;
  writing-mode: vertical-rl;
}
.pickup .text .text-top .text-top-left {
  flex: 3;
  padding: var(--margin) 0 0 0;
}
.pickup .text .name {
  margin: 0 0 15px 0;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.pickup .text .price {
  margin: 0 0 30px 0;
  font-size: 20px;
  letter-spacing: 0.2em;
}
.pickup .text p {
  line-height: 2;
}
@media (max-width: 768px) {
  .pickup {
    display: block;
  }
  .pickup .image {
    width: 100%;
  }
  .pickup .text {
    padding: 0 var(--padding);
    width: 100%;
  }
  .pickup .text .text-top {
    margin-top: calc(var(--padding) * -1);
  }
}
@media (max-width: 600px) {
  .pickup .text {
    padding: 0;
  }
  .pickup .text .text-top {
    display: block;
    margin: 0;
  }
  .pickup .text .text-top .title {
    margin: var(--padding) 0;
    writing-mode: unset;
  }
  .pickup .text .text-top .text-top-left {
    padding: 0;
  }
}

.youtube {
  opacity: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 0 var(--margin) 0;
  padding: 0 var(--padding);
  height: 70vh;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.youtube.viewed {
  opacity: 1;
  transform: translateY(0);
}
.mbYTP_wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  background-image: radial-gradient(rgba(0, 0, 0, 0.1) 30%, transparent 31%), radial-gradient(rgba(0, 0, 0, 0.1) 30%, transparent 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
}
.youtube .text {
  padding: 0 var(--padding);
  width: 100%;
  max-width: var(--maxWidth);
  color: #fff;
  text-align: center;
  z-index: 1;
}
.youtube .text h2 {
  margin: 0 0 10px 0;
}
.youtube .text h3 {
  margin: 0 0 30px 0;
  font-size: var(--headFontSizeS);
  letter-spacing: 0.2em;
}
.youtube .text p {
  line-height: 2;
  white-space: pre-line;
}
.youtube .text .btn-image {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s 0.4s ease;
}
.youtube.viewed .text p,
.youtube.viewed .text .btn-image {
  opacity: 1;
  transform: translateY(0);
}

.categorylist {
  margin: 0 auto var(--margin) auto;
  padding: 0 var(--padding);
  max-width: var(--maxWidth);
}
.categorylist ul {
  opacity: 0;
  display: grid;
  grid-template-columns: repeat(var(--itemNum), 1fr);
  gap: var(--itemMarginV) var(--itemMarginH);
  margin: 0 0 0 auto;
  padding: 0;
  max-width: var(--themeContentWidth);
  list-style: none;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.categorylist.viewed ul {
  opacity: 1;
  transform: translateY(0);
}
.categorylist ul li a {
  display: block;
  text-align: center;
  text-decoration: none;
}
.categorylist ul li .image {
  overflow: hidden;
  margin: 0 0 15px 0;
  border-radius: 50%;
}
.categorylist ul li .image img {
  aspect-ratio: 1 / 1;
  width: 100%;
  transition: all 0.6s ease;
}
@media (hover: hover) {
  .categorylist li a:hover {
    opacity: 1;
  }
  .categorylist li a:hover .image img {
    opacity: 0.7;
    transform: scale(1.1);
  }
}
@media (max-width: 768px) {
  .categorylist ul {
    gap: 20px;
  }
  .categorylist ul li {
    width: calc((100% / 3) - (var(--categorylistGap) * (3 - 1) / 3));
  }
}

.instagram {
  margin: 0 auto var(--margin) auto;
  padding: 0 var(--padding);
  max-width: var(--maxWidth);
}
.instagram .instagram-content {
  opacity: 0;
  margin: 0 0 0 auto;
  max-width: var(--themeContentWidth);
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.instagram.viewed .instagram-content {
  opacity: 1;
  transform: translateY(0);
}
.instagram .btn-normal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.instagram.viewed .btn-normal {
  opacity: 1;
  transform: translateY(0);
}
.instagram .btn-normal a {
  margin: 0 auto;
}

/* list
------------------------------------------*/
.ec-categoryChildren {
  display: flex;
  gap: 5px;
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}
.ec-categoryChildren li {
  margin: 0;
}
.ec-categoryChildren li a {
  display: block;
  padding: 8px 12px;
  font-size: 12px;
  text-decoration: none;
  background: var(--subBgColor);
}
.ec-searchResult {
  margin: 0 0 20px 0;
  padding: 12px;
  font-size: 12px;
  background: var(--subBgColor);
  border-radius: var(--inputBorderRadius);
}
.ec-sortBtnArea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: center;
  margin: 0 0 min(4vh, 40px) 0;
}
.ec-sortBtnArea p {
  margin: 0;
}
.ec-sortBtnArea p span {
  margin: 0 3px 0 0;
  font-weight: bold;
}
.ec-sortBtn {
  display: flex;
  gap: 15px;
}
.ec-sortBtnArea select,
.ec-sortBtnArea select:focus {
  margin: 0 !important;
  padding: 5px 19px 5px 5px !important;
  background: linear-gradient(45deg, transparent 50%, var(--textColor) 50%) no-repeat center right 9px / 4px 4px, linear-gradient(-45deg, transparent 50%, var(--textColor) 50%) no-repeat center right 5px / 4px 4px;
  border: none !important;
  border-bottom: var(--textColor) 2px solid !important;
  border-radius: 0 !important;
}
.ec-noItems {
  display: grid;
  place-items: center;
  height: 200px;
}
.ec-shelfRole {
  max-width: 100%;
}
.ec-shelfGrid {
  display: grid;
  grid-template-columns: repeat(var(--itemNum), 1fr);
  gap: var(--itemMarginV) var(--itemMarginH);
  margin: 0;
  text-align: center;
}
.ec-shelfGrid .ec-shelfGrid__item {
  margin: 0;
  padding: 0 !important;
  width: 100%;
}
.ec-shelfGrid .ec-shelfGrid__item a:hover {
  opacity: 1;
}
.ec-shelfGrid .ec-shelfGrid__item p {
  margin: 0 0 5px 0;
}
.ec-shelfGrid .ec-shelfGrid__item p.ec-shelfGrid__item-image {
  overflow: hidden;
  margin: 0 0 15px 0;
}
.ec-shelfGrid .ec-shelfGrid__item p.ec-shelfGrid__item-image img {
  aspect-ratio: var(--itemListImageAspectRatio);
  object-fit: cover;
  width: 100%;
  border-radius: var(--imageBorderRadius);
  transition: all 0.4s ease;
}
@media (hover: hover) {
  .ec-shelfGrid .ec-shelfGrid__item a:hover p.ec-shelfGrid__item-image img {
    transform: scale(1.1);
  }
}
.ec-shelfGrid .ec-shelfGrid__item p.price02-default {
  margin: 0;
}
/* detail
------------------------------------------*/
.ec-productRole {
  color: var(--textColor);
  padding: 50px 0 0 0;
  max-width: 100%;
}
.ec-productRole .ec-grid2 {
  display: flex;
}
.ec-productRole .ec-grid2 .ec-grid2__cell {
  position: relative;
  padding: 0 var(--padding) 0 0;
  width: 60%;
}
.ec-productRole .ec-grid2 .ec-grid2__cell:nth-child(2) {
  padding: 0;
  width: 40%;
}
.ec-sliderItemRole {
  position: sticky;
  top: calc(var(--fixHeaderHeight) + 10px);
  margin: 0;
  padding: 0;
  max-width: 100%;
}
.iv .swiper-pagination {
  display: none;
}
.iv-thumbnail {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
  margin: 10px 0 0 0;
}
.iv-thumbnail div {
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .iv-thumbnail div:hover {
    opacity: 0.7;
  }
}
.ec-productRole .ec-productRole__profile {
  margin: 0;
  padding: 0;
}
.ec-productRole .ec-productRole__tags {
  display: flex;
  gap: 8px;
  margin: 0 0 15px 0;
  padding: 0;
  border: none;
}
.ec-productRole .ec-productRole__tag {
  padding: 8px;
  font-size: 11px;
  line-height: 1;
  color: var(--textColor);
  background: none;
  border: var(--textColor) 1px solid;
  border-radius: 2px;
}
.ec-productRole .ec-productRole__title .ec-headingTitle {
  margin: 0 0 20px 0;
  padding: 0;
  color: var(--textColor);
  font-size: var(--headFontSize);
  font-weight: var(--headFontWeight);
  letter-spacing: 0.08em;
}
.ec-productRole .ec-productRole__priceRegular {
  margin: 0 0 5px 0;
  padding: 0;
  font-size: var(--bodyFontSize);
}
.ec-productRole .ec-productRole__price {
  display: flex;
  margin: 0 0 30px 0;
  padding: 0;
  color: var(--itemDetailPriceColor);
  font-size: calc(var(--headFontSize) - 6px);
  border: none;
}
.ec-productRole .ec-productRole__price .ec-price__price {
  padding: 0;
  font-weight: var(--headFontWeight);
}

.ec-productRole .ec-productRole__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0;
  padding: 0;
}
.ec-productRole .ec-productRole__actions .ec-select {
  margin: 0;
}
.ec-productRole .ec-productRole__actions .mb-3 {
  margin: 0 !important;
}
.ec-productRole .ec-productRole__actions .mb-3 label {
  display: block;
  margin: 0 0 5px 0;
  font-size: var(--bodyFontSize);
}
.ec-productRole .ec-productRole__actions .mb-3 select {
  margin: 0;
  width: 100%;
}

.ec-productRole .ec-productRole__btn {
  display: flex;
  gap: 8px;
  margin: 0;
  width: 100%;
  min-width: 100%;
}
.number-area {
  display: flex;
  padding: 0 5px;
  border: var(--textColor) 1px solid;
  border-radius: var(--inputBorderRadius);
}
.ec-productRole .ec-productRole__btn .number-area input {
  padding: 0;
  width: max(38px, 4vw);
  height: 100%;
  text-align: center;
  border: none;
  appearance: none;
  -moz-appearance: textfield;
}
.number-area input::-webkit-inner-spin-button,
.number-area input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}
.number-area .number-control {
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 100%;
}
@media (hover: hover) {
  .number-area .number-control:hover {
    opacity: 0.7;
  }
}
.number-area .number-control:before,
.number-area .number-control:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--textColor);
  transform: translate(-50%, -50%);
}
.number-area .number-up:after {
  width: 2px;
  height: 12px;
}
.ec-productRole .ec-productRole__btn .ec-blockBtn--action {
  padding: 20px 5px;
  color: var(--accentTextColor) !important;
  font-size: calc(var(--btnFontSize) + 2px) !important;
  background: var(--accentBgColor) !important;
  border-radius: var(--inputBorderRadius);
  border: none !important;
}
@media (prefers-color-scheme: dark) {
  body.darkmode-1 .ec-productRole .ec-productRole__btn .ec-blockBtn--action {
    color: var(--bgColor) !important;
    background: var(--textColor) !important;
  }
}

.ec-productRole__sub {
  margin: 30px 0;
  padding: 20px;
  background: var(--subBgColor);
  border-radius: var(--inputBorderRadius);
}
.ec-productRole .ec-productRole__code,
.ec-productRole .ec-productRole__category {
  display: flex;
  padding: 0;
  font-size: 12px;
  border: none;
}
.ec-productRole__sub > div:not(:last-child) {
  margin: 0 0 8px 0;
}
.ec-productRole__sub > div > div {
  opacity: 0.5;
  width: 90px;
  font-weight: bold;
}
.ec-productRole .ec-productRole__category ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ec-productRole .ec-productRole__category ul li {
  display: flex;
  flex-wrap: wrap;
}
.ec-productRole .ec-productRole__category ul li a {
  color: var(--textColor);
  text-decoration: none;
}
.ec-productRole .ec-productRole__category ul li span {
  margin: 0 3px;
}

.ec-productRole__sns {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 30px 0 0 0;
}
.ec-productRole__sns .title {
  margin: 0 10px 0 0;
  padding: 0 0 0 2px;
  font-size: 11px;
  font-weight: bold;
  border-bottom: var(--textColor) 2px solid;
}
.ec-productRole__sns div a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--bgColor);
  border: var(--textColor) 1px solid;
  border-radius: 50%;
}
.ec-productRole__sns div a svg {
  width: 22px;
  fill: var(--textColor);
}

.ec-productRole__sns form {
  margin: 0 0 0 auto;
}
button#favorite {
  display: grid;
  place-items: center;
  position: relative;
  padding: 0;
  width: 36px;
  height: 36px;
  background: var(--bgColor) !important;
  border: var(--textColor) 1px solid;
  border-radius: 50%;
}
button#favorite:hover {
  opacity: 1;
}
button#favorite svg {
  margin: 2px 0 0 0;
  width: 18px;
  fill: var(--textColor);
}
button#favorite:disabled {
  opacity: 0.5;
}
button#favorite span {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: -55px;
  left: 50%;
  padding: 10px 0;
  width: 110px;
  color: var(--textColor);
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.02em;
  background: var(--bgColor);
  transform: translateX(-50%);
  border-radius: 3px;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
button#favorite.hover span {
  opacity: 1;
  visibility: visible;
  top: -45px;
}
button#favorite span:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: var(--bgColor) transparent transparent transparent;
  transform: translateX(-50%);
}

.ec-productRole .ec-productRole__description {
  margin: 40px 0;
  font-size: var(--bodyFontSize);
  line-height: var(--bodyLineHeight2);
}
.ec-productRole__freearea {
  margin: 40px 0;
  font-size: var(--bodyFontSize);
  line-height: var(--bodyLineHeight2);
}
.ec-productRole__freearea dl {
  position: relative;
}
.ec-productRole__freearea dl:before {
  content: "";
  opacity: 0.1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--textColor);
}
.ec-productRole__freearea dl dt {
  user-select: none;
  cursor: pointer;
  position: relative;
  padding: 15px 45px 15px 0;
}
.ec-productRole__freearea dl dt:before {
  content: "";
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--textColor);
}
.ec-productRole__freearea dl dt span {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
}
.ec-productRole__freearea dl dt span:before,
.ec-productRole__freearea dl dt span:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 9px;
  width: 12px;
  height: 2px;
  background: var(--textColor);
  transition: all 0.3s ease;
}
.ec-productRole__freearea dl dt span:after {
  top: 9px;
  left: 14px;
  width: 2px;
  height: 12px;
}
.ec-productRole__freearea dl dt.open span:before,
.ec-productRole__freearea dl dt.open span:after {
  transform: rotate(90deg);
}
.ec-productRole__freearea dl dt.open span:before {
  opacity: 0;
}
.ec-productRole__freearea dl dd {
  display: none;
  margin: 0;
  padding: 0 0 20px 0;
}

@media (max-width: 768px) {
  .ec-productRole {
    padding: 0;
  }
  .ec-productRole .ec-grid2 {
    display: block;
  }
  .ec-productRole .ec-grid2 .ec-grid2__cell,
  .ec-productRole .ec-grid2 .ec-grid2__cell:nth-child(2) {
    padding: 0;
    width: 100%;
  }
  .ec-sliderItemRole {
    margin: 0 calc(50% - var(--vw) * 50) 40px calc(50% - var(--vw) * 50);
    padding: 0 0 30px 0;
    width: calc(var(--vw) * 100);
    max-width: 200%;
  }
  .iv {
    overflow: visible;
  }
  .iv .swiper-pagination {
    display: block;
    bottom: -30px;
  }
  .iv .swiper-pagination-bullet {
    opacity: 0.2;
    width: 5px;
    height: 5px;
    background: var(--textColor);
  }
  .iv .swiper-pagination-bullet-active {
    opacity: 0.8;
    background: var(--textColor);
  }
  .iv .swiper-pagination-bullet:only-child {
    display: block !important;
    margin: 0 auto;
  }
  .iv-thumbnail {
    display: none;
  }
}

#product_review_area {
  display: none !important;
}
.ec-layoutRole__main #product_review_area {
  display: block !important;
  margin: 0 auto;
  padding: var(--margin) 0 0 0;
  border-top: none;
}
.ec-layoutRole__main #product_review_area .ec-rectHeading {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 0 30px 0;
  padding: 20px;
  background: var(--subBgColor);
  border-radius: var(--inputBorderRadius);
}
.ec-layoutRole__main #product_review_area .ec-rectHeading:after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  mask: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2046.35%2026.18%22%3E%3Cg%3E%3Cpath%20d%3D%22m.62.62h0c-.83.83-.83%2C2.18%2C0%2C3.01l22.55%2C22.55h0s0%2C0%2C0%2C0L45.72%2C3.63c.83-.83.83-2.18%2C0-3.01h0c-.83-.83-2.18-.83-3.01%2C0l-19.54%2C19.54L3.63.62c-.83-.83-2.18-.83-3.01%2C0Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
    no-repeat center center / 12px;
  -webkit-mask: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2046.35%2026.18%22%3E%3Cg%3E%3Cpath%20d%3D%22m.62.62h0c-.83.83-.83%2C2.18%2C0%2C3.01l22.55%2C22.55h0s0%2C0%2C0%2C0L45.72%2C3.63c.83-.83.83-2.18%2C0-3.01h0c-.83-.83-2.18-.83-3.01%2C0l-19.54%2C19.54L3.63.62c-.83-.83-2.18-.83-3.01%2C0Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
    no-repeat center center / 12px;
  background-color: var(--textColor);
  transition: all 0.3s ease;
}
.ec-layoutRole__main #product_review_area .ec-rectHeading.is_active:after {
  transform: rotate(180deg);
}
.ec-layoutRole__main #product_review_area .ec-rectHeading h4 {
  margin: 0;
  padding: 0;
  font-size: var(--bodyFontSize);
  font-weight: bold;
  background: none;
  border: none;
}
.ec-layoutRole__main #product_review_area .ec-rectHeading h4 span {
  font-weight: normal;
}
.ec-layoutRole__main #product_review_area .recommend_average {
  color: var(--itemDetailReviewColor);
}
.ec-layoutRole__main #product_review_area .ec-role .ec-inlineBtn--action {
  margin: 0 auto;
  max-width: 160px;
}
.ec-layoutRole__main #product_review_area #reviewContent {
  margin: 30px 0;
}
.ec-layoutRole__main #product_review_area .review_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ec-layoutRole__main #product_review_area .review_list .review_date {
  margin: 0 0 12px 0;
  font-size: 12px;
  font-weight: normal;
}
.ec-layoutRole__main #product_review_area .review_list .recommend_name {
  margin: 0 0 0 8px;
}
.ec-layoutRole__main #product_review_area .review_list .recommend_level {
  margin: 0 0 0 8px;
  color: var(--itemDetailReviewColor);
  font-size: var(--bodyFontSize);
}
.ec-layoutRole__main #product_review_area .review_list strong {
  display: block;
  margin: 0 0 12px 0;
  font-size: 16px;
}
.ec-layoutRole__main #product_review_area .review_list p {
  font-size: var(--bodyFontSize);
  line-height: var(--bodyLineHeight2);
}

@media (max-width: 768px) {
  .ec-layoutRole__main #product_review_area .ec-rectHeading {
    justify-content: flex-start;
  }
}

#RelatedProduct-product_area {
  margin: var(--margin) 0 0 0;
}