/**
 * temptu-style overrides: white, black, gray base
 * Overrides header, footer, buttons, typography
 */

:root {
  --temptu-black: #000000;
  --temptu-white: #ffffff;
  --temptu-gray-100: #f5f5f5;
  --temptu-gray-200: #e5e5e5;
  --temptu-gray-300: #cccccc;
  --temptu-gray-600: #666666;
  --temptu-gray-800: #333333;
  --temptu-header-height: 85px; /* top bar 45px + main header（ヘッダー最下部に合わせる） */
}

/* Typography: 下位ページと合わせて 16px ベースに統一 */
html {
  font-size: 16px;
}
body {
  font-family: "Cormorant Infant", "Noto Serif JP", serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--temptu-gray-800);
  background-color: var(--temptu-white);
}

/* ec-off2Grid: margin-left を消去したレイアウト（eccube.css の上書き） */
@media only screen and (min-width: 768px) {
  .ec-off2Grid .ec-off2Grid__cell {
    margin-left: 0;
  }
}

/* 商品詳細: ヘッダー・フッターと幅を揃え、メインを中央配置（右側の余白・左ズレを解消） */
.product_detail .ec-layoutRole__contents {
  max-width: 1200px;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.product_detail .ec-layoutRole__left {
  display: none !important;
  width: 0 !important;
  min-width: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}
.product_detail .ec-layoutRole__main,
.product_detail .ec-layoutRole__mainWithColumn {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  flex: 1 1 100%;
  min-width: 0;
}

/* Header top bar (black) - temptu row 1 */
.ec-headerTopBar {
  background-color: var(--temptu-black);
  color: var(--temptu-white);
  height: 45px;
  padding: 0 1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.ec-headerTopBar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.ec-headerTopBar a {
  color: var(--temptu-white);
  text-decoration: none;
}
.ec-headerTopBar__left {
  flex: 1 1 auto;
  min-width: 640px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ec-headerTopBar__messagePrev,
.ec-headerTopBar__messageNext {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--temptu-white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.ec-headerTopBar__messagePrev:hover,
.ec-headerTopBar__messageNext:hover {
  opacity: 0.8;
}
.ec-headerTopBar__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.ec-headerTopBar__right a {
  display: inline-flex;
  align-items: center;
}
.ec-headerTopBar__cartBadge {
  margin-left: 0.25rem;
}
.ec-headerTopBar__searchToggle:hover,
.ec-headerTopBar__cart:hover {
  opacity: 0.8;
}

/* Top bar left: fade in/out message (ELBERT-style) + prev/next */
.ec-headerTopBar__message {
  position: relative;
  flex: 1;
  min-width: 0;
  min-height: 1.5em;
  overflow: hidden;
}
.ec-headerTopBar__messageItem {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.ec-headerTopBar__message[data-current="1"] .ec-headerTopBar__messageItem--1,
.ec-headerTopBar__message[data-current="2"] .ec-headerTopBar__messageItem--2 {
  opacity: 1;
}

/* Header main (white) - temptu row 2 (高さを約30%縮小) */
.ec-headerMain {
  background-color: var(--temptu-white);
  padding: 0.5rem 1rem;
}
.ec-headerMain__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.ec-headerMain__left {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}
.ec-headerMain__searchToggle {
  color: var(--temptu-gray-800);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.ec-headerMain__searchToggle:hover {
  opacity: 0.7;
}
.ec-headerMain__centerLogo {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ec-headerMain__centerLogo .ec-headerRole {
  text-align: center;
}
.ec-headerMain__centerLogo .ec-headerRole__title {
  margin: 0;
}
.ec-headerMain__centerLogo .ec-headerTitle__title h1 {
  margin: 0;
  margin-top: 0 !important;
  font-size: 1rem;
}
.ec-headerMain__centerLogo .ec-headerTitle__title img {
  max-height: 31px; /* 55px の約2割縮小 */
  width: auto;
  display: block;
}
.ec-headerMain__left .ec-headerRole__title,
.ec-headerMain__right .ec-headerRole__title {
  margin: 0;
}
.ec-headerMain__left .ec-headerTitle__title h1,
.ec-headerMain__right .ec-headerTitle__title h1 {
  margin: 0;
  margin-top: 0 !important;
  font-size: 1rem;
}
.ec-headerMain__left .ec-headerTitle__title img,
.ec-headerMain__right .ec-headerTitle__title img {
  max-height: 44px; /* 55px の約2割縮小 */
  width: auto;
}
/* Global nav: same width as hero, placed above main content (see default_frame.twig) */
.temptu-globalNavWrap {
  background: var(--temptu-white);
  margin-bottom: 2rem;
}
.temptu-globalNavWrap__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
}
.ec-headerNavMain__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
}
.ec-headerNavMain__link {
  color: var(--temptu-gray-800);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.ec-headerNavMain__link:hover {
  opacity: 0.7;
}
.ec-headerNavMain__item--hasDropdown {
  position: relative;
}
.ec-headerNavMain__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 900px;
  max-width: calc(100vw - 2rem);
  box-sizing: border-box;
  background: var(--temptu-white);
  border: 1px solid var(--temptu-gray-200);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  list-style: none;
  margin: 0;
  padding: 1.25rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 100;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0 2rem;
}
.ec-headerNavMain__item--hasDropdown:hover .ec-headerNavMain__dropdown,
.ec-headerNavMain__item--hasDropdown.is-open .ec-headerNavMain__dropdown {
  opacity: 1;
  visibility: visible;
}
.ec-headerNavMain__link .ec-headerNavMain__chevron {
  font-size: 0.6em;
  opacity: 0.8;
  margin-left: 0.2rem;
}
.ec-headerNavMain__dropdownItem {
  padding: 0;
  border-bottom: none;
}
.ec-headerNavMain__dropdownItem > a {
  display: block;
  padding: 0.5rem 0;
  color: var(--temptu-gray-800);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.4;
  border-bottom: none;
}
.ec-headerNavMain__dropdownItem > a:hover {
  color: var(--temptu-black);
  background: transparent;
}
.ec-headerNavMain__sub {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0 0 0;
}
.ec-headerNavMain__sub li {
  margin: 0;
  padding: 0;
}
.ec-headerNavMain__sub li a {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.8125rem;
  color: var(--temptu-gray-600);
  text-decoration: none;
}
.ec-headerNavMain__sub li a:hover {
  color: var(--temptu-gray-800);
}
.ec-headerMain__right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.ec-headerMain__account a {
  color: var(--temptu-gray-800);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.ec-headerMain__account a:hover {
  opacity: 0.7;
}
.ec-headerMain__favorite a {
  color: var(--temptu-gray-800);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.ec-headerMain__favorite a:hover {
  opacity: 0.7;
}
.ec-headerMain__right .ec-headerRole__cart {
  margin: 0;
  min-width: 0;
  flex-shrink: 0;
}
.ec-headerMain__right .ec-cartNaviWrap {
  min-width: 7rem;
}
.ec-headerMain__right .ec-cartNavi {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.ec-headerMain__right .ec-cartNavi__div {
  flex-shrink: 0;
}
.ec-headerMain__right .ec-cartNavi__label {
  flex-shrink: 0;
  min-width: 0;
}
.ec-headerMain__right .ec-cartNavi__price {
  font-size: 11px;
  line-height: 1.3;
}
.ec-layoutRole__header .ec-headerRole__title a {
  color: var(--temptu-gray-800);
}

/* Legacy header classes (when used elsewhere) */
.ec-headerNaviRole.ec-headerNaviFix,
.ec-layoutRole__header .ec-headerNaviRole {
  background-color: var(--temptu-white) !important;
  border-bottom: 1px solid var(--temptu-gray-200);
  color: var(--temptu-gray-800);
}
.ec-headerNav__itemLink,
.ec-headerTitle__title a {
  color: var(--temptu-gray-800) !important;
}
.ec-headerNav__item a:hover,
.ec-headerTitle__title a:hover {
  opacity: 0.7;
}

/* Remove teal accent from header/cart */
.ec-cartNavi__price,
.ec-cartNavi__label {
  color: var(--temptu-gray-800) !important;
}
.ec-cartNaviWrap .ec-cartNavi__div img {
  filter: brightness(0);
}

/* Footer: 3列（ロゴ+SNS / ABOUT TEMPTU JAPAN / CUSTOMER CARE） */
.ec-footerRole {
  background-color: #383434 !important;
  color: white;
  border-top: 1px solid var(--temptu-gray-200);
  padding: 2rem 1rem 1rem;
}
.ec-footerRole__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  align-items: start;
}
.ec-footerRole__col.ec-footerRole__logo .ec-footerTitle__logo img {
  max-height: 36px;
  width: auto;
  display: block;
}
.ec-footerRole__sns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.ec-footerRole__snsLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--temptu-gray-800);
  color: var(--temptu-gray-800);
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.2s, background-color 0.2s, color 0.2s;
}
.ec-footerRole__snsLink:hover {
  opacity: 1;
  background-color: var(--temptu-gray-800);
  color: var(--temptu-white);
}
.ec-footerRole__heading {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem;
  color: white;
}
.ec-footerRole__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ec-footerRole__list li {
  margin-bottom: 0.35rem;
}
.ec-footerRole__list a {
  color: var(--temptu-gray-800);
  text-decoration: none;
  font-size: 0.8125rem;
}
.ec-footerRole__list a:hover {
  opacity: 0.7;
}
.ec-footerTitle {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--temptu-gray-200);
}
.ec-footerTitle__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
}
.ec-footerTitle__links a {
  color: var(--temptu-gray-800);
  text-decoration: none;
}
.ec-footerTitle__links a:hover {
  opacity: 0.7;
}
.ec-footerTitle__linksSep {
  color: var(--temptu-gray-400);
  user-select: none;
}
.ec-footerTitle__copyright {
  color: var(--temptu-white);
  font-size: 0.75rem;
}
.ec-footerRole a {
  color: white;
}
.ec-footerRole a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .ec-footerRole__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .ec-footerRole__sns {
    margin-top: 0.75rem;
  }
}

/* Buttons: minimal outline */
.ec-blockBtn--top,
.ec-blockBtn--action,
.temptu-btn-viewmore,
a.ec-blockBtn {
  background-color: transparent !important;
  color: var(--temptu-black) !important;
  border: 1px solid var(--temptu-black);
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.ec-blockBtn--top:hover,
.ec-blockBtn--action:hover,
.temptu-btn-viewmore:hover,
a.ec-blockBtn:hover {
  background-color: var(--temptu-black) !important;
  color: var(--temptu-white) !important;
}

/* Section headings */
.ec-secHeading__en,
.temptu-sec-en {
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--temptu-gray-800);
}
.ec-secHeading__ja,
.temptu-sec-ja {
  color: var(--temptu-gray-600);
}

/* Product grid / cards - temptu */
.ec-shelfRole {
  padding: 1rem 0;
}
.ec-shelfRole .ec-shelfGrid__item,
.ec-shelfGrid__item {
  border-color: var(--temptu-gray-200);
  padding: 0.5rem;
}
.ec-shelfGrid__item a {
  color: inherit;
  text-decoration: none;
}
.ec-shelfGrid__item-image {
  margin: 0 0 0.5rem;
  overflow: hidden;
  background: var(--temptu-gray-100);
}
.ec-shelfGrid__item-image img {
  width: 100%;
  height: auto;
  display: block;
}
.ec-shelfGrid__item-name,
.ec-shelfGrid__item .item_name,
.ec-shelfGrid__item dt {
  color: var(--temptu-gray-800);
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0 0 0.25rem;
}
.price02-default,
.ec-shelfGrid__item .item_price,
.ec-shelfGrid__item dd {
  color: var(--temptu-gray-600);
  font-size: 0.8125rem;
  margin: 0;
}
.ec-shelfRole__tag {
  font-size: 0.7rem;
  color: var(--temptu-gray-600);
}
/* SOLD OUT badge - temptu */
.ec-shelfRole__tag--soldout,
.temptu-soldout {
  background: var(--temptu-gray-800);
  color: var(--temptu-white);
  padding: 0.15rem 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

/* Slick dots (hero) */
.slick-dots li.slick-active button:before {
  background-color: var(--temptu-black) !important;
}
.slick-dots li button:before {
  background-color: var(--temptu-gray-300);
}

/* Hero overlay - temptu */
.temptu-hero { position: relative; }
.temptu-hero__slide { position: relative; }
.temptu-hero__link { display: block; position: relative; }
.temptu-hero__link img { width: 100%; display: block; }
.temptu-hero__caption {
  position: absolute;
  left: 8%;
  bottom: 15%;
  right: 40%;
  color: var(--temptu-gray-800);
  z-index: 2;
}
.temptu-hero__en {
  display: block;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.temptu-hero__ja {
  display: block;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.temptu-hero__caption .temptu-btn-viewmore {
  display: inline-block;
  margin-top: 0.5rem;
}

/* Promo row 5 - temptu */
.temptu-promoRow {
  padding: 2rem 1rem;
  background: var(--temptu-white);
  border-bottom: 1px solid var(--temptu-gray-200);
}
.temptu-promoRow__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.temptu-promoRow__item {
  text-align: center;
  padding: 1rem 0.5rem;
}
a.temptu-promoRow__item {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: opacity 0.2s;
}
a.temptu-promoRow__item:hover {
  opacity: 0.85;
}
.temptu-promoRow__icon {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  color: var(--temptu-gray-800);
  opacity: 0.85;
}
.temptu-promoRow__icon .fas,
.temptu-promoRow__icon .far {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  line-height: 1;
  color: #bfbfbf;
}
.temptu-promoRow__icon .far {
  font-weight: 400;
}
.temptu-promoRow__icon .fas::before,
.temptu-promoRow__icon .far::before {
  font-family: "Font Awesome 5 Free" !important;
}
/* 他CSSで::beforeが上書きされても表示されるよう glyph を明示 */
.temptu-promoRow__icon .fa-truck::before { content: "\f0d1"; }
.temptu-promoRow__icon .fa-tag::before { content: "\f02b"; }
.temptu-promoRow__icon .fa-paint-brush::before { content: "\f1fc"; }
.temptu-promoRow__icon .fa-id-card::before { content: "\f2c2"; }
.temptu-promoRow__icon .fa-gem::before { content: "\f3a5"; }
.temptu-promoRow__en {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 0.35rem;
  color: var(--temptu-gray-800);
}
.temptu-promoRow__ja {
  font-size: 0.8125rem;
  margin: 0 0 0.25rem;
  color: var(--temptu-gray-800);
}
.temptu-promoRow__desc {
  font-size: 0.75rem;
  color: var(--temptu-gray-600);
  margin: 0 0 0.75rem;
}
.temptu-promoRow__item .temptu-btn-viewmore {
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
}
@media (max-width: 768px) {
  .temptu-promoRow__inner { grid-template-columns: 1fr; }
  .temptu-hero__caption { right: 10%; bottom: 10%; }
}

/* INFORMATION section - temptu */
.temptu-information {
  padding: 2rem 1rem;
  background: var(--temptu-gray-100);
}
.temptu-information__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 50px;
}
.temptu-information__inner .temptu-sec-en {
  margin-bottom: 0.75rem;
}
.temptu-information__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--temptu-gray-800);
  margin: 0 0 1rem;
}
.temptu-information__inner .temptu-btn-viewmore {
  display: inline-block;
}

.temptu-sec-viewmore {
  margin-top: 1rem;
  text-align: center;
}

/* カテゴリ商品ブロック（トップ最下部・横スクロール1行） */
.temptu-categoryProducts {
  padding: 2rem 0;
  background: var(--temptu-white);
  margin: 30px 0;
}
.temptu-categoryProducts__inner {
  max-width: 100%;
  margin: 0;
  padding: 0 1rem;
}
.temptu-categoryProducts__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.temptu-categoryProducts__header .temptu-categoryProducts__title {
  margin: 0;
}
.temptu-categoryProducts__viewmore {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: var(--temptu-gray-800);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.temptu-categoryProducts__viewmore:hover {
  opacity: 0.8;
}
.temptu-categoryProducts__viewmore::after {
  content: "";
  display: inline-block;
  width: 1.75em;
  height: 1.75em;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") center/0.6em no-repeat;
}
.temptu-categoryProducts__wrap {
  position: relative;
}
.temptu-categoryProducts__scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 1rem;
}
.temptu-categoryProducts__scroll::-webkit-scrollbar {
  display: none;
}
.temptu-categoryProducts__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  margin: 0;
  padding: 0 0 0.5rem;
  list-style: none;
  width: max-content;
  min-width: 100%;
}
.temptu-categoryProducts__grid .ec-shelfGrid__item {
  flex: 0 0 auto;
  width: 280px;
  max-width: 45vw;
  margin-bottom: 0;
  padding: 0 !important;
  overflow: hidden;
}
.temptu-categoryProducts__grid .ec-shelfGrid__item-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-height: 280px;
  overflow: hidden;
  background: var(--temptu-gray-100);
}
.temptu-categoryProducts__grid .ec-shelfGrid__item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.temptu-categoryProducts__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--temptu-gray-300);
  background: var(--temptu-white);
  color: var(--temptu-gray-800);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.temptu-categoryProducts__arrow:hover {
  background: var(--temptu-gray-100);
}
.temptu-categoryProducts__arrow--prev {
  left: 0.5rem;
}
.temptu-categoryProducts__arrow--next {
  right: 0.5rem;
}
@media (max-width: 767px) {
  .temptu-categoryProducts__grid .ec-shelfGrid__item {
    width: 260px;
    max-width: 75vw;
  }
  .temptu-categoryProducts__grid .ec-shelfGrid__item-image {
    max-height: 260px;
  }
  .temptu-categoryProducts__arrow {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
  }
  .temptu-categoryProducts__arrow--prev { left: 0.25rem; }
  .temptu-categoryProducts__arrow--next { right: 0.25rem; }
}

/* CONCEPT section - temptu */
.temptu-concept { padding: 2rem 1rem; }
.temptu-concept__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
/* PC: 左カラム＝CONCEPTラベル＋タイトル等、右カラム＝画像（従来どおり） */
.temptu-concept__label {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 190px;
}
.temptu-concept__text {
  grid-column: 1;
  grid-row: 2;
}
.temptu-concept__images {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}
.temptu-concept__en {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
  color: var(--temptu-gray-800);
}
.temptu-concept__ja {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--temptu-gray-600);
  margin: 0 0 1rem;
}
.temptu-concept__image img { width: 100%; display: block; }
/* SP: 1カラムで表示順は CONCEPT → 画像 → タイトル（HTML順のまま） */
@media (max-width: 768px) {
  .temptu-concept__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .temptu-concept__label {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
    margin-top: -10px;
  }
  .temptu-concept__images {
    grid-column: 1;
    grid-row: 2;
  }
  .temptu-concept__text {
    grid-column: 1;
    grid-row: 3;
  }
}

/* 全幅バナー（背景画像＋中央テキスト・VIEW MORE） */
.temptu-fullBanner {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 420px;
  background-color: var(--temptu-gray-100, #f5f5f5);
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  box-sizing: border-box;
  margin-top: 50px;
}
.temptu-fullBanner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
.temptu-fullBanner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
}
.temptu-fullBanner__title {
  font-family: "Cormorant Infant", "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--temptu-gray-800, #333);
  margin: 0 0 1rem;
  text-transform: uppercase;
}
.temptu-fullBanner__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--temptu-gray-800, #333);
  margin: 0 0 1.5rem;
}
.temptu-fullBanner__btn {
  display: inline-block;
  background: var(--temptu-gray-800, #222);
  color: #fff;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.temptu-fullBanner__btn:hover {
  opacity: 0.85;
  color: #fff;
}
@media (max-width: 768px) {
  .temptu-fullBanner { min-height: 360px; padding: 2.5rem 1rem; }
}

/* PICK UP エリア（左: 大画像 / 右: 小画像・タイトル・文章・VIEW MORE） */
.temptu-pickup {
  padding: 2.5rem 1rem;
  background: var(--temptu-white);
}
.temptu-pickup__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.temptu-pickup__title {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--temptu-gray-800);
  margin: 0 0 1.5rem;
}
.temptu-pickup__body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}
.temptu-pickup__mainWrap,
.temptu-pickup__right {
  min-width: 0;
}
.temptu-pickup__mainImage,
.temptu-pickup__subImage {
  background: var(--temptu-gray-100);
  border-radius: 12px;
  overflow: hidden;
  padding: 0.5rem;
  box-sizing: border-box;
}
.temptu-pickup__mainImage img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.temptu-pickup__subWrap {
  margin-bottom: 1rem;
}
.temptu-pickup__subImage {
  position: relative;
  padding: 0.5rem;
}
.temptu-pickup__subImage img {
  /* width: 100%; */
  height: auto;
  display: block;
  border-radius: 8px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.temptu-pickup__number {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  background: var(--temptu-black);
  color: var(--temptu-white);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.temptu-pickup__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.temptu-pickup__heading {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--temptu-gray-800);
  margin: 0 0 0.25rem;
  text-transform: uppercase;
}
.temptu-pickup__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--temptu-gray-800);
  margin: 0;
}
.temptu-pickup__viewmore {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--temptu-gray-800);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.15em;
  transition: opacity 0.2s;
}
.temptu-pickup__viewmore:hover {
  opacity: 0.7;
}
.temptu-pickup__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}
.temptu-pickup__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--temptu-gray-600);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.temptu-pickup__dot.is-current {
  background: var(--temptu-gray-800);
  border-color: var(--temptu-gray-800);
}
.temptu-pickup__arrow {
  margin-left: 0.5rem;
  padding: 0.25rem;
  background: none;
  border: none;
  color: var(--temptu-gray-800);
  cursor: pointer;
  font-size: 0.875rem;
}
.temptu-pickup__arrow:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .temptu-pickup__body {
    grid-template-columns: 1fr;
  }
  .temptu-pickup__mainImage img {
    aspect-ratio: 16 / 10;
  }
}

/* NEWS list - temptu */
.temptu-news { padding: 2rem 1rem; }
.temptu-news__inner { max-width: 600px; margin: 0 auto; }
.temptu-news__inner .temptu-sec-en { margin-bottom: 1rem; }
.temptu-news__list { list-style: none; margin: 0 0 1rem; padding: 0; }
.temptu-news__item {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--temptu-gray-200);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.temptu-news__date { font-size: 0.75rem; color: var(--temptu-gray-600); flex-shrink: 0; }
.temptu-news__title { color: var(--temptu-gray-800); text-decoration: none; font-size: 0.875rem; }
.temptu-news__title:hover { opacity: 0.7; }
.temptu-news__loadmore { display: block; margin: 0 auto; }

/* PICKUP - temptu */
.temptu-pickup { padding: 2rem 1rem; background: var(--temptu-gray-100); }
.temptu-pickup__inner { max-width: 1200px; margin: 0 auto; }
.temptu-pickup__inner .temptu-sec-en { margin: 50px 0; }
.temptu-pickup__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.temptu-pickup__item { margin-bottom: 1.5rem; }
.temptu-pickup__num { font-size: 1.5rem; font-weight: 700; color: var(--temptu-gray-800); display: block; margin-bottom: 0.25rem; }
.temptu-pickup__title { font-size: 0.9375rem; margin: 0 0 0.35rem; color: var(--temptu-gray-800); }
.temptu-pickup__desc { font-size: 0.8125rem; line-height: 1.6; color: var(--temptu-gray-600); margin: 0; }
.temptu-pickup__images img { width: 100%; display: block; }
@media (max-width: 768px) {
  .temptu-pickup__grid { grid-template-columns: 1fr; }
}

/* Page top button */
.ec-blockTopBtn.pagetop {
  background-color: var(--temptu-gray-800);
}
.ec-blockTopBtn.pagetop img {
  filter: brightness(0) invert(1);
}

/* Header responsive: 768px 以上で PC グローバルナビ表示 */
@media (max-width: 767px) {
  .temptu-globalNavWrap.is-pc {
    display: none !important;
  }
  .ec-headerMain__inner {
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .temptu-globalNavWrap.is-pc {
    display: block !important;
  }
  .ec-headerRole__navSP.is-sp {
    display: none !important;
  }
}

/* Mega menu modal: full width, below header (header stays visible) */
#mega-menu-modal.mega-menu-modal {
  position: fixed !important;
  top: var(--temptu-header-height) !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none; /* 閉じているときはクリックを透過 */
  transition: visibility 0.25s, opacity 0.25s;
}
#mega-menu-modal.mega-menu-modal.is-open {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.mega-menu-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.mega-menu-modal__panel {
  position: relative;
  width: 100%;
  max-height: calc(100vh - var(--temptu-header-height));
  background: var(--temptu-white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  overflow: auto;
  transform: translateY(-12px);
  transition: transform 0.25s;
  margin-top: -1px; /* ヘッダー border と重ねて境目をなくす */
}
.mega-menu-modal.is-open .mega-menu-modal__panel {
  transform: translateY(0);
}
.mega-menu-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  padding: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--temptu-gray-800);
  font-size: 1.25rem;
  line-height: 1;
}
.mega-menu-modal__close:hover {
  opacity: 0.7;
}
.mega-menu-modal__body {
  padding: 2rem 1.5rem 2.5rem;
}
.mega-menu-modal__main {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.mega-menu-modal__categories {
  flex: 1;
  min-width: 0;
}
.mega-menu-modal__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 2.5rem;
}
@media (min-width: 900px) {
  .mega-menu-modal__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 3rem;
  }
}
.mega-menu-modal__colTitle {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--temptu-gray-300);
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.mega-menu-modal__colTitle:hover {
  opacity: 0.7;
}
.mega-menu-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-menu-modal__list li {
  margin-bottom: 0.4rem;
}
.mega-menu-modal__list a {
  font-size: 13px;
  color: var(--temptu-gray-600);
  text-decoration: none;
}
.mega-menu-modal__list a:hover {
  color: var(--temptu-gray-800);
}
/* 右側プロモブロック */
.mega-menu-modal__promo {
  flex-shrink: 0;
  width: 280px;
  text-align: right;
}
.mega-menu-modal__promoImage {
  width: 100%;
  margin-bottom: 1.25rem;
  border-radius: 2px;
  overflow: hidden;
  background: var(--temptu-gray-100);
}
.mega-menu-modal__promoImage img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.mega-menu-modal__promoTitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--temptu-gray-800);
  margin: 0 0 0.5rem;
}
.mega-menu-modal__promoText {
  font-size: 12px;
  line-height: 1.6;
  color: var(--temptu-gray-600);
  margin: 0;
}

/* ログインページ: 左・新規会員登録 / 右・ログイン の2カラム（横幅1.7倍・左揃え） */
.mypage.login .ec-layoutRole__mainWithColumn {
  text-align: left;
}
.mypage.login .ec-role {
  max-width: 1921px; /* 1130px × 1.7 */
  margin-left: 0 !important;  /* style.css の .login .ec-role { margin: 0 auto } を上書き */
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}
.mypage.login .ec-off2Grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
  justify-content: flex-start;
}
.mypage.login .ec-off2Grid__cell {
  flex: 1;
  min-width: 320px;
  display: flex;
}
.mypage.login .ec-off2Grid__cell > .ec-login,
.mypage.login .ec-off2Grid__cell > form {
  flex: 1;
  min-width: 0;
}
.mypage.login .ec-off2Grid .ec-login {
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
/* 右側・ログイン枠も同じ枠スタイルで揃える */
.mypage.login .ec-off2Grid__cell form .ec-login {
  border: 1px solid var(--temptu-gray-200);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  background: #fff;
}
.mypage.login .ec-login--register {
  padding: 2rem 1.5rem;
  border: 1px solid var(--temptu-gray-200);
  border-radius: 4px;
  background: var(--temptu-gray-100);
  text-align: center;
}
.mypage.login .ec-login--register .ec-login__icon {
  margin-bottom: 1rem;
}
.mypage.login .ec-login__registerTitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--temptu-gray-800);
  margin: 0 1rem 1rem;
  text-align: center;
}
.mypage.login .ec-login__registerText {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--temptu-gray-800);
  margin: 2.5rem 1rem 1rem;
  text-align: center;
}
.mypage.login .ec-login__registerBanner {
  margin: 0 1rem 1rem;
}
.mypage.login .ec-login__registerBanner a {
  display: block;
  line-height: 0;
}
.mypage.login .ec-login__registerBanner img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.mypage.login .ec-login--register .ec-login__actions {
  padding: 0 1rem;
}
.mypage.login .ec-login--register .ec-blockBtn--action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  line-height: 1;
  padding-top: 0;
  padding-bottom: 0;
}

/* 商品詳細: 商品名（英語） */
.ec-productRole__titleEn {
  font-size: 1.2rem;
  color: var(--temptu-gray-600);
  margin: 0.25rem 0 0.5rem;
}

/* 商品詳細: SKU */
.ec-productRole__sku {
  margin: 0.75rem 0;
}
/* 商品詳細: ショートメッセージ */
.ec-productRole__shortMessage {
  margin: 0.75rem 0;
}
.ec-productRole__shortMessageLabel {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--temptu-gray-800);
  margin: 0 0 0.25rem;
}
.ec-productRole__shortMessageBody {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--temptu-gray-800);
}

/* 商品詳細: 数量入力（左−・入力・右+ を1つの枠で囲む） */
.ec-numberInput--withBtns .ec-numberInput__row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.ec-numberInput--withBtns .ec-numberInput__row--bordered {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.2rem;
  width: fit-content;
}
.ec-numberInput--withBtns .ec-numberInput__row--bordered input[type="number"] {
  width: auto;
  min-width: 2.5rem;
  max-width: 3.5rem;
  margin: 0 0.25rem;
  padding: 0 0.25rem;
  border: none;
  border-radius: 0;
  text-align: center;
  -moz-appearance: textfield;
}
.ec-numberInput--withBtns .ec-numberInput__row input[type="number"]::-webkit-outer-spin-button,
.ec-numberInput--withBtns .ec-numberInput__row input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ec-numberInput__row--bordered .ec-numberInput__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #e8e8e8;
  color: #333;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s;
  flex-shrink: 0;
}
.ec-numberInput__btn:hover {
  background: #ddd;
}
.ec-numberInput__btn:active {
  background: #d0d0d0;
}

/* 商品詳細: お気に入り・問い合わせボタン（横並び・白背景・グレー枠） */
.ec-productRole__secondaryBtns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.ec-productRole__secondaryBtnForm {
  margin: 0;
}
.ec-productRole__secondaryBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.75rem;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #333;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.ec-productRole__secondaryBtn:hover {
  background: #f9f9f9;
  border-color: #999;
  color: #333;
  text-decoration: none;
}
.ec-productRole__secondaryBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.ec-productRole__secondaryBtn .fa-heart {
  color: #999;
}
.ec-productRole__secondaryBtn--contact .fa-envelope {
  color: #3c8dbc;
}

/* 商品詳細: 規格（色など）選択エリアの上に区切り線 */
[id^="variation-swatches-"] {
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  margin-top: 1rem;
}

/* 商品詳細: カートに入れるボタン */
.product_detail .ec-productRole__btn .ec-blockBtn--action.add-cart,
.product_detail .ec-productRole__btn button.ec-blockBtn--action {
  background-color: #c61423 !important;
  border-color: #c61423 !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.5rem 1.5rem;
  line-height: 1.4;
}
.product_detail .ec-productRole__btn .ec-blockBtn--action.add-cart:hover,
.product_detail .ec-productRole__btn button.ec-blockBtn--action:hover {
  background-color: #c61423 !important;
  color: #fff !important;
  opacity: 0.9;
}
