@charset "utf-8";

html {
  scroll-behavior: smooth;
}

:where(.main_wrap),
:where(.main_wrap) :where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
	all: unset;
	display: revert;
	line-height: 1em;
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: .06em;
	font-weight: 400;
	box-sizing: border-box;
}

/* .main_wrap {
  padding-top: 60px;
} */

#coupon,
#halftime-sale,
#sale-pickup,
#pickup-item {
  scroll-margin-top: 78px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.kv-wrap {
  position: relative;
}

.kv {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.kv img {
  width: 100%;
  height: auto;
  display: block;
}

.kv-fixed-nav {
  position: sticky;
  top: 0;
  z-index: 1100;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 10px 0;
  background: #1f1f1f;
}

.kv-fixed-nav ul {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.kv-fixed-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  border-radius: 6px;
  background: linear-gradient(180deg, #464646 0%, #343434 100%);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.06em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 4px 12px rgba(0, 0, 0, 0.24);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.kv-fixed-nav a:hover,
.kv-fixed-nav a:focus-visible {
  background: linear-gradient(180deg, #535353 0%, #3d3d3d 100%);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 6px 14px rgba(0, 0, 0, 0.28);
}

.coupon-section{
  max-width: 100%;
  background: #000;
  padding: 60px 0;
}

.coupon-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
  text-align: center;
  background: #ffffff;
  border-radius: 10px;
}

.coupon-title {
  font-size: 30px;
  font-weight: bold;
  margin: 40px 0 30px;
}

.coupon-title span{
  font-size: 20px;
  font-weight: bold;
  margin: 50px 0 30px;
}

.coupon-copy {
  display: inline-block;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.coupon-copy img {
  display: block;
}

.coupon-copy:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
}

.coupon-copy.is-copied {
  opacity: 0.8;
  filter: saturate(1.2);
}

.coupon-copy::after {
  content: "コピーしました";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.9);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.coupon-copy.is-copied::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.coupon-desc {
  margin: 60px 0 30px;
  font-size: 24px;
  font-weight: bold;
}

.coupon-desc span {
  color: red;
  font-weight: bold;
}

.coupon-note {
  margin-top: 30px;
  font-size: 12px;
  text-align: left;
  color: #000000;
  letter-spacing: 1.3px;
  line-height: 1.5;
  max-width: 1000px;
}

.coupon-sale-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 620px);
  min-height: 74px;
  margin-top: 60px;
  padding: 22px 68px 22px 42px;
  border: 2px solid #008c48;
  border-radius: 6px;
  background: #008c48;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 1.2px;
  box-shadow: 0 10px 24px rgba(0, 140, 72, 0.24);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.coupon-sale-btn::after {
  content: "";
  position: absolute;
  right: 34px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.18s ease;
}

.coupon-sale-btn:hover,
.coupon-sale-btn:focus-visible {
  background: #00763d;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 140, 72, 0.28);
}

.coupon-sale-btn:focus-visible {
  outline: 3px solid rgba(0, 140, 72, 0.2);
  outline-offset: 3px;
}

.coupon-sale-btn:hover::after,
.coupon-sale-btn:focus-visible::after {
  transform: translate(4px, -50%) rotate(45deg);
}

@media (prefers-reduced-motion: reduce) {
  .coupon-sale-btn,
  .coupon-sale-btn::after {
    transition: none;
  }

  .coupon-sale-btn:hover,
  .coupon-sale-btn:focus-visible {
    transform: none;
  }
}

.coupon_box{
  max-width: 1000px;
  margin: 0 auto;
}

.halftime-sale {
  margin-top: -1px;
  background: linear-gradient(180deg, #000 0 150px, #fff 150px 100%);
  overflow: hidden;
}

.halftime-sale-field {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 165px 0 180px;
  clip-path: polygon(0 5vw, 100% 0, 100% calc(100% - 5vw), 0 100%);
  background: #078f27 url("../img/medama_bg.jpg") center / cover fixed no-repeat;
  color: #fff;
}

.halftime-sale-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.halftime-sale-label {
  display: inline-block;
  margin: 0 auto 28px;
  padding: 18px 56px;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  background: #fff;
  color: #008c48;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.halftime-sale-title {
  line-height: 1;
}

.halftime-sale-title img {
  display: block;
  height: auto;
  margin: 0 auto;
}

.halftime-sale-lead {
  margin-top: 26px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.halftime-sale-lead span {
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.halftime-sale-note {
  margin-top: 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.halftime-sale-note-break {
  display: none;
}

.halftime-sale-grid {
  display: grid;
  grid-template-columns: repeat(2, 540px);
  justify-content: center;
  gap: 70px 40px;
  margin-top: 80px;
}

.halftime-sale-card {
  position: relative;
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 22px;
  min-height: 250px;
  padding: 20px 30px;
  border-radius: 8px;
  background: #fff;
  color: #333;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 540px;
  max-width: 100%;
}

.halftime-sale-card:hover,
.halftime-sale-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}

.halftime-sale-image {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.halftime-sale-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

.halftime-sale-image-side {
  width: auto;
}

.halftime-sale-detail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  margin-top: auto;
}

.halftime-sale-name {
  color: #333;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.halftime-sale-price-old {
  position: relative;
  width: fit-content;
  margin-top: 15px;
  color: #444;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.halftime-sale-price-old::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}

.halftime-sale-price-old span {
  font-size: 10px;
  font-weight: 600;
}

.halftime-sale-price-new {
  margin-top: 10px;
  color: #ff1515;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.halftime-sale-price-new span {
  font-size: 13px;
  font-weight: 700;
}

.halftime-sale-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 42px;
  margin-top: 28px;
  padding: 0 40px;
  border: 1px solid #fff;
  background: linear-gradient(90deg, #007b34 0%, #00a84f 52%, #007f37 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.halftime-sale-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 26px;
  display: block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.2s ease;
}

.halftime-sale-card:hover .halftime-sale-btn,
.halftime-sale-card:focus-visible .halftime-sale-btn {
  background: #fff;
  border-color: #008c48;
  color: #008c48;
}

.halftime-sale-card:hover .halftime-sale-btn::after,
.halftime-sale-card:focus-visible .halftime-sale-btn::after {
  border-color: #008c48;
}

.halftime-sale-badge {
  position: absolute;
  top: -20%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 118px;
  height: 118px;
  background: url("../img/off_icon.png") center / contain no-repeat;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
}

.halftime-sale-badge strong {
  font-size: 46px;
  font-weight: 900;
  line-height: 0.70;
  letter-spacing: -1px;
}

.halftime-sale-badge-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.halftime-sale-badge-percent {
  display: block;
  margin: 13px 0 0 2px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.halftime-sale-badge-off {
  display: block;
  margin-top: 4px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.sale-pickup {
  background: #fff;
  padding: 72px 0 88px;
  overflow: hidden;
}

.sale-pickup-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.sale-pickup-title {
  display: inline-block;
  min-width: 540px;
  margin: 0 auto;
  padding: 18px 58px 20px;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
  background: #008c48;
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.04em;
}

.sale-pickup-lead {
  margin-top: 22px;
  color: #008c48;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.sale-pickup-filter-lead {
  margin-top: 60px;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.sale-pickup-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 25px auto 0;
}

.sale-pickup-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.sale-pickup-filter-btn:hover,
.sale-pickup-filter-btn:focus-visible,
.sale-pickup-filter-btn.is-active {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
}

.sale-pickup-filter-btn:focus-visible {
  outline: 3px solid rgba(17, 17, 17, 0.18);
  outline-offset: 3px;
}

.sale-pickup-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 78px 24px;
  margin-top: 100px;
}

.sale-pickup-card {
  position: relative;
  display: block;
  min-width: 0;
  padding: 20px 10px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  color: #333;
  text-align: left;
  text-decoration: none;
  box-shadow: 5px 8px 12px rgba(0, 0, 0, 0.13);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sale-pickup-card:hover,
.sale-pickup-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 7px 12px 18px rgba(0, 0, 0, 0.16);
}

.sale-pickup-card.is-hidden {
  display: none;
}

.sale-pickup-category {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 82px);
  min-height: 20px;
  padding: 0 7px;
  border: 1px solid currentColor;
  background: #008c48;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-align: center;
}

.sale-pickup-category--shoes {
  background: #008c48;
}

.sale-pickup-category--uniform {
  background: #0068b7;
}

.sale-pickup-category--track-pants {
  background: #6f3bbd;
}

.sale-pickup-category--track-top {
  background: #d14800;
}

.sale-pickup-category--training-top {
  background: #c5162e;
}

.sale-pickup-category--pants-shorts {
  background: #4f5965;
}

.sale-pickup-category--accessory {
  background: #8a6a00;
}

.sale-pickup-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.sale-pickup-image img {
  display: block;
  max-height: 100%;
  height: auto;
}

.sale-pickup-detail {
  margin-top: 12px;
}

.sale-pickup-name {
  color: #333;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: 0.05em;
}

.sale-pickup-price-old {
  position: relative;
  width: fit-content;
  margin-top: 18px;
  color: #444;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.sale-pickup-price-old::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}

.sale-pickup-price-old span {
  font-size: 8px;
  font-weight: 500;
}

.sale-pickup-price-new {
  margin-top: 8px;
  color: #ff1515;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.sale-pickup-price-new span {
  font-size: 10px;
  font-weight: 700;
}

.sale-pickup-badge {
  position: absolute;
  top: -32px;
  right: -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100px;
  height: 100px;
  background: url("../img/off_icon.png") center / contain no-repeat;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
}

.sale-pickup-badge strong {
  font-size: 38px;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -1px;
}

.sale-pickup-badge-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.sale-pickup-badge-percent {
  display: block;
  margin: 11px 0 0 2px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.sale-pickup-badge-off {
  display: block;
  margin-top: 4px;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.pickup-item {
  background: #fff;
  padding: 80px 0 140px;
  overflow: hidden;
}

.pickup-item-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.pickup-item-title {
  display: inline-block;
  min-width: 540px;
  margin: 0 auto;
  padding: 18px 58px 20px;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
  background: #008c48;
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.04em;
}

.pickup-item-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 78px 24px;
  margin-top: 86px;
}

.pickup-item-card {
  position: relative;
  display: block;
  min-width: 0;
  padding: 26px 10px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  color: #333;
  text-align: left;
  text-decoration: none;
  box-shadow: 5px 8px 12px rgba(0, 0, 0, 0.13);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pickup-item-card:hover,
.pickup-item-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 7px 12px 18px rgba(0, 0, 0, 0.16);
}

.pickup-item-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.pickup-item-image img {
  display: block;
  max-height: 100%;
  height: auto;
}

.pickup-item-detail {
  margin-top: 12px;
}

.pickup-item-name {
  color: #333;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: 0.05em;
}

.pickup-item-price-old {
  position: relative;
  width: fit-content;
  margin-top: 18px;
  color: #444;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.pickup-item-price-old::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}

.pickup-item-price-old span {
  font-size: 8px;
  font-weight: 500;
}

.pickup-item-price-new {
  margin-top: 8px;
  color: #ff1515;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.pickup-item-price-new span {
  font-size: 10px;
  font-weight: 700;
}

.pickup-item-badge {
  position: absolute;
  top: -32px;
  right: -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100px;
  height: 100px;
  background: url("../img/off_icon.png") center / contain no-repeat;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
}

.pickup-item-badge strong {
  font-size: 38px;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -1px;
}

.pickup-item-badge-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.pickup-item-badge-percent {
  display: block;
  margin: 11px 0 0 2px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.pickup-item-badge-off {
  display: block;
  margin-top: 4px;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.pickup-item-more {
  margin-top: 64px;
  text-align: center;
}

.pickup-item-more-lead {
  margin-bottom: 20px;
  color: #e60012;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.pickup-item-more-lead::before,
.pickup-item-more-lead::after {
  display: inline-block;
  color: #e60012;
  font-weight: 700;
}

.pickup-item-more-lead::before {
  content: "\\";
  margin-right: 10px;
  transform: rotate(-8deg);
}

.pickup-item-more-lead::after {
  content: "/";
  margin-left: 10px;
  transform: rotate(8deg);
}

.pickup-item-more-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 600px);
  min-height: 76px;
  padding: 22px 72px;
  border: 3px solid #111;
  border-radius: 8px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.pickup-item-more-btn::after {
  content: "";
  position: absolute;
  right: 34px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
}

.pickup-item-more-btn:hover,
.pickup-item-more-btn:focus-visible {
  border-color: #008c48;
  background: #008c48;
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

.pickup-item-more-btn:hover::after,
.pickup-item-more-btn:focus-visible::after {
  transform: translate(4px, -50%) rotate(45deg);
}

.pcnone{
  display: none;
}

.spnone {
  display: inline;
}

.page-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(0, 140, 72, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #008c48;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  cursor: pointer;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.page-top-btn::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

.page-top-btn-text {
  display: block;
}

.page-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.page-top-btn.is-visible:hover,
.page-top-btn.is-visible:focus-visible {
  background: #008c48;
  border-color: #008c48;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  transform: translateY(-3px) scale(1);
}

.page-top-btn:focus-visible {
  outline: 3px solid rgba(0, 140, 72, 0.26);
  outline-offset: 3px;
}

.floating-cpo {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1600;
  width: min(170px, calc(100vw - 48px));
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.floating-cpo.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
}

.floating-cpo a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.floating-cpo a::after {
  content: "";
  position: absolute;
  top: -35%;
  left: -75%;
  width: 42%;
  height: 170%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-22deg);
  pointer-events: none;
}

.floating-cpo a:hover::after,
.floating-cpo a:focus-visible::after {
  animation: floating-cpo-shine 0.72s ease;
}

.floating-cpo img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes floating-cpo-shine {
  0% {
    left: -75%;
  }

  100% {
    left: 135%;
  }
}

.floating-cpo-close {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #111;
  border: 1px solid #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.floating-cpo-close::before,
.floating-cpo-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.floating-cpo-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.floating-cpo-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 1100px) {
  .pickup-item-grid,
  .sale-pickup-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 64px 20px;
  }
}

@media (max-width: 768px) {
  #coupon,
  #halftime-sale,
  #sale-pickup,
  #pickup-item {
    scroll-margin-top: 68px;
  }

  .coupon-visual {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.coupon-visual picture {
    display: inline-block;
}

.coupon-visual picture img {
    width: auto;
    max-width: 95%;
    margin: 0 auto;
}

.coupon-visual img {
    width: 90%;
}

.coupon-info {
    max-width: 100%;
    padding: 28px 14px 30px;
    border-radius: 10px;
    margin: auto 15px;
}

.coupon-copy img,
.coupon-box img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.kv-fixed-nav {
    padding: 6px 0;
}

.kv-fixed-nav ul {
    width: calc(100% - 12px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
}

.kv-fixed-nav a {
    min-height: 44px;
    padding: 6px 4px;
    font-size: 11px;
    line-height: 1.25;
    border-radius: 5px;
    text-align: center;
    letter-spacing: 0.02em;
}

.halftime-sale-field {
    padding: 78px 0 88px;
    clip-path: polygon(0 32px, 100% 0, 100% calc(100% - 32px), 0 100%);
    background-image: url("../img/medama_bg_sp.jpg");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.halftime-sale-inner {
    width: calc(100% - 32px);
}

.halftime-sale-label {
    margin-bottom: 20px;
    padding: 11px 30px;
    font-size: 17px;
}

.halftime-sale-title {
    line-height: 1;
}

.halftime-sale-title img {
    width: min(100%, 330px);
}

.halftime-sale-lead {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.halftime-sale-note {
    margin-top: 20px;
    font-size: 10px;
    line-height: 1.65;
    letter-spacing: 0.02em;
}

.halftime-sale-note-break {
    display: block;
}

.halftime-sale-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 10px;
    margin-top: 46px;
}

.halftime-sale-card {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 12px 8px;
}

.halftime-sale-image {
    min-height: 0;
}

.halftime-sale-detail {
    padding-top: 0;
}

.halftime-sale-name {
    font-size: 10px;
    line-height: 1.35;
}

.halftime-sale-price-old {
    margin-top: 10px;
}

.halftime-sale-btn {
    min-height: 34px;
    margin-top: 12px;
    padding: 0 24px;
    font-size: 10px;
    letter-spacing: 0.02em;
}

.halftime-sale-btn::after {
    right: 12px;
    width: 4px;
    height: 4px;
}

.halftime-sale-badge {
    top: -24px;
    right: -5px;
    width: 72px;
    height: 72px;
}

.halftime-sale-badge strong {
    font-size: 28px;
}

.halftime-sale-badge-percent {
    margin-top: 8px;
    font-size: 12px;
}

.halftime-sale-badge-off {
    margin-top: 2px;
    font-size: 15px;
}

.sale-pickup {
    padding: 42px 0 56px;
}

.sale-pickup-inner {
    width: calc(100% - 32px);
}

.sale-pickup-title {
    min-width: 0;
    width: min(100%, 360px);
    padding: 13px 18px 15px;
    font-size: 20px;
}

.sale-pickup-lead {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.03em;
}

.sale-pickup-filter-lead {
    margin-top: 40px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    margin-bottom: 15px;
}

.sale-pickup-filter {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.sale-pickup-filter-btn {
    min-height: 38px;
    padding: 0 10px;
    font-size: 11px;
    letter-spacing: 0.02em;
}

.sale-pickup-filter-btn:first-child {
    grid-column: 1 / -1;
}

.sale-pickup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 10px;
    margin-top: 60px;
}

.sale-pickup-card {
    padding: 12px 8px 12px;
}

.sale-pickup-category {
    top: 6px;
    left: 6px;
    max-width: calc(100% - 68px);
    min-height: 18px;
    padding: 0 5px;
    font-size: 9px;
}

.sale-pickup-detail {
    margin-top: 10px;
}

.sale-pickup-name {
    font-size: 10px;
    line-height: 1.35;
}

.sale-pickup-price-old {
    margin-top: 12px;
}

.sale-pickup-badge {
    top: -24px;
    right: -5px;
    width: 72px;
    height: 72px;
}

.sale-pickup-badge strong {
    font-size: 28px;
}

.sale-pickup-badge-percent {
    margin-top: 8px;
    font-size: 12px;
}

.sale-pickup-badge-off {
    margin-top: 2px;
    font-size: 15px;
}

.pickup-item {
    padding: 40px 0 140px;
}

.pickup-item-inner {
    width: calc(100% - 32px);
}

.pickup-item-title {
    min-width: 0;
    width: min(100%, 360px);
    padding: 13px 18px 15px;
    font-size: 20px;
}

.pickup-item-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 10px;
    margin-top: 42px;
}

.pickup-item-card {
    padding: 12px 8px 12px;
}

.pickup-item-image {
    height: 132px;
}

.pickup-item-detail {
    margin-top: 10px;
}

.pickup-item-name {
    font-size: 10px;
    line-height: 1.35;
}

.pickup-item-price-old {
    margin-top: 12px;
}

.pickup-item-badge {
    top: -24px;
    right: -5px;
    width: 72px;
    height: 72px;
}

.pickup-item-badge strong {
    font-size: 28px;
    letter-spacing: -1px;
}

.pickup-item-badge-percent {
    margin-top: 8px;
    font-size: 12px;
}

.pickup-item-badge-off {
    margin-top: 2px;
    font-size: 15px;
}

.pickup-item-more {
    margin-top: 42px;
}

.pickup-item-more-lead {
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 0.03em;
}

.pickup-item-more-btn {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    padding: 18px 42px;
    border-width: 2px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
}

.pickup-item-more-btn::after {
    right: 22px;
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
}

.pcnone{
  display: block;
}

.spnone {
  display: none;
}

.coupon-title {
  margin: 26px 0 20px;
  font-size: 22px;
  line-height: 1.4;
}

.coupon-title span {
    font-size: 15px;
}

.coupon-desc {
    margin: 36px 0 18px;
    font-size: 18px;
    line-height: 1.4;
}

.coupon-note {
    margin-top: 15px;
    font-size: 10px;
    line-height: 1.6;
    letter-spacing: 0.04em;
}

.coupon-sale-btn {
    width: min(100%, 390px);
    min-width: 0;
    min-height: 62px;
    margin-top: 32px;
    padding: 18px 50px 18px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.1px;
}

.coupon-sale-btn::after {
    right: 25px;
    width: 8px;
    height: 8px;
}

    .page-top-btn {
        right: 12px;
        bottom: calc(18px + env(safe-area-inset-bottom));
        width: 54px;
        height: 54px;
        font-size: 9px;
    }

    .floating-cpo {
        left: 12px;
        bottom: 12px;
        width: min(120px, calc(100vw - 24px));
    }

    .floating-cpo-close {
        top: -8px;
        right: -8px;
        width: 26px;
        height: 26px;
    }

    .halftime-sale-price-new {
        font-size: 18px;
}
}
