*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --black: #000;
  --gold: #d4ba7e;
  --gold-soft: #dfca97;
  --line: #06c755;
  --red: #c7272b;
  --muted: rgba(255, 255, 255, 0.72);
  --serif: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

html {
  background: var(--black);
  color: #fff;
  font-family: var(--serif);
  line-height: 1.7;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: #fff;
  overflow-x: hidden;
}

body.page-loading {
  overflow: hidden;
}

#loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  transition: opacity 0.25s ease;
}

#loading-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

#loading-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #f0d992);
  box-shadow: 0 0 18px rgba(212, 186, 126, 0.55);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.lp {
  width: 100%;
  overflow: hidden;
  background: var(--black);
}

.hero {
  position: relative;
  min-height: 780px;
  background: #000 url("ver.2/webp/アセット 37.webp") center 54px / 900px auto no-repeat;
}

/*.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 210px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000 82%);
}*/

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  min-height: 650px;
  margin: 0 auto;
  margin-top: 35px;
  text-align: center;
}

.brand-logo {
  width: 90px;
  margin-right: auto;
}

.hero-copy {
  position: relative;
  z-index: 1;
  margin: 40px auto 0;
/*  width: fit-content;*/
  max-width: calc(100% - 200px);
  padding: 8px 24px;
  color: var(--gold);
  font-size: 105px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: left;
}

.hero-copy-bloom-text {
  display: inline-block;
  transform-origin: left center;
}

body.page-loading .hero-copy-bloom-text {
  opacity: 0;
  transform: translateY(14px) scale(1.045);
  filter: blur(18px);
}

body:not(.page-loading) .hero-copy-bloom-text {
  animation: hero-copy-bloom 1400ms cubic-bezier(0.16, 0.76, 0.2, 1) 160ms both;
}

@keyframes hero-copy-bloom {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(1.045);
    filter: blur(18px);
    text-shadow: 0 0 34px rgba(212, 186, 126, 0.72);
  }

  58% {
    opacity: 1;
    filter: blur(5px);
    text-shadow: 0 0 22px rgba(212, 186, 126, 0.48);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    text-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-loading .hero-copy-bloom-text,
  body:not(.page-loading) .hero-copy-bloom-text {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}
.hero-copy-lead {
  font-size: 30px;
  display: block;
}
.hero-copy-white {
  color: white;
}
.hero-copy-final {
  font-size: 70px;
  display: block;
}

/*.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18px -48px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0) 72%);
  pointer-events: none;
}*/

.count-card {
  position: fixed;
  z-index: 240;
  top: 30px;
  right: 30px;
  width: 245px;
  color: #fff;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.count-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.count-main {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 6px;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

.count-main span:first-child {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.18;
  text-align: right;
}

.count-main strong {
  color: var(--gold);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
  min-width: 2.35em;
  text-align: right;
}

.count-main strong.slot-text-run {
  display: inline-block;
}

.count-main strong.slot-ready {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.015em;
  height: 1em;
  line-height: 1;
  overflow: hidden;
}

.count-main strong.slot-ready .slot-digit {
  display: inline-block;
  width: 0.58em;
  height: 1em;
  overflow: hidden;
  vertical-align: bottom;
}

.count-main strong.slot-ready .slot-reel {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.16, 0.76, 0.2, 1);
  transition-duration: var(--slot-duration, 1400ms);
  transition-delay: var(--slot-delay, 0ms);
  will-change: transform;
}

.count-main strong.slot-ready.slot-run .slot-reel {
  transform: translateY(var(--slot-offset, 0));
}

.count-main strong.slot-ready .slot-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1em;
  line-height: 1;
}

.count-main strong.slot-ready .slot-separator {
  display: inline-block;
  width: 0.2em;
  text-align: center;
  transform: translateY(-0.01em);
}

.count-main span:last-child {
  font-size: 17px;
  font-weight: 700;
}

.count-meta {
  margin: 6px 0 3px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.25;
  text-align: right;
}

.count-meta strong {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.progress-track {
  position: relative;
  width: 100%;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7e7e7;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #ebd899);
  transition: width 0.45s ease;
}

.count-card-desktop .progress-track.progress-ready span {
  width: 0 !important;
}

.count-card-desktop .progress-track.progress-ready.progress-run span {
  width: var(--progress-target, 0%) !important;
  transition: width 1800ms cubic-bezier(0.16, 0.76, 0.2, 1);
}

.mobile-count .progress-track.progress-ready span {
  width: 0 !important;
}

.mobile-count .progress-track.progress-ready.progress-run span {
  width: var(--progress-target, 0%) !important;
  transition: width 1800ms cubic-bezier(0.16, 0.76, 0.2, 1);
}

.bottom-cta .progress-track.progress-ready span {
  width: 0 !important;
}

.bottom-cta .progress-track.progress-ready.progress-run span {
  width: var(--progress-target, 0%) !important;
  transition: width 1800ms cubic-bezier(0.16, 0.76, 0.2, 1);
}

.line-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 64px;
  margin-top: 16px;
  padding: 10px 20px;
  border-radius: 4px;
  background: var(--line);
  color: #fff;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 0 22px rgba(6, 199, 85, 0.18);
  transition: opacity 0.2s ease;
}

.line-button:hover {
  opacity: 0.7;
}

.line-button img {
  width: 40px;
  flex: 0 0 auto;
}

.button-note {
  margin: 3px 0 0;
  color: #fff;
  font-family: var(--serif);
  font-size: 10px;
  line-height: 1.4;
}

.mobile-count {
  display: none;
}

.features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px;
  width: min(100% - 64px, 890px);
  margin: -125px auto 0;
  color: var(--gold);
}

.feature {
  position: relative;
  text-align: center;
}

.feature-line {
  display: block;
  width: 1px;
  height: 42px;
  margin: 0 auto 22px;
  background: var(--gold);
}

.feature h2 {
  margin: 0;
  color: var(--gold);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.28;
}

.feature p {
  margin: 18px auto 0;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
}

.bottom-cta {
  position: relative;
  width: min(100% - 40px, 872px);
  margin: 90px auto 0;
  background: var(--black);
  color: #fff;
  text-align: center;
}

.bottom-cta[hidden],
.bottom-cta.is-hidden {
  display: none;
}

.bottom-cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.bottom-cta-panel-a {
  min-height: 816px;
  padding: 59px 64px 46px;
}

.bottom-cta-title {
  margin: 0;
  font-size: 35px;
  font-weight: 600;
  line-height: 1.22;
}

.bottom-cta-title span {
  color: var(--gold);
}

.bottom-cta-release {
  margin: 50px 0 0;
  font-size: 39px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.bottom-cta-release span {
  color: var(--gold);
  font-size: 78px;
  line-height: 0.9;
  vertical-align: -0.08em;
}

.bottom-cta-decision {
  margin: 0px 0 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

.bottom-cta-decision span {
  color: var(--gold);
  font-size: 54px;
  line-height: 0.9;
  vertical-align: -0.08em;
}

.bottom-cta-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 16px;
}

.bottom-cta-price-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  padding: 6px 14px;
  background: #242424;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.bottom-cta-price p {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.bottom-cta-price strong {
  font-size: 34px;
  font-weight: 700;
}

.bottom-cta-price p span {
  font-size: 16px;
}

.bottom-cta-count {
  width: 402px;
  margin: 72px auto 0;
}

.bottom-cta-count-main {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  line-height: 1;
  white-space: nowrap;
}

.bottom-cta-count-main span:first-child {
  font-size: 29px;
  font-weight: 700;
  line-height: 1.1;
  text-align: right;
}

.bottom-cta-count-main strong {
  color: var(--gold);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.88;
  font-variant-numeric: tabular-nums;
}

.bottom-cta-count-main strong.slot-text-run {
  display: inline-block;
}

.bottom-cta-count-main span:last-child {
  font-size: 34px;
  font-weight: 700;
}

.bottom-cta-count-meta {
  margin: 15px 0 7px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
}

.bottom-cta-count-meta strong {
  color: var(--gold);
  font-size: 29px;
  line-height: 1;
}

.bottom-cta-progress {
  height: 14px;
}

.bottom-cta-button {
  width: min(100%, 480px);
  min-height: 72px;
  margin: 46px auto 0;
  gap: 19px;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 27px;
  line-height: 1.2;
}

.bottom-cta-button img {
  width: 45px;
}

.bottom-cta-button-break {
  display: none;
}

.bottom-cta .button-note {
  width: min(100%, 480px);
  margin: 6px auto 0;
  font-size: 13px;
  text-align: left;
}

.bottom-cta-panel-b {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 278px;
  grid-template-rows: auto 1fr;
  column-gap: 48px;
  min-height: 496px;
  padding: 40px 40px 36px 42px;
  text-align: left;
}

.bottom-cta-panel-b .bottom-cta-title {
  font-size: 31px;
}

.bottom-cta-panel-b .bottom-cta-release {
  margin-top: 34px;
  font-size: 36px;
  line-height: 1.2;
}

.bottom-cta-panel-b .bottom-cta-release span {
  font-size: 76px;
}

.bottom-cta-panel-b .bottom-cta-decision {
  margin-top: 24px;
  font-size: 30px;
}

.bottom-cta-panel-b .bottom-cta-price {
  grid-column: 1;
  grid-row: 2;
  justify-content: flex-start;
  align-self: end;
  gap: 18px;
  margin-top: 22px;
}

.bottom-cta-panel-b .bottom-cta-price-label {
  min-height: 79px;
  padding: 11px 13px;
}

.bottom-cta-panel-b .bottom-cta-price p {
  flex-wrap: wrap;
  gap: 0 7px;
  max-width: 250px;
}

.bottom-cta-panel-b .bottom-cta-price strong {
  font-size: 53px;
}

.bottom-cta-panel-b .bottom-cta-price p span {
  flex: 0 0 100%;
  margin-top: 7px;
  font-size: 20px;
}

.bottom-cta-product {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  margin: 0;
}

.bottom-cta-product img {
  width: 278px;
  height: 278px;
  object-fit: cover;
}

.bottom-cta-product figcaption {
  margin-top: 9px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
}

.bottom-cta-b .bottom-cta-count {
  margin-top: 66px;
}

.bottom-cta-b .bottom-cta-button {
  margin-top: 44px;
}

.share-section {
  width: min(100% - 40px, 460px);
  margin: 42px auto 0;
  text-align: center;
}

.share-section h2 {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.share-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 31px;
}

.share-facebook {
  width: 32px;
  height: 32px;
}

.share-line {
  width: 34px;
  height: 32px;
}

.video-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 102px;
  height: 38px;
  padding: 0 16px;
  background: var(--red);
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
}

.play-mark {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
}

.play-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-40%, -50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--red);
}

.site-footer {
  width: min(100% - 40px, 420px);
  margin: 28px auto 0;
  padding-bottom: 27px;
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--serif);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 44px;
  font-size: 10px;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.copyright {
  margin: 28px 0 0;
  font-size: 10px;
}

.sp-br {
  display: none;
}

@media (min-width: 1101px) {
  .hero {
    background-position: center;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 610px;
    background-position: center 48px;
    background-size: 900px auto;
  }

  .hero-inner {
    min-height: 100svh;
  }

  .count-card {
    right: 0;
  }

  .features {
    width: min(100% - 50px, 660px);
    gap: 44px;
  }
}

@media (max-width: 1024px) {
  body {
    padding-bottom: 92px;
  }
  .hero-copy {
    width: fit-content;
    max-width: calc(100% - 80px);
  }
  .brand-logo {
    margin: 20px;
  }
  .count-card-desktop {
    display: none;
  }

  .mobile-count {
    position: fixed;
    z-index: 260;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 100%;
    margin: 0;
    padding: 8px 10px 7px;
    background: rgba(0, 0, 0, 0.94);
    box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.48);
    overflow: hidden;
  }

  .mobile-count-row {
    display: grid;
    grid-template-columns: minmax(0, clamp(145px, 44vw, 210px)) minmax(0, 1fr);
    gap: 15px;
    align-items: flex-start;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .mobile-count-box,
  .mobile-line-box {
    min-width: 0;
  }

  .mobile-count .count-main {
    justify-content: flex-start;
    gap: 4px;
  }

  .mobile-count .count-main span:first-child {
    font-size: 13px;
    line-height: 1.05;
  }

  .mobile-count .count-main strong {
    min-width: 0;
    font-size: 32px;
  }

  .mobile-count .count-main span:last-child {
    font-size: 14px;
  }

  .mobile-count .progress-track {
    height: 8px;
    margin: 4px 0 2px;
  }

  .mobile-count .count-meta {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 7px;
    margin: 3px 0 0;
    font-size: 9px;
    line-height: 1.05;
    text-align: left;
  }

  .mobile-count .count-meta {
    text-align: right;
  }

  .mobile-count .count-meta strong {
    font-size: 16px;
  }

  .mobile-line-box .line-button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    margin-top: 0;
    gap: 10px;
    padding: 7px 5px;
    border-radius: 0;
    font-size: 18px;
    line-height: 1.2;
    border-radius: 5px;
  }

  .mobile-line-box .line-button img {
    width: 40px;
  }

  .mobile-line-box .line-button span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .mobile-line-box .button-note {
    font-size: 9px;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {

  .mobile-line-box .line-button {
    font-size: 16px;
  }

  .mobile-line-box .line-button img {
    width: 35px;
  }

  .hero-copy-lead {
    font-size: 22px;
    display: inline-block;
    margin-bottom: 0;
  }

  .sp-br {
    display: block;
  }


  .hero {
    min-height: 100svh;
    background-position: center 42px;
    background-size: 800px auto;
  }

  .hero-inner {
    min-height: 572px;
    padding-top: 0;
    margin-top: 0;
  }

  .brand-logo {
    width: 65px;
    margin: 20px;
  }

  .hero-copy {
    margin-top: 0px;
    max-width: 100%;
    text-align: left;
    padding: 0 0 0 20px;
    font-size: 65px;
    line-height: 1.1;
    letter-spacing: -0.03em;
  }
  .hero-copy-bloom-text{
    letter-spacing: -0.1em;
  }

  .hero-copy-final {
    font-size: 47px;
    display: block;
}

  .features {
    display: block;
    width: min(100% - 82px, 306px);
    margin-top: 0px;
  }

  .feature {
    text-align: left;
    margin-top: 30px;
  }

  .feature + .feature {
    margin-top: 30px;
  }

  .feature-line {
    height: 34px;
    margin: 0 auto 28px;
  }

  .feature h2 {
    font-size: 26px;
    line-height: 1.27;
    text-align: center;
  }

  .feature p {
    margin-top: 26px;
    font-size: 13px;
    line-height: 1.62;
  }

  .bottom-cta {
    width: min(100% - 34px, 356px);
    margin-top: 82px;
  }

  .bottom-cta-panel-a {
    min-height: 913px;
    padding: 31px 14px 28px;
  }

  .bottom-cta-title {
    font-size: 27px;
    line-height: 1.32;
  }

  .bottom-cta-release {
    margin-top: 58px;
    font-size: 27px;
    line-height: 1.3;
    white-space: normal;
  }

  .bottom-cta-release span {
    font-size: 69px;
  }

  .bottom-cta-decision {
    margin-top: 22px;
    font-size: 21px;
    line-height: 1.2;
  }

  .bottom-cta-decision span {
    display: inline-block;
    font-size: 44px;
  }

  .bottom-cta-price {
    display: block;
    margin-top: 40px;
  }

  .bottom-cta-price-label {
    min-height: 41px;
    padding: 3px 18px;
    font-size: 15px;
  }

  .bottom-cta-price p {
    justify-content: center;
    gap: 4px;
    margin-top: 10px;
    font-size: 15px;
  }

  .bottom-cta-price strong {
    font-size: 30px;
  }

  .bottom-cta-price p span {
    font-size: 14px;
  }

  .bottom-cta-count {
    width: 303px;
    margin-top: 77px;
  }

  .bottom-cta-count-main {
    gap: 10px;
  }

  .bottom-cta-count-main span:first-child {
    font-size: 25px;
  }

  .bottom-cta-count-main strong {
    font-size: 59px;
  }

  .bottom-cta-count-main span:last-child {
    font-size: 28px;
  }

  .bottom-cta-count-meta {
    margin: 14px 0 7px;
    font-size: 12px;
    text-align: left;
  }

  .bottom-cta-count-meta strong {
    font-size: 24px;
  }

  .bottom-cta-progress {
    height: 12px;
  }

  .bottom-cta-button {
    width: 306px;
    min-height: 84px;
    margin-top: 36px;
    gap: 13px;
    padding: 11px 13px;
    font-size: 25px;
    line-height: 1.14;
    text-align: left;
  }

  .bottom-cta-button img {
    width: 54px;
  }

  .bottom-cta-button-break {
    display: block;
  }

  .bottom-cta .button-note {
    width: 306px;
    margin-top: 7px;
    font-size: 11px;
  }

  .bottom-cta-panel-b {
    display: block;
    min-height: 937px;
    padding: 31px 14px 42px;
    text-align: center;
  }

  .bottom-cta-panel-b .bottom-cta-title {
    font-size: 27px;
    line-height: 1.32;
  }

  .bottom-cta-panel-b .bottom-cta-release {
    margin-top: 58px;
    font-size: 27px;
    line-height: 1.28;
  }

  .bottom-cta-panel-b .bottom-cta-release span {
    font-size: 68px;
  }

  .bottom-cta-panel-b .bottom-cta-decision {
    margin-top: 35px;
    font-size: 25px;
  }

  .bottom-cta-product {
    width: 277px;
    margin: 27px auto 0;
  }

  .bottom-cta-product img {
    width: 277px;
    height: 277px;
  }

  .bottom-cta-product figcaption {
    margin-top: 10px;
    font-size: 12px;
  }

  .bottom-cta-panel-b .bottom-cta-price {
    margin-top: 20px;
  }

  .bottom-cta-panel-b .bottom-cta-price-label {
    min-height: 49px;
    min-width: 222px;
    padding: 8px 20px;
  }

  .bottom-cta-panel-b .bottom-cta-price p {
    display: block;
    width: 222px;
    margin-top: 23px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .bottom-cta-panel-b .bottom-cta-price strong {
    font-size: 47px;
  }

  .bottom-cta-panel-b .bottom-cta-price p span {
    display: block;
    margin-top: 12px;
    font-size: 19px;
  }

  .bottom-cta-b .bottom-cta-count {
    margin-top: 86px;
  }

  .bottom-cta-b .bottom-cta-button {
    margin-top: 35px;
  }

  .share-section {
    width: min(100% - 42px, 338px);
    margin-top: 89px;
  }

  .share-section h2 {
    margin-bottom: 26px;
    font-size: 19px;
    text-align: center;
  }

  .share-row {
    justify-content: space-evenly;
    gap: 15px;
  }

  .share-icon {
    width: 31px;
    height: 32px;
  }

  .share-facebook {
    width: 36px;
    height: 36px;
  }

  .share-line {
    width: 40px;
    height: 38px;
  }

  .video-share {
    min-width: 117px;
    height: 54px;
    gap: 11px;
    padding: 0 13px;
    font-size: 15px;
  }

  .play-mark {
    width: 25px;
    height: 25px;
  }

  .play-mark::after {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 10px;
  }

  .site-footer {
    width: min(100% - 52px, 338px);
    margin-top: 28px;
    padding-bottom: 26px;
  }

  .footer-links {
    justify-content: space-between;
    gap: 0;
    font-size: 10px;
  }

  .copyright {
    margin-top: 24px;
    font-size: 10px;
  }
}

@media (max-width: 374px) {
  .hero {
    min-height: 512px;
    background-position: center 38px;
    background-size: 650px auto;
  }

  .hero-inner {
    min-height: 512px;
  }

  .hero-copy {
    font-size: 20px;
  }

  .mobile-count-row {
    grid-template-columns: minmax(0, 1fr) 178px;
  }

  .mobile-line-box .line-button {
    font-size: 14px;
  }

  .features,
  .bottom-cta,
  .share-section {
    width: min(100% - 42px, 306px);
  }

  .bottom-cta-panel-a,
  .bottom-cta-panel-b {
    padding-right: 14px;
    padding-left: 14px;
  }

  .bottom-cta-count,
  .bottom-cta-button,
  .bottom-cta .button-note {
    width: 276px;
  }

  .bottom-cta-count-main span:first-child {
    font-size: 22px;
  }

  .bottom-cta-count-main strong {
    font-size: 53px;
  }

  .bottom-cta-count-main span:last-child {
    font-size: 25px;
  }

  .bottom-cta-button {
    font-size: 22px;
  }

  .bottom-cta-product,
  .bottom-cta-product img {
    width: 248px;
  }

  .bottom-cta-product img {
    height: 248px;
  }
}
